/* ========================================
   内页公共样式 - Inner Pages Common Styles
   ======================================== */

/* 内页 Body - 控制 header 和 banner 不重叠 */
body.inner-page {
}

/* 内页 footer */
body.inner-page .site-footer {
  border-top: 60px solid #f9f9f9;
}
li{list-style: none;}
/* ========================================
   Inner Banner
   ======================================== */
.inner-banner {
  position: relative;
  min-height: 260px;
  background-color: var(--primary, #013587);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(165deg, rgba(1, 53, 135, 0.2) 0%, rgba(1, 53, 135, 0.6) 50%, rgba(1, 53, 135, 0.8) 100%);  */
  background: linear-gradient(165deg, rgb(46 46 46 / 20%) 0%, rgb(0 0 0 / 10%) 50%, rgb(0 0 0 / 49%) 100%);
  z-index: 1;
}

.inner-banner-content {
  position: relative;
  z-index: 2;
  padding:200px 0 40px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.inner-banner-title {
  font-size: 46px;
  font-weight: 300;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 4px;
}

.inner-banner-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top:20px;
}

/* 面包屑在 Banner 内部 */
.inner-breadcrumb {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 60px;
}

.inner-breadcrumb .container {
  display: flex;
  justify-content: center;
}

/* 各页面 Banner 背景图片 */
.banner-aboutus {
  background-image: url("../images/banner_aboutus.jpg");
}

.banner-zizhi {
  background-image: url("../images/banner_aboutus.jpg");
}

.banner-zhaopin {
  background-image: url("../images/banner_aboutus.jpg");
}

.banner-contact {
  background-image: url("../images/banner_aboutus.jpg");
}

.banner-support {
  background-image: url("../images/banner_aboutus.jpg");
}

.banner-product {
  background-image: url("../images/banner_product.jpg");
}

.banner-solution {
  background-image: url("../images/banner_solution.jpg");
}

.banner-news {
  background-image: url("../images/banner_news.jpg");
}

.banner-industry {
  background-image: url("../images/banner_industry.jpg");
}

/* ========================================
   Support Nav - 技术支持锚点导航
   ======================================== */
.support-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 70px;

  z-index: 10;
}

.support-nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-nav-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.support-nav-item a:hover,
.support-nav-item.active a {
  color: var(--primary, #013587);
  border-bottom-color: var(--primary, #013587);
}

.support-nav-item i {
  font-size: 18px;
}

/* ========================================
   Support Section - 技术支持内容区
   ======================================== */
.support-section {
  padding: 80px 0;
  /* 锚点滚动时留出空间，避免被固定头部和导航遮住 */
  scroll-margin-top: 320px;
}

.support-alt {
  background: #f8fafc;
}

.support-block {
  max-width: 1000px;
  margin: 0 auto;
}

.support-block-header {
  text-align: center;
  margin-bottom: 40px;
}

.support-block-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0250a8 100%);
  border-radius: 16px;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
}

.support-block-title h2 {
  font-size: 28px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.support-block-title p {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.support-text-block {
  background: #fff;
  padding: 32px 36px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
}

.support-text-block p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin: 0 0 20px;
}

.support-text-block p:last-child {
  margin-bottom: 0;
}

/* 现场服务特色 */
.support-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
}

.support-feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 53, 135, 0.1) 0%, rgba(1, 53, 135, 0.05) 100%);
  border-radius: 12px;
  color: var(--primary, #013587);
  font-size: 24px;
  flex-shrink: 0;
}

.support-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.support-feature-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 技术培训列表 */
.support-training-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-training-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 36px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
  transition: all 0.3s ease;
}

.support-training-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.12);
}

.support-training-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0250a8 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.support-training-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.support-training-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* FAQ 手风琴 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-q-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 53, 135, 0.1) 0%, rgba(1, 53, 135, 0.05) 100%);
  border-radius: 8px;
  color: var(--primary, #013587);
  font-size: 18px;
  flex-shrink: 0;
}

.faq-question span:nth-child(2) {
  flex: 1;
  font-size: 15px;
  font-weight: 300;
  color: #333;
}

.faq-toggle {
  color: #999;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px 76px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-more {
  text-align: center;
  padding: 32px 0;
  font-size: 14px;
  color: #666;
}

.faq-more a {
  color: var(--primary, #013587);
  text-decoration: none;
  font-weight: 300;
}

.faq-more a:hover {
  text-decoration: underline;
}

/* 下载中心 */
.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
}

.download-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(6, 29, 66, 0.1);
}

.download-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 53, 135, 0.1) 0%, rgba(1, 53, 135, 0.05) 100%);
  border-radius: 12px;
  color: var(--primary, #013587);
  font-size: 28px;
  flex-shrink: 0;
}

.download-info {
  flex: 1;
}

.download-info h4 {
  font-size: 16px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.download-info p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.download-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #013587);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.download-item:hover .download-btn {
  transform: scale(1.1);
}

/* ========================================
   Contact Section - 联系我们
   ======================================== */
.contact-section {
  padding: 80px 0 60px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.12);
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0250a8 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
}

.contact-card-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.contact-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.contact-card-content a {
  color: var(--primary, #013587);
  text-decoration: none;
  font-weight: 300;
}

.contact-card-content a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.08);
  margin-bottom: 60px;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.contact-form-header h2 i {
  color: var(--primary, #013587);
}

.contact-form-header p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #333;
  margin-bottom: 10px;
}

.contact-form label i {
  color: var(--primary, #013587);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary, #013587);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 53, 135, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.btn-submit,
.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0250a8 100%);
  color: #fff;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(1, 53, 135, 0.35);
}

.btn-reset {
  background: #f0f0f0;
  color: #666;
}

.btn-reset:hover {
  background: #e0e0e0;
}

.contact-qr-section {
  display: flex;
  justify-content: center;
}

.contact-qr-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 48px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  border-radius: 16px;
  border: 1px solid #e8eeff;
}

.contact-qr-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-qr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-qr-text h4 {
  font-size: 18px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.contact-qr-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  max-width: 120px;
  overflow: hidden;
    white-space: nowrap;
}

.breadcrumb-item.current,
.breadcrumb-item:not(:has(a, span)) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.breadcrumb-item a,
.breadcrumb-item span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item i {
  font-size: 10px;
  opacity: 0.6;
}

.breadcrumb-item.current {
  color: rgba(255, 255, 255, 1);
}
.breadcrumb-separator{
   color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   Breadcrumb Bar - PbootCMS position 标签适配
   ======================================== */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
}

.breadcrumb-bar a:hover {
  color: #fff;
}

.breadcrumb-bar i {
  font-size: 14px;
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Sub Navigation - Tab 风格，居中
   ======================================== */
.inner-subnav {
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
  width: 100%;
}

.inner-subnav .container {
  display: flex;
  justify-content: center;
}

.inner-subnav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inner-subnav-item a,
.inner-subnav-item button {
  display: inline-flex;
  align-items: center;
  padding: 18px 28px;
  font-size: 15px;
  color: #666;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  font-weight: 400;
}

.inner-subnav-item a::after,
.inner-subnav-item button::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--primary, #013587);
  transition: all 0.25s ease;
  border-radius: 3px 3px 0 0;
}

.inner-subnav-item a:hover {
  color: var(--primary, #013587);
}

.inner-subnav-item.active a,
.inner-subnav-item.active button {
  color: var(--primary, #013587);
  font-weight: 300;
}

.inner-subnav-item.active a::after,
.inner-subnav-item.active button::after {
  left: 0;
  right: 0;
}

/* ========================================
   Inner Content Container
   ======================================== */
.inner-content {
  min-height: 400px;
}

.inner-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Section Title
   ======================================== */
.inner-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.inner-section-title h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--text-main, #333);
  margin: 0 0 12px;
  letter-spacing: 1px;
}

.inner-section-title p {
  font-size: 16px;
  color: #999;
  margin: 0;
  font-weight: 400;
}

/* ========================================
   About Us Hero Section - 大气设计
   ======================================== */
.about-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* 背景装饰 */
.about-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 53, 135, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-hero-text {
  position: relative;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  color: var(--primary, #013587);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary, #013587);
}

.about-hero-title {
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 32px;
  line-height: 1.3;
}

.about-hero-desc {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin: 0 0 24px;
}

.about-hero-desc:last-of-type {
  margin-bottom: 40px;
}

.about-highlight {
  position: relative;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.about-highlight p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.about-hero-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(6, 29, 66, 0.15);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--primary, #013587);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

/* 数字统计 */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 0;
  margin-top: 40px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: #e0e0e0;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 600;
  color: var(--primary, #013587);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary, #013587);
}

.stat-label {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

/* ========================================
   Zhaopin Section - 人才招聘
   ======================================== */
.zhaopin-section {
  padding: 80px 0 60px;
}

.zhaopin-intro {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 40px;
  background: #f0f5ff;
  border-radius: 16px;
  margin-bottom: 50px;
}

.zhaopin-intro-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #013587);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
}

.zhaopin-intro-text h2 {
  font-size: 24px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.zhaopin-intro-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.zhaopin-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.zhaopin-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.zhaopin-card:hover {
  box-shadow: 0 8px 40px rgba(6, 29, 66, 0.12);
  transform: translateY(-2px);
}

.zhaopin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0250a8 100%);
  color: #fff;
  flex-wrap: wrap;
  gap: 16px;
}

.zhaopin-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zhaopin-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 300;
}

.zhaopin-title {
  font-size: 22px;
  font-weight: 300;
  margin: 0;
  color: #fff;
}

.zhaopin-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.zhaopin-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.9;
}

.zhaopin-meta i {
  font-size: 16px;
}

.zhaopin-card-body {
  padding: 32px;
}

.zhaopin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.zhaopin-block {
  padding: 0;
}

.zhaopin-block h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary, #013587);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.zhaopin-block h4 i {
  font-size: 18px;
}

.zhaopin-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zhaopin-block li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.zhaopin-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--primary, #013587);
  border-radius: 50%;
}

.zhaopin-card-footer {
  padding: 24px 32px;
  background: #fafbfc;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: flex-end;
}

.zhaopin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary, #013587);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zhaopin-btn:hover {
  background: #0250a8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(1, 53, 135, 0.3);
}

.zhaopin-contact {
  margin-top: 50px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 16px;
  text-align: center;
}

.zhaopin-contact h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.zhaopin-contact p {
  font-size: 15px;
  color: #555;
  margin: 0 0 12px;
}

.zhaopin-contact a {
  color: var(--primary, #013587);
  text-decoration: none;
  font-weight: 300;
}

.zhaopin-contact a:hover {
  text-decoration: underline;
}

/* ========================================
   Zizhi Section - 资质荣誉
   ======================================== */
.zizhi-section {
  padding: 80px 0 60px;
}

.zizhi-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto 60px;
}

.zizhi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.zizhi-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zizhi-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 29, 66, 0.08);
  cursor: zoom-in;
  transition: all 0.3s ease;
}

.zizhi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.15);
}

.zizhi-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 141.5%; /* 竖版图片比例，约 0.707:1 */
  overflow: hidden;
  background: #f5f7fa;
}

.zizhi-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zizhi-card:hover .zizhi-img-wrapper img {
  transform: scale(1.05);
}

.zizhi-info {
  padding: 16px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.zizhi-info i {
  color: var(--primary, #013587);
  margin-right: 6px;
}

.zizhi-info span {
  font-size: 14px;
  color: #333;
  font-weight: 300;
}

.zizhi-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #999;
  padding: 20px 0;
}

.zizhi-tip i {
  font-size: 16px;
}

/* ========================================
   Culture Section - 企业文化
   ======================================== */
.culture-section {
  background: #fff;

  position: relative;
  overflow: hidden;
}



.culture-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.culture-intro h3 {
  font-size: 28px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.culture-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom:60px;
}

.culture-card {
  position: relative;
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(6, 29, 66, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.culture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary, #013587), #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6, 29, 66, 0.12);
}

.culture-card:hover::before {
  transform: scaleX(1);
}

.culture-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  font-weight: 700;
  color: rgba(1, 53, 135, 0.04);
  line-height: 1;
}

.culture-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0352a8 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(1, 53, 135, 0.2);
}

.culture-icon i,.culture-icon em{
  font-size: 24px;
  color: #fff;
}

.culture-card h4 {
  font-size: 20px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.culture-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ========================================
   Page Navigation
   ======================================== */
.page-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.page-nav-link {
  flex: 1;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.page-nav-link:hover {
  background: #fff;
  border-color: var(--primary, #013587);
  transform: translateX(4px);
}

.page-nav-link.prev:hover {
  transform: translateX(-4px);
}

.page-nav-link.next {
  justify-content: flex-end;
  margin-left: auto;
}

.page-nav-link i {
  font-size: 20px;
  color: var(--primary, #013587);
  flex-shrink: 0;
}

.page-nav-link-content span {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-nav-link-content strong {
  display: block;
  font-size: 15px;
  color: #333;
  font-weight: 300;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ========================================
   Responsive Styles
   ======================================== */

/* Tablet Small */
@media (max-width: 1200px) {
  .about-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-hero-image {
    width: 100%;
  }

  .about-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .inner-banner {
    min-height: 280px;
    padding: 50px 20px 35px;
  }
  .inner-banner-content{
    padding-top:80px;
  }

  .inner-banner-title {
    font-size: 38px;
  }

  .about-hero-grid {
    gap: 50px;
  }

  .about-hero-title {
    font-size: 26px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .product-view-description img{
    width: 100% !important;
    height: auto !important;
  }

  .contact-section {
    padding: 50px 0 40px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .contact-form-header h2 {
    font-size: 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-submit,
  .btn-reset {
    width: 100%;
    justify-content: center;
  }

  .contact-qr-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .contact-qr-img {
    width: 100px;
    height: 100px;
  }

  /* Support 响应式 */
  .support-nav-list {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px;
  }

  .support-nav-item a {
    padding: 16px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .support-section {
    padding: 50px 0;
  }

  .support-block-header {
    margin-bottom: 28px;
  }

  .support-block-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .support-block-title h2 {
    font-size: 24px;
  }

  .support-text-block {
    padding: 24px;
  }

  .support-text-block p {
    font-size: 14px;
    line-height: 1.8;
  }

  .support-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-feature-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .support-training-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-q-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .faq-question span:nth-child(2) {
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 16px 16px 60px;
    font-size: 13px;
  }

  .download-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .download-info {
    order: 2;
  }

  .download-btn {
    order: 1;
    margin-bottom: 12px;
  }

  .zhaopin-section {
    padding: 50px 0 40px;
  }

  .zhaopin-intro {
    flex-direction: column;
    padding: 24px;
    margin-bottom: 30px;
  }

  .zhaopin-intro-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .zhaopin-intro-text h2 {
    font-size: 20px;
  }

  .zhaopin-card-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .zhaopin-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .zhaopin-title {
    font-size: 18px;
  }

  .zhaopin-meta {
    gap: 12px;
  }

  .zhaopin-card-body {
    padding: 20px;
  }

  .zhaopin-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .zhaopin-block h4 {
    font-size: 15px;
  }

  .zhaopin-block li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .zhaopin-card-footer {
    padding: 16px 20px;
    justify-content: center;
  }

  .zhaopin-btn {
    width: 100%;
    justify-content: center;
  }

  .zhaopin-contact {
    padding: 24px;
    margin-top: 30px;
  }

  .zhaopin-contact h3 {
    font-size: 18px;
  }

  .zizhi-section {
    padding: 50px 0 40px;
  }

  .zizhi-intro {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .zizhi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .zizhi-info {
    padding: 12px 8px;
  }

  .zizhi-info span {
    font-size: 12px;
  }

  .inner-banner {
    min-height: 220px;
    padding: 40px 20px 30px;
  }
  .inner-banner-content{
    padding-top:80px;
  }
  .inner-banner-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .inner-banner-subtitle {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .inner-subnav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inner-subnav .container {
    justify-content: flex-start;
  }

  .inner-subnav-list {
    flex-wrap: nowrap;
    padding: 0 16px;
  }

  .inner-subnav-item a,
  .inner-subnav-item button {
    padding: 16px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .about-hero {
    padding: 60px 0 50px;
  }

  .about-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .about-hero-title {
    font-size: 30px;
  }

  .about-label {
    font-size: 16px;
  }

  .about-image-wrapper::before {
    display: none;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 40px 0;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-item::after {
    display: none !important;
  }


  .culture-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .culture-card {
    padding: 32px 24px;
  }

  .page-nav-links {
    flex-direction: column;
    padding: 40px 0;
  }

  .page-nav-link {
    max-width: 100%;
  }

  .page-nav-link.next {
    margin-left: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
    
  .inner-banner {
    min-height: 180px;
    padding: 30px 16px 25px;
  }

  .inner-banner-content{
    padding-top:80px;
  }

  .inner-banner-title {
    font-size: 26px;
  }

  .inner-banner-subtitle{
    font-size:16px;
  }
  .inner-content-container {
    padding: 0 16px;
  }

  .inner-section-title {
    margin-bottom: 32px;
  }

  .inner-section-title h2 {
    font-size: 26px;
  }

  .about-hero-title {
    font-size: 26px;
  }

  .about-hero-desc {
    font-size: 15px;
  }

  .culture-card {
    padding: 28px 20px;
  }

  .culture-card-number {
    font-size: 48px;
  }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .site-header,
  .inner-subnav,
  .page-nav-links,
  .inner-banner::before {
    display: none;
  }

  body.inner-page {
    padding-top: 0;
  }

}

/* ========================================
   Product List - 产品列表
   ======================================== */
.product-section {
  padding: 60px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

/* 产品分类侧边栏 */
.product-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.product-categories {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(1, 53, 135, 0.06);
  overflow: hidden;
  border: 1px solid #f0f4f8;
  padding: 12px 0;
}

.product-category-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.product-category-item {
  margin: 2px 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.product-category-item:last-child {
  border-bottom: none;
}

.product-category-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  border-radius: 8px;
  position: relative;
}

.product-category-item a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.product-category-item a:hover {
  color: var(--primary, #013587);
  background: rgba(1, 53, 135, 0.04);
}

.product-category-item a:hover::before {
  background: var(--primary, #013587);
  transform: scale(1.3);
}

.product-category-item.active a {
  color: var(--primary, #013587);
  background: rgba(1, 53, 135, 0.08);
  font-weight: 500;
}

.product-category-item.active a::before {
  background: var(--primary, #013587);
  transform: scale(1.3);
}

/* 产品主区域 */
.product-main {
  min-width: 0;
}

/* 当前分类提示条 - 简洁风格 */
.product-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(6, 29, 66, 0.04);
}

.product-current-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #666;
}

.product-current-left i {
  font-size: 18px;
  color: var(--primary, #013587);
}

.product-current-name {
  color: #333;
  font-weight: 500;
}

.product-current-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-current-count {
  font-size: 13px;
  color: #999;
}

.product-current-count strong {
  color: var(--primary, #013587);
  font-weight: 600;
}

/* 切换分类按钮 - 圆形轻量风格 */
.product-current-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:var(--primary, #013587);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}


.product-current-btn i {
  transition: transform 0.2s ease;
}

.product-current-btn.active i {
  transform: rotate(180deg);
}

/* 产品网格 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 产品卡片 - 首页风格 */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(1, 53, 135, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #f0f4f8;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(1, 53, 135, 0.12);
  border-color: #e2e8f0;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.product-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(1, 53, 135, 0) 0%, rgba(1, 53, 135, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card-image::after {
  opacity: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 24px 20px 28px;
  position: relative;
}

.product-card-title {
  font-size: 16px;
  font-weight: 450;
  color: #1a202c;
  margin: 0 0 10px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.product-card-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

/* 分类选择弹窗 */
.category-modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-modal.active {
  pointer-events: auto;
  opacity: 1;
}

.category-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.category-modal.active + .category-modal-overlay {
  opacity: 1;
  pointer-events: auto;
}

.category-modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 70vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.category-modal.active .category-modal-content {
  transform: translateY(0);
}

.category-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.category-modal-header h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.category-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  cursor: pointer;
}

.category-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: calc(70vh - 80px);
  overflow-y: auto;
}

.category-modal-item {
  border-bottom: 1px solid #f5f5f5;
}

.category-modal-item:last-child {
  border-bottom: none;
}

.category-modal-item a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-modal-item.active a,
.category-modal-item a:hover {
  background: #f8fafd;
  color: var(--primary, #013587);
}

/* 响应式 */
@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-sidebar {
    display: none;
  }

  .product-current-btn {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .product-card-content {
    padding: 16px;
  }

  .product-card-title {
    font-size: 15px;
  }
}

@media (min-width: 1025px) {
  .product-current-btn {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .product-section {
    padding: 40px 0 60px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-current {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .product-current-right {
    width: 100%;
    justify-content: space-between;
  }

  .product-card-image {
    aspect-ratio: 16 / 9;
  }
}


/* ==================== 产品详情页样式 ==================== */
.product-view-section {
  padding: 60px 0 80px;
}

.product-view-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* 产品图片区域 */
.product-view-gallery {
  position: sticky;
  top: 90px;
}

.product-view-main-image {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(1, 53, 135, 0.08);
  margin-bottom: 16px;
}

.product-view-main-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* 产品信息区域 */
.product-view-info {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
}

.product-view-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(1, 53, 135, 0.08);
  color: var(--primary, #013587);
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.product-view-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 16px;
  line-height: 1.4;
}

.product-view-summary {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f2f5;
}

.product-view-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0152a8 100%);
  border-radius: 10px;
}

.product-view-phone i {
  font-size: 28px;
  color: #fff;
}

.product-view-phone span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.product-view-phone a {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-view-phone a:hover {
  opacity: 0.9;
}

/* 产品信息内的缩略图容器 */
.product-view-info .product-view-thumbnails {
  margin-top: 24px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
  max-height: none;
  overflow-y: visible;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.product-view-info .product-view-thumbnail {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.product-view-info .product-view-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 产品详情内容 */
.product-view-content {
  margin-top: 60px;
}

.product-view-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(1, 53, 135, 0.06);
}

.product-view-tab {
  padding: 12px 28px;
  font-size: 15px;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  border: none;
  background: none;
}

.product-view-tab:hover {
  color: var(--primary, #013587);
}

.product-view-tab.active {
  background: var(--primary, #013587);
  color: #fff;
  font-weight: 500;
}

.product-view-panel {
  display: none;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(1, 53, 135, 0.06);
}

.product-view-panel.active {
  display: block;
}

.product-view-description {
  font-size: 15px;
  color: #475569;
  line-height: 1.9;
}

.product-view-description p {
  margin: 0 0 18px;
}

.product-view-description h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin: 28px 0 16px;
  padding-bottom: 10px;
}

.product-view-description ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.product-view-description ul li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.product-view-description ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary, #013587);
  font-weight: bold;
}

/* 技术参数表格 */
.product-view-params-box {
  min-height: 200px;
}
.product-view-params-box img,.product-view-description img{max-width: 800px;}
.product-view-params-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 24px 0 12px;
}

.product-view-params-box h3:first-child {
  margin-top: 0;
}

.product-view-params {
  width: 100%;
  border-collapse: collapse;
}

.product-view-params th,
.product-view-params td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #f0f2f5;
  font-size: 14px;
}

.product-view-params th {
  background: #f8fafc;
  color: #64748b;
  font-weight: 400;
  width: 140px;
}

.product-view-params td {
  color: #1a202c;
}

.product-view-params tr:last-child th,
.product-view-params tr:last-child td {
  border-bottom: none;
}

/* 下载区域 */
.product-view-downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-view-download-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-view-download-item:hover {
  background: #f0f4f8;
  transform: translateX(8px);
}

.product-view-download-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #013587);
  color: #fff;
  border-radius: 10px;
  font-size: 22px;
  flex-shrink: 0;
}

.product-view-download-info h4 {
  font-size: 14px;
  font-weight: 500;
  color: #1a202c;
  margin: 0 0 4px;
}

.product-view-download-info p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

/* 产品详情页响应式 */
@media (max-width: 1024px) {
  .product-view-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-view-gallery {
    position: static;
  }

  .product-view-info {
    padding: 20px;
  }

  .product-view-info .product-view-thumbnails {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-view-section {
    padding: 30px 0 50px;
  }

  .product-view-info {
    padding: 16px;
  }

  .product-view-title {
    font-size: 20px;
  }

  .product-view-phone {
    padding: 14px 20px;
  }

  .product-view-phone i {
    font-size: 20px;
  }

  .product-view-phone span {
    font-size: 13px;
  }

  .product-view-phone a {
    font-size: 18px;
  }

  .product-view-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-view-tab {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .product-view-panel {
    padding: 24px 20px;
  }

  .product-view-downloads {
    grid-template-columns: 1fr;
  }
}


/* ==================== 文章列表通用样式（行业应用/解决方案/资讯等） ==================== */

/* 分类导航 */
.article-nav-section {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-nav-item {
  padding: 10px 24px;
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.article-nav-item:hover {
  color: var(--primary, #013587);
  background: rgba(1, 53, 135, 0.06);
}

.article-nav-item.active {
  color: #fff;
  background: var(--primary, #013587);
}

/* 文章列表区域 */
.article-section {
  padding: 40px 0 80px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 文章卡片 */
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(1, 53, 135, 0.06);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(1, 53, 135, 0.12);
}

.article-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8fafc;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.05);
}

.article-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--primary, #013587);
  background: rgba(1, 53, 135, 0.08);
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.article-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-card-title {
  color: var(--primary, #013587);
}

.article-card-summary {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #94a3b8;
}

.article-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-card-meta i {
  font-size: 13px;
}

/* 文章列表响应式 */
@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .article-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .article-nav-item {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .article-section {
    padding: 24px 0 50px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-card-content {
    padding: 16px;
  }

  .article-card-title {
    font-size: 15px;
  }

  .article-nav-section {
    padding: 16px 0;
  }

  .article-nav-item {
    padding: 8px 16px;
    font-size: 13px;
  }
}


/* ==================== 文章详情页通用样式 ==================== */
.detail-section {
  padding: 40px 0 0;
}

.detail-header {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  text-align: center;
}

.detail-title {
  font-size: 38px;
  font-weight: 300;
  color: #1a202c;
  margin: 0 0 16px;
  line-height: 1.4;
}

.detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  color: #fff;
  background: var(--primary, #013587);
  border-radius: 4px;
}

.detail-date,
.detail-views {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-cover {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(1, 53, 135, 0.06);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

.detail-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(1, 53, 135, 0.06);
  font-size: 15px;
  color: #475569;
  line-height: 1.9;
}

.detail-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f2f5;
}

.detail-content h2:first-child {
  margin-top: 0;
}

.detail-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #334155;
  margin: 24px 0 12px;
}

.detail-content p {
  margin: 0 0 16px;
}

.detail-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.detail-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.detail-content ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary, #013587);
  font-weight: bold;
}

/* 相关产品 */
.detail-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.detail-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.detail-product-item:hover {
  background: #f0f4f8;
  transform: translateY(-4px);
}

.detail-product-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-product-item span {
  font-size: 13px;
  color: #334155;
  text-align: center;
}

/* 翻页导航 */
.detail-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-pagination-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(1, 53, 135, 0.06);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-pagination-item span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #94a3b8;
}

.detail-pagination-linker {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding:10px 20px;
}

.detail-pagination-linker a {
  color: #334155;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.detail-pagination-linker a:hover {
  color: var(--primary, #013587);
}

.detail-pagination-item:has(.detail-pagination-linker a) {
  cursor: pointer;
}

.detail-pagination-item.next {
  text-align: right;
}

.detail-pagination-item.next span {
  justify-content: flex-end;
}

/* 咨询区域 */
.detail-consult {
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0152a8 100%);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 80px;
}

.detail-consult-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-consult-content i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-consult-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 6px;
}

.detail-consult-content strong {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.detail-consult-content a {
  color: #fff;
  text-decoration: none;
}

.detail-consult-content a:hover {
  text-decoration: underline;
}

/* 相关案例 */
.detail-related {
  padding: 60px 0 80px;
  background: #f8fafc;
}

.detail-related-title {
  font-size: 24px;
  font-weight: 300;
  color: #1a202c;
  margin: 0 0 32px;
  text-align: center;
}

/* 详情页响应式 */
@media (max-width: 1024px) {
  .detail-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-pagination {
    grid-template-columns: 1fr;
  }

  .detail-pagination-item.next {
    text-align: left;
  }

  .detail-pagination-item.next span {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .detail-header {
    padding: 24px 20px;
  }

  .detail-title {
    font-size: 26px;
  }

  .detail-content {
    padding: 24px 20px;
  }

  .detail-consult {
    padding: 24px 20px;
  }

  .detail-consult-content i {
    font-size: 36px;
  }

  .detail-consult-content strong {
    font-size: 16px;
  }

  .detail-related {
    padding: 40px 0 60px;
  }
}

@media (max-width: 640px) {
  .detail-section {
    padding: 30px 0 0;
  }

  .detail-header {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .detail-meta {
    gap: 12px;
  }

  .detail-title {
    font-size: 26px;
  }

  .detail-cover img {
    aspect-ratio: 16 / 9;
  }

  .detail-content {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .detail-content h2 {
    font-size: 18px;
  }

  .detail-products {
    grid-template-columns: 1fr;
  }

  .detail-consult {
    border-radius: 12px;
    margin-bottom: 50px;
  }

  .detail-consult-content {
    flex-direction: column;
    text-align: center;
  }
}


/* ==================== 解决方案列表页样式 ==================== */
.solution-section {
  padding: 50px 0 80px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(1, 53, 135, 0.06);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(1, 53, 135, 0.12);
}

.solution-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8fafc;
}

.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-card-image img {
  transform: scale(1.08);
}

.solution-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 53, 135, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover .solution-card-overlay {
  opacity: 1;
}

.solution-card-overlay i {
  font-size: 36px;
  color: #fff;
}

.solution-card-overlay span {
  font-size: 14px;
  color: #fff;
}

.solution-card-content {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 14px;
  line-height: 1.4;
}

.solution-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

/* 咨询区域 */
.solution-consult {
  padding: 60px 0 80px;
  background: #f8fafc;
}

.solution-consult-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 4px 24px rgba(1, 53, 135, 0.06);
}

.solution-consult-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0152a8 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.solution-consult-icon i {
  font-size: 32px;
  color: #fff;
}

.solution-consult-text {
  flex: 1;
}

.solution-consult-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 8px;
}

.solution-consult-text p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.solution-consult-action {
  flex-shrink: 0;
}

.solution-consult-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary, #013587) 0%, #0152a8 100%);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-consult-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 53, 135, 0.3);
}

.solution-consult-phone i {
  font-size: 20px;
  color: #fff;
}

.solution-consult-phone span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

/* 解决方案页响应式 */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-consult-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .solution-consult-action {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .solution-section {
    padding: 30px 0 50px;
  }

  .solution-card-content {
    padding: 20px;
  }

  .solution-card-title {
    font-size: 18px;
  }

  .solution-consult {
    padding: 40px 0 50px;
  }

  .solution-consult-inner {
    padding: 24px 20px;
  }

  .solution-consult-icon {
    width: 60px;
    height: 60px;
  }

  .solution-consult-icon i {
    font-size: 26px;
  }

  .solution-consult-text h3 {
    font-size: 18px;
  }

  .solution-consult-phone {
    padding: 12px 24px;
  }

  .solution-consult-phone span {
    font-size: 16px;
  }
}


/* ==================== 新闻列表页样式 ==================== */
.news-list-section {
  padding: 40px 0 80px;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.news-list-item {
  background: #ffffff;
  border: 1px solid #c8d7ee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-list-item:hover {
  box-shadow: 0 8px 24px rgba(1, 53, 135, 0.12);
  transform: translateY(-4px);
}

.news-list-item:hover .news-list-arrow {
  background: #059444;
}

.news-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-list-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-list-meta {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
  font-weight: 300;
}

.news-list-title {
  font-size: 20px;
  font-weight: 650;
  margin: 0 0 20px;
  line-height: 1.4;
  color: #444444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.news-list-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #d1d5db;
}

.news-list-item:hover .news-list-title {
  color: #083782;
}

.news-list-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 20px 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.news-list-date {
  font-size: 13px;
  color: #9ca3af;
}

.news-list-arrow {
  width: 40px;
  height: 32px;
  background: #013587;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

/* 资讯页响应式 */
@media (max-width: 992px) {
  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-list-content {
    padding: 24px;
  }

  .news-list-title {
    font-size: 18px;
  }

  .news-list-desc {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .news-list-section {
    padding: 30px 0 50px;
  }

  .news-list-content {
    padding: 20px;
  }

  .news-list-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .news-list-title::after {
    bottom: -8px;
  }

  .news-list-desc {
    font-size: 13px;
    margin-top: 16px;
  }

  .news-list-footer {
    margin-top: 20px;
  }
}


/* ==================== 文章分页样式 ==================== */
.article-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.article-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-pagination-item:hover:not(.disabled):not(.active) {
  color: var(--primary, #013587);
  border-color: var(--primary, #013587);
  background: rgba(1, 53, 135, 0.04);
}

.article-pagination-item.active {
  color: #fff;
  background: var(--primary, #013587);
  border-color: var(--primary, #013587);
}

.article-pagination-item.disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  pointer-events: none;
}

.article-pagination-item i {
  font-size: 16px;
}

/* 资讯页响应式 */
@media (max-width: 640px) {
  .article-pagination {
    gap: 6px;
    margin-top: 32px;
  }

  .article-pagination-item {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
}

/* ==================== 产品详情多图画廊样式 ==================== */
.product-view-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-view-main-image {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}

.product-view-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-view-main-image:hover img {
  transform: scale(1.02);
}

.product-view-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 320px;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.product-view-thumbnails::-webkit-scrollbar {
  width: 6px;
}

.product-view-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.product-view-thumbnails::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.product-view-thumbnail {
  flex-shrink: 0;
  width: 100%;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.product-view-thumbnail:hover {
  opacity: 1;
}

.product-view-thumbnail.active {
  border-color: var(--primary, #013587);
  opacity: 1;
}

.product-view-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 图片放大弹窗 */
.product-view-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-view-modal.show {
  display: flex;
}

.product-view-modal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.product-view-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.product-view-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-view-modal-prev,
.product-view-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.product-view-modal-prev:hover,
.product-view-modal-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-view-modal-prev {
  left: 20px;
}

.product-view-modal-next {
  right: 20px;
}

.product-view-modal-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* 响应式 */
@media (max-width: 768px) {
  .product-view-thumbnail {
    width: 64px;
    height: 48px;
  }

  .product-view-modal {
    padding: 20px;
  }

  .product-view-modal-prev,
  .product-view-modal-next {
    width: 40px;
    height: 40px;
  }

  .product-view-modal-prev {
    left: 10px;
  }

  .product-view-modal-next {
    right: 10px;
  }
}
