.content-desc/* ========== 内页通用（公司简介等） ========== */
body.inner-page,
body:has(.inner-main) {
  background: #f5f8fc;
}

@media (max-width: 992px) {
  body.inner-page .site-header .logo-icon {
    filter: none;
  }
}

/* 内页内容区不使用 scroll-animate 隐藏效果 */
.inner-content.scroll-animate,
.inner-content.scroll-animate.is-visible,
.inner-content.scroll-animate.is-leaving {
  opacity: 1;
  transform: none;
  will-change: auto;
  transition: none;
}

body.inner-page .inner-main,
body:has(.inner-main) .inner-main {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

body.inner-page .inner-content,
body:has(.inner-main) .inner-content {
  color: #333;
}

body.inner-page .inner-content p:not(.block-subtitle),
body:has(.inner-main) .inner-content p:not(.block-subtitle) {
  color: #555555;
  text-align: left; line-height: 28px;
}

.page-banner {
  position: relative;
  height: 400px;
  margin-top: 0;
  padding-top: 101px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 97, 180, 0.22) 0%, rgba(17, 85, 182, 0.42) 100%);
}

.page-banner-content {
  position: relative; display: none;
  z-index: 2;
}

.page-banner-en {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  letter-spacing: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.page-banner-title {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 6px;
}

.page-toolbar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 18px rgba(5, 97, 180, 0.06);
}

.page-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.page-subnav {
  flex: 1;
  min-width: 0;
}

.page-subnav-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.page-subnav-list li a {
  display: block;
  padding: 20px 32px;
  font-size: 18px;
  color: var(--color-text-light);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.page-subnav-list li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.page-subnav-list li a:hover,
.page-subnav-list li a.active {
  color: var(--color-primary);
}

.page-subnav-list li a:hover::after,
.page-subnav-list li a.active::after {
  width: calc(100% - 40px);
}

.page-subnav-list li a.active {
  font-weight: 600;
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.breadcrumb-label {
  font-size: 15px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-size: 15px;
  color: var(--color-text-light);
  transition: color var(--transition);
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb-sep {
  color: #ccc;
  font-size: 14px;
}

.breadcrumb-current {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  white-space: nowrap;
}

.inner-main {
  padding: 48px 0 72px;
}

.inner-content {
  background: var(--color-white);
  border-radius: 8px;
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(5, 97, 180, 0.06);
}

.content-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.content-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.content-label .brand-name {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 2px;
}

.content-label .since {
  font-size: 15px;
  color: #0561b4; font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  border-radius: 20px; font-family: Arial;
}

.content-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 24px;
}

.content-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #999!important;
  margin-bottom: 16px;
  text-align: left;  text-align: center!important;
}

.content-intro-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0px 0px rgba(5, 97, 180, 0.12);
}

.content-intro-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: linear-gradient(135deg, rgba(5, 97, 180, 0.04), rgba(24, 144, 255, 0.08));
  border-radius: 8px;
  border: 1px solid rgba(5, 97, 180, 0.1);
}

.stat-item strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 8px; font-family: Arial;
}

.stat-item strong em {
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
}

.stat-item span {
  font-size: 16px;
  color: var(--color-text-light);
}

.content-block {
  margin-bottom: 48px;
  text-align: center;
}

body.inner-page .inner-content .content-block .content-desc,
body:has(.inner-main) .inner-content .content-block .content-desc {
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.content-block:last-child {
  margin-bottom: 0;
}

.block-header {
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

.block-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.block-subtitle {
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Arial, sans-serif; display: none;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  padding: 28px 24px;
  background: #f5f8fc;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5, 97, 180, 0.1);
}

.advantage-card i {
  font-size: 34px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.advantage-card h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.business-item {
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.business-item:hover {
  border-color: rgba(5, 97, 180, 0.3);
  box-shadow: 0 4px 16px rgba(5, 97, 180, 0.08);
}

.business-item h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.business-item p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

/* ========== 资质荣誉 ========== */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.honor-item {
  background: #f5f8fc;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.honor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5, 97, 180, 0.1);
}

.honor-item-img {
  height: 200px;
  background: linear-gradient(135deg, #e8f2fb, #d4e6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 48px;
}

.honor-item-body {
  padding: 18px 20px;
  text-align: center;
}

.honor-item-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.honor-item-body p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ========== 企业展示 ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: var(--color-white);
  font-size: 15px;
}

/* ========== 产品列表 ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-grid-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-grid-item:hover {
  border-color: rgba(5, 97, 180, 0.3);
  box-shadow: 0 6px 20px rgba(5, 97, 180, 0.08);
}

.product-grid-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #1890ff);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.product-grid-info {
  flex: 1;
  min-width: 0;
}

.product-grid-info h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.product-grid-info h4 em {
  font-style: normal;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-left: 8px;
}

.product-grid-info p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 12px;
}

.product-grid-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
}

.product-grid-link:hover {
  gap: 10px;
}

/* ========== 产品中心列表卡片（products_zh） ========== */
.product-grid-card {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0px;
  background: ;
  border-radius: 8px;
}

.product-grid-card .product-grid-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px 24px;
  background: var(--color-white);
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-grid-card .product-grid-item:hover {
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(5, 97, 180, 0.1);
  transform: translateY(-2px);
}

.product-grid-card .product-grid-thumb {
  width: 100%;
  height: 320px;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2f6;
}

.product-grid-card .product-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-grid-card .product-grid-item:hover .product-grid-thumb img {
  transform: scale(1.04);
}

.product-grid-card .product-grid-icon {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #eef2f6;
  font-size: 48px;
}

.product-grid-card .product-grid-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-grid-card .product-grid-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.5;
}

.product-grid-card .product-grid-info h4 em {
  display: block;
  margin: 8px 0 0;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.product-grid-card .product-grid-info p {
  display: none;
}

.product-grid-card .product-grid-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 8px 24px;
  border: 1px solid #ddd;
  border-radius: 25px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.product-grid-card .product-grid-link:hover {
  gap: 8px;
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff;
}

/* ========== 产品详情 ========== */
.product-detail-page {
  padding: 40px 52px;
}

.product-detail-overview {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  margin-bottom: 0;
}

.product-detail-media {
  width: 100%;
  background: #f5f6f8;
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.product-detail-media-placeholder {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 72px;
  background: #eef2f6;
}

.product-detail-summary {
  min-width: 0;
}

.product-detail-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8edf2;
}

.product-detail-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 600;
}

.product-detail-meta span strong {
  color: var(--color-text);
  font-weight: 700;
}

.product-detail-brief,
.product-detail-brief p,
.product-detail-brief li,
.product-detail-body .content-desc,
.product-detail-body .content-desc p,
.product-detail-body .content-desc li {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

.product-detail-brief {
  margin-bottom: 28px;
  text-align: left;
}

.product-detail-brief img,
.product-detail-body .content-desc img {
  max-width: 100%;
  height: auto;
}

.product-detail-consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  transition: background var(--transition), transform var(--transition);
}

.product-detail-consult-btn:hover {
  background: #0456a3;
  transform: translateX(2px);
}

.product-detail-panel {
  margin-top: 8px;
}

.product-detail-tabbar {
  display: flex;
  align-items: stretch;
  border-top: 3px solid var(--color-primary);
  background: #f5f6f8;
}

.product-detail-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 28px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.product-detail-body {
  padding: 28px 0 8px;
  background: #fff;
}

.product-detail-body .content-block {
  margin-bottom: 0;
  text-align: left;
}

.product-detail-body .block-header,
.product-detail-body .block-subtitle {
  display: none;
}

.product-detail-body .content-desc {
  text-align: left;
  max-width: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #666; max-width: 100%!important; width: 100%;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  font-size: 15px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.spec-table th {
  background: #f5f8fc;
  color: var(--color-text);
  font-weight: 600;
  width: 28%;
}

.spec-table td {
  color: var(--color-text-light);
}

/* ========== 新闻列表 ========== */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

a.news-list-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: none;
  transition: transform var(--transition);
  color: inherit;
}

a.news-list-item:first-child {
  padding-top: 0;
}

a.news-list-item:hover {
  background: transparent;
  transform: translateY(-2px);
}

.news-list-thumb {
  order: 1;
  flex-shrink: 0;
  width: 100%;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

a.news-list-item:hover .news-list-thumb img {
  transform: scale(1.04);
}

.news-list-body {
  order: 2;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/*.news-list-body::before {
  content: "Latest News";
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: #eef3f8;
  color: #6a8099;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 4px;
}
*/
.news-list-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

a.news-list-item:hover .news-list-body h4 {
  color: var(--color-primary);
}

.news-list-body p {
  display: none;
}

.news-list-date {
  order: 3;
  flex-shrink: 0;
  width: auto;
  margin-top: auto;
  padding-top: 4px;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.news-list-date .ym {
  order: 1;
  font-size: 14px;
  color: #999;
  font-weight: 400;
  margin-top: 0;
}

.news-list-date .ym::after {
  content: ".";
}

.news-list-date .day {
  order: 2;
  display: inline;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 1;
}

/* ========== 新闻详情 ========== */
.article-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.article-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 15px;
  color: var(--color-text-muted);
}

.article-meta span {
  margin: 0 12px;
}

.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.article-body p {
  margin-bottom: 20px;
  text-align: left;
}

.article-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px auto;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-size: 15px;
}

.article-nav a {
  color: var(--color-text-light);
  max-width: 45%;
}

.article-nav a:hover {
  color: var(--color-primary);
}

.article-nav a strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ========== 人才招聘 ========== */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-item {
  padding: 28px 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.job-item:hover {
  border-color: rgba(5, 97, 180, 0.3);
  box-shadow: 0 4px 16px rgba(5, 97, 180, 0.08);
}

.job-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.job-item-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 13px;
  color: var(--color-primary);
  background: rgba(5, 97, 180, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.job-item p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.job-item p:last-child {
  margin-bottom: 0;
}

/* ========== 联系我们 ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-block h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 97, 180, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.contact-form .btn-submit:hover {
  background: var(--color-primary-dark);
}

/* ========== 服务中心 ========== */
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-step {
  text-align: center;
  padding: 28px 16px;
  background: #f5f8fc;
  border-radius: 8px;
  position: relative;
}

.service-step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-step h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.service-step p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-light);
}

@media (max-width: 992px) {
  .honor-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .product-grid-card .product-grid-thumb {
    height: 180px;
  }

  .product-detail-overview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-media,
  .product-detail-media img,
  .product-detail-media-placeholder {
    min-height: 280px;
  }

  .product-detail-page {
    padding: 36px 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .news-list-thumb {
    height: 180px;
  }

  .page-toolbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
  }

  .breadcrumb-wrap {
    justify-content: flex-end;
    padding: 10px 0 4px;
    border-top: 1px solid var(--color-border);
  }

  .page-subnav-list li a {
    padding: 16px 22px;
    font-size: 17px;
  }

  .content-intro {
    grid-template-columns: 1fr;
  }

  .content-intro-image {
    order: -1;
  }

  .content-intro-image img {
    height: 260px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .business-list {
    grid-template-columns: 1fr;
  }

  .inner-content {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 320px;
    padding-top: 88px;
  }

  .page-banner-title {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .page-subnav-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .page-subnav-list li a {
    padding: 14px 18px;
    font-size: 16px;
  }

  .breadcrumb-wrap {
    justify-content: flex-start;
  }

  .content-title {
    font-size: 26px;
  }

  .inner-main {
    padding: 32px 0 56px;
  }

  .inner-content {
    padding: 28px 20px;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-grid-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .product-detail-page {
    padding: 28px 20px;
  }

  .product-detail-header h2 {
    font-size: 26px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item strong {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .page-banner-title {
    font-size: 28px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .honor-grid,
  .gallery-grid,
  .service-steps {
    grid-template-columns: 1fr;
  }
}








/*fanye*/

.fy { text-align: center; margin: 20px 0px;}
.newspage{ width: 92%;
    padding: 0px 4%;
    height: auto;/* overflow: hidden;*/ display:block;
	}
	
.newspage {
width:100%;PADDING-RIGHT: 0px; DISPLAY: block; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px;  PADDING-TOP: 20px; TEXT-ALIGN: center; margin:60px auto 0px; clear:both; height:50px
}
.newspage A { 
BORDER-RIGHT: #999 1px solid; PADDING-RIGHT:8px; BORDER-TOP: #999 1px solid; PADDING-LEFT: 8px; BACKGROUND: #fff; PADDING-BOTTOM: 3px; FONT: 13px/22px ""; BORDER-LEFT: #999 1px solid; COLOR: #666; MARGIN-RIGHT: 2px; PADDING-TOP: 3px; BORDER-BOTTOM: #999 1px solid; font-family:"氓戮庐猫陆炉茅鈥衡€γ┞烩€?!important;border-radius: 5px;
}
.newspage A:hover {
BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BACKGROUND: #00589f; BORDER-LEFT: #fff 1px solid; COLOR: #FFFFFF; BORDER-BOTTOM: #fff 1px solid; TEXT-DECORATION: none
}
.newspage A:active {
BORDER-RIGHT: #666 1px solid; BORDER-TOP: #666 1px solid; BACKGROUND: #00589f; BORDER-LEFT: #666 1px solid; COLOR: #FFFFFF; BORDER-BOTTOM: #666 1px solid
}
.newspage SPAN.current {
 PADDING-RIGHT: 8px;  PADDING-LEFT: 8px; BACKGROUND: #00589f; PADDING-BOTTOM: 3px;  COLOR: #fff; MARGIN-RIGHT: 5px; PADDING-TOP: 3px;  font-size:13px;border-radius: 5px; border:1px #00589f solid; 

}
.newspage SPAN.disabled {
BORDER-RIGHT: #fff 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #fff 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 2px; BORDER-LEFT: #fff 1px solid; COLOR: #666; MARGIN-RIGHT: 2px; PADDING-TOP: 2px; BORDER-BOTTOM: #fff 1px solid
}


