	/* 更新Hero样式，添加箭头 */
.hero-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.breadcrumb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
}

.section-icon {
  width: 40px;
  height: 4px;
  background: var(--primary-color);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-lighter);
  font-size: 14px;
}

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

.breadcrumb-nav span {
  color: var(--text-lighter);
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 30px;
  background: transparent;
  color: #000;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid;
}

.product-card:hover .btn {
  background: var(--primary-hover);
  padding: 12px 32px;
  color: #fff;
  border: none;
  transform: translateY(-2px);
  /*box-shadow: 0 4px 12px rgba(217, 115, 51, 0.4);*/
}

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

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

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




/* 卡片样式 */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

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

/* 网格布局 */
.grid {
  display: grid;
  gap: 30px;
}

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

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

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


/* 首页Hero轮播样式 */
.home-hero {
  /*height: 600px;*/
  height: calc(100vh - 80px);
  position: relative;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide.active {
  display: block;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* Hero左右切换箭头 */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  /*background: rgba(255, 255, 255, 0.9);*/
  border: none;
  /*border-radius: 50%;*/
  font-size: 40px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  /*background: #fff;*/
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);*/
  transform: translateY(-50%) scale(1.1);
}

/*.hero-arrow-left {*/
/*  left: 40px;*/
/*}*/

/*.hero-arrow-right {*/
/*  right: 40px;*/
/*}*/

.hero-arrow-left {
    left: 40px;
  width: 58px;
  height: 58px;
  background: url(../images/prev.png) no-repeat;
  background-size: 100%;
}

.hero-arrow-right {
    right: 40px;
  width: 58px;
  height: 58px;
  background: url(../images/next.png) no-repeat;
  background-size: 100%;
}

/* 向下滚动箭头 */
/*.scroll-down-arrow {*/
/*  position: absolute;*/
/*  bottom: 30px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%) rotate(-90deg);*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  background: rgba(255, 255, 255, 0.2);*/
/*  border: 2px solid rgba(255, 255, 255, 0.8);*/
/*  border-radius: 50%;*/
/*  font-size: 36px;*/
/*  color: #fff;*/
/*  cursor: pointer;*/
/*  z-index: 10;*/
/*  transition: all 0.3s ease;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  animation: bounce 2s infinite;*/
/*}*/

/*.scroll-down-arrow:hover {*/
/*  background: rgba(255, 255, 255, 0.3);*/
/*  border-color: #fff;*/
/*}*/

.scroll-down-arrow {
  position: absolute;
  bottom: 30px;
  margin: 0 auto;
    left: 0;
    right: 0;
  width: 40px;
    height: 40px;
    background: url(../images/bottom.png) no-repeat;
    background-size: 100%;
    cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  border: 0;
    outline: 0;
}


@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0) translateY(0);
  }
  40% {
    transform: translateX(0) translateY(-10px);
  }
  60% {
    transform: translateX(0) translateY(-5px);
  }
}

.slider-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* 公司介绍区域样式 - 移除container，左侧内容保持标准宽度，右侧图片到边 */
.company-intro-section {
  position: relative;
  padding: 80px 0;
  background: #f8f8f8;
}

.company-intro-wrapper {
  /*background-image: url("/assets/addons/jdgw/images/bg11.jpg");*/
  background-image: url(../images/introbg.png);;
  background-size: cover;
  background-position: auto;
  /*background-attachment: fixed;*/
  position: relative;
  width: 100%;
}

.company-intro-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: rgba(255, 255, 255, 0.95);*/
}

.company-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.company-intro-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: 60px;
  padding: 60px 20px;
  text-align: left;
}

.section-heading {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.heading-underline {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 10px;
    background: linear-gradient(to right, #b55f1a, transparent);
    display: block;
    z-index: -1;
  display: block;
}

.intro-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-light);
  margin-bottom: 15px;
  text-align: justify;
}

/* 统计数据卡片 */
.stats-grid {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-card {
  text-align: left;
}

.stat-number {
  font-size: 42px;
  font-weight: bold;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 8px;
}

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

/* 了解详情按钮样式 */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
    padding: 5px 12px;
    border-radius: 25px;
}

.more{
    width: 28px;
    height: 28px;
    background: url(../images/more.png) no-repeat;
    background-size: 100%;
}

.btn-link:hover {
  gap: 12px;
  color: var(--primary-color);
}

.btn-link:hover .more{
    background: url(../images/more2.png) no-repeat;
    background-size: 100%;
}


.btn-link2{
    display: inline-flex;
}

.more2{
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../images/more.png) no-repeat;
    background-size: 100%;
    margin-left: 10px;
}

.product-card:hover .more2{
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../images/more3.png) no-repeat;
    background-size: 100%;
    margin-left: 10px;
}

.btn-link3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
    padding: 5px 12px;
    border-radius: 25px;
}

/* 公司介绍图片满屏右侧，去掉margin */
.company-intro-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.company-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 产品中心全新设计 */
.products-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading-center {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-lighter);
}

.products-carousel-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 0 80px;
}

.products-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 20px 0;
  /* 调整初始偏移，让第2个产品完整居中，第1和第3个产品各显示一半 */
  transform: translateX(calc(-1 * ((100vw - 160px) / 4 + 15px)));
}

/* 产品卡片样式 */
.product-card {
  /* 调整卡片宽度为屏幕的一半减去间距和padding */
  flex: 0 0 calc((100vw - 160px) / 2 - 15px);
  min-width: calc((100vw - 160px) / 2 - 15px);
  background: #ecf4ff;
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
  transition: all 0.3s ease;
}


.product-card:hover {
  transform: translateY(-5px);
  /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);*/
  background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
}

.product-card-content {
  text-align: left;
}

.product-card-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-card-subtitle {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.product-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.product-card-image {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

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

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

/* 产品轮播箭头 */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  font-size: 30px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(217, 115, 51, 0.4);
}

.carousel-arrow-left {
  left: 20px;
}

.carousel-arrow-right {
  right: 20px;
}

/* 轮播分页指示器 */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 5px;
}

.carousel-dot.white {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.white.active {
  background: #fff;
}

/* 荣誉资质区域 */
.honors-section {
  position: relative;
  padding: 80px 0 120px;
  background-image: url("/assets/addons/jdgw/images/indexbg2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/*.honors-section::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  background: linear-gradient(135deg, rgba(217, 115, 51, 0.92) 0%, rgba(184, 90, 31, 0.92) 100%);*/
/*}*/

.honors-section .container {
  position: relative;
  z-index: 1;
}

.white-text {
  color: #fff !important;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.honor-card {
  text-align: center;
  transition: all 0.3s ease;
}

.honor-card:hover {
  transform: translateY(-8px);
}

.honor-image-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.honor-card:hover .honor-image-wrapper {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.honor-image-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.honor-title {
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
}

/* 行业资讯区域样式 */
.news-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-left-column {
  width: 100%;
}

.news-featured {
  background: #fff;
  /*border-radius: 12px;*/
  overflow: hidden;
  /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);*/
  transition: all 0.3s ease;
}

.news-featured:hover {
  transform: translateY(-5px);
  /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);*/
}

.news-featured-img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.news-featured-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.news-featured-content {
  /*padding: 30px;*/
  padding-top: 10px;
}

.news-date {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 500;
}

.news-featured-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.4;
}

.news-featured-excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.news-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-list-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  /*padding: 20px;*/
  /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);*/
  transition: all 0.3s ease;
}

.news-list-item:hover {
  transform: translateX(5px);
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);*/
}

.news-list-item img {
  width: 150px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-list-content {
  flex: 1;
}

.news-list-content .news-date {
  font-size: 12px;
  margin-bottom: 10px;
}

.news-list-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

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

/* 行业资讯区域容器 */
.news-section {
  padding: 80px 0;
  background: #fff;
}

.news-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-section-title {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.news-section-subtitle {
  color: #999;
  font-size: 16px;
}

.news-section .news-featured img,.news-section .news-list-item img{
    overflow: hidden;
    transition: transform 0.3s;
}

.news-section .news-featured img:hover,.news-section .news-list-item img:hover{
    transform: scale(1.05);
}

/* 联系我们区域 */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(to right, #ffe8d6 0%, #fff5eb 100%);
}

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

.contact-left-content img:first-child {
  margin-bottom: 30px;
}

.contact-company-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-description {
  font-size: 16px;
  line-height: 2;
  /*color: #666;*/
  color: #00;
  margin-bottom: 30px;
}

.contact-qr-code {
  border-radius: 8px;
  max-width: 150px;
}

.contact-heading-main {
    position: relative;
        display: inline-block;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-heading-main .title{
    position: relative;
    z-index: 9;
}
.contact-heading-main .heading-underline{
    bottom:14px;
    left: 3px;
    z-index: 1;
}
.contact-heading-sub {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-invitation {
  font-size: 18px;
  line-height: 2;
  color: #000;
  margin-bottom: 30px;
}

/* 联系我们移动端适配 */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .contact-grid img{
      display: inline-block;
  }

  .contact-left-content img:first-child {
    max-width: 150px;
    margin-bottom: 20px;
  }
  

  .contact-company-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contact-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .contact-qr-code {
    max-width: 120px;
    margin-bottom: 30px;
  }

  .contact-heading-main {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .contact-heading-sub {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-invitation {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .news-section {
    padding: 40px 0;
  }

  .news-section-title {
    font-size: 24px;
  }

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

/* 荣誉资质按钮容器样式 */
.honors-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* 响应式设计 - 更新公司介绍移动端样式 */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }

  .company-intro-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .company-intro-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .company-intro-image-wrapper {
    width: 100%;
    min-height: 400px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .news-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  /* 调整移动端导航菜单 */
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    transition: left 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav a {
    display: block;
    padding: 15px 10px;
    border-radius: 0;
    font-size: 15px;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* 优化Hero区域移动端显示 */
  .home-hero {
    height: 300px;
  }

  .hero-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .hero-arrow {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .scroll-down-arrow {
    width: 35px;
    height: 35px;
    font-size: 24px;
    bottom: 20px;
  }

  .slider-controls {
    bottom: 60px;
  }

  /* 优化标题和副标题字体 */
  .section-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .section-heading-center {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* 优化公司介绍区域 */
  .company-intro-section {
    padding: 40px 0;
  }

  .company-intro-content {
    padding: 30px 20px;
  }

  .intro-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .stats-grid {
    flex-direction: row;
    gap: 10px;
    margin: 30px 0;
    justify-content: space-between;
  }

  .stat-card {
    flex: 1;
    text-align: center;
  }

  .stat-number {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 10px;
    line-height: 1.3;
  }
  

  .btn-link {
    font-size: 14px;
    /*padding: 10px 0;*/
  }
  
  .btn-content{
      text-align: center;
  }

  .company-intro-image-wrapper {
    min-height: 250px;
  }
  
  /* 优化产品中心移动端轮播 */
  .products-section {
    padding: 40px 0;
  }

  .products-carousel-wrapper {
    padding: 0 40px;
    margin-left: calc(-50vw + 50%);
  }

  .products-carousel {
    gap: 20px;
    transform: translateX(0);
  }

  .product-card {
    flex: 0 0 calc(100vw - 80px);
    min-width: calc(100vw - 80px);
    padding: 25px;
    gap: 20px;
  }

  .product-card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .product-card-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .product-card-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .product-card-image {
    height: 200px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .carousel-arrow-left {
    left: 5px;
  }

  .carousel-arrow-right {
    right: 5px;
  }

  .carousel-dots {
    margin-top: 30px;
  }

  /* 优化荣誉资质移动端显示 */
  .honors-section {
    padding: 40px 0 60px;
  }

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

  .honor-image-wrapper {
    padding: 15px;
    margin-bottom: 10px;
  }

  .honor-image-wrapper img {
    height: 200px;
  }

  .honor-title {
    font-size: 13px;
  }

  /* 优化新闻区域移动端显示 */
  .news-two-column {
    gap: 20px;
  }

  .news-featured-image {
    height: 200px;
  }

  .news-featured-content {
    padding: 20px;
  }

  .news-featured-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .news-featured-excerpt {
    font-size: 13px;
    line-height: 1.6;
  }

  .news-list-item {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .news-list-item img {
    width: 100%;
    height: 150px;
  }

  .news-list-title {
    font-size: 15px;
  }

  .news-list-excerpt {
    font-size: 12px;
  }

  /* 优化联系我们区域移动端显示 */
  section[style*="linear-gradient"] > .container > div[style*="grid-template-columns"] {
    display: block !important;
  }

  section[style*="linear-gradient"] img[alt*="Logo"] {
    max-width: 150px;
    margin-bottom: 20px;
  }

  section[style*="linear-gradient"] h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }

  section[style*="linear-gradient"] p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  section[style*="linear-gradient"] img[alt*="微信"] {
    max-width: 120px;
    margin-bottom: 30px;
  }

  section[style*="linear-gradient"] h2 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }

  section[style*="linear-gradient"] h3:last-of-type {
    font-size: 22px !important;
    margin-bottom: 20px !important;
  }
}

/* 添加更小屏幕的适配 */
@media (max-width: 480px) {
  .home-hero {
    height: 250px;
  }

  .company-intro-content {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 9px;
  }

  .product-card {
    padding: 20px;
  }

  .product-card-title {
    font-size: 18px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}