/* ============================================================
   景瓷兴官网 — 新中式极简 设计系统
   facove.com / Puock主题覆盖
   ============================================================ */

/* ── CSS变量 ──────────────────────────────────── */
:root {
  --bg:        #F5F5F0;       /* 暖灰底 */
  --bg-card:   #FFFFFF;       /* 卡片白 */
  --bg-dark:   #2C2C2C;       /* 深墨（Hero/Footer） */
  --accent:    #C8382E;       /* 朱红 */
  --accent-light: #E8D5D3;    /* 朱红淡 */
  --gold:      #B8923C;       /* 暗金（辅助） */
  --text-primary:   #2C2C2C;  /* 深墨 */
  --text-secondary: #7A7A7A;  /* 灰墨 */
  --text-light:     #F5F5F0;  /* 深墨底上的白字 */
  --border:    #D0D0CC;       /* 淡墨边线 */
  --border-accent: #C8382E;   /* 朱红边线 */
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(44,44,44,0.06);
  --shadow-lg: 0 8px 32px rgba(44,44,44,0.10);
  --font-serif:  'Noto Serif SC', 'Source Han Serif SC', serif;
  --font-sans:   'Noto Sans SC', 'Source Han Sans SC', -apple-system, sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
}

/* ── 全局 ──────────────────────────────────── */
body {
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--text-primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── 导航 ──────────────────────────────────── */
.jingci-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,245,240,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.jingci-nav .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  height: 64px;
}
.jingci-nav .logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 2px;
  white-space: nowrap;
}
.jingci-nav .logo span {
  color: var(--accent);
  font-weight: 400;
  font-size: 14px;
  margin-left: 2px;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: var(--spacing-md);
  margin-left: var(--spacing-xl);
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 1px;
}
.nav-links a:hover,
.nav-links .current a {
  color: var(--accent);
}
.nav-links .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--text-secondary);
  border-bottom: 1.5px solid var(--text-secondary);
  transform: rotate(45deg);
  margin-left: 4px;
  margin-bottom: 2px;
  transition: all 0.2s;
}
.nav-links .has-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 160px;
  box-shadow: var(--shadow);
  display: none;
  opacity: 0;
  transition: all 0.2s;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  display: block;
  opacity: 1;
}
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.dropdown-menu a:hover {
  color: var(--accent);
  background: var(--accent-light);
}
.dropdown-group-label {
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  pointer-events: none;
  padding: 10px 16px 4px;
}
.dropdown-group-label:first-child { padding-top: 8px; }
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 12px;
}
.nav-buttons {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.btn-login {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
}
.btn-login:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-register {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: var(--radius);
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
}
.btn-register:hover {
  background: #A52E25;
  transform: translateY(-1px);
}
/* PC端隐藏CTA按钮中的电话号码 */
@media (min-width: 769px) {
  .product-cta .btn-primary small,
  .product-cta .btn-primary .phone-num {
    display: none;
  }
}
.nav-spacer { height: 64px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-primary);
  margin-left: auto;
}

/* ── Hero ──────────────────────────────────── */
.jingci-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  overflow: hidden;
}
.jingci-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3A3A3A 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.jingci-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.jingci-hero .badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  border-radius: 20px;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}
.jingci-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}
.jingci-hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.jingci-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.4;
}
.jingci-hero .hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}
.jingci-hero .hero-buttons {
  display: flex;
  gap: 12px;
}
.btn-primary {
  padding: 12px 28px;
  background: var(--accent) !important;
  color: var(--text-light) !important;
  border-radius: var(--radius);
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  background: #A52E25 !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,56,46,0.3);
}
.btn-primary small {
  display: none;
}
.btn-outline {
  padding: 12px 28px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius);
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero右侧装饰文字 */
.jingci-hero .hero-side-text {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: rgba(245,245,240,0.08);
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  letter-spacing: 12px;
  user-select: none;
}

/* ── 信任条 ──────────────────────────────────── */
.jingci-trust {
  background: var(--bg-dark);
  padding: 20px var(--spacing-lg);
  border-bottom: 1px solid rgba(245,245,240,0.08);
}
.jingci-trust .trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item span {
  font-size: 14px;
  color: rgba(245,245,240,0.7);
  letter-spacing: 1px;
}
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 24px;
  opacity: 0.6;
}
/* ── 几何Icon（纯CSS） ──────────────────────── */
.trust-icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
/* 印章icon：圆+内方块 = 国家资质 */
.trust-icon.seal {
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.trust-icon.seal::after {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  background: var(--accent);
  border-radius: 2px;
}
/* 建筑icon：方框+立柱 = 国有控股 */
.trust-icon.gov {
  border: 2px solid rgba(245,245,240,0.5);
  border-radius: 2px;
}
.trust-icon.gov::before {
  content: '';
  position: absolute;
  top: 4px; bottom: 4px;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(245,245,240,0.5);
}
.trust-icon.gov::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 4px; right: 4px;
  height: 2px;
  background: rgba(245,245,240,0.5);
}
/* 链条icon：双环 = 区块链存证 */
.trust-icon.chain {
  width: 28px;
  height: 28px;
}
.trust-icon.chain::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(245,245,240,0.5);
}
.trust-icon.chain::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.7;
}
/* 盾牌icon：弧+横 = 资金安全 */
.trust-icon.bank {
  border-radius: 50% 50% 4px 4px;
  border: 2px solid rgba(245,245,240,0.5);
  border-bottom-width: 3px;
  border-bottom-color: var(--accent);
}

/* ── Section通用 ──────────────────────────────────── */
.jingci-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: var(--spacing-lg);
}
.section-header .section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}
.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 40px; height: 3px;
  background: var(--accent);
}
.section-header .section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ── 产品卡片 ──────────────────────────────────── */
.products-wrapper {
  position: relative;
}
#productsGrid {
  display: grid;
  grid-template-columns: repeat(7, 220px);
  gap: var(--spacing-sm);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: var(--spacing-sm);
}
#productsGrid::-webkit-scrollbar { display: none; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm);
  transition: all 0.3s;
  cursor: pointer;
  min-width: 220px;
  text-decoration: none;
  display: block;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card .card-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 12px;
  background: var(--bg);
}
.product-card .card-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.product-card .card-name-en {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-card .card-price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}
.product-card .card-unit {
  font-size: 13px;
  color: var(--text-secondary);
}
.product-card .card-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 1px 6px;
  margin-top: 6px;
  letter-spacing: 1px;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 5;
}
.scroll-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.scroll-btn.left { left: -20px; }
.scroll-btn.right { right: -20px; }

/* ── 特色模块 ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--spacing-sm);
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 新闻模块 ──────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.news-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.news-card .news-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}
.news-card .news-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA下载区 ──────────────────────────────────── */
.jingci-cta {
  background: var(--bg-dark);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  position: relative;
}
.jingci-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.jingci-cta h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}
.jingci-cta .cta-sub {
  font-size: 15px;
  color: rgba(245,245,240,0.6);
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cta-btn {
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn.ios {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid rgba(245,245,240,0.2);
}
.cta-btn.ios:hover {
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}
.cta-btn.android {
  background: var(--accent);
  color: var(--text-light);
}
.cta-btn.android:hover {
  background: #A52E25;
  transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────── */
.jingci-footer {
  background: var(--bg-dark);
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
  border-top: 1px solid rgba(245,245,240,0.1);
}
.jingci-footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  color: rgba(245,245,240,0.5);
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 20px; height: 2px;
  background: var(--accent);
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1280px;
  margin: var(--spacing-md) auto 0;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(245,245,240,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(245,245,240,0.3);
}

/* ── 产品详情页 ──────────────────────────────────── */
.jingci-product {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-xl);
}
.product-breadcrumb {
  max-width: 1280px;
  margin: 0 auto 20px;
  font-size: 14px;
  color: var(--text-secondary);
}
.product-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
.product-breadcrumb a:hover { color: var(--accent); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-image-area {
  width: 560px; min-width: 560px; max-width: 560px;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}
.product-featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-info-area h1 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.product-title-en {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}
.product-meta-row {
  display: flex;
  gap: 12px;
  margin-bottom: var(--spacing-sm);
}
.product-category, .product-origin {
  font-size: 13px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-secondary);
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--spacing-md);
}
.product-price-lg {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.product-unit {
  font-size: 14px;
  color: var(--text-secondary);
}
.product-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}
.product-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}
.feature-badge {
  font-size: 13px;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
}
.product-specs h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table td {
  padding: 8px 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.spec-table .spec-key {
  color: var(--text-secondary);
  width: 100px;
}
.spec-table .spec-val {
  color: var(--text-primary);
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--spacing-md);
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--accent); }

/* ── 关于页 ──────────────────────────────────── */
.jingci-about {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
}
.about-hero {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--text-primary);
}
.about-hero .hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 12px;
}
.verify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}
.verify-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  position: relative;
  transition: all 0.3s;
}
.verify-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.verify-card .verify-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: absolute;
  top: var(--spacing-sm); right: var(--spacing-sm);
}
.verify-card h2 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.verify-card .verify-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.verify-card .verify-detail {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── 下载页 ──────────────────────────────────── */
.jingci-download {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
}
.download-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}
.download-phone {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 280px; height: 500px;
  border: 2px solid var(--border);
  border-radius: 40px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent);
}
.download-info h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.download-info p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}
.download-buttons {
  display: flex;
  gap: 16px;
}
.download-btn {
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.download-btn.ios {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.download-btn.ios:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.download-btn.android {
  background: var(--accent);
  color: var(--text-light);
}
.download-btn.android:hover {
  background: #A52E25;
}
.download-features {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}
.download-feature {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 下载分页按钮 ──────────────────────────────────── */
.dl-btn-group {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  color: var(--text-primary) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  min-width: 160px;
  text-align: center;
  background: var(--accent);
}
.entry-content .dl-btn,
.entry-content .dl-btn-gold,
.entry-content .dl-btn-blue,
.entry-content .dl-btn-green {
  color: var(--text-light) !important;
}
.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,56,46,0.3);
}

/* ── 分类归档页 ──────────────────────────────────── */
.jingci-archive .archive-header h1 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: var(--spacing-md);
}
.archive-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: var(--spacing-lg);
}
.archive-list { display: flex; flex-direction: column; gap: var(--spacing-md); }
.archive-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--spacing-md);
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  border: 1px solid var(--border);
}
.archive-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.archive-thumb {
  width: 180px; height: 120px;
  background: var(--accent-light);
}
.archive-info { padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 0; }
.archive-info h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.5;
}
.archive-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.archive-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── 页面通用 ──────────────────────────────────── */
.page-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: var(--spacing-lg);
}
.about-block { margin-bottom: var(--spacing-lg); }
.about-block h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.about-block p { line-height: 1.8; color: var(--text-secondary); }
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-md);
}
.about-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--spacing-md);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.about-card:hover { box-shadow: var(--shadow); }
.about-card-icon { font-size: 28px; margin-bottom: 8px; }
.about-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 6px;
}
.about-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── 参数表格 ──────────────────────────────────── */
.param-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.param-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.param-label {
  color: var(--text-secondary);
  background: rgba(200,56,46,0.03);
  font-weight: 500;
  width: 120px;
  white-space: nowrap;
}
.param-value {
  color: var(--text-primary);
  font-weight: 500;
}
.param-value a { color: var(--accent); text-decoration: none; }

/* ── 产品详情页 ──────────────────────────────────── */
.product-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 14px;
  color: var(--text-secondary);
}
.breadcrumb-inner a { color: var(--accent); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.product-detail {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: var(--spacing-lg);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}
.product-image-area {
  width: 560px;
  min-width: 560px;
  max-width: 560px;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-placeholder {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.4;
}
.product-info-area { padding-top: var(--spacing-sm); }
.product-series-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.product-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.product-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-code {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.product-code strong { color: var(--accent); font-size: 18px; }
.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.product-price-unit { font-size: 14px; color: var(--text-secondary); }
.product-price-label { font-size: 13px; color: var(--text-secondary); margin-left: auto; }
.product-summary { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.product-cta { display: flex; gap: var(--spacing-sm); flex-wrap: wrap; }
.product-cta small { font-size: 12px; opacity: 0.8; }

/* ── 交易规则列表 ──────────────────────────────────── */
.rules-list { display: flex; flex-direction: column; gap: 12px; }
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.rule-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  min-width: 24px;
}
.product-intro { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.product-intro a { color: var(--accent); text-decoration: none; }

/* ── 下载页 ──────────────────────────────────── */
.download-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}
.download-hero h1 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.dl-series { font-size: 14px; color: var(--accent); letter-spacing: 1px; margin-bottom: 8px; }
.dl-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.download-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.download-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.dl-icon { font-size: 40px; margin-bottom: 12px; }
.download-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 8px;
}
.download-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.dl-qrcode {
  width: 120px; height: 120px;
  margin: 0 auto 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── 开户流程步骤 ──────────────────────────────────── */
.steps-flow {
  display: flex;
  gap: 0;
  margin-bottom: var(--spacing-lg);
  position: relative;
}
.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 var(--spacing-sm);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.step-line {
  height: 2px;
  background: var(--border);
  margin: -12px 50% 16px;
  width: 100%;
  position: relative;
  top: -8px;
}
.step-item:last-child .step-line { display: none; }
.step-item h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 6px;
}
.step-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── 安全列表/提示 ──────────────────────────────────── */
.security-list { display: flex; flex-direction: column; gap: 10px; }
.security-item { font-size: 14px; color: var(--text-primary); padding: 10px 16px; background: rgba(200,56,46,0.03); border-radius: var(--radius); border-left: 3px solid var(--accent); }
.tips-list { display: flex; flex-direction: column; gap: 8px; }
.tip-item { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.tip-item a { color: var(--accent); text-decoration: none; }

/* ── CTA框 ──────────────────────────────────── */
.cta-box {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
}
.cta-box h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 12px;
}
.cta-box p { font-size: 15px; margin-bottom: 4px; opacity: 0.8; }
.phone-link { color: var(--accent) !important; font-size: 24px !important; font-weight: 700; opacity: 1 !important; text-decoration: none; }

/* ── 响应式 ──────────────────────────────────── */
@media (max-width: 1024px) {
  .jingci-hero h1 { font-size: 36px; }
  .jingci-hero::before { width: 50%; clip-path: polygon(30% 0, 100% 0, 100% 100%, 10% 100%); }
  .jingci-hero .hero-side-text { font-size: 80px; right: 5%; }
  .product-detail { grid-template-columns: 1fr; }
  .product-image-area { width: 100%; min-width: unset; max-width: unset; height: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .jingci-footer .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border);
    gap: 12px;
    margin-left: 0;
  }
  .nav-toggle { display: block; }
  .nav-links .has-dropdown .dropdown-menu {
    position: static;
    left: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: auto;
    background: rgba(200,56,46,0.04);
  }
  .nav-links .has-dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
  }
  .nav-links .has-dropdown > a::after {
    float: right;
    margin-top: 8px;
  }
  .jingci-hero { min-height: 400px; padding: var(--spacing-md); }
  .jingci-hero h1 { font-size: 28px; }
  .jingci-hero::before { width: 100%; opacity: 0.08; clip-path: none; }
  .jingci-hero .hero-side-text { display: none; }
  .jingci-trust .trust-inner { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
  .trust-dot { display: none; }
  .trust-item { flex: 0 0 auto; min-width: 140px; justify-content: center; }
  #productsGrid { grid-template-columns: repeat(3, 200px); }
  .news-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .jingci-footer .footer-inner { grid-template-columns: 1fr; }
  .download-hero { grid-template-columns: 1fr; }
  .phone-frame { width: 200px; height: 360px; }
  .dl-btn-group { flex-direction: column; }
  .dl-btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .jingci-hero h1 { font-size: 24px; }
  .jingci-trust .trust-inner { gap: 12px 16px; }
  .trust-item { min-width: 130px; justify-content: center; }
  .trust-item span { font-size: 12px; }
  .trust-icon { width: 22px; height: 22px; }
  #productsGrid { grid-template-columns: repeat(2, 180px); }
  .product-image-area { height: 300px; }
}
