/* 通用页面样式（解决方案、关于我们、联系我们等页面） */

/* 页面顶部横幅 */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d4a7c 100%);
  color: var(--white);
  padding: 50px 0;
  margin-top: 128px;
  text-align: center;
}

/* 关于我们页面 - 公司简介样式 */
.about-intro {
  padding: 60px 0 80px;
  background: var(--white);
}

.about-intro .container {
  max-width: 1200px;
}

.about-intro .intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  align-items: start;
}

.intro-main {
  position: relative;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-light);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.intro-badge i {
  font-size: 14px;
}

.intro-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  margin-bottom: 25px;
}

.intro-desc {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: justify;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  background: var(--bg-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 26px;
  color: var(--white);
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
}

.intro-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--primary-color);
}

.gallery-item.active {
  border-color: var(--primary-color);
}

.gallery-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border-color);
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: var(--bg-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.intro-stat:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.intro-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.intro-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .about-intro .intro-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .about-intro {
    padding: 40px 0 50px;
  }

  .intro-title {
    font-size: 1.6rem;
  }

  .intro-desc {
    font-size: 14px;
  }

  .intro-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
  }

  .feature-card {
    padding: 18px 12px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .feature-icon i {
    font-size: 22px;
  }

  .feature-text h4 {
    font-size: 14px;
  }

  .gallery-main img {
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .gallery-item img {
    height: 70px;
  }

  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
  }

  .intro-stat {
    padding: 20px 15px;
  }

  .intro-num {
    font-size: 2rem;
  }

  .intro-label {
    font-size: 13px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .intro-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-direction: row;
    padding: 15px 20px;
    gap: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-text h4 {
    text-align: left;
  }

  .intro-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 14px;
  opacity: 0.9;
}

/* 面包屑导航 */
.breadcrumb-section {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-section .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

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

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

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

.breadcrumb-section span:last-child {
  color: var(--text-color);
}

/* 内容区块 */
.content-section {
  padding: 50px 0;
}

.content-section.alt-bg {
  background: var(--bg-color);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  padding-left: 12px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-more {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color);
  font-size: 13px;
}

.section-more:hover {
  gap: 8px;
}

/* 标签页样式 */
.tabs-container {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 25px;
}

.tabs-header {
  display: flex;
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.tab-btn {
  padding: 15px 25px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

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

.tab-btn.active {
  color: var(--primary-color);
  background: var(--white);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

.tab-content {
  display: none;
  padding: 25px;
}

.tab-content.active {
  display: block;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), #f0fdf4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img i {
  font-size: 60px;
  color: var(--primary-color);
}

.card-body {
  padding: 20px;
}

.card-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
}

.card-btn:hover {
  background: var(--primary-dark);
}

/* 列表样式 */
.content-list {
  display: grid;
  gap: 15px;
}

.list-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.list-item:hover {
  box-shadow: var(--shadow-hover);
}

.list-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.list-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.list-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.list-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 详情内容 */
.detail-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.detail-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.detail-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 25px 0 15px;
}

.detail-content p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 15px;
}

.detail-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.detail-content li {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* 统计数据 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
}

/* 时间线样式 */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.timeline-content {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* 联系表单 */
.contact-form {
  /* background: var(--white); */
  padding: 15px;
  border-radius: var(--radius);
  /* box-shadow: var(--shadow); */
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* margin-bottom: 20px; */
}



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

.form-group label span {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  padding: 12px 40px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}


/* 联系信息 */
.contact-info {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.info-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

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

.info-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 新闻列表 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.news-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), #f0fdf4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-img i {
  font-size: 50px;
  color: var(--primary-color);
}

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 12px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--primary-color);
}

.news-link:hover {
  gap: 10px;
}

/* 招聘列表 */
.jobs-grid {
  display: grid;
  gap: 15px;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow-hover);
}

.job-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-action {
  flex-shrink: 0;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
}

.apply-btn:hover {
  background: var(--primary-dark);
}

/* 下载列表 */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.download-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.download-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.download-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.download-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 5px;
}

.download-card p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
}

.download-btn:hover {
  background: var(--primary-dark);
}

/* 响应式 */
@media (max-width: 1200px) {

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

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

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

@media (max-width: 1024px) {

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

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

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* 移动端导航栏样式 - 与首页保持一致 */
@media (max-width: 768px) {

  .fixed-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .top-bar {
    display: none;
  }

  .main-header {
    padding: 10px 0;
    background: var(--white);
  }

  .header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    order: 1;
    position: relative;
  }

  .header-logo {
    flex: 1;
    order: 2;
  }

  .header-logo .logo-icon {
    font-size: 22px;
    color: var(--primary-color);
  }

  .header-logo .logo-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
  }

  .header-logo .logo-en {
    font-size: 9px;
    color: var(--text-light);
  }

  .header-search {
    display: none;
  }

  .header-actions {
    display: flex;
    gap: 10px;
    order: 3;
  }

  .header-actions .action-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
  }

  .header-actions .action-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
  }

  .header-actions .action-link span {
    display: none;
  }

  .header-actions .action-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .auth-group {
    display: none;
  }

  .header-nav {
    position: static;
    background: var(--white);
  }

  .nav-inner {
    position: relative;
  }

  .nav-list {
    display: none !important;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    min-height: 300px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-list.active {
    display: flex !important;
  }

  .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

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

  .nav-link {
    display: block;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-link:hover {
    color: var(--primary-color);
    background: var(--primary-light);
  }

  .nav-link.active {
    color: var(--primary-color);
    background: var(--primary-light);
  }

  .nav-link::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-light);
    transition: transform 0.3s ease;
  }

  .nav-dropdown {
    display: none;
    position: static;
    background: var(--bg-color);
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    animation: none;
    min-width: auto;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item.active .nav-dropdown {
    display: block;
    animation: fadeIn 0.3s ease-out;
  }

  .nav-dropdown a {
    padding: 14px 35px;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-dropdown a:hover {
    color: var(--primary-color);
    background: var(--primary-light);
  }

  .nav-dropdown a:last-child {
    border-bottom: none;
  }

  .page-hero {
    padding: 35px 0;
    margin-top: 0;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .cards-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

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

  .tabs-header {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .tab-btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .timeline {
    padding-left: 25px;
  }

  .timeline-item::before {
    left: -21px;
  }
}

@media (max-width: 576px) {
  .content-section {
    padding: 30px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .detail-content {
    padding: 20px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }
}

/* 服务介绍 */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-bottom: 50px;
}

.service-intro-content p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color);
}

.service-intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 流程步骤 */
.process-flow {
  margin-bottom: 50px;
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-step {
  text-align: center;
  flex: 1;
  max-width: 180px;
  min-width: 140px;
}

.flow-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.flow-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.flow-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.flow-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 25px;
  color: var(--border-color);
}

.flow-arrow i {
  font-size: 20px;
}

/* 产品分类 */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
}

.category-link:hover {
  gap: 10px;
}

/* 产品特点 */
.product-features {
  margin-bottom: 50px;
}

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

.feature-item {
  text-align: center;
  padding: 25px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-icon i {
  font-size: 26px;
  color: var(--primary-color);
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 服务卡片 */
.cdmo-services {
  margin-bottom: 50px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 质量体系 */
.quality-system {
  display: grid;
  gap: 20px;
  margin-bottom: 50px;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quality-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-icon i {
  font-size: 26px;
  color: var(--primary-color);
}

.quality-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.quality-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 检测能力 */
.检测能力-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.检测能力-item {
  text-align: center;
  padding: 25px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.检测能力-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.检测能力-icon i {
  font-size: 26px;
  color: var(--primary-color);
}

.检测能力-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.检测能力-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 技术优势 */
.tech-advantages {
  margin-bottom: 50px;
}

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

.advantage-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.advantage-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 15px;
}

.advantage-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.advantage-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 生产能力 */
.production-capacity {
  margin-bottom: 50px;
}

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

.capacity-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capacity-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.capacity-icon i {
  font-size: 26px;
  color: var(--primary-color);
}

.capacity-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.capacity-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.capacity-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* 企业文化 */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.culture-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.culture-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.culture-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.culture-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.culture-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* 使命愿景 */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.mission-box,
.vision-box {
  padding: 35px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.mission-box h3,
.vision-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.mission-box h3 i,
.vision-box h3 i {
  color: var(--primary-color);
}

.mission-box p,
.vision-box p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
}

/* 团队文化 */
.team-culture {
  margin-bottom: 50px;
}

.team-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-feature {
  text-align: center;
  padding: 30px 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.team-icon i {
  font-size: 26px;
  color: var(--primary-color);
}

.team-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.team-feature p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 联系CTA */
.contact-cta {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d4a7c 100%);
  border-radius: var(--radius);
  color: var(--white);
}

.contact-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.contact-cta .btn {
  background: var(--white);
  color: var(--primary-color);
}

.contact-cta .btn:hover {
  background: var(--primary-light);
}

/* 响应式补充 */
@media (max-width: 1024px) {
  .service-intro {
    grid-template-columns: 1fr;
  }

  .service-intro-image {
    order: -1;
    max-height: 300px;
  }

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

  .features-grid,
  .检测能力-grid,
  .advantages-grid,
  .capacity-grid,
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .team-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
    margin-top: 0;
  }

  .page-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
  }

  .page-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
  }

  .page-hero p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 15px;
  }

  .breadcrumb-section {
    padding: 10px 0;
    display: none;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-section.alt-bg {
    background: var(--bg-color);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 12px;
    padding-left: 0;
  }

  .section-title::before {
    display: none;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
  }

  .section-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }

  .section-more:hover {
    gap: 8px;
  }

  .cards-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 4px 4px 0 0;
  }

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
  }

  .card-img {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), #f0fdf4);
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .card-img i {
    font-size: 48px;
    color: var(--primary-color);
  }

  .card-body {
    padding: 0;
  }

  .card-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
  }

  .card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 127, 55, 0.4);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .stat-card {
    padding: 25px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 3px 3px 0 0;
  }

  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .stat-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
  }

  .stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--text-light);
  }

  .list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 12px;
  }

  .list-icon i {
    font-size: 26px;
    color: var(--primary-color);
  }

  .list-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
  }

  .list-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
  }

  .detail-content {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .detail-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
  }

  .detail-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 25px 0 15px;
  }

  .detail-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .detail-content li {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    padding-left: 20px;
  }

  .tabs-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 25px;
  }

  .tabs-header {
    display: flex;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    padding: 5px;
    gap: 5px;
  }

  .tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 10px;
  }

  .tab-btn:hover {
    color: var(--primary-color);
    background: var(--white);
  }

  .tab-btn.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  }

  .tab-btn.active::after {
    display: none;
  }

  .tab-content {
    display: none;
    padding: 20px;
  }

  .tab-content.active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
  }

  .timeline {
    position: relative;
    padding-left: 30px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
  }

  .timeline-item {
    position: relative;
    padding-bottom: 25px;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
  }

  .timeline-year {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
  }

  .timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
  }

  .timeline-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
  }

  .timeline-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
  }

  .contact-form,
  .contact-info {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
  }

  .contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

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

  .info-item i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 18px;
  }

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

  .info-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
  }

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

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

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.1);
  }

  .submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }



  .news-card {
    padding: 25px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }

  .news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 4px 4px 0 0;
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
  }

  .news-img {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light), #f0fdf4);
    border-radius: 12px;
    margin-bottom: 15px;
  }

  .news-img i {
    font-size: 44px;
    color: var(--primary-color);
  }

  .news-content {
    padding: 0;
  }

  .news-date {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .news-date::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary-color);
  }

  .news-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
  }

  .news-link:hover {
    gap: 10px;
  }

  .jobs-grid {
    display: grid;
    gap: 15px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

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

  .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
  }

  .job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .job-action {
    width: 100%;
  }

  .apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 127, 55, 0.4);
  }

  .download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .download-card {
    padding: 20px 15px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .download-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 12px;
    margin-bottom: 15px;
  }

  .download-icon i {
    font-size: 24px;
    color: var(--primary-color);
  }

  .download-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
  }

  .download-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
  }

  .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
  }

  .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 127, 55, 0.4);
  }

  .product-categories,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card,
  .service-card {
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .category-card:hover,
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
  }

  .category-icon,
  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .category-icon i,
  .service-icon i {
    font-size: 28px;
    color: var(--primary-color);
  }

  .category-card h3,
  .service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
  }

  .category-card p,
  .service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    background: var(--primary-light);
    border-radius: 20px;
    transition: all 0.3s ease;
  }

  .category-link:hover {
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
  }

  .features-grid,
  .检测能力-grid,
  .advantages-grid,
  .capacity-grid,
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .feature-item,
  .检测能力-item,
  .advantage-item,
  .capacity-item,
  .culture-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .feature-item:hover,
  .检测能力-item:hover,
  .advantage-item:hover,
  .capacity-item:hover,
  .culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .feature-icon,
  .检测能力-icon,
  .advantage-icon,
  .capacity-icon,
  .culture-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }

  .feature-icon i,
  .检测能力-icon i,
  .advantage-icon i,
  .capacity-icon i,
  .culture-icon i {
    font-size: 24px;
    color: var(--primary-color);
  }

  .feature-item h4,
  .检测能力-item h4,
  .advantage-item h4,
  .capacity-label,
  .culture-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
  }

  .feature-item p,
  .检测能力-item p,
  .advantage-item p,
  .capacity-desc,
  .culture-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .advantage-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 10px;
  }

  .capacity-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .service-intro-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .service-features {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
  }

  .service-features li:last-child {
    border-bottom: none;
  }

  .service-features i {
    color: var(--primary-color);
    font-size: 16px;
  }

  .service-intro-image {
    order: -1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-height: 250px;
  }

  .process-flow {
    margin-bottom: 40px;
  }

  .flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .flow-step {
    text-align: center;
    flex: none;
    max-width: 100%;
    min-width: 100%;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
  }

  .flow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }

  .flow-icon i {
    font-size: 26px;
    color: var(--primary-color);
  }

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

  .flow-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .flow-arrow {
    display: none;
  }

  .quality-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
  }

  .quality-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .quality-icon i {
    font-size: 24px;
    color: var(--primary-color);
  }

  .quality-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
  }

  .quality-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .mission-box,
  .vision-box {
    padding: 25px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left: none;
    border-top: 4px solid var(--primary-color);
  }

  .mission-box h3,
  .vision-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
  }

  .mission-box h3 i,
  .vision-box h3 i {
    color: var(--primary-color);
    font-size: 20px;
  }

  .mission-box p,
  .vision-box p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
  }

  .team-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .team-feature {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
  }

  .team-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), #dcfce7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }

  .team-icon i {
    font-size: 24px;
    color: var(--primary-color);
  }

  .team-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
  }

  .team-feature p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
  }
}

/* 联系我们页面样式 */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 127, 55, 0.05) 0%, rgba(26, 54, 46, 0.05) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  border-radius: 3px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.info-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light), #dcfce7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 127, 55, 0.2);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(26, 127, 55, 0.4);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  border-radius: 3px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group label .required {
  color: var(--danger-color);
  font-size: 16px;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-color);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  padding: 18px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(26, 127, 55, 0.3);
}



/* 地图区域 */
.map-section {
  padding: 80px 0;
  background: var(--white);
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.map-info {
  background: linear-gradient(135deg, var(--secondary-color), #000000);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
}

.map-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.map-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  border-radius: 3px;
}

.transport-item {
  margin-bottom: 25px;
}

.transport-item:last-child {
  margin-bottom: 0;
}

.transport-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport-item h4 i {
  color: var(--primary-color);
  font-size: 20px;
}

.transport-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.map-container {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 127, 55, 0.05) 0%, rgba(26, 54, 46, 0.05) 100%);
  color: var(--text-light);
  gap: 20px;
}

.map-placeholder i {
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.3;
}

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

/* 移动端适配 */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 30px 25px;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }

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

  .map-section {
    padding: 50px 0;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-info {
    padding: 30px 25px;
  }

  .map-info h3 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 350px;
  }
}

.contact-cta {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, var(--secondary-color), #2d4a7c);
  border-radius: 16px;
  color: var(--white);
}

.contact-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.contact-cta .btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* 联系页面样式 */
.contact-section {
  padding: 170px 0 80px;
  background: linear-gradient(180deg, #f8faf9 0%, #f0f5f2 100%);
  min-height: calc(100vh - 280px);
}

.contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.contact-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.contact-header h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.contact-header p {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 16px;
}

.contact-main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 25px;
  align-items: start;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 127, 55, 0.12);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #e8f5ea 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.info-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.info-content p {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  padding-left: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 127, 55, 0.3);
}

.contact-form-section {
  position: relative;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding:20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.form-card > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-color);
  background: var(--white);
  transition: all 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a0aec0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(26, 127, 55, 0.08);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.submit-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d8a4e 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(26, 127, 55, 0.25);
  margin-top: 8px;
}



/* 响应式 */
@media (max-width: 1024px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .social-links {
    grid-column: 1 / -1;
    justify-content: center;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0 60px;
  }

  .contact-header h1 {
    font-size: 26px;
  }

  .contact-info-section {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 24px;
  }

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

  .form-field textarea {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .contact-header {
    margin-bottom: 30px;
  }

  .contact-header h1 {
    font-size: 24px;
  }

  .form-card {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}

.info-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
}

.social-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(26, 127, 55, 0.3);
}

/* 移动端适配 */
@media (max-width: 992px) {
  .contact-new-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-new-section {
    padding: 50px 0;
  }

  .contact-form-card {
    border-radius: 20px;
  }

  .card-header {
    padding: 30px 25px;
  }

  .card-header h2 {
    font-size: 1.5rem;
  }

  .card-header p {
    padding-left: 0;
    font-size: 14px;
  }

  .contact-form-new {
    padding: 30px 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .contact-info-card {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .info-header h2 {
    font-size: 1.4rem;
  }

  .info-block {
    gap: 15px;
  }

  .info-icon-box {
    width: 44px;
    height: 44px;
  }

  .info-icon-box i {
    font-size: 18px;
  }

  .info-text p {
    font-size: 14px;
  }

  .submit-btn-new {
    padding: 16px 30px;
    font-size: 15px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}

/* 订单完成页面样式 */
.complete-section {
  padding: 40px 0 60px;
  background: #f5f7f9;
}

.complete-main {
  max-width: 800px;
  padding-top:30px;
  margin: 0 auto;
}

.complete-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.complete-success {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d8a4e 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-icon-wrap i {
  font-size: 32px;
  color: var(--white);
}

.success-text h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.success-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.complete-info {
  padding: 28px 40px;
}

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

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-size: 13px;
  color: var(--text-light);
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.info-value.amount {
  font-size: 18px;
  color: var(--primary-color);
}

.complete-divider {
  height: 1px;
  background: #e8ecf0;
}

.complete-products {
  padding: 24px 40px;
}

.complete-products h3,
.complete-address h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.product-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.prod-name {
  font-size: 14px;
  color: var(--text-color);
}

.prod-name small {
  color: var(--text-light);
  margin-left: 8px;
}

.prod-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.complete-address {
  padding: 0 40px 24px;
}

.complete-address p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.complete-actions {
  padding: 24px 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  background: #f8f9fa;
}

.complete-actions .btn-primary,
.complete-actions .btn-outline {
  padding: 12px 32px;
  font-size: 14px;
}

.payment-card {
  margin-top: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.payment-header i {
  font-size: 18px;
  color: var(--primary-color);
}

.payment-header span {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
}

.payment-tip {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8ecf0;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bank-item {
  display: flex;
  gap: 12px;
}

.bank-label {
  font-size: 13px;
  color: var(--text-light);
  width: 70px;
  flex-shrink: 0;
}

.bank-value {
  font-size: 13px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .complete-success {
    padding: 30px 24px;
    flex-direction: column;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .complete-info,
  .complete-products,
  .complete-address,
  .complete-actions,
  .payment-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .complete-actions {
    flex-direction: column;
  }

  .complete-actions .btn-primary,
  .complete-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* 移动端通用导航栏样式 - 与首页一致 */
@media (max-width: 768px) {
  .fixed-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .top-bar {
    display: none !important;
  }

  .main-header {
    padding: 10px 0;
    background: var(--white);
  }

  .header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    order: 1;
    position: relative;
  }

  .header-logo {
    flex: 1;
    order: 2;
  }

  .header-logo .logo-icon {
    font-size: 22px;
    color: var(--primary-color);
  }

  .header-logo .logo-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
  }

  .header-logo .logo-en {
    font-size: 9px;
    color: var(--text-light);
  }

  .header-search {
    display: none;
  }

  .header-actions {
    display: flex;
    gap: 10px;
    order: 3;
  }

  .header-actions .action-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
  }

  .header-actions .action-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
  }

  .header-actions .action-link span {
    display: none;
  }

  .header-actions .action-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .auth-group {
    display: none;
  }

  .header-nav {
    position: static;
    background: var(--white);
  }

  .nav-inner {
    position: relative;
  }

  .nav-list {
    display: none !important;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    min-height: 300px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-list.active {
    display: flex !important;
  }

  .nav-item {
    position: relative;
  }

  .nav-item .nav-link {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
  }

  .nav-item .nav-link:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    padding-left: 24px;
  }

  .nav-item.active .nav-link {
    color: var(--primary-color);
    font-weight: 600;
  }

  .nav-item .nav-dropdown {
    display: none;
    position: static;
    background: var(--bg-color);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-item:hover .nav-dropdown {
    display: none;
  }

  .nav-item.active .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    display: block;
    padding: 12px 28px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.2s ease;
  }

  .nav-dropdown a:hover {
    background: var(--white);
    color: var(--primary-color);
    padding-left: 32px;
  }

  .nav-extra {
    display: none;
  }
}

/* 移动端通用页脚样式 - 与首页一致 */
@media (max-width: 768px) {
  .main-footer {
    background: linear-gradient(135deg, var(--secondary-color), #000000);
    color: var(--white);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
  }

  .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col {
    text-align: left;
    position: relative;
    z-index: 1;
  }

  .footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
  }

  .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col ul li {
    transition: transform 0.3s ease;
  }

  .footer-col ul li:hover {
    transform: translateX(5px);
  }

  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
  }

  .footer-col ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
  }

  .footer-col ul li a:hover {
    color: var(--primary-color);
  }

  .footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  .footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 127, 55, 0.4);
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
  }

  @keyframes fadeInUpFooter {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .footer-col {
    animation: fadeInUpFooter 0.8s ease-out;
  }

  .footer-col:nth-child(2) {
    animation-delay: 0.2s;
  }

  .footer-col:nth-child(3) {
    animation-delay: 0.4s;
  }

  .footer-col:nth-child(4) {
    animation-delay: 0.6s;
  }
}