/* ===== 基础重置与变量 ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #F58220;
  --primary-dark: #D35400;
  --primary-light: #FFB800;
  --footer-bg: #071d35;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --text-sub: #94a1b9;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --border: #e0e0e0;
  --container: 1200px;
  --font: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

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

/* ===== 顶部灰色条 ===== */
.top-bar {
  background: #f8f9fa;
  font-size: 14px;
  color: #666;
  height: 36px;
  line-height: 36px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-links a {
  color: #666;
  transition: color var(--transition);
}

.top-bar-links a:hover {
  color: var(--primary);
}

/* ===== 顶栏：企业名 + 咨询电话 ===== */
.header {
  background: var(--bg);
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  font-weight: 700;
  color: #E86A10;
  line-height: 1.3;
  flex-shrink: 1;
}

.logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.header-hotline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.header-hotline:hover {
  opacity: 0.88;
}

.header-hotline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.1);
  color: var(--primary);
}

.header-hotline-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-hotline-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header-hotline-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.2;
}

.header-hotline-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* ===== 蓝色通栏导航 ===== */
.nav-bar {
  background: var(--primary);
}

.nav-bar .container {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 50px;
  margin-left: 10px;
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  height: 50px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
}

.nav-bar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 12px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

/* ===== Banner ===== */
.banner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner strong {
  color: var(--primary-dark);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.85);
}

.banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ===== 首页关于我们 ===== */
.home-about-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.home-about-bar-main {
  flex: 1;
  min-width: 0;
}

.home-about-bar-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.home-about-line {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--primary);
  flex-shrink: 0;
}

.home-about-bar-head h2,
.home-about-box-head h2,
.home-about-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  margin: 0;
}

.home-about-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

.home-about-bar-action {
  flex-shrink: 0;
}

.home-about-bar-action .btn-solid {
  padding: 8px 26px;
  font-size: 14px;
  font-weight: 500;
}

.home-about-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 56px;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  text-align: center;
  background: #fafbfc;
}

.home-about-box-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-solid {
  display: inline-block;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: background var(--transition), border-color var(--transition);
}

.btn-solid:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

/* ===== 区块标题栏 ===== */
.section-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #eef0f3;
}

.section-title-bar h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}

.link-more {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 20px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  transition: all var(--transition);
}

.link-more:hover {
  background: var(--primary);
  color: #fff;
}

.link-more--block {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 12px 40px;
  font-size: 15px;
}

.home-news-more-wrap {
  text-align: center;
  margin: 28px 0 36px;
}

.section-title-bar--solo {
  border-bottom: 2px solid #eef0f3;
}

.section-title-bar--solo h2 {
  border-left: 4px solid var(--primary);
  padding-left: 14px;
}

.home-news-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-news-row {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}

.home-news-row:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.home-news-row-img {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
}

.home-news-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-news-row:hover .home-news-row-img img {
  transform: scale(1.04);
}

.home-news-row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.home-news-row-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color var(--transition);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.home-news-row:hover h3 {
  color: var(--primary);
}

.home-news-row-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-row-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.home-news-row-meta .tag-cat {
  margin-bottom: 0;
}

.home-news-columns {
  margin-top: 25px;
}

.home-news-col-list {
  list-style: none;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  background: #fff;
  padding: 4px 20px;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.home-news-col-list li {
  border-bottom: 1px solid #f0f2f5;
  min-width: 0;
}

.home-news-col-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

.home-news-col-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  transition: background var(--transition);
  min-width: 0;
}

.home-news-col-list a:hover {
  background: #fafbfc;
}

.home-news-col-list a:hover .col-title {
  color: var(--primary);
}

.home-news-col-list .col-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  transition: color var(--transition);
}

.home-news-col-list .col-title-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news-col-list .col-title::before {
  content: "";
  flex-shrink: 0;
  width: 2px;
  height: 14px;
  background: #d5d8de;
}

.home-news-col-list .col-meta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-news-col-list time {
  font-size: 13px;
  color: var(--text-muted);
}

.home-news-col-list .col-arrow {
  font-size: 16px;
  color: var(--primary);
}

/* ===== 首页产品展示 ===== */
.section-products {
  background: #fff;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-product-item {
  display: block;
  text-align: center;
  transition: transform var(--transition);
  min-width: 0;
  overflow: hidden;
}

.home-product-item:hover {
  transform: translateY(-6px);
}

.home-product-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(7, 29, 53, 0.08);
}

.home-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-product-item:hover .home-product-img img {
  transform: scale(1.06);
}

.home-product-item h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.home-product-item:hover h3 {
  color: var(--primary);
}

.btn-section-more {
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-section-more:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== 内页 Banner ===== */
.inner-banner {
  background: #f7f8fa;
  padding: 25px 0 36px;
  position: relative;
  border-bottom: 1px solid #e8eaed;
}

.inner-banner::before,
.inner-banner::after {
  display: none;
}

.inner-banner-inner {
  position: relative;
  z-index: 1;
}

.inner-breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.inner-breadcrumb a {
  color: var(--text-light);
}

.inner-breadcrumb a:hover {
  color: var(--primary);
}

.inner-breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

.inner-banner h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 14px;
}

.inner-banner h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
}

.inner-banner p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.inner-banner--compact {
  padding: 25px 0 0;
  background: #fff;
  border-bottom: none;
}

.inner-banner--compact h1 {
  display: none;
}

.page-banner {
  background: #f6f8fb;
  padding: 28px 0;
}

.page-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-left {
  flex: none;
  width: 100%;
  text-align: center;
}

.banner-back {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 10px;
}

.banner-back:hover {
  opacity: 0.85;
}

.page-banner-left h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.page-banner-left p {
  font-size: 16px;
  color: var(--text-sub);
}

.category-strip {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #e8ecf0;
}

.category-tabs-bar {
  background: #fff;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.cat-tab {
  padding: 16px 28px;
  font-size: 15px;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  position: relative;
}

.cat-tab:hover {
  color: var(--primary);
}

.cat-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.category-strip .cat-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.category-strip .cat-pill:hover {
  background: rgba(245, 130, 32, 0.2);
  border-color: var(--primary);
  color: #fff;
}

.category-strip .cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(245, 130, 32, 0.35);
}

.category-strip .category-pills {
  justify-content: center;
}

.section-products-page {
  background: #fff;
}

.products-page .section {
  padding: 32px 0 48px;
  background: #fff;
}

.news-page .section {
  padding: 32px 0 48px;
  background: #fff;
}

.news-page {
  background: #fff;
}

.news-page .category-strip .category-pills {
  justify-content: flex-start;
}

.page-banner-right {
  flex-shrink: 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cat-pill {
  padding: 8px 22px;
  font-size: 14px;
  color: #666;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.cat-pill:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.cat-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(245, 130, 32, 0.22);
}

/* ===== 通用区块 ===== */
.section {
  padding: 50px 0;
}

.section.section-home-about {
  padding: 25px 0 40px;
  background: #fafbfc;
}

.section-news {
  background: var(--bg);
}

.section-products {
  background: var(--bg-light);
}

.section-header {
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-header-center {
  text-align: center;
  display: block;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 2px;
}

.section-header-center h2 {
  padding-left: 0;
}

.section-header-center h2::before {
  display: none;
}

.section-header p {
  font-size: 15px;
  color: var(--text-sub);
  padding-left: 16px;
}

.section-header-center p {
  padding-left: 0;
}

.section-header-link {
  font-size: 14px;
  color: var(--primary);
  white-space: nowrap;
  padding-bottom: 4px;
}

.section-header-link:hover {
  color: var(--primary-dark);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== 最新动态 ===== */
.news-featured-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.news-feature-card {
  display: block;
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: 8px;
  padding: 28px 32px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.news-feature-card:hover {
  border-color: #f5c99a;
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.08);
}

.tag-cat {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 12px;
}

.news-feature-card .tag-cat {
  background: rgba(245, 130, 32, 0.1);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.news-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.news-feature-card:hover h3 {
  color: var(--primary);
}

.news-feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.news-feature-foot time {
  font-size: 14px;
  color: var(--text-muted);
}

.news-link {
  font-size: 14px;
  color: var(--primary);
}

.news-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: 8px;
  padding: 8px 32px;
}

.news-dot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-panel-col .news-dot-item:last-child {
  border-bottom: none;
}

.news-dot-item .dot-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  color: var(--text);
  transition: color var(--transition);
}

.news-dot-item .dot-title::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.news-dot-item:hover .dot-title {
  color: var(--primary);
}

.news-dot-item time {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.news-more {
  text-align: center;
  margin-top: 32px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* ===== 产品卡片 ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(245, 130, 32, 0.12);
  transform: translateY(-4px);
}

.product-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 16px;
  text-align: center;
}

.product-info h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 15px;
  color: var(--text-muted);
}

.product-card-page {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.06);
}

.product-card-page:hover {
  box-shadow: 0 8px 28px rgba(245, 130, 32, 0.12);
}

.product-card-page .product-info {
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.product-card-page:hover .product-info {
  border-top-color: var(--primary);
}

.product-card-page .product-info {
  text-align: left;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-page .product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.product-card-page .product-title-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.product-card-page .product-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 10px 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-page .btn-sm {
  align-self: flex-start;
}

/* ===== 产品列表页（卡片网格） ===== */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card-box {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-card-box:hover {
  border-color: #d0d4da;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.product-card-box-img-wrap {
  position: relative;
}

.product-card-box-img-wrap .product-card-box-img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-card-box-img-wrap .product-card-box-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.product-card-box-foot {
  text-align: right;
  margin-top: 4px;
}

.product-card-box-body .product-card-box-tag {
  display: none;
}

.product-card-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-box:hover .product-card-box-img img {
  transform: scale(1.03);
}

.product-card-box-body {
  padding: 20px 22px 24px;
}

.product-card-box-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  border: 1px solid rgba(245, 130, 32, 0.35);
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.product-card-box-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card-box-body h3 a {
  color: var(--text);
  transition: color var(--transition);
}

.product-card-box-body h3 a:hover {
  color: var(--primary);
}

.product-card-box-body .product-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-box-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.product-card-box-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== 产品列表页（双列横向卡片） ===== */
.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-showcase-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}

.product-showcase-item:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 8px 24px rgba(7, 29, 53, 0.07);
}

.product-showcase-img {
  flex-shrink: 0;
  width: 200px;
  display: block;
  overflow: hidden;
  background: #f5f7fa;
}

.product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-showcase-item:hover .product-showcase-img img {
  transform: scale(1.04);
}

.product-showcase-body {
  flex: 1;
  min-width: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}

.product-showcase-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.product-showcase-body h3 a {
  color: var(--text);
  transition: color var(--transition);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-showcase-item:hover .product-showcase-body h3 a {
  color: var(--primary);
}

.product-showcase-body .product-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-showcase-foot {
  margin-top: auto;
  text-align: right;
}

.product-showcase-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  padding: 6px 16px;
  border: 1px solid rgba(245, 130, 32, 0.45);
  border-radius: 4px;
  transition: all var(--transition);
}

.product-showcase-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== 分类（旧 tab 已弃用，保留兼容） ===== */
.category-bar {
  display: none;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-start;
}

/* ===== 页脚 ===== */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  .footer-summary {
    width: 400px;
  }
}

.footer h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer p,
.footer li {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}

.footer-simple {
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 8px;
}

.footer-contact .label {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ===== 内页 Hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.85;
}

.section-grey {
  background: var(--bg-light);
}

/* ===== 关于我们 ===== */
.about-intro {
  max-width: 920px;
  min-height: 400px;
  margin: 0 auto;
}

.about-intro-vertical {
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: none;
  margin: 0;
}

.about-intro-vertical .about-text {
  background: #fff;
  padding: 40px 48px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.05);
}

.about-intro-vertical .about-figure {
  margin-top: 0;
}

.about-intro-vertical .about-figure {
  text-align: center;
}

.about-intro-vertical .about-figure img {
  max-height: 360px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e8eaed;
}

.about-intro-stack {
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.about-intro-stack .about-text {
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.05);
}

.about-text h2 {
  font-size: 26px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.about-intro-stack .about-figure img {
  max-height: 400px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-light);
  border-radius: 8px;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 14px;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
}

.value-card h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item .year {
  flex-shrink: 0;
  width: 60px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.timeline-item p {
  font-size: 16px;
  color: var(--text-light);
}

/* ===== 新闻列表页 ===== */
.news-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.news-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}

.news-list-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  margin-bottom: 16px;
  border-bottom: none;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(7, 29, 53, 0.05);
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 0;
  width: 100%;
}

.news-list-card:hover {
  box-shadow: 0 6px 24px rgba(245, 130, 32, 0.1);
  transform: translateY(-2px);
}

.news-card-thumb {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  flex: 1;
  min-width: 0;
}

.news-list-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.news-list-card:hover h3 {
  color: var(--primary);
}

.news-list-card .news-excerpt {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-card .news-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.news-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-list-card .news-meta-row .tag-cat {
  margin-bottom: 0;
}

.news-more-link {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--primary);
  padding: 6px 16px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: #fff;
  transition: all var(--transition);
}

.news-list-card:hover .news-more-link {
  background: var(--primary);
  color: #fff;
}

/* ===== 侧边栏 ===== */
.sidebar {
  position: sticky;
  top: 150px;
  min-width: 0;
  overflow: hidden;
}

/* ===== 侧边栏面板 ===== */
.side-panel {
  background: #fff;
  border: 1px solid #e0e3e8;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.side-panel-head {
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  background: #f3f4f6;
  border-bottom: 1px solid #e8eaed;
  letter-spacing: 0.5px;
}

.side-panel-list {
  list-style: none;
  padding: 6px 0;
}

.side-panel-list li {
  border-bottom: 1px solid #f0f2f5;
}

.side-panel-list li:last-child {
  border-bottom: none;
}

.side-panel-list a {
  display: block;
  padding: 11px 18px 11px 28px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.55;
  position: relative;
  transition: color var(--transition), background var(--transition);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-panel-list a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--primary);
}

.side-panel-list a:hover {
  color: var(--primary);
  background: #fafbfc;
}

.side-panel-list--rank a {
  padding-left: 46px;
}

.side-panel-list--rank a em {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: #f0f2f5;
  border-radius: 3px;
}

.side-panel-list--rank a::before {
  display: none;
}

.side-panel-list--rank li:nth-child(-n+3) a em {
  background: var(--primary);
  color: #fff;
}

.side-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px;
}

.side-panel-tags a {
  padding: 5px 14px;
  font-size: 13px;
  color: var(--text-light);
  background: #f5f6f8;
  border: 1px solid #e8eaed;
  border-radius: 3px;
  transition: all var(--transition);
}

.side-panel-tags a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #fff;
}

.side-panel-contact {
  padding: 16px 18px 20px;
}

.side-panel-contact p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}

.side-panel-contact .btn {
  margin-top: 12px;
}

.sidebar-block {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.06);
  border-left: 4px solid var(--primary);
}

.sidebar-block h4 {
  display: block;
  font-size: 17px;
  color: var(--text);
  font-weight: 700;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.sidebar-block h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.sidebar-list.sidebar-dot-list a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sidebar-list.sidebar-dot-list a::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  line-height: 1.5;
  transition: color var(--transition);
}

.sidebar-list a:hover {
  color: var(--primary);
}

.sidebar-list .hot-num {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 11px;
  background: #f0f0f0;
  color: var(--text-muted);
  border-radius: 3px;
  margin-right: 6px;
}

.sidebar-list li:nth-child(-n+3) .hot-num {
  background: var(--primary);
  color: #fff;
}

.sidebar-contact p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tags a {
  padding: 4px 12px;
  font-size: 13px;
  color: var(--text-light);
  background: #f5f7fa;
  border-radius: 3px;
  transition: all var(--transition);
}

.sidebar-tags a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== 分页 ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination .page-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 4px;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.pagination .page-current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.pagination .page-next {
  border: none;
  color: var(--primary);
}

/* ===== 详情页布局 ===== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.breadcrumb-wrap {
  margin-top: 25px;
  background: #fff;
}

.breadcrumb {
  padding: 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: none;
  margin-bottom: 0;
}

.detail-section {
  padding-top: 20px;
  background: #fff;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

.detail-main {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.05);
}

.detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-product-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.article-product-card:hover {
  border-color: #f5c99a;
  box-shadow: 0 2px 12px rgba(245, 130, 32, 0.08);
}

.article-product-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f7fa;
}

.article-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-product-info {
  flex: 1;
  min-width: 0;
}

.article-product-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.article-product-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-product-btn {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: #fff;
  transition: all var(--transition);
}

.article-product-card:hover .article-product-btn {
  background: var(--primary);
  color: #fff;
}

.detail-cover {
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.detail-content {
  font-size: 16px;
  color: var(--text-light);
  line-height: 2;
}

.detail-content table{
  width: 100%;
  border: 1px solid #e2efe8;
}

.detail-content table th, .detail-content table td {
  border: 1px solid #e2efe8;
  padding: 6px 8px;
}

.detail-content p {
  margin-bottom: 16px;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.detail-content h3 {
  font-size: 18px;
  color: var(--text);
  margin: 28px 0 12px;
  font-weight: 600;
}

.detail-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.detail-nav-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  line-height: 1.6;
}

.detail-nav-next {
  text-align: right;
  margin-left: auto;
}

.detail-nav-item:hover .nav-title {
  color: var(--primary);
}

.detail-nav .nav-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  flex-shrink: 0;
}

.detail-nav .nav-title {
  font-size: 15px;
  color: var(--text);
  transition: color var(--transition);
}

.detail-recommend {
  margin-top: 40px;
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.block-head h3 {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  padding-left: 0;
  border-left: none;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}

.block-head h3::after {
  display: none;
}

.more-link {
  font-size: 13px;
  color: var(--primary);
  flex-shrink: 0;
  padding: 6px 16px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: #fff;
  transition: all var(--transition);
}

.more-link:hover {
  background: var(--primary);
  color: #fff;
}

.hot-articles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

.hot-articles-list a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition);
}

.hot-articles-list a:hover {
  color: var(--primary);
}

.hot-articles-list a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== 问题地图 ===== */
.section-faq-page {
  background: #fff;
  padding: 48px 0 56px;
}

.faq-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-map-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(7, 29, 53, 0.04);
}

.faq-map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff8f2;
  border-bottom: 1px solid #fde8d4;
}

.faq-map-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.faq-map-more {
  font-size: 14px;
  color: var(--primary);
  transition: color var(--transition);
}

.faq-map-more:hover {
  color: var(--primary-dark);
}

.faq-map-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-map-list li {
  border-bottom: 1px solid #f0f2f5;
}

.faq-map-list li:last-child {
  border-bottom: none;
}

.faq-map-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.faq-map-list a:hover {
  background: #fafbfc;
  color: var(--primary);
}

.faq-num {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  width: 26px;
}

.faq-q {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-arrow {
  flex-shrink: 0;
  font-size: 13px;
  color: #c0c4cc;
}

.faq-map-list a:hover .faq-arrow {
  color: var(--primary);
}

.section-faq-list {
  background: #fff;
  padding: 20px 0 56px;
}

.faq-list-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  overflow: hidden;
}

.faq-list-card {
  display: block;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.faq-list-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-list-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.faq-list-card:hover h3 {
  color: var(--primary);
}

.faq-list-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.faq-list-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--primary);
  background: #fff3e8;
  border-radius: 20px;
}

.faq-list-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 20px;
  transition: all var(--transition);
}

.faq-list-card:hover .faq-list-link {
  background: var(--primary);
  color: #fff;
}

/* ===== 联系页 ===== */
.section-about-page {
  background: #fff;
}

.about-page-box {
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 40px 48px;
  background: #fff;
}

.about-intro-vertical .about-text {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.section-contact {
  background: #fff;
  padding: 48px 0;
}

.contact-enterprise {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  background: #fff;
  border: 1px solid #e0e3e8;
  border-radius: 4px;
  overflow: hidden;
}

.contact-enterprise-main {
  padding: 48px 56px;
}

.contact-enterprise-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef0f3;
}

.contact-enterprise-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-enterprise-head p {
  font-size: 15px;
  color: var(--text-light);
}

.contact-info-table {
  display: flex;
  flex-direction: column;
}

.contact-info-row {
  display: flex;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid #f5f6f8;
}

.contact-info-row:last-child {
  border-bottom: none;
}

.contact-info-label {
  flex: 0 0 100px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info-value {
  flex: 1;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-info-value a:hover {
  color: var(--primary);
}

.contact-enterprise-aside {
  background: #f7f8fa;
  border-left: 1px solid #e0e3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.contact-wechat-box {
  text-align: center;
}

.contact-wechat-box img {
  margin: 0 auto 16px;
  border: 1px solid #e0e3e8;
  border-radius: 4px;
}

.contact-wechat-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-wechat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-layout-new {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.05);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-card-item:hover {
  box-shadow: 0 6px 24px rgba(245, 130, 32, 0.1);
  transform: translateY(-2px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.1), rgba(255, 184, 0, 0.15));
  border-radius: 10px;
}

.contact-card-content strong {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-card-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.contact-card-content a {
  color: var(--primary);
}

.contact-card-content a:hover {
  color: var(--primary-dark);
}

.contact-qr-panel {
  position: sticky;
  top: 150px;
}

.contact-qr-panel .contact-qr-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.06);
  border-top: 4px solid var(--primary);
}

.contact-qr-panel .contact-qr-card img {
  margin: 0 auto 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px 48px;
  box-shadow: 0 2px 16px rgba(7, 29, 53, 0.05);
}

.contact-panel-main h2 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

.contact-detail-grid {
  display: flex;
  flex-direction: column;
}

.contact-detail-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f2f5;
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-item .contact-detail-label {
  flex: 0 0 88px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-detail-item p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--primary);
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-panel-qr {
  padding-left: 56px;
  border-left: 1px solid #e8ecf0;
}

.contact-qr-card {
  text-align: center;
  padding: 8px 4px;
}

.contact-qr-card img {
  display: block;
  margin: 0 auto 16px;
  border-radius: 6px;
  border: 1px solid #e8ecf0;
}

.contact-qr-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-qr-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.contact-list li {
  margin-bottom: 24px;
}

.contact-list strong {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-form-wrap {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.page-cta {
  text-align: center;
  margin-top: 48px;
}

.page-cta p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-page-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .hot-articles-list {
    grid-template-columns: 1fr;
  }

  .home-news-top,
  .home-product-grid,
  .faq-map-grid,
  .contact-enterprise {
    grid-template-columns: 1fr;
  }

  .home-news-col-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-news-col-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid #f0f2f5;
  }

  .home-news-col-list li:last-child {
    border-bottom: none;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-enterprise-aside {
    border-left: none;
    border-top: 1px solid #e0e3e8;
  }

  .contact-enterprise-main {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 22px;
  }

  .logo-img {
    max-height: 40px;
    width: auto;
}

  .header-hotline-number {
    font-size: 18px;
  }

  .header-hotline-icon svg {
    width: 28px;
    height: 28px;
  }

  .nav-bar-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-bottom: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0 16px;
    height: 44px;
    justify-content: flex-start;
  }

  .article-product-card {
    flex-wrap: wrap;
  }

  .article-product-btn {
    width: 100%;
    text-align: center;
  }

  .page-banner-inner {
    flex-direction: column;
    align-items: center;
  }

  .category-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .cat-tab {
    flex-shrink: 0;
    padding: 14px 20px;
  }

  .home-news-top {
    grid-template-columns: 1fr;
  }

  .home-news-columns {
    margin-top: 20px;
  }

  .home-news-col-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 16px;
  }

  .home-news-col-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid #f0f2f5;
  }

  .home-news-col-list li:last-child {
    border-bottom: none;
  }

  .home-news-row {
    flex-direction: column;
  }

  .home-news-row-img {
    width: 100%;
    height: 180px;
  }

  .faq-map-grid {
    grid-template-columns: 1fr;
  }

  .faq-list-card {
    padding: 22px 20px;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-vertical .about-text {
    padding: 28px 24px;
  }

  .home-about-title {
    font-size: 24px;
  }

  .home-about-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .home-about-bar-action {
    width: 100%;
  }

  .home-about-bar-action .btn-solid {
    width: 100%;
    text-align: center;
  }

  .contact-enterprise-main {
    padding: 32px 24px;
  }

  .contact-enterprise-aside {
    border-left: none;
    border-top: 1px solid #e0e3e8;
  }

  .products-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-item {
    flex-direction: column;
  }

  .product-showcase-img {
    width: 100%;
    height: 180px;
  }

  .news-featured-row,
  .news-panel,
  .about-intro,
  .about-stats,
  .values-grid,
  .contact-panel,
  .contact-layout,
  .product-grid,
  .product-grid-3 {
    grid-template-columns: 1fr;
  }

  .home-news-item .home-news-img {
    width: 120px;
    height: 90px;
  }

  .news-list-card {
    flex-direction: column;
  }

  .news-card-thumb {
    width: 100%;
    height: 180px;
  }

  .detail-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-nav-next {
    margin-left: 0;
  }

  .contact-panel {
    gap: 32px;
  }

  .contact-panel-qr {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid #e8ecf0;
  }

  .inner-banner h1 {
    font-size: 26px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-panel {
    padding: 8px 20px;
    gap: 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .logo-img {
    max-height: 35px;
    width: auto;
}

  .header-hotline {
    gap: 8px;
  }

  .header-hotline-label {
    font-size: 11px;
  }

  .header-hotline-number {
    font-size: 16px;
  }

  .header-hotline-icon {
    width: 36px;
    height: 36px;
  }

  .header-hotline-icon svg {
    width: 18px;
    height: 18px;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-about-title {
    font-size: 22px;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 6px;
  }

  .contact-info-label {
    flex: none;
  }

  .contact-detail-item {
    flex-direction: column;
    gap: 6px;
  }

  .contact-detail-item .contact-detail-label {
    flex: none;
  }

  .news-dot-item time {
    display: none;
  }
}

/* CMS: 分类链接样式 */
a.cat-tab {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
