/* 普瑞思家居 — 严格按设计稿一比一还原 */
:root {
  --navy: #1e3a6e;
  --navy-deep: #1a3260;
  --peach: #f0d4b0;
  --peach-line: #d4b48c;
  --gold: #c9a063;
  --ink: #222222;
  --ink-soft: #444444;
  --body: #666666;
  --muted: #999999;
  --line: #e5e5e5;
  --bg-gray: #f0f0f0;
  --bg-soft: #faf7f2;
  --white: #ffffff;
  --footer-bg: #1c1c1c;
  --copyright-bg: #2a2a2a;
  --container: 1200px;
  --header-h: 72px;
  --font-cn: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-en: "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-cn);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; border: 0; }
/* AI 生图占位图：容器尺寸不变，图片放大 7% */
.ai-img { transform: scale(1.07); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font-family: inherit; }

.container {
  width: var(--container);
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
  flex-shrink: 0;
}
.logo-mark {
  height: 36px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.logo-cn {
  font-family: "STKaiti", "KaiTi", "华文楷体", "SimSun", serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 4px;
}
.logo-en {
  margin-top: 2px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 6px;
  color: #333;
  text-transform: uppercase;
}
.logo-en::before,
.logo-en::after {
  content: "—";
  letter-spacing: 0;
  margin: 0 2px;
  font-size: 10px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 15px;
  color: #333;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.nav a:hover,
.nav a.active { color: var(--navy); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--navy);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
}
/* ========== Language Toggle ========== */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
  margin-right: 12px;
}
.lang-toggle:hover {
  background: var(--navy);
  color: #fff;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  height: clamp(360px, 42vw, 520px);
  background: #0d1b33 url("../images/page/poster1.jpg") center center / cover no-repeat;
  overflow: hidden;
}
/* ========== Feature bar ========== */
.features-wrap {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.features {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 10px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-text .zh {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.feature-text .en {
  margin-top: 4px;
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--muted);
  line-height: 1.35;
  letter-spacing: 0.2px;
}

/* ========== Section title ========== */
.section-title {
  text-align: center;
  padding: 56px 0 36px;
}
.section-title .zh {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 2px;
}
.section-title .zh::before {
  content: "/";
  color: var(--ink);
  font-weight: 300;
  font-size: 28px;
  margin-right: 12px;
  opacity: 0.85;
}
.section-title .en {
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 2px;
}
.section-title .en::after {
  content: "/";
  font-weight: 300;
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.65;
}

/* ========== Brand ========== */
.brand {
  padding: 48px 0 60px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,252,248,0.88) 100%),
    url("../images/banner/3.jpg") center / cover no-repeat;
}
.brand-top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.brand-heading .cn {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 2px;
}
.brand-heading .en {
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: 16px;
  color: #777;
  letter-spacing: 1px;
}
.brand-heading .rule {
  width: 48px;
  height: 2px;
  background: #333;
  margin-top: 22px;
}
.brand-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 2;
  text-align: justify;
}
.brand-more {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 1px;
}
.brand-more:hover { color: var(--navy); }
.brand-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* 图框比例与素材原生尺寸一致，避免 object-fit 拉伸放大导致发虚 */
.brand-photos figure {
  overflow: hidden;
  background: #e8e0d6;
  aspect-ratio: 4 / 3;
  margin: 0;
}
.brand-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.brand-photos figure:hover img { transform: scale(1); }

/* ========== Korea Export ========== */
/* 与新闻卡同款灰框白卡语言，融入全站浅色系 */
.export {
  background: #fff;
  padding-bottom: 60px;
}
.export-card {
  background: var(--bg-gray);
  padding: 22px;
}
.export-inner {
  background: #fff;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 44px;
  align-items: center;
  padding: 40px 48px;
}
.export-media {
  overflow: hidden;
  aspect-ratio: 420 / 260;
}
.export-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.export-card:hover .export-media img { transform: scale(1.02); }
.export-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.export-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--body);
  text-align: justify;
  margin-bottom: 24px;
}
.export-stats {
  display: flex;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.export-stats .stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.export-stats .stat + .stat {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.export-stats .num {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.export-stats .label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
}
.export .btn-more { margin-top: 36px; }

/* ========== Products ========== */
.products {
  background: var(--bg-gray);
  padding-bottom: 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  aspect-ratio: 386 / 260;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.product-card:hover img { transform: scale(1); }
.btn-more {
  display: block;
  width: 400px;
  max-width: 90%;
  margin: 44px auto 0;
  padding: 13px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
  background: var(--white);
  border: 1px solid #ddd;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .2s;
}
.btn-more:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ========== EVEA ========== */
.evea {
  position: relative;
  height: 240px;
  background: #1a1510 url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Dark%20moody%20photorealistic%20close-up%20of%20a%20bed%20with%20gray%20pillows%20and%20rumpled%20white%20duvet%2C%20wooden%20bed%20frame%20posts%2C%20warm%20dim%20lighting%2C%20cinematic%20dark%20bedroom&image_size=landscape_16_9") center center / cover no-repeat;
  overflow: hidden;
}
.evea::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, transparent 75%);
}
.evea-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--container);
  max-width: calc(100% - 40px);
  margin: 0 auto;
  color: #f5e6d3;
  padding-left: 40px;
}
.evea-logo {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #f0e0c8;
  margin-bottom: 6px;
}
.evea-cn {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 6px;
  color: #f5e6d3;
}
.evea-en {
  margin-top: 10px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 4px;
  color: #e8d8c0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(240,224,200,0.45);
  display: inline-block;
  width: fit-content;
}
.evea-sub {
  margin-top: 12px;
  font-size: 14px;
  color: #f0e6d8;
  letter-spacing: 2px;
}

/* ========== News ========== */
.news {
  padding-bottom: 60px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(252,248,242,0.85) 100%),
    url("../images/banner/3.jpg") center / cover no-repeat;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.news-card {
  background: var(--bg-gray);
  padding: 22px;
}
.news-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 44px;
  background: var(--white);
  padding: 40px 48px;
  align-items: center;
}
.news-card.reverse .news-card-inner {
  grid-template-columns: 1.8fr 1fr;
}
.news-card.reverse .news-media { order: 2; }
.news-card.reverse .news-text { order: 1; }
.news-media {
  overflow: hidden;
  background: transparent;
}
.news-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.news-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 16px;
}
.news-text .date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}
.news-text p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.95;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== Slogan ========== */
.slogan {
  background: linear-gradient(rgba(16,12,9,0.55), rgba(16,12,9,0.55)), url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Photorealistic%20dark%20elegant%20bedroom%2C%20white%20luxury%20mattress%20on%20a%20low%20wooden%20bed%20frame%2C%20soft%20warm%20golden%20accent%20lighting%2C%20deep%20shadows%2C%20premium%20sleep%20atmosphere%2C%20cinematic%20wide%20shot&image_size=landscape_16_9") center center / cover no-repeat #141414;
  text-align: center;
  padding: 72px 20px;
  color: var(--white);
}
.slogan h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
}
.slogan p {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}

/* ========== Footer ========== */
.site-footer {
  background: #1a1a1a url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=Photorealistic%20dark%20luxurious%20bedroom%20interior%2C%20beige%20upholstered%20bench%20at%20the%20foot%20of%20the%20bed%2C%20ornate%20carved%20dark%20wood%20paneling%2C%20tall%20window%20with%20soft%20warm%20light%20on%20the%20right%2C%20moody%20elegant%20atmosphere&image_size=landscape_16_9") center center / cover no-repeat;
  color: #fff;
  padding: 56px 0 40px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  width: var(--container);
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
.footer-brand h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.footer-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  overflow: hidden;
  max-width: 360px;
  height: 44px;
}
.footer-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 20px;
  font-size: 13px;
  color: #333;
  background: transparent;
  height: 100%;
}
.footer-search input::placeholder { color: #999; }
.footer-search button {
  width: 48px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.5px;
}
.footer-contact .row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
}
.footer-contact .label { color: rgba(255,255,255,0.9); }
.footer-contact .value { color: #fff; }
.copyright {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--container);
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.copyright a { color: rgba(255,255,255,0.7); }
.copyright a:hover { color: #fff; }

/* ========== Inner pages ========== */
.page-banner {
  height: 220px;
  background: #152238 url("../images/page/poster.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 36px;
}
.page-banner h1 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 4px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.page-body {
  padding: 48px 0 72px;
  min-height: 420px;
}
.page-body .lead {
  font-size: 14px;
  color: var(--body);
  line-height: 2;
  margin-bottom: 24px;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.page-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.page-card .cap {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}
.form-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fafafa;
  border: 1px solid var(--line);
  padding: 36px 40px;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--navy); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-submit {
  display: inline-block;
  padding: 12px 40px;
  background: var(--navy);
  color: #fff;
  border: 0;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
}
.form-submit:hover { background: var(--navy-deep); }
.contact-info {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 2.2;
  color: var(--ink-soft);
}
.contact-info strong { color: var(--ink); }

/* ========== News detail ========== */
.news-detail {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 52px;
}
.news-detail h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  text-align: center;
}
.news-detail .detail-meta {
  margin: 16px 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.detail-figure { margin: 0 0 26px; overflow: hidden; background: #f3f1ee; }
.detail-figure img { width: 100%; height: auto; display: block; }
.detail-content p {
  font-size: 15px;
  color: var(--body);
  line-height: 2.1;
  text-align: justify;
  margin-bottom: 18px;
  text-indent: 2em;
}
.detail-pager {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.detail-pager a { color: var(--navy); }
.detail-pager a:hover { text-decoration: underline; }
.detail-pager span { color: var(--muted); }
.detail-actions { text-align: center; margin-top: 28px; }
.btn-back {
  display: inline-block;
  padding: 11px 34px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
  background: #fff;
  border: 1px solid #ddd;
}
.btn-back:hover { color: var(--navy); border-color: var(--navy); }
.news-list .news-text h3 a { color: inherit; }
.news-list .news-text h3 a:hover { color: var(--navy); }

/* ========== Responsive：平板 ========== */
@media (max-width: 960px) {
  :root { --header-h: 60px; }
  .lang-toggle { width: 30px; height: 28px; font-size: 12px; margin-right: 8px; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }
  /* 首屏：压高度并把背景定位偏左，保住图内烧录的文案卡片 */
  .hero { height: 320px; background-position: 30% center; background-size: auto 100%; }
  .features-wrap { margin-top: -36px; }
  .features { grid-template-columns: 1fr 1fr; padding: 20px 6px; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-title { padding: 40px 0 26px; }
  .brand-top { grid-template-columns: 1fr; gap: 20px; }
  .brand-photos { gap: 14px; }
  .product-grid { grid-template-columns: 1fr; }
  .news-card { padding: 14px; }
  .news-card.reverse .news-card-inner,
  .news-card-inner { grid-template-columns: 1fr; gap: 22px; padding: 24px 26px; }
  .news-card.reverse .news-media,
  .news-card.reverse .news-text { order: initial; }
  .news-list { gap: 20px; }
  .evea { height: 200px; }
  .evea-inner { padding-left: 0; }
  .slogan { padding: 56px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .copyright { flex-direction: column; gap: 8px; text-align: center; }
  .page-grid { grid-template-columns: 1fr 1fr; }
  .page-banner { height: 160px; padding-bottom: 26px; }
  .page-banner h1 { font-size: 22px; }
  .page-body { padding: 32px 0 52px; }
  .news-detail { padding: 32px 28px; }
  .btn-more { margin-top: 30px; }
}

/* ========== Responsive：手机 ========== */
@media (max-width: 560px) {
  .hero { height: 210px; background-position: 20% center; }
  .features { grid-template-columns: 1fr; }
  .feature { padding: 12px 16px; }
  .section-title { padding: 30px 0 20px; }
  .section-title .zh { font-size: 19px; }
  .section-title .en { font-size: 12px; letter-spacing: 1px; }
  .brand-photos { grid-template-columns: 1fr; }
  .brand { padding-bottom: 40px; }
  .products { padding-bottom: 40px; }
  .news { padding-bottom: 40px; }
  .news-card { padding: 8px; }
  .news-card-inner { padding: 16px; gap: 16px; }
  /* 产品展示：手机双列浏览更紧凑 */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .news-text h3 { font-size: 15px; margin-bottom: 10px; }
  .news-text .date { margin-bottom: 12px; }
  .news-text p { font-size: 13px; line-height: 1.8; }
  .evea { height: 170px; }
  .evea-cn { font-size: 22px; letter-spacing: 3px; }
  .evea-en { font-size: 12px; }
  .slogan { padding: 44px 16px; }
  .slogan h2 { font-size: 20px; letter-spacing: 2px; }
  .slogan p { font-size: 12px; margin-top: 12px; }
  .page-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .page-banner { height: 120px; padding-bottom: 18px; }
  .page-banner h1 { font-size: 20px; letter-spacing: 2px; }
  .logo-cn { font-size: 22px; letter-spacing: 2px; }
  .form-box { padding: 22px 18px; }
  .news-detail { padding: 22px 16px; }
  .news-detail h1 { font-size: 19px; }
  .detail-content p { font-size: 14px; line-height: 1.95; }
  /* 输入框字号 16px，避免 iOS 聚焦时页面自动放大 */
  .form-row input,
  .form-row textarea,
  .footer-search input { font-size: 16px; }
  .contact-info { font-size: 14px; line-height: 2; }
  .copyright { font-size: 12px; }
  .btn-more { margin-top: 24px; width: 100%; max-width: 100%; }
}

/* Korea Export 响应式 */
@media (max-width: 960px) {
  .logo { gap: 8px; }
  .logo-mark { height: 28px; }
  .logo-cn { font-size: 20px; letter-spacing: 2px; }
  .export { padding-bottom: 44px; }
  .export-card { padding: 14px; }
  .export-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .export-media { aspect-ratio: 16 / 9; }
  .export-stats .num { font-size: 20px; }
  .export-stats .stat + .stat { padding-left: 16px; }
}
@media (max-width: 560px) {
  .export-text h3 { font-size: 17px; }
  .export-text p { font-size: 13px; margin-bottom: 18px; }
  .export-stats { flex-direction: column; gap: 14px; }
  .export-stats .stat + .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
