/* ========================================
   东腾浚威石油科技 - 工业润滑油营销站
   主色: #1a3a5c  辅色: #e8530e
   ======================================== */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #1a3a5c; text-decoration: none; transition: color .2s; }
a:hover { color: #e8530e; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { color: #1a3a5c; line-height: 1.3; }
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

/* ---- Layout helpers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-gray { background: #f0f0f0; }
.section-dark { background: #1a3a5c; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: #e8530e;
}
.section-title p {
  color: #666;
  margin-top: 10px;
  font-size: .95rem;
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 0;
}
.header .container > .logo { flex-shrink: 0; margin-right: 20px; }
.header .container > .nav-list { flex: 1; min-width: 0; }
.header .container > .header-phone { flex-shrink: 0; }
.header .container > .menu-toggle { flex-shrink: 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a5c;
}
.logo span { display: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a3a5c, #e8530e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}
.logo-img {
  height: 50px;
  width: auto;
  border-radius: 4px;
}
.header-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8530e;
  white-space: nowrap;
  margin-left: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header-phone:hover {
  color: #c44408;
}
.nav-list {
  display: flex;
  gap: 6px;
}
.nav-list {
  display: flex;
  gap: 0;
}
.nav-list a {
  display: block;
  padding: 8px 12px;
  font-size: .85rem;
  color: #555;
  border-radius: 4px;
  transition: all .2s;
}
.nav-list a:hover,
.nav-list a.active {
  color: #e8530e;
  background: rgba(232,83,14,.06);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1a3a5c;
  cursor: pointer;
  padding: 4px 8px;
}

/* ========================================
   HERO BANNER
   ======================================== */
.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 60%, #1a3a5c 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232,83,14,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,83,14,.1) 0%, transparent 50%);
}
.hero h1 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.hero h1 span { color: #e8530e; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}
.hero-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
}
.hero-tags span {
  padding: 6px 16px;
  background: rgba(232,83,14,.2);
  border: 1px solid rgba(232,83,14,.4);
  border-radius: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
}
.hero-btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-primary {
  padding: 12px 32px;
  background: #e8530e;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s;
  display: inline-block;
}
.btn-primary:hover { background: #d04a09; color: #fff; }
/* 灰色背景区用橙色按钮，其他区域用白字按钮 */
.btn-secondary {
  padding: 12px 32px;
  background: #e8530e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: inline-block;
}
.btn-secondary:hover { background: #d04a09; color: #fff; }

/* ========================================
   PRODUCT GRID
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.product-card-img {
  height: 180px;
  background: linear-gradient(135deg, #1a3a5c, #2a5a8c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.product-card-img::after {
  content: '';
  position: absolute;
  right: 10px; bottom: 10px;
  width: 40px; height: 40px;
  background: rgba(232,83,14,.6);
  border-radius: 50%;
}
.product-card-body {
  padding: 20px;
}
.product-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.product-card-body p {
  color: #666;
  font-size: .9rem;
  line-height: 1.5;
}
.product-card-body .btn-link {
  display: inline-block;
  margin-top: 12px;
  color: #e8530e;
  font-size: .9rem;
  font-weight: 600;
}
.product-card-body .btn-link:hover { text-decoration: underline; }

/* ========================================
   SOLUTION / CASE CARD
   ======================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .2s;
}
.info-card:hover { transform: translateY(-3px); }
.info-card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #1a3a5c, #e8530e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.info-card h3 { margin-bottom: 10px; }
.info-card p { color: #666; font-size: .9rem; }

/* ========================================
   NEWS / ARTICLE LIST
   ======================================== */
/* ========================================
   NEWS PAGE - 参考站 jstzycf.com 版式
   ======================================== */
.news-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
}
/* 左侧栏 */
.news-sidebar {
  width: 240px;
  flex-shrink: 0;
}
.news-sidebar-title {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}
.news-sidebar-title h2 {
  font-size: 20px;
  font-weight: normal;
  color: #333;
  margin: 0;
}
.news-sidebar-title span {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  margin-left: 8px;
}
.news-sidebar-title::after {
  content: '';
  width: 53px;
  height: 2px;
  background: #e8530e;
  position: absolute;
  bottom: -1px;
  left: 0;
}
/* 分类导航 - 2列方块式 */
.news-sidebar-nav {
  margin-top: 7px;
  overflow: hidden;
  margin-bottom: 20px;
}
.news-sidebar-nav::after {
  content: '';
  display: table;
  clear: both;
}
.news-sidebar-nav a {
  display: block;
  float: left;
  width: 48%;
  line-height: 38px;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  text-align: center;
  color: #333;
  font-size: 14px;
  margin-top: 9px;
  transition: all .2s;
  text-decoration: none;
}
.news-sidebar-nav a:nth-child(2n) {
  float: right;
}
.news-sidebar-nav a:hover,
.news-sidebar-nav a.active {
  background: #e8530e;
  border-color: #e8530e;
  color: #fff;
}
/* 左侧新闻列表 */
.news-sidebar-list {
  margin-bottom: 25px;
}
.news-sidebar-list a {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}
.news-sidebar-list a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #e8530e;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 8px;
  flex-shrink: 0;
}
.news-sidebar-list a:hover {
  color: #e8530e;
}
/* 左侧联系方式 */
.news-sidebar-contact {
  margin-top: 10px;
}
.news-sidebar-contact h4 {
  font-size: .95rem;
  color: #333;
  font-weight: normal;
  margin-bottom: 10px;
}
.news-sidebar-contact p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-top: 10px;
}
.news-sidebar-contact p span { color: #e8530e; font-weight: 700; }

/* 右侧主体 */
.news-main {
  flex: 1;
  min-width: 0;
}
.news-main .local {
  border-bottom: 2px solid #e8530e;
  padding-bottom: 16px;
  font-size: 16px;
  color: #666;
}
.news-main .local a { color: #666; }
.news-list {
  margin-top: 20px;
}
/* 首页新闻列表 */
.news-item {
  background: #fff;
  padding: 18px 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.news-item-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}
.news-item h3 {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  line-height: 1.6;
  margin: 0 0 8px 0;
}
.news-item h3 a {
  color: inherit;
  text-decoration: none;
}
.news-item h3 a:hover {
  color: #e8530e;
}
.news-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.news {
  margin-top: 20px;
}
/* 新闻列表 - 动态页面兜底样式 */
.news h3 {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.6;
  padding: 16px 20px;
  margin: 0;
  border-bottom: 1px solid #ebebeb;
}
.news h3 a {
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news h3 a:hover {
  color: #e8530e;
}
.news h3 span {
  color: #999;
  font-weight: normal;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.news ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news ul li {
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
  margin-bottom: 20px;
  border-radius: 5px;
}
.news ul li:last-child { margin-bottom: 0; }
.news ul li a {
  text-decoration: none;
  color: inherit;
}
.news ul li h3 {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.6;
}
.news ul li h3 span {
  color: #999;
  font-weight: normal;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}
.news ul li p {
  color: #666;
  line-height: 1.8;
  margin-top: 12px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news ul li:hover h3 {
  color: #e8530e;
}
.news ul li:hover h3 span {
  color: #999;
}

/* Article detail */
/* ========================================
   ARTICLE DETAIL PAGE - 参考站 jstzycf.com 版式
   ======================================== */
.news-info {
  margin-top: 30px;
  overflow: hidden;
}
.info-title h1 {
  font-size: 24px;
  text-align: center;
  font-weight: normal;
  color: #333;
  line-height: 1.5;
}
.info-meta {
  color: #999;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}
.info-meta span { color: #666; }
.info-text {
  line-height: 2;
  min-height: 300px;
  margin-top: 20px;
  border-top: 1px dashed #dfdfdf;
  padding: 20px 0;
  font-size: 15px;
  color: #444;
}
.info-text h2 {
  font-size: 18px;
  color: #1a3a5c;
  margin: 24px 0 10px;
  font-weight: 600;
}
.info-text p { margin-bottom: 12px; }
.info-text ul { padding-left: 20px; margin-bottom: 12px; }
.info-text li { margin-bottom: 6px; }
.info-text img { max-width: 100%; }
.info-text strong { color: #333; }
.article-tags {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed #e8e8e8;
}
.article-tags span {
  display: inline-block;
  background: #f5f5f5;
  color: #666;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 3px;
  margin: 0 6px 6px 0;
}
/* 上一篇/下一篇 */
.fanye {
  margin-top: 30px;
  overflow: hidden;
  font-size: 14px;
}
.fanye-prev, .fanye-next {
  line-height: 2;
}
.fanye-prev b, .fanye-next b { color: #333; }
.fanye-prev a, .fanye-next a { color: #e8530e; }
.fanye-prev a:hover, .fanye-next a:hover { text-decoration: underline; }

/* ========================================
   COOPERATION / CTA
   ======================================== */
.cta-box {
  background: linear-gradient(135deg, #1a3a5c, #0d2137);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.cta-box h2 { color: #fff; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 24px; }
.cta-box .btn-primary { font-size: 1.1rem; }

.coop-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coop-item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.coop-item h3 { color: #e8530e; margin-bottom: 10px; }
.coop-item p { color: #666; font-size: .9rem; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0d1f33;
  color: rgba(255,255,255,.7);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer p { font-size: .9rem; line-height: 1.8; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .85rem; }
.footer-links-row { margin: 0 0 20px 0; line-height: 2; }
.footer-links-row a { color: rgba(255,255,255,.7); font-size: 1rem; display: inline-block; margin-right: 28px; }
.footer-links-row a:hover { color: #e8530e; }
.footer-links-row a:last-child { margin-right: 0; }
.footer ul a:hover { color: #e8530e; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-list .icon {
  width: 36px; height: 36px;
  background: rgba(26,58,92,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3a5c;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-list .text h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-info-list .text p { color: #666; font-size: .9rem; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .9rem;
  color: #555;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a3a5c;
  outline: none;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  padding: 12px 40px;
  background: #e8530e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}
.btn-submit:hover { background: #d04a09; }

/* ========================================
   ABOUT / TIMELINE
   ======================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-img-placeholder {
  height: 300px;
  background: linear-gradient(135deg, #1a3a5c, #2a5a8c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
}
.about-text p { color: #666; line-height: 1.8; margin-bottom: 16px; }

.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: #1a3a5c;
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  margin-bottom: 30px;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 30px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #e8530e;
  border-radius: 50%;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-item .content {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  max-width: 400px;
}
.timeline-item .content h4 { font-size: .9rem; }
.timeline-item .content p { color: #666; font-size: .85rem; }

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  padding: 12px 0;
  font-size: .85rem;
  color: #999;
}
.breadcrumb a { color: #666; }
.breadcrumb span { margin: 0 6px; }

/* ========================================
   PAGE HERO (sub pages)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
  color: #fff;
  padding: 50px 0 40px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: .95rem; }

/* ========================================
   ARTICLE DETAIL
   ======================================== */
.article-detail {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.article-detail h2 { margin-bottom: 16px; }
.article-meta {
  font-size: .85rem;
  color: #999;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}
.article-meta span { margin-right: 16px; }
.article-body p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.article-body h3 { margin: 24px 0 12px; color: #1a3a5c; }
.article-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-body ul li {
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}
.article-tags {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}
.article-tags span {
  padding: 4px 12px;
  background: rgba(26,58,92,.06);
  color: #1a3a5c;
  border-radius: 4px;
  font-size: .8rem;
}
.faq-section { margin-top: 32px; }
.faq-item {
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(26,58,92,.03);
  border-radius: 8px;
}
.faq-item h4 { color: #1a3a5c; font-size: .95rem; margin-bottom: 8px; }
.faq-item p { color: #666; font-size: .9rem; }

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.stat-item .num {
  font-size: 2rem;
  font-weight: 700;
  color: #e8530e;
  margin-bottom: 4px;
}
.stat-item .label {
  color: #666;
  font-size: .9rem;
}

/* ---- 全国服务区域 ---- */
.regions-section { padding: 50px 0; background: #f0f0f0; }
.regions-section .section-title h2 { color: #1a3a5c; }
.regions-section .section-title p { color: #666; margin-top: 6px; }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.region-group {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.region-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.region-group-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #e8530e;
  border-radius: 2px;
}
.region-group-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-group-links a {
  font-size: .85rem;
  color: #555;
  padding: 3px 8px;
  background: #f8f8f8;
  border-radius: 4px;
  transition: all .2s;
  text-decoration: none;
}
.region-group-links a:hover {
  color: #e8530e;
  background: #fff3eb;
}

/* ---- Footer 服务区域关键词 ---- */
.footer-regions {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer-regions h5 { color: rgba(255,255,255,.9); margin-bottom: 8px; font-size: .9rem; }
.footer-regions-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-regions-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
/* ---- 底部电话条 ---- */
.footer-phone-bar {
  background: linear-gradient(135deg, #1a3a5c, #2d5f8a);
  padding: 30px 0;
  text-align: center;
}
.footer-phone-bar h3 {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: 8px;
}
.footer-phone-bar a {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 8px 24px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 8px;
  transition: all .2s;
}
.footer-phone-bar a:hover {
  background: #e8530e;
  border-color: #e8530e;
}

/* ---- Footer 全国服务区域（参考站风格） ---- */
.service-area {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.service-area h5 {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: 10px;
}
.service-area-links {
  line-height: 2;
}
.service-area-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  margin-right: 2px;
  transition: color .2s;
}
.service-area-links a:hover { color: #e8530e; }

/* ---- 全国地域板块（参考站版式 dt/dd 灰白交替） ---- */
.area-section {
  padding: 40px 0;
  background: #fff;
}
.area-section .section-title {
  margin-bottom: 24px;
}
.area-section .section-title h2 {
  color: #1a3a5c;
}
.area-section .section-title p {
  color: #888;
  font-size: .9rem;
  margin-top: 6px;
}
.area-region-list {
  margin-top: 30px;
}
.area-region-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-region-list li {
  padding: 10px 15px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 26px;
}
.area-region-list li:nth-child(2n) {
  background: #fff;
}
.area-region-list dt {
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 15px;
}
.area-region-list dt a {
  font-size: .9rem;
  font-weight: 700;
  color: #1a3a5c;
  text-decoration: none;
}
.area-region-list dt a:hover {
  color: #e8530e;
}
.area-region-list dd {
  margin: 0;
  width: 85%;
}
.area-region-list dd a {
  display: inline-block;
  color: #666;
  margin-right: 20px;
  font-size: .82rem;
  text-decoration: none;
  line-height: 26px;
}
.area-region-list dd a:hover {
  color: #e8530e;
}
@media (max-width: 640px) {
  .area-region-list dd { width: 100%; }
  .area-region-list dd a { margin-right: 12px; font-size: .75rem; }
  .area-region-list dt a { font-size: .85rem; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .logo span { display: none; }
  .header-phone { font-size: .85rem; }
}
@media (max-width: 900px) {
  .logo span { display: none; }
  .header-phone { font-size: .85rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .news-layout { flex-direction: column; margin-top: 20px; }
  .news-sidebar { width: 100%; display: none; }
  .news ul li { padding: 12px; }
  .news ul li h3 { font-size: 13px; }
  .news ul li h3 span { font-size: 11px; }
  .news h3 { font-size: 13px; padding: 8px 14px; margin: 0 0 6px 0; }
  .news h3 span { font-size: 11px; }
  .news ul li p { font-size: 12px; margin-top: 8px; }
  .info-title h1 { font-size: 20px; }
  .info-meta { font-size: 12px; }
  .coop-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-item::before { left: 20px; }
}

@media (max-width: 640px) {
  .header .container { height: auto; min-height: 52px; padding: 8px 12px; flex-wrap: nowrap; }
  .logo { gap: 6px; font-size: .85rem; }
  .logo-img { height: 36px; width: auto; border-radius: 4px; }
  .logo span { display: none; }
  .header-phone { font-size: .8rem; margin-left: auto; margin-right: 8px; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    gap: 0;
    z-index: 999;
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: 12px 8px; border-bottom: 1px solid #f0f0f0; }
  .nav-list a:last-child { border-bottom: none; }
  .menu-toggle { display: block; flex-shrink: 0; }
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: .9rem; }
  .hero-tags { flex-wrap: wrap; }
  .hero-btns { flex-direction: column; align-items: center; }
  .product-grid { grid-template-columns: 1fr; }
  .coop-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links-row a { margin-right: 16px; font-size: .9rem; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .region-group-links { gap: 4px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 0; }
  .page-hero { padding: 35px 0 28px; }
  .page-hero h1 { font-size: 1.4rem; }
}


/* ========================================
   SITEMAP PAGE
   ======================================== */
.sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.sitemap-group {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 20px;
}
.sitemap-group h2 {
  font-size: 18px;
  color: #1a3a5c;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8530e;
}
.sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-group li {
  line-height: 2;
  font-size: 14px;
}
.sitemap-group a {
  color: #333;
  text-decoration: none;
}
.sitemap-group a:hover {
  color: #e8530e;
}
@media (max-width: 640px) {
  .sitemap { grid-template-columns: 1fr; }
}
