/* === LOC: SITE-FOOTER === */
.site-footer {
  margin: 22px auto 0;
  max-width: 1264px;
  border: 1px solid #dfe6f2;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7f9fc 0%, #f1f4f8 100%);
  padding: 10px 14px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #637083;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer-inner a {
  color: #2a63cc;
  text-decoration: none;
}

.site-footer-inner a:hover {
  text-decoration: underline;
}

.site-footer-sep {
  color: #9aa8bc;
}

#footerPublicSecurityLink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-police-icon {
  width: 14px;
  height: 16px;
  border-radius: 0;
  background-image: url("../../../assets/images/ic-guohui.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transform: translateY(-1px);
}

.banner-wrap {
  width: 100%;
}

.banner {
  width: 100%;
  max-height: 60px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* === LOC: HERO === */
.hero {
  max-width: 1264px;
  margin: 46px auto 0;
}

.hero h1 {
  margin: 0;
  color: #000;
  font-family: "DingTalk-JinBuTi", "AlibabaPuHuiTi_2_85_Bold", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 56px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* === LOC: HERO-SUBTITLE === */
.hero-subtitle {
  color: #5f6c86;
  font-size: 16px;
  line-height: 1.75;
  margin: 14px auto 0;
  max-width: 720px;
  text-align: center;
}

/* === LOC: HERO-HIGHLIGHTS === */
.hero-highlights {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.highlight-chip {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(57, 90, 147, 0.08);
  color: #64748b;
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  padding: 6px 14px;
}

.highlight-chip strong {
  color: #1057d7;
  font-size: 14px;
  font-weight: 700;
}

.hero-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-nav-card {
  border: 1px solid #ebeff6;
  box-shadow: 0 8px 20px rgba(67, 94, 138, 0.08);
  position: relative;
  min-height: 140px;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-nav-card:hover {
  box-shadow: 0 14px 28px rgba(33, 73, 136, 0.16);
  transform: translateY(-3px);
}

.hero-nav-card::before,
.hero-nav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-nav-card::before {
  background-image: var(--bg);
  background-size: cover;
}

.hero-nav-card::after {
  background-image: var(--corner);
  background-position: right top;
  background-size: auto 100%;
}

.hero-nav-text {
  position: relative;
  z-index: 1;
  padding: 30px 28px;
}

.hero-nav-text h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.hero-nav-text p {
  margin: 0;
  font-size: 14px;
  color: #686868;
}

/* === LOC: HERO-SPECIAL-CARDS === */
.special-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.special-card {
  min-height: 80px;
  border: 1px solid #efeff5;
  border-radius: 8px;
  background: #f6f6f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  padding: 12px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 8px;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
}

.special-card:hover {
  background: #fff;
  border-color: #e8ebf2;
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.special-card::before {
  display: none;
}

.special-card.is-active {
  background: #fff;
  border-color: #e8ebf2;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.special-copy {
  min-width: 0;
}

.special-card h4 {
  margin: 0;
  font-size: 22px;
  color: #1d2a44;
  font-family: "AlibabaPuHuiTi_2_85_Bold", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.special-card p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #5f6f87;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.special-meta {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.special-meta span {
  border: 1px solid #dce7fb;
  border-radius: 999px;
  color: #55739f;
  font-size: 11px;
  line-height: 1;
  padding: 4px 8px;
}

.special-icon-wrap {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: center;
  width: 64px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}

.special-icon-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.special-card.is-active .special-icon-wrap img {
  opacity: 1;
  transform: scale(1.1);
}

.special-card:hover .special-icon-wrap img {
  opacity: 1;
  transform: scale(1.08);
}

/* === LOC: MARKET === */
.market {
  max-width: 1264px;
  margin: 28px auto 0;
}

/* === LOC: MARKET-HEAD === */
.market-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.market-head-main h2 {
  color: #101828;
  font-size: 26px;
  margin: 0;
}

.market-head-main p {
  color: #6f7d95;
  font-size: 14px;
  margin: 8px 0 0;
}

.market-dashboard {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dash-card {
  border: 1px solid #dce6f8;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-radius: 12px;
  min-height: 82px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(30, 70, 130, 0.07);
}

.dash-label {
  margin: 0;
  color: #6a7891;
  font-size: 13px;
  line-height: 1.4;
}

.dash-value {
  margin: 10px 0 0;
  color: #0f4ec2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.tabs {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid #e7ebf2;
  background: #fff;
  height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 15px;
  color: #46516b;
  transition: all 0.2s ease;
}

.tab:hover {
  border-color: #d6def0;
  color: #233652;
}

.tab.is-active {
  background: linear-gradient(90deg, #0d67f8, #0052d9);
  border-color: transparent;
  color: #fff;
}

.tip-row {
  margin-top: 14px;
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(2, 96, 249, 0.16);
  background: linear-gradient(105deg, rgba(2, 96, 249, 0.07), #fff 38%, rgba(2, 96, 249, 0.05));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
}

.tip-main {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}

.tip-link {
  color: var(--primary);
  font-size: 14px;
}

.cards-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 18px;
}

/* === LOC: MARKET-CARD === */
.card {
  background: #fff;
  border: 1px solid #ebeff5;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(36, 62, 103, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  transition: all 0.24s ease;
}

.card:hover {
  border-color: #d9e6ff;
  box-shadow: 0 12px 28px rgba(32, 78, 147, 0.14);
  transform: translateY(-3px);
}

.card-cover {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f5;
}

.card-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.56));
}

.card-meta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-meta img {
  width: 18px;
  height: 18px;
}

.card-meta span {
  color: #fff;
  font-size: 13px;
}

.card-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
}

.card-use-btn {
  background: rgba(0, 82, 217, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 7px 11px;
}

.card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #374151;
  min-height: 42px;
  padding: 0 2px 2px;
}

/* === LOC: EMPTY-STATE === */
.empty-state {
  margin-top: 24px;
  padding: 20px;
  border: 1px dashed #cad5ea;
  border-radius: 12px;
  color: #5a667f;
  background: #f8fbff;
}

.hidden {
  display: none;
}

