<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 鍩虹鍙橀噺 */
:root {
  --primary-color: #6b7bef;
  --secondary-color: #986adb;
  --success-color: #52c41a;
  --warning-color: #faad14;
  --error-color: #f5222d;
  --text-color: rgba(0, 0, 0, 0.85);
  --bg-color: #f0f2f5;
  --border-color: #d9d9d9;
}

/* 鍩虹鏍峰紡 */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

.site-layout-content {
  min-height: 100vh;
  padding: 24px;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-layout-content {
    padding: 16px 12px;
  }
}

/* 椤甸潰澶撮儴鏍峰紡 */
.ant-page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 48px 16px;
  border-radius: 8px 8px 0 0;
  color: white;
  text-align: center;
}

.ant-page-header-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ant-page-header-heading-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.ant-page-header-heading-sub-title {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  padding: 0;
  opacity: 0.95;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .site-layout-content {
    padding: 24px;
  }
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 576px) {
  .ant-page-header-heading-sub-title {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 10px;
  }
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 320px) {
  .ant-page-header-heading-sub-title {
    font-size: 12px;
    line-height: 1.3;
    padding: 0 15px;
  }
}

/* Ant Design 鏍峰紡瀹氬埗 */
.ant-form-item {
  margin-bottom: 12px;
}

.ant-form-item-label {
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
  padding: 0;
  line-height: 1.5;
}

.ant-card-body {
  padding: 12px;
}

.ant-card-head {
  min-height: 36px;
  padding: 0 12px;
}

.ant-card-head-title {
  padding: 8px 0;
  font-size: 14px;
}

.ant-alert {
  font-size: 13px;
  padding: 8px 12px;
}

.ant-descriptions-item {
  padding: 4px;
}

.ant-btn {
  height: 32px;
  font-size: 14px;
}

.ant-input,
.ant-select {
  width: 100%;
  height: 32px;
  font-size: 14px;
  padding: 4px 11px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: all 0.3s;
  outline: none;
  color: var(--text-color);
}

.ant-input:focus,
.ant-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(107, 123, 239, 0.2);
}

.ant-select-single {
  position: relative;
}

.ant-select-show-search {
  padding-right: 30px;
}

.ant-select-multiple {
  height: auto;
  min-height: 32px;
  padding: 4px 8px;
}

/* 鍗曢€夋寜閽粍 */
.ant-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ant-radio-button-wrapper {
  height: 28px;
  padding: 0 12px;
  line-height: 26px;
  font-size: 13px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.ant-radio-button-wrapper:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.ant-radio-button-wrapper-checked {
  color: var(--primary-color);
  background: #e6f7ff;
  border-color: var(--primary-color);
}

/* 鍗曢€夋 */
.ant-radio-wrapper {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  cursor: pointer;
}

.ant-radio {
  margin-right: 6px;
  position: relative;
  display: inline-block;
}

.ant-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.ant-radio-inner {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  transition: all 0.3s;
}

.ant-radio-input:checked + .ant-radio-inner {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.ant-radio-input:checked + .ant-radio-inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

/* 鎸夐挳鏍峰紡 */
.ant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 400;
}

.ant-btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.ant-btn-primary:hover,
.ant-btn-primary:focus {
  background-color: #40a9ff;
  border-color: #40a9ff;
}

.ant-btn-danger {
  color: #fff;
  background-color: var(--error-color);
  border-color: var(--error-color);
}

.ant-btn-danger:hover,
.ant-btn-danger:focus {
  background-color: #ff4d4f;
  border-color: #ff4d4f;
}

.ant-btn-default {
  background-color: #fff;
  border-color: var(--border-color);
}

.ant-btn-default:hover,
.ant-btn-default:focus {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.ant-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* 鍗＄墖鏍峰紡 */
.ant-card {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-size: 14px;
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}

.ant-card-bordered {
  border: 1px solid #f0f0f0;
}

.site-card {
  border-radius: 0 0 8px 8px;
  box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}

/* 琛ㄦ牸鏍峰紡 */
.ant-descriptions {
  width: 100%;
}

.ant-descriptions-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
}

.ant-descriptions-item {
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  margin-bottom: 2px;
}

.ant-descriptions-item-label {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}

.ant-descriptions-item-content {
  text-align: right;
}

/* 涓嬫媺妗嗚嚜瀹氫箟鏍峰紡 */
.ant-select-customized {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 16px !important;
  padding-right: 30px !important;
  cursor: pointer !important;
  background-color: #fff !important;
  border-radius: 2px !important;
}

/* 纭繚Chrome娴忚鍣ㄤ腑鐨勪笅鎷夌澶撮殣钘� */
select.ant-select-customized::-webkit-calendar-picker-indicator {
  opacity: 0 !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

select.ant-select-customized::-ms-expand {
  display: none !important;
}

/* 閽堝Firefox鐨勭壒娈婂鐞� */
@-moz-document url-prefix() {
  select.ant-select-customized {
    text-indent: 0.01px;
    text-overflow: "";
    padding-right: 30px !important;
  }
}

/* 閽堝Safari鐨勭壒娈婂鐞� */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    select.ant-select-customized {
      -webkit-appearance: none !important;
      background-color: white !important;
    }
  }
}

/* 涓嬫媺閫夐」鏍峰紡 */
select.ant-select option {
  padding: 8px 12px;
  min-height: 32px;
  line-height: 22px;
  transition: background 0.3s ease;
  cursor: pointer;
}

select.ant-select option:hover,
select.ant-select option:focus {
  background-color: #f5f5f5;
}

select.ant-select option:checked,
select.ant-select option:active,
select.ant-select option:focus:checked {
  background-color: #e6f7ff;
  color: var(--primary-color);
  font-weight: 500;
}

/* 缇庡寲婊氬姩鏉� */
select.ant-select,
select.ant-select-multiple {
  scrollbar-width: thin;
  scrollbar-color: #d9d9d9 #f5f5f5;
}

select.ant-select::-webkit-scrollbar,
select.ant-select-multiple::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

select.ant-select::-webkit-scrollbar-track,
select.ant-select-multiple::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}

select.ant-select::-webkit-scrollbar-thumb,
select.ant-select-multiple::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 3px;
}

select.ant-select::-webkit-scrollbar-thumb:hover,
select.ant-select-multiple::-webkit-scrollbar-thumb:hover {
  background: #bfbfbf;
}

/* 鎻愪緵绌虹姸鎬佷笅鐨勬牱寮� */
select.ant-select:empty,
select.ant-select-multiple:empty {
  border-color: #f0f0f0;
  background-color: #fafafa;
}

/* 澶氶€変笅鎷夋鏍峰紡 */
select.ant-select-multiple {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  overflow-y: auto;
  max-height: 180px;
  padding: 8px !important;
}

select.ant-select-multiple option {
  padding: 8px 12px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  white-space: normal;
  word-break: break-all;
  margin-bottom: 4px;
  background-color: white;
  border-radius: 2px;
}

select.ant-select-multiple option:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

select.ant-select-multiple option:checked {
  background-color: #e6f7ff !important;
  color: var(--primary-color) !important;
  outline: 1px solid var(--primary-color);
}

/* 淇WebKit娴忚鍣ㄤ腑鐨勯€夐」鏄剧ず闂 */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select.ant-select-customized {
    border-color: var(--border-color);
    background-color: white;
  }

  select.ant-select-multiple option {
    padding: 8px;
    margin: 4px 0;
    border-radius: 2px;
  }

  select.ant-select-multiple option:checked {
    background: #e6f7ff linear-gradient(0deg, #e6f7ff 0%, #e6f7ff 100%);
    color: var(--primary-color);
  }
}

/* 娣诲姞鍔ㄧ敾鍜屼氦浜掓晥鏋� */
.ant-select-wrapper {
  position: relative;
}

.ant-select-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s;
  z-index: 1;
}

.ant-select-wrapper:has(.ant-select:focus)::before {
  transform: scaleX(1);
}

/* 瑙﹀彂鎬佹牱寮� */
.ant-select:hover,
.ant-select-customized:hover {
  border-color: var(--primary-color);
}

.ant-select-focused,
.ant-select-customized:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(107, 123, 239, 0.2);
}

/* 琛ㄥ崟椤硅仛鐒︽晥鏋� */
.ant-form-item.focused {
  background-color: #f0f7ff;
  border-radius: 2px;
  transition: background-color 0.3s;
}

/* 鏀粯閫夐」鏍峰紡浼樺寲 */
.payment-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ant-radio-wrapper {
  margin-right: 16px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.ant-radio {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.ant-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.ant-radio-inner {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  transition: all 0.3s;
}

.ant-radio-wrapper-checked .ant-radio-inner::after {
  content: " ";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s;
}

.ant-radio-wrapper-checked .ant-radio-inner {
  border-color: var(--primary-color);
}

/* 鍔ㄧ敾鏁堟灉 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.slide-up {
  animation: slideUp 0.3s ease-in-out;
}

/* 鍔犺浇鍔ㄧ敾 */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 娑堟伅鎻愮ず妗嗘牱寮� */
.message-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 300px;
  max-width: 90%;
}

.message {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  animation: slideIn 0.3s ease;
  position: relative;
  overflow: hidden;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.message-success {
  background-color: #f6ffed;
  border-left: 4px solid #52c41a;
  color: #52c41a;
}

.message-error {
  background-color: #fff2f0;
  border-left: 4px solid #f5222d;
  color: #f5222d;
}

.message-info {
  background-color: #e6f7ff;
  border-left: 4px solid #1890ff;
  color: #1890ff;
}

.message-content {
  flex: 1;
  font-size: 14px;
}

/* 鍝嶅簲寮忚皟鏁� */
@media (max-width: 576px) {
  .site-layout-content {
    padding: 8px;
  }

  .ant-card-body {
    padding: 8px;
  }

  .ant-card-head {
    min-height: 32px;
    padding: 0 8px;
  }

  .ant-card-head-title {
    padding: 6px 0;
  }

  .ant-form-item {
    margin-bottom: 8px;
  }

  .ant-alert {
    font-size: 12px;
    padding: 6px 8px;
  }

  .ant-descriptions-item {
    padding: 2px 4px;
    font-size: 13px;
  }

  .ant-btn {
    height: 30px;
    font-size: 13px;
  }

  .ant-input,
  .ant-select {
    height: 30px;
    font-size: 13px;
  }

  .ant-radio-button-wrapper {
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    padding: 0 8px;
  }
}

/* Ant Design Dropdown 鏍峰紡 */
.ant-dropdown-container {
  display: block;
  width: 100%;
}

.ant-dropdown-trigger {
  position: relative;
  display: flex;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  align-items: center;
}

.ant-dropdown-trigger:hover {
  border-color: var(--primary-color);
}

.ant-dropdown-trigger-active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(107, 123, 239, 0.2);
  outline: 0;
}

.ant-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.ant-dropdown-menu {
  margin: 0;
  padding: 4px 0;
  list-style: none;
  max-height: 250px;
  overflow-y: auto;
}

.ant-dropdown-menu-item {
  margin: 0;
  padding: 5px 12px;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.ant-dropdown-menu-item:hover {
  background-color: #f5f5f5;
}

.ant-dropdown-menu-item-selected {
  background-color: #e6f7ff;
  color: var(--primary-color);
  font-weight: 500;
}

.ant-select-dropdown-visible {
  display: block;
  animation: antSlideUpIn 0.2s;
}

.ant-search-input {
  width: 100%;
  padding: 4px 11px;
  font-size: 14px;
  line-height: 1.5715;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s;
}

.ant-search-input:hover {
  border-color: var(--primary-color);
}

.ant-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(107, 123, 239, 0.2);
  outline: 0;
}

/* 鏍囩鏍峰紡 */
.ant-tag {
  display: inline-block;
  padding: 0 7px;
  font-size: 12px;
  line-height: 20px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  cursor: default;
  margin-right: 4px;
  margin-bottom: 4px;
}

.ant-tag-closable {
  padding-right: 4px;
}

.ant-tag-close-icon {
  margin-left: 4px;
  font-size: 10px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
}

.ant-tag-close-icon:hover {
  color: rgba(0, 0, 0, 0.85);
}

/* 澶氶€変笅鎷夋鏍峰紡 */
.ant-multiple-select {
  min-height: 32px;
  padding: 4px 4px 4px 11px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ant-multiple-select .ant-select-selection-placeholder {
  color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

/* 鏀粯閫夐」鏍峰紡 */
.payment-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ant-radio-wrapper {
  margin-right: 16px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.ant-radio {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.ant-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.ant-radio-inner {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  transition: all 0.3s;
}

.ant-radio-wrapper-checked .ant-radio-inner::after {
  content: " ";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s;
}

.ant-radio-wrapper-checked .ant-radio-inner {
  border-color: var(--primary-color);
}

/* 娑堟伅鎻愮ず鏍峰紡 */
.ant-message {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ant-message-notice {
  padding: 8px;
  margin-bottom: 16px;
  transition: opacity 0.3s;
  opacity: 0;
}

.ant-message-notice-content {
  padding: 10px 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  pointer-events: all;
  display: inline-block;
}

.ant-message-custom-content {
  display: flex;
  align-items: center;
}

.ant-message-success {
  color: #52c41a;
}

.ant-message-error {
  color: #f5222d;
}

.ant-message-info {
  color: #1890ff;
}

/* 妯℃€佹鍔ㄧ敾 */
@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}

@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}

.ant-dropdown-slide-up-enter-active {
  animation: antSlideUpIn 0.2s;
}

.ant-dropdown-slide-up-leave-active {
  animation: antSlideUpOut 0.2s;
}

/* 娣″叆娣″嚭鍔ㄧ敾 */
.ant-motion-fade-in {
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 鎸夐挳鏍峰紡澧炲己 */
.ant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 鏀粯妯℃€佹鏍峰紡 */
.ant-modal-root .ant-btn {
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 4px 15px;
  font-size: 14px;
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
  border-color: #d9d9d9;
}

.ant-modal-root .ant-btn-primary {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}

.ant-modal-root .ant-btn:hover,
.ant-modal-root .ant-btn:focus {
  color: var(--primary-color);
  background: #fff;
  border-color: var(--primary-color);
}

.ant-modal-root .ant-btn-primary:hover,
.ant-modal-root .ant-btn-primary:focus {
  color: #fff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* 妯℃€佹鏍峰紡 */
.ant-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.ant-modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ant-modal {
  position: relative;
  width: 90%;
  max-width: 416px;
  margin: 20px auto;
  padding: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  z-index: 1001;
  pointer-events: auto;
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 576px) {
  .ant-modal {
    width: 90%;
    margin: 10px auto;
  }

  .ant-modal-body {
    padding: 16px;
    font-size: 14px;
  }

  .ant-modal-header {
    padding: 12px 16px;
  }

  .ant-modal-footer {
    padding: 8px 12px;
  }

  .ant-btn {
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }
}

/* 瀵嗙爜杈撳叆妗嗘牱寮� */
.ant-input-password {
  position: relative;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.ant-input-password .ant-input {
  padding-right: 32px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.ant-input-password-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1;
}

.ant-input-password-icon:hover {
  color: rgba(0, 0, 0, 0.65);
}

.ant-input-password-icon.active {
  color: #1890ff;
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 576px) {
  .ant-input-password {
    width: 100%;
    padding: 0;
  }

  .ant-input-password .ant-input {
    padding-right: 28px;
    font-size: 14px;
    height: 36px;
  }

  .ant-input-password-icon {
    right: 6px;
    font-size: 14px;
  }

  .ant-form-item-control {
    width: 100%;
    max-width: 100%;
  }
}
</pre></body></html>