/* ============================================================
   环球贸易会展 GlobalTrade 采购平台 · 中文站样式
   主题：深蓝 + 金色 商务风
   断点：768px（移动优先适配）
   ============================================================ */

:root {
  --navy-900: #0a1a33;
  --navy-800: #0e2447;
  --navy-700: #163a68;
  --navy-600: #1f4e8c;
  --blue-500: #2a6ab0;
  --blue-300: #6ea3d6;
  --gold: #d4af37;
  --gold-soft: #f0a020;
  --cream: #f6f3ea;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --text: #22314d;
  --text-soft: #5b6b85;
  --border: #e3e8f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 26, 51, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 26, 51, 0.16);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-soft); }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.35; color: var(--navy-800); }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-cream { background: var(--cream); }
.gold-text { color: var(--gold); }

/* ---------- 顶部信息条 ---------- */
.topbar { background: var(--navy-900); color: #c9d6ea; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; flex-wrap: wrap; }
.topbar a { color: #c9d6ea; }
.topbar a:hover { color: var(--gold); }
.topbar .top-links a { margin-left: 18px; }
.topbar .lang a { padding: 2px 8px; border: 1px solid rgba(212,175,55,.5); border-radius: 4px; margin-left: 8px; color: var(--gold); }

/* ---------- 导航 ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; }
.brand-name { font-weight: 800; font-size: 19px; color: var(--navy-800); line-height: 1.2; }
.brand-name small { display: block; font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 2px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a { display: block; padding: 10px 14px; color: var(--text); font-size: 15px; font-weight: 500; border-radius: 8px; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--gold-soft); background: rgba(212,175,55,.10); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy-800); cursor: pointer; padding: 4px 8px; }

/* ---------- 按钮 ---------- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 999px; font-size: 15px; font-weight: 600; border: 2px solid transparent; cursor: pointer; text-align: center; transition: all .25s; }
.btn-primary { background: var(--navy-700); color: #fff; }
.btn-primary:hover { background: var(--navy-800); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #fff; }
.btn-gold:hover { filter: brightness(1.08); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-outline-dark { border-color: var(--navy-700); color: var(--navy-700); background: transparent; }
.btn-outline-dark:hover { background: var(--navy-700); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 38px; font-size: 16px; }

/* ---------- Hero（首页，图片背景） ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url("../images/banners/banner-home.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,26,51,.82) 0%, rgba(10,26,51,.45) 55%, rgba(10,26,51,.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-tag { display: inline-block; padding: 6px 16px; border: 1px solid var(--gold); color: var(--gold); border-radius: 999px; font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; background: rgba(10,26,51,.35); }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 54px); font-weight: 800; max-width: 720px; margin-bottom: 18px; }
.hero h1 .gold-text { color: var(--gold); }
.hero p { color: #dbe6f5; font-size: clamp(15px, 2vw, 18px); max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 30px; color: var(--gold); }
.hero-stats .stat span { color: #c9d6ea; font-size: 13px; }

/* ---------- 内页 Banner（图片背景） ---------- */
.page-banner {
  position: relative;
  padding: 96px 0 84px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,51,.78), rgba(10,26,51,.55));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-banner .crumb { color: #c9d6ea; font-size: 14px; }
.page-banner .crumb a { color: var(--gold); }

/* ---------- 区块标题 ---------- */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sec-head .kicker { color: var(--gold-soft); letter-spacing: 3px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin: 8px 0 14px; }
.sec-head p { color: var(--text-soft); font-size: 15px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.sec-head-row .sec-head { text-align: left; margin: 0; }
.more-link { color: var(--navy-600); font-weight: 600; font-size: 14px; }
.more-link:hover { color: var(--gold-soft); }

/* ---------- 服务项目 ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 26px; transition: all .3s; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--gold), var(--gold-soft)); transform: scaleY(0); transition: transform .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleY(1); }
.service-card .icon { width: 62px; height: 62px; border-radius: 16px; background: rgba(31,78,140,.10); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card .icon svg { width: 34px; height: 34px; stroke: var(--navy-700); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 14px; }

/* ---------- 卡片网格 ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-700); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 20px 22px; }
.card .body h3 { font-size: 17px; margin-bottom: 8px; }
.card .body h3 a { color: var(--navy-800); }
.card .body h3 a:hover { color: var(--gold-soft); }
.card .body p { color: var(--text-soft); font-size: 13.5px; }
.card-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-soft); margin-top: 12px; }
.card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tag { display: inline-block; padding: 3px 12px; border-radius: 999px; background: rgba(212,175,55,.15); color: #a8841c; font-size: 12px; font-weight: 600; }
.tag-blue { background: rgba(31,78,140,.12); color: var(--navy-600); }
.card-foot { border-top: 1px solid var(--border); padding: 14px 22px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.card-foot .price { color: var(--gold-soft); font-weight: 800; font-size: 18px; }
.price small { font-size: 12px; color: var(--text-soft); font-weight: 400; }

/* ---------- 展会公司简介板块（首页重点） ---------- */
.about-section { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #e8eef8; position: relative; overflow: hidden; }
.about-section::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(rgba(212,175,55,.22), transparent 70%); }
.about-section .container { position: relative; z-index: 2; }
.about-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.about-intro .kicker { color: var(--gold); letter-spacing: 3px; font-size: 13px; font-weight: 700; }
.about-intro h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin: 10px 0 18px; }
.about-intro p { color: #c9d6ea; font-size: 15px; margin-bottom: 14px; }
.about-intro ul { margin: 18px 0 26px; display: grid; gap: 10px; }
.about-intro li { color: #dbe6f5; font-size: 14.5px; padding-left: 26px; position: relative; }
.about-intro li::before { content: "✔"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.35); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: all .3s; }
.about-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,.10); }
.about-stat b { display: block; font-size: clamp(30px, 4vw, 42px); color: var(--gold); font-weight: 800; line-height: 1.1; }
.about-stat span { color: #c9d6ea; font-size: 14px; }

/* ---------- 资讯图文 ---------- */
.news-card { display: flex; gap: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all .3s; }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-card .thumb { width: 260px; flex-shrink: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 16/10; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { flex: 1; display: flex; flex-direction: column; }
.news-card h3 { font-size: 18px; margin-bottom: 8px; }
.news-card p { color: var(--text-soft); font-size: 14px; flex: 1; }
.news-card .meta { font-size: 12.5px; color: var(--text-soft); margin-top: 12px; }

/* ---------- 订阅栏 ---------- */
.newsletter { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); border-radius: 20px; padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h2 { color: #fff; font-size: 26px; margin-bottom: 6px; text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.newsletter p { color: rgba(255,255,255,.92); font-size: 14px; }
.newsletter form { display: flex; gap: 10px; flex: 1; min-width: 320px; max-width: 520px; }
.newsletter input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 0; font-size: 14px; outline: none; }
.newsletter .btn { background: var(--navy-800); color: #fff; }
.newsletter .btn:hover { background: var(--navy-900); }
.form-msg { display: none; font-size: 13px; margin-top: 8px; }
.form-msg.show { display: block; }
.form-msg.ok { color: #2e7d32; }
.form-msg.err { color: #c62828; }

/* ---------- 筛选栏 ---------- */
.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 36px; }
.filter-bar form { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 14px; }
.filter-bar select, .filter-bar input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; outline: none; }
.filter-bar select:focus, .filter-bar input:focus { border-color: var(--navy-600); }
.filter-bar .btn { white-space: nowrap; }

/* ---------- 面包屑 ---------- */
.breadcrumb { font-size: 13px; color: var(--text-soft); padding: 18px 0; }
.breadcrumb a { color: var(--navy-600); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--text); }

/* ---------- 列表页顶部工具条 ---------- */
.list-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.list-toolbar .count { color: var(--text-soft); font-size: 14px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 14px; }
.pagination a:hover, .pagination a.active { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }

/* ---------- 详情页 ---------- */
.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.detail-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-bottom: 28px; }
.detail-card h2 { font-size: 24px; margin-bottom: 16px; }
.detail-card h3 { font-size: 18px; margin: 22px 0 12px; }
.detail-card p { color: var(--text-soft); font-size: 15px; margin-bottom: 12px; }
.detail-hero { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.detail-hero .img { aspect-ratio: 21/9; background: var(--navy-700); }
.detail-hero .img img { width: 100%; height: 100%; object-fit: cover; }
.detail-head { padding: 28px 34px; }
.detail-head h1 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-soft); font-size: 13.5px; margin-bottom: 16px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; }
.side-card h3 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.side-list li { padding: 12px 0; border-bottom: 1px dashed var(--border); }
.side-list li:last-child { border-bottom: 0; }
.side-list a { color: var(--text); font-size: 14px; }
.side-list a:hover { color: var(--gold-soft); }
.spec-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.spec-table td { padding: 12px 14px; border: 1px solid var(--border); font-size: 14px; }
.spec-table td:first-child { background: var(--bg-soft); font-weight: 600; color: var(--navy-800); width: 34%; }
.article-body { color: var(--text); font-size: 15.5px; }
.article-body h3 { color: var(--navy-800); margin: 24px 0 12px; }
.article-body p { margin-bottom: 14px; color: var(--text); }
.article-body img { border-radius: 10px; margin: 18px 0; }
.reserve-box { text-align: center; padding: 26px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); border-radius: var(--radius); color: #fff; margin-bottom: 24px; }
.reserve-box h3 { color: #fff; margin-bottom: 8px; }
.reserve-box p { color: #c9d6ea; font-size: 13.5px; margin-bottom: 16px; }

/* ---------- 时间线（公司简介） ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 3px; background: linear-gradient(var(--gold), var(--navy-600)); border-radius: 3px; }
.timeline-item { position: relative; padding: 0 0 28px 24px; }
.timeline-item::before { content: ""; position: absolute; left: -29px; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold); }
.timeline-item .year { color: var(--gold-soft); font-weight: 800; font-size: 17px; }
.timeline-item h4 { font-size: 17px; margin: 4px 0 6px; }
.timeline-item p { color: var(--text-soft); font-size: 14px; }

/* ---------- 公司简介页 ---------- */
.company-profile .profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.profile-card .thumb { border-radius: 10px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/9; }
.profile-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.profile-card h3 { font-size: 19px; margin-bottom: 12px; }
.profile-card p { color: var(--text-soft); font-size: 14px; }
.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 12px; }
.val-card { text-align: center; padding: 26px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.val-card .ic { font-size: 34px; margin-bottom: 10px; }
.val-card h4 { font-size: 16px; margin-bottom: 8px; }
.val-card p { color: var(--text-soft); font-size: 13px; }
.honor-list li { padding: 14px 18px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; gap: 14px; background: #fff; }
.honor-list .badge-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px; background: rgba(212,175,55,.15); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.honor-list h4 { font-size: 15px; margin-bottom: 2px; }
.honor-list p { color: var(--text-soft); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { padding: 18px 22px; font-weight: 600; color: var(--navy-800); cursor: pointer; list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--gold); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-soft); font-size: 14.5px; }

/* ---------- 表单 / 认证 ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 26px; margin-bottom: 8px; text-align: center; }
.auth-card .sub { text-align: center; color: var(--text-soft); font-size: 14px; margin-bottom: 28px; }
.auth-card .field { margin-bottom: 18px; }
.auth-card label { display: block; font-size: 14px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.auth-card input, .auth-card select, .auth-card textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; outline: none; background: #fff; transition: border .2s; }
.auth-card input:focus, .auth-card select:focus, .auth-card textarea:focus { border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(31,78,140,.10); }
.auth-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-card .btn { width: 100%; margin-top: 8px; }
.auth-card .hint { text-align: center; font-size: 13.5px; color: var(--text-soft); margin-top: 18px; }
.auth-card .hint a { color: var(--gold-soft); font-weight: 600; }
.segmented { display: flex; background: var(--bg-soft); border-radius: 12px; padding: 5px; margin-bottom: 24px; gap: 5px; }
.segmented button { flex: 1; padding: 11px; border: 0; background: transparent; border-radius: 9px; font-size: 14.5px; font-weight: 600; color: var(--text-soft); cursor: pointer; font-family: inherit; }
.segmented button.active { background: #fff; color: var(--navy-700); box-shadow: 0 2px 8px rgba(10,26,51,.10); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-size: 13px; margin: 22px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.form-msg { font-size: 13px; padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e8f5e9; color: #2e7d32; }
.form-msg.err { background: #fdecea; color: #c62828; }

/* ---------- 个人中心 ---------- */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.dash-side { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.profile-mini { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; padding: 26px; text-align: center; }
.profile-mini .avatar { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.2); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 12px; }
.profile-mini h3 { color: #fff; font-size: 17px; }
.profile-mini p { color: #c9d6ea; font-size: 13px; }
.dash-tabs { padding: 12px; display: grid; gap: 4px; }
.dash-tab { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; border: 0; background: transparent; font-size: 14.5px; font-weight: 500; color: var(--text); cursor: pointer; font-family: inherit; width: 100%; text-align: left; }
.dash-tab:hover { background: var(--bg-soft); }
.dash-tab.active { background: rgba(212,175,55,.15); color: #a8841c; font-weight: 700; }
.dash-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.dash-panel h2 { font-size: 22px; margin-bottom: 6px; }
.dash-panel .panel-sub { color: var(--text-soft); font-size: 13.5px; margin-bottom: 22px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.dash-stat { background: var(--bg-soft); border-radius: 12px; padding: 20px; }
.dash-stat b { display: block; font-size: 26px; color: var(--navy-700); }
.dash-stat span { font-size: 13px; color: var(--text-soft); }
.list-group { display: grid; gap: 12px; }
.list-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; flex-wrap: wrap; }
.list-item h4 { font-size: 15px; }
.list-item .li-meta { color: var(--text-soft); font-size: 13px; }
.list-item .badge { padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge.badge-pending { background: #fff3e0; color: #e65100; }
.badge.badge-done { background: #e8f5e9; color: #2e7d32; }
.badge.badge-news { background: #e3f2fd; color: #1565c0; }
.empty-tip { text-align: center; color: var(--text-soft); padding: 40px 0; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--navy-900); color: #aebdd4; padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-grid h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a { color: #aebdd4; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { font-size: 14px; margin-bottom: 18px; line-height: 1.8; }
.footer-contact li { display: flex; gap: 10px; }
.footer-contact li::before { content: "·"; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; text-align: center; font-size: 13px; color: #7f90a9; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; padding: 80px 22px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,.2); transition: right .35s; overflow-y: auto; z-index: 99;
  }
  .nav-list.open { right: 0; }
  .nav-list > li > a { padding: 14px 10px; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 16px; }
  .nav-actions .btn { display: none; }
  .hero { min-height: 520px; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat b { font-size: 24px; }
  .section { padding: 52px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .news-card { flex-direction: column; }
  .news-card .thumb { width: 100%; }
  .newsletter { padding: 34px 24px; }
  .newsletter form { min-width: 100%; }
  .filter-bar form { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .company-profile .profile-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; gap: 6px; padding: 6px 0; }
  .topbar .top-links { display: none; }
  .page-banner { padding: 72px 0 64px; }
}
@media (max-width: 560px) {
  .filter-bar form { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 22px; }
  .auth-card .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ---- H1 唯一性：详情/表单页内部大标题用 h2 呈现 h1 视觉 ---- */
.detail-head h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; color: var(--navy-800); font-weight: 800; }
.article-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 8px 0 14px; color: var(--navy-800); font-weight: 800; }
.p-info h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 10px; color: var(--navy-800); font-weight: 800; }
.auth-card h2 { font-size: 26px; margin-bottom: 8px; text-align: center; color: var(--navy-800); font-weight: 800; }

/* ============================================================
   模板在线录入 upload-form · 高端现代表单美化（追加，不影响 JS/结构）
   ============================================================ */

/* ---- 1. 表单卡片：圆角分层 + 顶部金色装饰 ---- */
#form-procurement, #form-company, #form-product, #form-agreement {
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 34px rgba(13,39,66,.09), 0 2px 6px rgba(13,39,66,.05);
  padding: 38px 36px 34px;
  position: relative; overflow: hidden;
}
#form-procurement::before, #form-company::before, #form-product::before, #form-agreement::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
#form-procurement h2, #form-company h2, #form-product h2, #form-agreement h2 {
  font-size: 24px; color: var(--navy-800); padding-left: 16px; position: relative;
}
#form-procurement h2::before, #form-company h2::before, #form-product h2::before, #form-agreement h2::before {
  content: ""; position: absolute; left: 0; top: 5px; bottom: 5px; width: 5px;
  border-radius: 3px; background: linear-gradient(var(--gold), var(--gold-soft));
}

/* ---- 2. 字段两列网格 ---- */
.profile-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 22px; }
.profile-form .field { margin-bottom: 18px; }

/* ---- 3. 标签：图标前缀 + 聚焦变色 + 虚线延伸 ---- */
.profile-form label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--navy-800);
  letter-spacing: .3px; margin-bottom: 9px;
}
.profile-form label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, #e6ecf2, transparent); margin-left: 6px; }
.profile-form label::before {
  content: ""; width: 17px; height: 17px; flex: 0 0 17px;
  background-color: #9db0c2;
  -webkit-mask: var(--li) no-repeat center / contain;
  mask: var(--li) no-repeat center / contain;
  transition: background-color .25s ease, transform .25s ease;
}
.profile-form .field { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%203.5h11l3%203v14H5z%22/%3E%3Cpath%20d%3D%22M8%209h8M8%2012.5h8M8%2016h5%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="company"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2021V9l6-4v16M10%205l8%204v12M4%2021h14%22/%3E%3Cpath%20d%3D%22M8%2010h.01M11%2010h.01M8%2014h.01M11%2014h.01%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="name"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%228%22%20r%3D%223.6%22/%3E%3Cpath%20d%3D%22M5%2020c.9-3.2%203.5-5%207-5s6.1%201.8%207%205%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="contact"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%228%22%20r%3D%223.6%22/%3E%3Cpath%20d%3D%22M5%2020c.9-3.2%203.5-5%207-5s6.1%201.8%207%205%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="phone"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6.5%203.5h3l1.6%204.2-2%201.6a13%2013%200%200%200%206%206l1.6-2%204.2%201.6v3a2%202%200%200%201-2.2%202A15.5%2015.5%200%200%201%204.5%205.7a2%202%200%200%201%202-2.2z%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="email"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%2218%22%20height%3D%2214%22%20rx%3D%222.5%22/%3E%3Cpath%20d%3D%22M3.5%207l8.5%206%208.5-6%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="country"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2021s-6.5-5.6-6.5-10.4a6.5%206.5%200%200%201%2013%200C18.5%2015.4%2012%2021%2012%2021z%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2210.6%22%20r%3D%222.4%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="city"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2021s-6.5-5.6-6.5-10.4a6.5%206.5%200%200%201%2013%200C18.5%2015.4%2012%2021%2012%2021z%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2210.6%22%20r%3D%222.4%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="category"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%224%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3Crect%20x%3D%2213.5%22%20y%3D%224%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3Crect%20x%3D%223.5%22%20y%3D%2213.5%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3Crect%20x%3D%2213.5%22%20y%3D%2213.5%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="products"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%224%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3Crect%20x%3D%2213.5%22%20y%3D%224%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3Crect%20x%3D%223.5%22%20y%3D%2213.5%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3Crect%20x%3D%2213.5%22%20y%3D%2213.5%22%20width%3D%227%22%20height%3D%227%22%20rx%3D%221.6%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="market"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22/%3E%3Cpath%20d%3D%22M3%2012h18M12%203c2.8%202.6%204.2%205.7%204.2%209S14.8%2018.4%2012%2021c-2.8-2.6-4.2-5.7-4.2-9S9.2%205.6%2012%203z%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="price"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203v18M16%206.2c-1-.9-2.4-1.4-4-1.4-2.5%200-4.4%201.2-4.4%203.1%200%202.4%203.4%202.9%205.3%203.7%202.1.9%204.6%202%204.6%204.2%200%201.9-2%203.2-4.6%203.2-1.6%200-3-.5-4-1.4%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="quantity"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l8%204.5v9L12%2021l-8-4.5v-9z%22/%3E%3Cpath%20d%3D%22M4%207.5l8%204.5%208-4.5M12%2012v9%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="moq"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l8%204.5v9L12%2021l-8-4.5v-9z%22/%3E%3Cpath%20d%3D%22M4%207.5l8%204.5%208-4.5M12%2012v9%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="cert"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2210%22%20r%3D%225.2%22/%3E%3Cpath%20d%3D%22M9.2%2014.6%208%2020l4-2.2L16%2020l-1.2-5.4%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="quality"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2210%22%20r%3D%225.2%22/%3E%3Cpath%20d%3D%22M9.2%2014.6%208%2020l4-2.2L16%2020l-1.2-5.4%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="credit_code"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%225.5%22%20width%3D%2218%22%20height%3D%2213%22%20rx%3D%222%22/%3E%3Cpath%20d%3D%22M7%209.5h4M7%2013.5h7%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="delivery"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22/%3E%3Cpath%20d%3D%22M12%207v5l3.2%202%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="capacity"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2021V9l6%204v-4l6%204V9h6v12z%22/%3E%3Cpath%20d%3D%22M3%2021h18M9%2017h.01M15%2017h.01%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="note"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%203.5h11l3%203v14H5z%22/%3E%3Cpath%20d%3D%22M8%209h8M8%2012.5h8M8%2016h5%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="intro"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%203.5h11l3%203v14H5z%22/%3E%3Cpath%20d%3D%22M8%209h8M8%2012.5h8M8%2016h5%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="selling"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%203.5h11l3%203v14H5z%22/%3E%3Cpath%20d%3D%22M8%209h8M8%2012.5h8M8%2016h5%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="spec"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4.5%2014.5l10-10%204.5%204.5-10%2010z%22/%3E%3Cpath%20d%3D%22M10%208.5l2%202M7.5%2011l2%202%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="model"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4.5%2014.5l10-10%204.5%204.5-10%2010z%22/%3E%3Cpath%20d%3D%22M10%208.5l2%202M7.5%2011l2%202%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="intention"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%224.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%221.2%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="supplier_type"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%224.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%221.2%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="buyer_type"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%224.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%221.2%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="coop"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%224.5%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%221.2%22/%3E%3C/svg%3E"); }
.profile-form .field:has(input[name="img"]) { --li: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223.5%22%20y%3D%224%22%20width%3D%2217%22%20height%3D%2216%22%20rx%3D%222.5%22/%3E%3Ccircle%20cx%3D%229%22%20cy%3D%229.5%22%20r%3D%221.8%22/%3E%3Cpath%20d%3D%22M4%2017l5-5%204%204%203-3%204%204%22/%3E%3C/svg%3E"); }
.profile-form .field:focus-within label::before { background-color: var(--gold-soft); transform: scale(1.1); }

/* ---- 4. 输入控件：圆角 / 浅色渐变 / 统一高度 ---- */
.profile-form input, .profile-form select, .profile-form textarea {
  width: 100%; height: 48px; padding: 11px 16px;
  border: 1px solid #dbe3ea; border-radius: 12px;
  background-color: #ffffff;
  background-image: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  background-repeat: no-repeat; background-size: 100% 100%;
  font-size: 15px; font-family: inherit; color: var(--navy-800);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .15s ease, background-color .25s ease;
}
.profile-form textarea { height: auto; min-height: 96px; padding-top: 14px; line-height: 1.6; resize: vertical; background-position: 0 0; }
.profile-form select {
  padding: 11px 42px 11px 16px;
  background-image: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%), url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M7%209.5l5%205%205-5%22/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 100% 100%, 15px 15px; background-position: 0 0, right 14px center;
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
.profile-form input:hover, .profile-form select:hover, .profile-form textarea:hover { border-color: #c3d0dc; }
.profile-form input::placeholder, .profile-form textarea::placeholder { color: #a3b2c2; opacity: 1; }

/* ---- 5. 聚焦：金色边框 + 光晕 ---- */
.profile-form input:focus, .profile-form select:focus, .profile-form textarea:focus {
  border-color: var(--gold); background-color: #fff;
  box-shadow: 0 0 0 4px rgba(212,175,55,.16), 0 6px 18px rgba(212,175,55,.10);
  transform: translateY(-1px);
}

/* ---- 6. 校验反馈（用户交互后） ---- */
.profile-form input:user-invalid, .profile-form select:user-invalid, .profile-form textarea:user-invalid {
  border-color: #d64545; background-color: #fffafa;
  box-shadow: 0 0 0 3px rgba(214,69,69,.12);
}
.profile-form input:user-valid:not(:placeholder-shown), .profile-form select:user-valid, .profile-form textarea:user-valid {
  border-color: #2e9e6b; background-color: #fbfffd;
  box-shadow: 0 0 0 3px rgba(46,158,107,.10);
}
.profile-form input:focus:user-invalid, .profile-form select:focus:user-invalid, .profile-form textarea:focus:user-invalid {
  border-color: #d64545; box-shadow: 0 0 0 4px rgba(214,69,69,.16);
}

/* ---- 7. 提交反馈消息：平滑出现 ---- */
.profile-form .form-msg:not(:empty) {
  display: block; padding: 12px 16px; border-radius: 10px;
  margin: 14px 0 0; font-size: 13.5px; font-weight: 600; line-height: 1.6;
  border: 1px solid transparent; animation: hmt-msg-in .32s ease;
}
@keyframes hmt-msg-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.profile-form .form-msg:not(:empty)[style*="color: rgb(10, 125, 51)"] { background: #eaf7f0; border-color: #bfe6d2; color: #0a7d33 !important; }
.profile-form .form-msg:not(:empty)[style*="color: rgb(192, 57, 43)"] { background: #fdeeec; border-color: #f5c9c4; color: #c0392b !important; }

/* ---- 8. 按钮：胶囊渐变 + hover ---- */
.form-nav a { border-radius: 999px; box-shadow: 0 4px 12px rgba(13,39,66,.10); transition: all .25s ease; }
.form-nav a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,.25); }
#form-procurement .btn, #form-company .btn, #form-product .btn, #form-agreement .btn { border-radius: 999px; font-weight: 700; transition: all .25s ease; }
#form-procurement .btn-gold, #form-company .btn-gold, #form-product .btn-gold, #form-agreement .btn-gold {
  background: linear-gradient(135deg, #c9a227, #f0a020); box-shadow: 0 6px 16px rgba(201,162,39,.32);
}
#form-procurement .btn-gold:hover, #form-company .btn-gold:hover, #form-product .btn-gold:hover, #form-agreement .btn-gold:hover {
  transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,162,39,.42); filter: brightness(1.05);
}
#form-procurement .btn-outline, #form-company .btn-outline, #form-product .btn-outline, #form-agreement .btn-outline {
  border-color: var(--gold); color: var(--gold-soft); background: #fff;
}
#form-procurement .btn-outline:hover, #form-company .btn-outline:hover, #form-product .btn-outline:hover, #form-agreement .btn-outline:hover {
  background: rgba(212,175,55,.08); transform: translateY(-2px);
}

/* ---- 9. 响应式 ---- */
@media (max-width: 768px) {
  .profile-form .form-row { grid-template-columns: 1fr; gap: 0; }
  #form-procurement, #form-company, #form-product, #form-agreement { padding: 26px 18px; border-radius: 16px; }
  .profile-form input, .profile-form select, .profile-form textarea { height: 46px; font-size: 16px; }
  .profile-form textarea { height: auto; min-height: 88px; }
  .form-nav { gap: 8px; }
}
