* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --teal-900:#04342C; --teal-800:#085041; --teal-600:#0F6E56; --teal-400:#1D9E75;
  --teal-200:#5DCAA5; --teal-100:#9FE1CB; --teal-50:#E1F5EE;
  --gold-800:#633806; --gold-600:#854F0B; --gold-400:#BA7517; --gold-200:#EF9F27;
  --gold-100:#FAC775; --gold-50:#FAEEDA;
  --gray-900:#2C2C2A; --gray-800:#444441; --gray-600:#5F5E5A; --gray-400:#888780;
  --gray-200:#B4B2A9; --gray-100:#D3D1C7; --gray-50:#F1EFE8;
  --white:#FFF; --bg:#F8F8F6;
  --bg-page:#F4F5F7;
  --amber-600:#D97706;
  --danger-bg:#FCEBEB; --danger-text:#A32D2D;
  --success-bg:#E8F5E9; --success-text:#2D7A2D;
  --warning-bg:#FFF7E6; --warning-text:#874D00;
}
body { font-family:"PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif; color:var(--gray-900); background:var(--bg); line-height:1.6; font-size:15px; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
h1,h2,h3,h4 { font-weight:600; line-height:1.35; }
.text-muted { color:var(--gray-600); }
.tag { display:inline-block; font-size:13px; padding:5px 16px; border-radius:24px; background:var(--gold-50); color:var(--gold-600); letter-spacing:1px; margin-bottom:16px; }
.sec-title { font-size:32px; font-weight:600; margin-bottom:12px; }
.sec-sub { font-size:16px; color:var(--gray-600); max-width:640px; margin:0 auto; }
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 28px; border-radius:8px; font-size:15px; font-weight:500; border:none; cursor:pointer; transition:all .25s; font-family:inherit; }
.btn-gold { background:var(--gold-400); color:#fff; }
.btn-gold:hover { background:var(--gold-600); transform:translateY(-1px); }
.btn-teal { background:var(--teal-800); color:#fff; }
.btn-teal:hover { background:var(--teal-900); transform:translateY(-1px); }
.btn-outline { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.08); }
.btn-outline-dark { background:transparent; color:var(--teal-800); border:1.5px solid var(--gray-100); }
.btn-outline-dark:hover { border-color:var(--teal-600); color:var(--teal-600); }

/* Header */
.header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--gray-100); }
.nav { display:flex; align-items:center; justify-content:space-between; height:72px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand-logo { width:42px; height:42px; border-radius:10px; background:var(--teal-800); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.brand-logo-img { width:42px; height:42px; border-radius:10px; object-fit:contain; flex-shrink:0; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,0.05); }
.footer .brand-logo-img { background:transparent; box-shadow:none; }
.brand-name { font-size:18px; font-weight:600; letter-spacing:1px; }
.brand-en { font-size:10px; color:var(--gray-400); letter-spacing:2.5px; text-transform:uppercase; }
.nav-menu { display:flex; align-items:center; gap:32px; }
.nav-link { font-size:15px; color:var(--gray-800); transition:color .2s; position:relative; }
.nav-link:hover { color:var(--teal-600); }
.nav-link.active { color:var(--teal-600); font-weight:500; }
.nav-link.active::after { content:""; position:absolute; bottom:-24px; left:0; right:0; height:2px; background:var(--teal-600); }
.nav-actions { display:flex; align-items:center; gap:16px; }
.nav-phone { display:flex; align-items:center; gap:8px; font-size:16px; font-weight:600; color:var(--teal-800); }

/* Hero */
.hero { background:var(--teal-800); position:relative; overflow:hidden; padding:100px 0 90px; }
.hero::before { content:""; position:absolute; right:-80px; top:-80px; width:400px; height:400px; border-radius:50%; background:rgba(159,225,203,.06); }
.hero::after { content:""; position:absolute; right:120px; bottom:-100px; width:280px; height:280px; border-radius:50%; background:rgba(159,225,203,.04); }
.hero-inner { position:relative; z-index:1; display:grid; grid-template-columns:1.2fr 1fr; gap:60px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:6px; font-size:13px; padding:6px 16px; border-radius:24px; background:rgba(255,255,255,.1); color:var(--teal-100); margin-bottom:24px; }
.hero h1 { color:#fff; font-size:44px; font-weight:700; line-height:1.3; margin-bottom:20px; }
.hero h1 .hl { color:var(--gold-100); }
.hero-desc { font-size:17px; color:rgba(255,255,255,.72); line-height:1.8; margin-bottom:36px; max-width:540px; }
.hero-actions { display:flex; gap:16px; margin-bottom:48px; }
.hero-stats { display:flex; gap:40px; }
.hero-stat-num { font-size:32px; font-weight:700; color:#fff; }
.hero-stat-num .u { font-size:16px; color:var(--teal-100); font-weight:500; }
.hero-stat-label { font-size:13px; color:rgba(255,255,255,.55); margin-top:4px; }

.hero-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:32px; backdrop-filter:blur(10px); }
.hero-card-title { font-size:15px; color:var(--teal-100); margin-bottom:20px; font-weight:500; }
.hero-card-item { display:flex; align-items:flex-start; gap:12px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.hero-card-item:last-child { border-bottom:none; }
.hero-card-icon { width:32px; height:32px; border-radius:8px; background:rgba(159,225,203,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-card-text { color:rgba(255,255,255,.85); font-size:14px; }
.hero-card-text strong { display:block; color:#fff; font-weight:500; margin-bottom:2px; }

/* Market */
.market { background:#fff; }
.market-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; }
.market-card { text-align:center; padding:32px 20px; border-radius:16px; background:var(--bg); transition:all .25s; }
.market-card:hover { background:var(--teal-50); transform:translateY(-4px); }
.market-num { font-size:40px; font-weight:700; color:var(--teal-800); line-height:1; }
.market-num .u { font-size:18px; color:var(--teal-400); font-weight:500; }
.market-label { font-size:14px; color:var(--gray-600); margin-top:12px; }

/* Services */
.services { background:var(--bg); }
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:48px; }
.service-card { background:#fff; border:1px solid var(--gray-100); border-radius:16px; padding:36px; transition:all .3s; position:relative; overflow:hidden; }
.service-card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--teal-600); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.service-card:hover { border-color:var(--teal-100); box-shadow:0 8px 32px rgba(8,80,65,.08); transform:translateY(-2px); }
.service-card:hover::before { transform:scaleX(1); }
.service-card.featured::before { transform:scaleX(1); background:var(--gold-400); }
.service-card.featured { border-color:var(--gold-100); }
.service-head { display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.service-icon { width:52px; height:52px; border-radius:12px; background:var(--teal-50); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.service-card.featured .service-icon { background:var(--gold-50); }
.service-num { font-size:13px; color:var(--gray-400); font-weight:500; letter-spacing:1px; }
.service-title { font-size:20px; font-weight:600; }
.service-desc { font-size:14px; color:var(--gray-600); line-height:1.8; margin-bottom:20px; }
.service-features { display:flex; flex-wrap:wrap; gap:8px; }
.service-feature { font-size:12px; padding:4px 12px; border-radius:16px; background:var(--bg); color:var(--gray-600); }
.service-card.featured .service-feature { background:var(--gold-50); color:var(--gold-600); }

/* Advantages */
.advantages { background:#fff; }
.adv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:48px; }
.adv-card { text-align:center; padding:40px 28px; border-radius:16px; border:1px solid var(--gray-100); transition:all .25s; }
.adv-card:hover { border-color:var(--teal-100); background:var(--teal-50); }
.adv-icon { width:64px; height:64px; border-radius:16px; background:var(--teal-800); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.adv-title { font-size:20px; font-weight:600; margin-bottom:12px; }
.adv-desc { font-size:14px; color:var(--gray-600); line-height:1.8; }

/* Process */
.process { background:var(--bg); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; position:relative; }
.process-step { text-align:center; position:relative; }
.process-step-num { width:56px; height:56px; border-radius:50%; background:var(--teal-800); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:700; margin:0 auto 20px; position:relative; z-index:1; }
.process-step:nth-child(even) .process-step-num { background:var(--gold-400); }
.process-step-title { font-size:17px; font-weight:600; margin-bottom:8px; }
.process-step-desc { font-size:13px; color:var(--gray-600); line-height:1.7; padding:0 8px; }

/* Coverage */
.coverage { background:var(--teal-800); position:relative; overflow:hidden; }
.coverage::before { content:""; position:absolute; left:-60px; bottom:-60px; width:300px; height:300px; border-radius:50%; background:rgba(159,225,203,.05); }
.coverage-inner { position:relative; z-index:1; }
.coverage .tag { background:rgba(255,255,255,.1); color:var(--teal-100); }
.coverage .sec-title { color:#fff; }
.coverage .sec-sub { color:rgba(255,255,255,.65); }
.coverage-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.coverage-stat { text-align:center; padding:32px; border-radius:16px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); }
.coverage-stat-num { font-size:48px; font-weight:700; color:var(--gold-100); line-height:1; }
.coverage-stat-label { font-size:15px; color:rgba(255,255,255,.7); margin-top:12px; }
.city-grid { margin-top:40px; padding:32px; border-radius:16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); }
.city-grid-title { font-size:14px; color:var(--teal-100); margin-bottom:20px; font-weight:500; }
.city-tags { display:flex; flex-wrap:wrap; gap:10px; }
.city-tag { font-size:13px; padding:6px 14px; border-radius:20px; background:rgba(255,255,255,.06); color:rgba(255,255,255,.6); transition:all .2s; }
.city-tag:hover { background:rgba(186,117,23,.2); color:var(--gold-100); }
.city-more { font-size:13px; color:var(--gold-100); padding:6px 14px; }

/* Cases */
.cases { background:#fff; }
.cases-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.case-card { border:1px solid var(--gray-100); border-radius:16px; overflow:hidden; transition:all .25s; }
.case-card:hover { border-color:var(--teal-100); box-shadow:0 8px 32px rgba(8,80,65,.06); transform:translateY(-2px); }
.case-image { height:160px; background:var(--teal-50); display:flex; align-items:center; justify-content:center; position:relative; }
.case-image-ph { font-size:14px; color:var(--teal-400); }
.case-tag { position:absolute; top:12px; left:12px; font-size:12px; padding:4px 12px; border-radius:16px; background:rgba(255,255,255,.9); color:var(--teal-600); font-weight:500; }
.case-body { padding:24px; }
.case-title { font-size:17px; font-weight:600; margin-bottom:8px; }
.case-desc { font-size:13px; color:var(--gray-600); line-height:1.7; margin-bottom:16px; }
.case-meta { display:flex; gap:16px; font-size:12px; color:var(--gray-400); padding-top:16px; border-top:1px solid var(--gray-50); }

/* CTA */
.cta-banner { background:var(--teal-900); padding:64px 0; position:relative; overflow:hidden; }
.cta-banner::before { content:""; position:absolute; right:-100px; top:-100px; width:350px; height:350px; border-radius:50%; background:rgba(186,117,23,.06); }
.cta-inner { display:flex; align-items:center; justify-content:space-between; position:relative; z-index:1; }
.cta-text h2 { color:#fff; font-size:28px; margin-bottom:8px; }
.cta-text p { color:rgba(255,255,255,.6); font-size:15px; }
.cta-actions { display:flex; align-items:center; gap:24px; }
.cta-phone-label { font-size:12px; color:rgba(255,255,255,.4); text-align:right; }
.cta-phone { font-size:28px; font-weight:700; color:#fff; line-height:1.2; }

/* Footer */
.footer { background:var(--gray-900); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.06); }
.footer-brand .brand-name { color:#fff; }
.footer-brand .brand-en { color:var(--gray-600); }
.footer-desc { font-size:13px; color:var(--gray-400); line-height:1.8; margin-top:16px; max-width:320px; }
.footer-contact-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--gray-400); margin-bottom:8px; }
.footer-contact-item strong { color:var(--gray-200); font-weight:500; }
.footer-col-title { font-size:15px; font-weight:500; color:#fff; margin-bottom:20px; }
.footer-col ul li { margin-bottom:12px; }
.footer-col ul li a { font-size:13px; color:var(--gray-400); transition:color .2s; }
.footer-col ul li a:hover { color:var(--teal-100); }
.footer-bottom { padding:24px 0; text-align:center; font-size:12px; color:var(--gray-600); }
.footer-bottom a { color:var(--gray-600); }
.footer-bottom a:hover { color:var(--gray-400); }
.footer-links { padding:16px 0; text-align:center; font-size:13px; color:var(--gray-600); border-top:1px solid rgba(255,255,255,.06); }
.footer-links-title { color:var(--gray-400); margin-right:8px; }
.footer-links a { color:var(--gray-600); margin:0 8px; text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--gold-400); }

/* Responsive */
@media (max-width:968px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero h1 { font-size:32px; }
  .market-grid, .services-grid, .adv-grid, .process-steps, .cases-grid, .coverage-stats { grid-template-columns:1fr 1fr; }
  .cta-inner { flex-direction:column; gap:24px; text-align:center; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .nav-menu { display:none; }
}
@media (max-width:600px) {
  .market-grid, .services-grid, .adv-grid, .process-steps, .cases-grid, .coverage-stats, .footer-grid { grid-template-columns:1fr; }
  .hero-stats { flex-wrap:wrap; gap:20px; }
  .sec-title { font-size:24px; }
  .section { padding:56px 0; }
}

/* ================================
   Pagination
================================ */
.pagination { display:flex; justify-content:center; gap:8px; margin-top:40px; }
.pagination a, .pagination span {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:36px; height:36px; padding:0 12px;
  border:1px solid var(--gray-100); border-radius:8px;
  font-size:14px; color:var(--gray-600); transition:all .2s;
}
.pagination a:hover { border-color:var(--teal-600); color:var(--teal-600); }
.pagination .active { background:var(--teal-800); color:#fff; border-color:var(--teal-800); }

/* ================================
   Article List & Detail
================================ */
.news-list { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:48px; }
.news-card { display:flex; gap:20px; background:#fff; border:1px solid var(--gray-100); border-radius:16px; padding:24px; transition:all .25s; }
.news-card:hover { border-color:var(--teal-100); box-shadow:0 8px 32px rgba(8,80,65,.06); transform:translateY(-2px); }
.news-card-cover { width:160px; height:110px; border-radius:10px; background:var(--teal-50); flex-shrink:0; }
.news-card-body h3 { font-size:17px; font-weight:600; margin-bottom:8px; }
.news-card-body h3 a { color:var(--gray-900); transition:color .2s; }
.news-card-body h3 a:hover { color:var(--teal-600); }
.news-card-desc { font-size:13px; color:var(--gray-600); line-height:1.6; margin-bottom:12px; }
.news-card-meta { font-size:12px; color:var(--gray-400); display:flex; gap:16px; }

.article-detail { background:#fff; border-radius:16px; padding:48px; margin-top:48px; }
.article-detail h1 { font-size:28px; font-weight:700; margin-bottom:16px; }
.article-meta { display:flex; gap:24px; font-size:13px; color:var(--gray-400); padding-bottom:24px; border-bottom:1px solid var(--gray-50); margin-bottom:32px; }
.article-content { font-size:16px; line-height:1.9; color:var(--gray-800); }
.article-content p { margin-bottom:20px; }
.article-content h2 { font-size:22px; margin:32px 0 16px; }
.article-content h3 { font-size:18px; margin:24px 0 12px; }
.article-content img { border-radius:12px; margin:20px 0; }
.article-content ul, .article-content ol { margin:16px 0 16px 24px; }
.article-content li { margin-bottom:8px; }

/* ================================
   City Page
================================ */
.city-hero { background:var(--teal-800); padding:60px 0; position:relative; overflow:hidden; }
.city-hero::before { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background:rgba(159,225,203,.06); }
.city-hero h1 { color:#fff; font-size:32px; margin-bottom:12px; position:relative; z-index:1; }
.city-hero p { color:rgba(255,255,255,.7); font-size:15px; max-width:600px; position:relative; z-index:1; }
.city-hero-inner { display:grid; grid-template-columns:1fr auto; gap:48px; align-items:center; position:relative; z-index:1; }
.city-hero-left .hero-badge { display:inline-block; background:rgba(186,117,23,.2); color:#F0C674; padding:6px 16px; border-radius:24px; font-size:13px; margin-bottom:20px; }
.city-hero-left .hero-actions { margin-bottom:0; }
.city-hero-stats { display:flex; flex-direction:column; gap:32px; }
.city-hero-stats > div { text-align:center; }
.city-content { display:grid; grid-template-columns:1fr 320px; gap:32px; margin-top:48px; }
.city-main h2 { font-size:22px; margin-bottom:20px; }
.city-sidebar h3 { font-size:16px; margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--teal-600); }
.city-sidebar-box { background:#fff; border:1px solid var(--gray-100); border-radius:12px; padding:20px; margin-bottom:24px; }
.city-sidebar-item { display:block; padding:10px 0; border-bottom:1px solid var(--gray-50); font-size:14px; color:var(--gray-600); transition:color .2s; }
.city-sidebar-item:hover { color:var(--teal-600); }
.city-sidebar-item:last-child { border-bottom:none; }

/* ================================
   H5 Posts (Mobile-first)
================================ */
.h5-page { max-width:640px; margin:0 auto; background:#f5f5f5; min-height:100vh; }
.h5-header { background:var(--teal-800); color:#fff; padding:16px; position:sticky; top:0; z-index:50; display:flex; align-items:center; justify-content:space-between; }
.h5-header h1 { font-size:18px; font-weight:600; }
.h5-header a { color:#fff; font-size:14px; }
.h5-post-list { padding:12px; }
.h5-post-card { background:#fff; border-radius:12px; padding:16px; margin-bottom:12px; }
.h5-post-card h3 { font-size:16px; font-weight:600; margin-bottom:8px; }
.h5-post-card p { font-size:14px; color:var(--gray-600); line-height:1.6; margin-bottom:12px; }
.h5-post-meta { display:flex; justify-content:space-between; font-size:12px; color:var(--gray-400); }
.h5-post-images { display:flex; gap:8px; margin:12px 0; overflow-x:auto; }
.h5-post-images img { width:100px; height:100px; border-radius:8px; object-fit:cover; flex-shrink:0; }
.h5-user-info { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.h5-avatar { width:32px; height:32px; border-radius:50%; background:var(--teal-100); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--teal-800); font-weight:500; }
.h5-nickname { font-size:14px; font-weight:500; }

.h5-login { padding:40px 24px; text-align:center; }
.h5-login h2 { font-size:22px; margin-bottom:12px; color:var(--teal-800); }
.h5-login p { font-size:14px; color:var(--gray-600); margin-bottom:32px; }
.h5-input-group { margin-bottom:16px; text-align:left; }
.h5-input-group label { display:block; font-size:13px; color:var(--gray-600); margin-bottom:6px; }
.h5-input { width:100%; padding:12px 16px; border:1.5px solid var(--gray-100); border-radius:10px; font-size:16px; font-family:inherit; transition:border-color .2s; }
.h5-input:focus { border-color:var(--teal-600); outline:none; }
.h5-code-row { display:flex; gap:12px; }
.h5-code-row .h5-input { flex:1; }
.h5-code-btn { white-space:nowrap; padding:0 20px; border:1.5px solid var(--teal-600); border-radius:10px; background:#fff; color:var(--teal-600); font-size:14px; cursor:pointer; font-family:inherit; }
.h5-code-btn:disabled { color:var(--gray-400); border-color:var(--gray-100); cursor:not-allowed; }
.h5-submit { width:100%; padding:14px; background:var(--teal-800); color:#fff; border:none; border-radius:10px; font-size:16px; font-weight:500; cursor:pointer; font-family:inherit; margin-top:8px; }
.h5-submit:hover { background:var(--teal-900); }

.h5-publish { padding:16px; }
.h5-publish textarea { width:100%; min-height:200px; padding:12px; border:1.5px solid var(--gray-100); border-radius:10px; font-size:15px; font-family:inherit; resize:vertical; }
.h5-publish textarea:focus { border-color:var(--teal-600); outline:none; }
.h5-fab { position:fixed; bottom:80px; right:20px; width:52px; height:52px; border-radius:50%; background:var(--gold-400); color:#fff; display:flex; align-items:center; justify-content:center; font-size:28px; border:none; cursor:pointer; box-shadow:0 4px 16px rgba(186,117,23,.3); z-index:40; }
.h5-tabbar { position:fixed; bottom:0; left:0; right:0; max-width:640px; margin:0 auto; background:#fff; border-top:1px solid var(--gray-100); display:flex; z-index:50; }
.h5-tabbar a { flex:1; text-align:center; padding:10px 0; font-size:12px; color:var(--gray-400); }
.h5-tabbar a.active { color:var(--teal-600); }
.h5-tabbar svg { display:block; margin:0 auto 2px; }

/* ================================
   Admin Panel
================================ */
.admin-layout { min-height:100vh; }
.admin-sidebar { background:var(--gray-900); padding:20px 0; position:fixed; width:220px; height:100vh; overflow-y:auto; z-index:100; }
.admin-sidebar-brand { padding:0 24px 24px; border-bottom:1px solid rgba(255,255,255,.06); }
.admin-sidebar-brand .brand-name { color:#fff; font-size:16px; }
.admin-sidebar-menu { padding-top:16px; }
.admin-sidebar-menu a { display:flex; align-items:center; gap:10px; padding:12px 24px; font-size:14px; color:var(--gray-400); transition:all .2s; }
.admin-sidebar-menu a:hover, .admin-sidebar-menu a.active { background:rgba(255,255,255,.06); color:#fff; }
.admin-main { margin-left:220px; padding:24px; background:var(--bg-page); }
.admin-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.admin-header h1 { font-size:22px; }
.admin-card { background:#fff; border:1px solid var(--gray-100); border-radius:12px; padding:24px; margin-bottom:20px; }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { text-align:left; padding:12px; font-size:13px; color:var(--gray-600); border-bottom:1px solid var(--gray-100); font-weight:500; }
.admin-table td { padding:12px; font-size:14px; border-bottom:1px solid var(--gray-50); }
.admin-table tr:hover { background:var(--bg-page); }
.admin-badge { display:inline-block; font-size:12px; padding:2px 10px; border-radius:12px; }
.admin-badge-success { background:var(--teal-50); color:var(--teal-600); }
.admin-badge-warning { background:var(--gold-50); color:var(--gold-600); }
.admin-badge-danger { background:#FCEBEB; color:#A32D2D; }
.admin-form-group { margin-bottom:16px; }
.admin-form-group label { display:block; font-size:14px; color:var(--gray-600); margin-bottom:6px; }
.admin-form-group input, .admin-form-group textarea, .admin-form-group select {
  width:100%; padding:10px 14px; border:1.5px solid var(--gray-100); border-radius:8px; font-size:14px; font-family:inherit;
}
.admin-form-group input:focus, .admin-form-group textarea:focus, .admin-form-group select:focus { border-color:var(--teal-600); outline:none; }
.admin-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:24px; }
.admin-stat-card { background:#fff; border:1px solid var(--gray-100); border-radius:12px; padding:20px; }
.admin-stat-num { font-size:28px; font-weight:700; color:var(--teal-800); }
.admin-stat-label { font-size:13px; color:var(--gray-600); margin-top:4px; }
.admin-btn { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; border-radius:6px; font-size:13px; border:none; cursor:pointer; font-family:inherit; transition:all .2s; }
.admin-btn-primary { background:var(--teal-800); color:#fff; }
.admin-btn-primary:hover { background:var(--teal-900); }
.admin-btn-gold { background:var(--gold-400); color:#fff; }
.admin-btn-outline { background:#fff; border:1px solid var(--gray-100); color:var(--gray-600); }
.admin-btn-outline:hover { border-color:var(--teal-600); color:var(--teal-600); }
.admin-btn-danger { background:var(--danger-bg); color:var(--danger-text); }
.admin-btn-danger:hover { background:#F5D8D8; }
.admin-sidebar-divider { height:1px; background:rgba(255,255,255,.06); margin:12px 24px; }
.admin-topbar { display:flex; align-items:center; gap:16px; margin-bottom:24px; }
.admin-topbar h1 { font-size:22px; }
.admin-menu-toggle { display:none; background:none; border:none; cursor:pointer; color:var(--gray-600); padding:8px; border-radius:6px; }
.admin-menu-toggle:hover { background:var(--bg-page); }
.admin-content { min-height:calc(100vh - 80px); }
.admin-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:99; }
/* 通用区域标题 */
.admin-section-title { font-size:16px; font-weight:600; margin-bottom:16px; display:flex; align-items:center; gap:8px; }
/* 表格响应式包裹 */
.admin-table-wrap { overflow-x:auto; }
/* 通用提示框 */
.admin-alert { padding:10px 14px; border-radius:8px; margin-bottom:16px; font-size:14px; }
.admin-alert-success { background:var(--teal-50); color:var(--teal-600); }
.admin-alert-danger { background:var(--danger-bg); color:var(--danger-text); }
.admin-alert-warning { background:var(--warning-bg); color:var(--warning-text); border:1px solid #FFD666; }
/* 页面顶部操作栏 */
.admin-toolbar { display:flex; gap:12px; align-items:center; margin-bottom:16px; flex-wrap:wrap; }
/* 表单按钮区 */
.admin-form-actions { display:flex; gap:12px; margin-top:16px; }

@media (max-width:968px) {
  .news-list { grid-template-columns:1fr; }
  .city-content { grid-template-columns:1fr; }
  .city-hero-inner { grid-template-columns:1fr; gap:32px; }
  .city-hero-stats { flex-direction:row; justify-content:center; flex-wrap:wrap; gap:24px; }
  .article-detail { padding:24px; }
  .admin-sidebar { display:none; }
  .admin-sidebar.open { display:block; }
  .admin-main { margin-left:0; }
  .admin-stats { grid-template-columns:1fr 1fr; }
  .admin-menu-toggle { display:flex; }
  .admin-topbar h1 { font-size:18px; }
  .admin-card { padding:16px; }
  .admin-main { padding:16px; }
}

@media (max-width:640px) {
  .admin-stats { grid-template-columns:1fr; }
  .admin-toolbar { flex-direction:column; align-items:stretch; }
  .admin-toolbar .admin-btn { width:100%; justify-content:center; }
}
