html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; line-height: 1.15; }
body {
  margin: 0;
  font-family: "Microsoft Yahei", PingFangSC-Regular, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: #1e293b;
  background: #FEE3E0;
  min-width: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; vertical-align: middle; border: 0; }
input, button { outline: none; font-family: inherit; }
.clearfix:after { content: ""; display: table; clear: both; }
.container { width: 1200px; margin: 0 auto; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #38191E, #E16F32);
  box-shadow: 0 2px 16px rgba(30,27,75,.35);
}
.header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
}
.site-logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #B7A32D, #F1D86D);
  color: #E16F32;
  font-weight: 800;
  font-size: 18px;
}
.site-logo-name { font-size: 17px; font-weight: 700; color: #fff; }

.hdr-nav { display: flex; align-items: center; }
.hdr-nav a {
  padding: 8px 18px;
  font-size: 14px;
  color: #cbd5e1;
  border-radius: 8px;
  transition: .15s;
}
.hdr-nav a:hover { color: #F6DE9C; background: rgba(255,255,255,.08); }
.hdr-nav a.active { color: #F6DE9C; font-weight: 600; background: rgba(240,171,252,.18); }

.hdr-auth { display: flex; align-items: center; gap: 10px; }
.hdr-auth a { font-size: 14px; color: #cbd5e1; padding: 8px 14px; border-radius: 8px; transition: .15s; }
.hdr-auth a:hover { color: #F6DE9C; }
.hdr-btn {
  color: #F6DE9C !important;
  background: rgba(240,171,252,.14);
  border: 1px solid rgba(240,171,252,.45);
}
.hdr-btn:hover { background: rgba(240,171,252,.22) !important; }
.hdr-btn-fill {
  background: linear-gradient(135deg, #B7A32D, #DD742C) !important;
  color: #fff !important;
  font-weight: 600;
}
.hdr-btn-fill:hover { box-shadow: 0 4px 16px rgba(192,38,211,.4); }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #4F2512 0%, #BE402E 55%, #E16F32 100%);
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 64px;
  min-height: 360px;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #F6DE9C, #E3A93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 17px;
  color: #FBC5CB;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; }
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #B7A32D, #DD742C);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all .25s;
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(192,38,211,.4); color: #fff; }
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: #F6DE9C;
  border: 1.5px solid rgba(240,171,252,.65);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all .25s;
}
.hero-btn-outline:hover { border-color: #F6DE9C; background: rgba(240,171,252,.12); transform: translateY(-2px); }
.hero-visual { flex-shrink: 0; width: 480px; }
.hero-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-img-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  background: #38191E;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: transform .3s;
}
.hero-img-grid img:hover { transform: scale(1.03); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #38191E;
  padding: 24px 0;
  border-top: 1px solid rgba(240,171,252,.22);
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #F6DE9C;
  margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: #94a3b8; }

/* ===== INNER HERO ===== */
.inner-hero {
  padding: 48px 0 36px;
  background: linear-gradient(135deg, #38191E, #BE402E);
  border-bottom: 1px solid rgba(240,171,252,.22);
}
.inner-hero h1 { font-size: 32px; font-weight: 700; color: #fff; margin-top: 12px; }
.inner-hero p { margin-top: 8px; color: #FBC5CB; font-size: 15px; }
.position { color: #94a3b8; font-size: 14px; }
.position a { color: #F6DE9C; font-weight: 600; }

/* ===== SECTION ===== */
.section { padding: 56px 0; }
.section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-hd h2 { font-size: 28px; color: #0f172a; font-weight: 700; }
.section-hd h2 em {
  font-style: normal;
  color: #956421;
  position: relative;
}
.more-link {
  font-size: 15px;
  color: #956421;
  font-weight: 600;
  transition: .15s;
}
.more-link:hover { color: #775C1D; }

/* ===== CATEGORY SCROLL ===== */
.cat-scroll {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}
.cat-scroll a {
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  color: #64748b;
  background: #fff;
  border: 1px solid #cbd5e1;
  transition: .15s;
}
.cat-scroll a:hover { border-color: #956421; color: #956421; }
.cat-scroll a.active { background: #E16F32; color: #fff; border-color: #E16F32; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all .25s;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,.18);
  border-color: #E16F32;
  color: inherit;
}
.product-img {
  display: block;
  position: relative;
  height: 280px;
  background: #FEE3E0;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: rgba(15,23,42,.88);
  color: #F6DE9C;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}
.product-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-summary {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  flex: 1;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.product-specs span {
  padding: 5px 12px;
  background: #FEE3E0;
  color: #E16F32;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}
.product-date { font-size: 12px; color: #94a3b8; }
.product-contact-hint { font-size: 13px; color: #956421; font-weight: 600; }
.product-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: #FEE3E0;
  border-radius: 8px;
  font-size: 13px;
  color: #334155;
}
.product-contact .contact-phone { color: #E16F32 !important; font-size: 14px !important; font-weight: 700; }

/* ===== DETAIL PAGE ===== */
.news-left { float: left; width: 780px; }
.news-right { float: right; width: 360px; }
.detail-section { padding-top: 40px; }
.news-title, .news-content, .news-exp, .news-box, .about-1, .contact-page, .auth-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.news-title { padding: 28px; margin-bottom: 20px; }
.news-title h1 { font-size: 26px; line-height: 1.4; color: #0f172a; margin-bottom: 14px; }
.news-title p { display: flex; gap: 20px; color: #94a3b8; font-size: 13px; }
.news-content { padding: 30px; line-height: 2; color: #334155; }
.news-content .summary {
  padding: 20px 24px;
  margin-bottom: 22px;
  background: #FEE3E0;
  border-left: 4px solid #E16F32;
  border-radius: 8px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
}
.news-content p { margin-bottom: 16px; font-size: 15px; }
.news-content img { display: block; max-width: 560px; width: 100%; margin: 24px auto; border-radius: 12px; }
.news-exp { margin-top: 20px; padding: 18px 24px; display: flex; justify-content: space-between; gap: 20px; }
.news-exp a { color: #64748b; font-size: 14px; }
.news-exp a:hover { color: #956421; }
.news-box .tit { padding: 18px 24px; font-weight: 700; border-bottom: 1px solid #e2e8f0; color: #0f172a; font-size: 16px; }
.side-news-list li a { display: block; padding: 16px 24px; border-bottom: 1px solid #f1f5f9; transition: .15s; }
.side-news-list li a:hover { background: #FEE3E0; }
.side-news-list strong { display: block; line-height: 1.5; color: #1e293b; font-size: 14px; }
.side-news-list span { color: #E16F32; font-size: 12px; font-weight: 500; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #64748b;
  font-size: 14px;
  transition: .15s;
}
.pagination a:hover { border-color: #956421; color: #956421; }
.pagination .active a { background: #E16F32; color: #fff; border-color: #E16F32; }

/* ===== POLICY PAGES ===== */
.about-1, .contact-page { padding: 40px; line-height: 2.2; color: #334155; }
.about-1 p { margin-bottom: 16px; font-size: 15px; }
.about-1 strong { color: #0f172a; font-size: 17px; }
.policy-contact-box {
  margin-top: 30px;
  padding: 22px 28px;
  background: #FEE3E0;
  border-left: 4px solid #E16F32;
  border-radius: 8px;
}
.policy-contact-box h3 { color: #0f172a; margin-bottom: 10px; font-size: 16px; }

/* ===== CONTACT PAGE ===== */
.contact-page h1 { font-size: 30px; margin-bottom: 16px; color: #0f172a; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.contact-card {
  padding: 28px 24px;
  background: #FEE3E0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
}
.contact-card h3 { font-size: 13px; color: #956421; margin-bottom: 12px; font-weight: 700; letter-spacing: .5px; }
.contact-card p { color: #1e293b; line-height: 1.8; font-size: 15px; }
.contact-phone { font-size: 22px !important; font-weight: 700; color: #956421 !important; }

/* ===== AUTH FORMS ===== */
.auth-section {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 80px 0;
}
.auth-card { width: 420px; padding: 40px 36px; border-radius: 16px; }
.auth-card h2 { font-size: 26px; text-align: center; color: #0f172a; margin-bottom: 6px; }
.auth-subtitle { text-align: center; color: #94a3b8; margin-bottom: 32px; font-size: 14px; }
.auth-form-group { margin-bottom: 18px; }
.auth-form-group label { display: block; margin-bottom: 8px; color: #64748b; font-size: 14px; }
.auth-form-group input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #FEE3E0;
  font-size: 15px;
  transition: border-color .2s;
}
.auth-form-group input:focus { border-color: #E16F32; background: #fff; }
.auth-submit {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #E16F32, #7D4021);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}
.auth-submit:hover { box-shadow: 0 6px 24px rgba(124,58,237,.35); }
.auth-switch { text-align: center; margin-top: 20px; color: #94a3b8; font-size: 14px; }
.auth-switch a { color: #956421; font-weight: 700; }
.auth-agreement {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #64748b;
}
.auth-agreement input[type="checkbox"] { accent-color: #E16F32; }
.auth-agreement a { color: #956421; }

/* ===== FOOTER ===== */
.footer {
  margin-top: 32px;
  background: #38191E;
  color: #cbd5e1;
  padding-top: 52px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col h4 { color: #F6DE9C; margin-bottom: 18px; font-size: 16px; font-weight: 600; }
.footer-col p, .footer-nav a { color: #94a3b8; line-height: 2.2; font-size: 14px; }
.footer-nav li { margin-bottom: 4px; }
.footer-nav a:hover { color: #F6DE9C; }
.footer-bottom { text-align: center; padding: 22px 0; color: #64748b; font-size: 13px; line-height: 2.2; }
.footer-bottom a { color: #F6DE9C; }
.footer-bottom a:hover { color: #E3A93D; }

/* ===== BACK TO TOP ===== */
.backTop {
  position: fixed;
  right: 28px;
  bottom: 40px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E16F32;
  color: #F6DE9C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(124,58,237,.35);
  transition: .25s;
  z-index: 90;
}
.backTop:hover { transform: translateY(-4px); background: #7D4021; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  body { min-width: auto; }
  .container { width: auto; padding: 0 20px; }
  .hero-grid { flex-direction: column; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-text p { max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; max-width: 480px; }
  .hero-text h1 { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .news-left, .news-right { float: none; width: auto; }
  .news-right { margin-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; gap: 32px; }
}
