@import '//at.alicdn.com/t/c/font_5203816_16xrcy6795u.css';
@import './tailwind.css';
img,
svg {
  display: block;
  max-width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  color: #1c1b1a;
  background: #f7f9fc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

:root {
  --accent: #235a8e;
  --accent-hover: #1a4670;
  --fg: #1c1b1a;
  --danger: #c8392b;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --border: #e5e7eb;
  --border-2: #d1d5db;
  --bg: #fff;
  --bg-blue: #eef5fb;
  --bg-blue-1: #1d6cb6;
  --bg-blue-2: #2980d4;
  --footer: #15171c;

  --ok: #16a34a;
  --ok-bg: #f0fdf4;
  --ok-border: #bbf7d0;
  --info: #2563eb;
  --info-bg: #eff6ff;
  --info-border: #bfdbfe;

  --amber: #f97316;
  --amber-bg: #fff7ed;
  --amber-border: #fed7aa;
  --blue-edge: #3b82f6;

  --accent-strong: #1a4670;
  --accent-soft: rgba(35, 90, 142, 0.1);
  --accent-ring: rgba(35, 90, 142, 0.18);
  --orange: #f59e0b;
  --orange-soft: rgba(245, 158, 11, 0.06);
  --link: #1e6cb6;
  --link-strong: #144a85;
  --fg-2: #374151;
  --topbar-bg: #15171c;
  --topbar-fg: rgba(255, 255, 255, 0.7);
  --topbar-fg-strong: #ffffff;
  --container: 1200px;
  --pad-x: 24px;

  --bg-page: #f5f9fc;
  --notice-bg: #eef5fb;
  --border-3: #f3f4f6;

  --footer-bg: #2a2d33;
  --footer-fg: #c8cdd5;
  --footer-muted: #8a8f99;
  --copyright-bg: #1f2127;

  --ok-soft: #ecfdf5;
  --warn: #d97706;
  --warn-soft: #fffbeb;
  --info-soft: #eff6ff;
  --neutral: #6b7280;
  --neutral-soft: #f3f4f6;
  --danger-soft: #fef2f2;
  --danger-ring: rgba(200, 57, 43, 0.16);

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow-md: 0 6px 18px rgba(17, 24, 39, 0.06), 0 2px 4px rgba(17, 24, 39, 0.04);
  --shadow-lg: 0 18px 50px rgba(8, 50, 92, 0.12), 0 4px 12px rgba(8, 50, 92, 0.06);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shell: #15171c;
}
/*公用样式end*/
.img-box {
  display: block;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.img-box img,
.img-box iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topbar {
  background: #15171c;
  color: #ffffff;
  font-size: 12px;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.topbar a {
  color: #ffffff;
  padding: 0 14px;
  transition: color 0.15s ease;
}
.topbar a:nth-last-child(1) {
  padding-right: 0;
}
.topbar a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-inner .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.brand-text .zh {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1c1b1a;
  line-height: 1.1;
}
.brand-text .en {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: 40px;
  flex: 1;
}
.nav a {
  font-size: 15px;
  color: #1c1b1a;
  padding: 8px 4px;
  position: relative;
  transition: color 0.15s ease;
}
.nav a:hover {
  color: var(--accent);
}
.nav a.is-active {
  color: var(--accent);
  font-weight: 500;
}
.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
}
.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.header-right .login {
  color: #1c1b1a;
  transition: color 0.15s ease;
}
.header-right .login:hover {
  color: var(--accent);
}
.header-right .bell {
  position: relative;
  color: #4b5563;
}
.bell .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  background: var(--danger);
  color: #fff;
  font:
    600 10px/16px -apple-system,
    sans-serif;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.bell {
  position: relative;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #1c1b1a;
}
.bell .iconfont {
  font-size: 20px;
}
.bell:hover {
  color: var(--accent);
}
.bell .dot {
  position: absolute;
  top: 0px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #ef4444;
  color: #ffffff;
  border-radius: 9px;
  font:
    600 11px/18px -apple-system,
    BlinkMacSystemFont,
    'PingFang SC',
    sans-serif;
  display: grid;
  place-items: center;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===== logout confirm ===== */
.modal-mask.logout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.modal-mask.logout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.logout-modal .modal {
  background: #ffffff;
  border-radius: 6px;
  width: min(420px, 92vw);
  padding: 28px 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  inset: initial;
}
.logout-modal .modal h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.logout-modal .modal p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.55;
}
.logout-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.logout-modal .modal .btn {
  min-width: 88px;
  padding: 9px 20px;
  font-size: 14px;
}
/* ===== footer ===== */
/* ---- 联系信息 (顶部突出) ---- */
    .contact-block {
      width: 100%;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 12px 28px;
    }
    .contact-block .contact-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      letter-spacing: 0.2px;
    }
    .contact-block .contact-item strong {
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      margin-right: 2px;
    }
    .contact-block .contact-item a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: color 0.15s ease;
    }
    .contact-block .contact-item a:hover {
      color: #ffffff;
    }
    .contact-block .contact-item .label {
      color: rgba(255, 255, 255, 0.5);
      font-weight: 400;
    }
    /* 分隔符 */
    .contact-divider {
      color: rgba(255, 255, 255, 0.2);
      font-weight: 300;
      user-select: none;
    }
footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
  padding: 32px 24px 24px;
  margin-top: 40px;
}
.m-width-1280{
    max-width: 1280px;
  margin: 0 auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s ease;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-qr .img {
  /*width: 96px;*/
  /*height: 96px;*/
  background: #ffffff;
  border-radius: 4px;
  padding: 8px;
  /*display: grid;*/
  /*place-items: center;*/
  /*grid-template-columns: repeat(6, 1fr);*/
  /*gap: 1px;*/
}
.footer-qr .img img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}
.footer-qr .img i {
  width: 100%;
  aspect-ratio: 1;
  background: #15171c;
}
.footer-qr .img i:nth-child(3n + 1) {
  background: #1a4670;
}
.footer-qr .img i:nth-child(7n + 2) {
  background: #c8392b;
}
.footer-qr .img i:nth-child(11n + 4) {
  background: #ffffff;
}
.footer-qr small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-meta {
  max-width: 1280px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-meta .icon-beian {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c8392b;
  flex-shrink: 0;
  display: inline-block;
}
.footer-meta a {
  color: inherit;
}
.footer-badges {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.footer-badge {
  background: linear-gradient(90deg, #2a7a3f 0%, #41a35a 100%);
  color: #ffffff;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-badge.b2 {
  background: linear-gradient(90deg, #1f6dba 0%, #4a8cd8 100%);
}
.footer-badge.b3 {
  background: linear-gradient(90deg, #d96b1f 0%, #e7a85b 100%);
}
