:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #2C3E50;
    --light-gray: #ECF0F1;
    --dark-gray: #34495E;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* 全局字体设置 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}

/* 轮播图 */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* 首页产品模块优化样式 */
.products-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.products-section .section-title h2 {
    color: #222;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.products-section .section-title p {
    color: #238cff;
    font-size: 1.15rem;
    font-weight: 500;
}
.product-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(35,140,255,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(35,140,255,0.16);
}
.product-img {
    height: 210px;
    object-fit: cover;
    background: #f4f8fc;
    border-bottom: 1px solid #f0f0f0;
}
.product-title {
    color: #222;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.product-desc {
    color: #666;
    font-size: 0.98rem;
    min-height: 44px;
}
.btn-products-viewall {
    color: #238cff;
    border: 2px solid #238cff;
    background: #fff;
    border-radius: 6px;
    padding: 10px 36px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(35,140,255,0.06);
    margin-top: 10px;
}
.btn-products-viewall:hover {
    background: #238cff;
    color: #fff;
    border-color: #238cff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .product-img { height: 140px; }
    .products-section { padding: 40px 0 30px 0; }
}

/* 产品展示 */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* 统一首页模块标题的上下间距 */
.section-title {
    margin-top: 56px;
    margin-bottom: 48px;
    padding-top: 0;
    padding-bottom: 0;
}
.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.18;
    transition: all 0.7s cubic-bezier(.77,0,.18,1);
}
.section-title .text-title2,
.section-title p {
    /* color: #238cff; */
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 0.1px;
    line-height: 1.6;
    transition: all 0.7s cubic-bezier(.77,0,.18,1);
}
.section-title[data-aos] h2,
.section-title[data-aos] .text-title2,
.section-title[data-aos] p {
    will-change: transform, opacity;
}
@media (max-width: 768px) {
    .section-title {
        margin-top: 32px;
        margin-bottom: 28px;
    }
    .section-title h2 {
        margin-bottom: 0.7rem;
    }
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* 公司优势 */
.advantages {
    padding: 80px 0;
}

.advantages .row {
    display: flex;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 2.5rem;
    color: #238cff;
    margin-bottom: 1.5rem;
}

.advantage-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* 页脚 */
.footer {
    background-color: #343a40;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #238cff;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #238cff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #1a75d1;
}

.back-to-top.show {
    display: flex;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-item {
        height: auto;
        min-height: 180px;
        max-height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }

    .carousel-item img {
        width: 100% !important;
        height: auto !important;
        max-height: 260px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        border-radius: 0;
    }

    .carousel-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: unset;
        background: rgba(0,0,0,0.32);
        color: #fff;
        padding: 0.5rem 1rem;
        max-width: 100vw;
        border-radius: 0 0 8px 8px;
    }

    .carousel-caption h2 {
        font-size: 1.1rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .product-card {
        margin-bottom: 1.2rem !important;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        background: #fff;
        overflow: hidden;
    }
    .product-card .card-img-top {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    .product-card .card-body {
        padding: 1rem 1rem 1.2rem 1rem;
    }
    .product-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .product-card .card-text {
        font-size: 0.98rem;
        color: #555;
    }
}

/* 导航栏样式 */
/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-brand img {
    height: 50px;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}
*/
/* ======= 迁移注释结束 ======= */

/* 轮播图样式 */
.carousel-item {
    height: 80vh;
    min-height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.8);
}

.carousel-caption {
    background: rgba(44, 62, 80, 0.8);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.carousel-caption p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* 产品卡片样式 */
.product-card {
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 2rem;
}

.product-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card .card-text {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* 公司优势样式 */
.advantages {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.advantage-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.advantage-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--dark-gray);
    margin: 0;
}

/* 页脚样式 */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: #238cff;
    transform: translateY(-3px);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #238cff;
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1a75d1;
    transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .carousel-item {
        height: 60vh;
    }

    .carousel-caption h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
    }

    .carousel-caption {
        padding: 1.5rem;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .product-card .card-img-top {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 40vh;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .advantage-item {
        padding: 2rem 1rem;
    }
}

.product-nav-item {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.search-box {
  display: flex;
}

.search-box input {
  padding: 8px;
  border: 1px solid #ddd;
  border-right: none;
}

.search-box button {
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}

/* New Banner Carousel */
.banner {
  width: 100%;
  height: auto;
  min-height: 250px;
  max-height: 500px;
  position: relative;
  padding-top: 42.86%; /* 21:9 aspect ratio */
}

.banner-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-slide.active {
  opacity: 1;
}

.banner-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner-control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-control.active {
  background: #fff;
}

.company-info-2 {
  background-image: url('../images/index_bg_zb.jpg');
  background-size: cover;
  padding:50px 20px 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  width: 100%;
}

.company-info-2 .container {
  width: 80%;
  background-color: rgba(255, 136, 0, 0.801);
  padding-top: 100px;
  padding-bottom: 50px;
  margin-top: -100px;
  z-index: 2;
}

.company-info-2 h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

@media (min-width: 1600px) {
  .company-info-2 h2 {
    font-size: 40px; /* 增大标题字体 */
  }
}

.company-info-2 .info-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.company-info-2 .card {
  width: auto;
  flex: 1;
  text-align: center;
  padding: 15px;
  margin: 10px;
  border-right: 1px solid #fff;
}

.company-info-2 .card:last-child {
  border-right: none;
}

.company-info-2 .card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

@media (min-width: 1600px) {
  .company-info-2 .card h3 {
    font-size: 24px; /* 增大卡片标题字体 */
  }
}

/* ============== */
.products {
  /* background-image: url('../images/index_bg_product.jpg');
  background-size: cover;
  background-position: center; */
  min-height: 400px;
  padding: 150px 0;
}

.products .container {
  max-width: 80%;
  margin: 0 auto;
}

@media (min-width: 1600px) {
  .products .container {
    max-width: 1600px; /* 增大容器宽度 */
    padding: 0 40px; /* 增加内边距 */
  }
}

/* 产品标题样式 */
.products .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.products .section-title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

@media (min-width: 1600px) {
  .products .section-title {
    font-size: 36px; /* 增大标题字体 */
  }
}

.products .section-desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 1600px) {
  .products .section-desc {
    font-size: 18px; /* 增大描述字体 */
  }
}

/* 产品导航布局 */
.product-nav {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0 10px;
}

@media (min-width: 1600px) {
  .product-nav {
    grid-template-columns: repeat(8, 1fr); /* 增加导航列数 */
    gap: 20px; /* 增大间距 */
  }
}

/* 导航项目样式 */
.product-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 60px 15px;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.product-nav-item::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #999;
  margin-bottom: 10px;
}

.product-nav-item:last-child {
  border-right: none;
}

/* 导航图标样式 */
.nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1600px) {
  .nav-icon {
    width: 60px; /* 增大图标 */
    height: 60px;
    margin-top: 50px;
  }
}

.nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* 导航文字样式 */
.product-nav-item span {
  color: #333;
  font-size: 24px;
  text-align: center;
  transition: color 0.3s ease;
}

@media (min-width: 1600px) {
  .product-nav-item span {
    font-size: 28px; /* 增大导航文字 */
  }
}

/* 子菜单样式 */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.product-nav-item:hover {
  z-index: 100;
}

.product-nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  left: 100%;
  width: 100%;
}

.sub-menu a {
  display: block;
  padding: 12px 20px;
  color: #666;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.sub-menu a:last-child {
  border-bottom: none;
}

.sub-menu a:hover {
  color: #ff6633;
  background: #f9f9f9;
  padding-left: 25px;
}

/* 激活状态 */
.product-nav-item.active,
.product-nav-item:hover {
  background: #ff6633;
}

.product-nav-item.active span,
.product-nav-item:hover span {
  color: #fff;
}

.product-nav-item.active .nav-icon img,
.product-nav-item:hover .nav-icon img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}


/* Company Info Section */
.company-info-2 {
  width: 100%;
  /* max-width: 1200px; 设置最大宽度 */
  margin: 0 auto; /* 居中 */
  padding: 20px; /* 内边距 */
  box-sizing: border-box;
  background-color: #f9f9f9;
}

/* Product Grid Section */
.product-grid {
  width: 100%;

  margin: 40px auto; /* 居中 */
  
  box-sizing: border-box;
}
.product-grid  .container{
  width: 80%;

  margin: 0 auto; /* 居中 */
 
}
@media (min-width: 1600px) {
  .product-grid .container{
    max-width: 1600px; /* 增大容器宽度 */
    
  }
}
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 每行显示4个产品 */
  gap: 20px; /* 产品之间的间距 */
}

.product-item {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 响应式设计：在小屏幕上每行显示2个产品 */
@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr); /* 每行显示2个产品 */
  }
}

/* 响应式设计：在超小屏幕上每行显示1个产品 */
@media (max-width: 480px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr); /* 每行显示1个产品 */
  }
}

/* 产品分类样式 */
.product-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
}

@media (min-width: 1600px) {
  .section-title {
    font-size: 40px; /* 增大标题字体 */
  }
}

.product-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 1600px) {
  .product-img {
    height: 300px; /* 增大产品图片 */
  }
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-item:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

@media (min-width: 1600px) {
  .product-info h3 {
    font-size: 24px; /* 增大产品标题字体 */
  }
}

.product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

@media (min-width: 1600px) {
  .product-info p {
    font-size: 18px; /* 增大产品描述字体 */
  }
}

.product-link {
  display: inline-block;
  color: #ff6633;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.product-link:hover {
  color: #ff6633;
}

/* 响应式布局 */
@media (max-width: 1200px) {
  .header-main .container,
  .header-top .container {
    padding: 0 20px;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .header-main {
    padding: 15px 0;
  }
  
  .main-nav {
    margin: 0 50px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .company-stats {
    gap: 20px;
  }
  
  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 10px 0;
  }
  
  .main-nav {
    margin: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .header-icons-right {
    gap: 20px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .product-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-nav,
  .footer-contact {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .header-main {
    padding: 5px 0;
  }
  
  .main-nav {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-icons-right {
    gap: 10px;
  }
  
  .header-logo {
    height: 50px;
  }
  
  .header-icon {
    height: 60px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-nav {
    grid-template-columns: 1fr;
  }
  
  .company-nav {
    grid-template-columns: 1fr;
  }
  
  .footer-qr {
    flex-direction: column;
    align-items: center;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* 公司简介部分样式 */
.company {
  background: #fff;
}

.company .container {
  background-image: url('../images/index_bg.jpg');
  background-size: cover;
  background-position: center;
  padding:80px 40px 150px;
  border-radius: 8px;
}

/* 标题样式 */
.company .section-header {
  text-align: left;
  margin-bottom: 50px;
  width: 80%;
  margin: 0 auto;
}

.company .section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

@media (min-width: 1600px) {
  .company .section-title {
    font-size: 36px; /* 增大标题字体 */
  }
}

.company .section-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (min-width: 1600px) {
  .company .section-desc {
    font-size: 18px; /* 增大描述字体 */
  }
}

.company .section-text {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 数据统计样式 */
.company-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
  width: 80%;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  color: #ff6633;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number span {
  font-size: 24px;
  margin-left: 5px;
}

.stat-label {
  color: #666;
  font-size: 14px;
}

/* 发展历程导航 */
.company-nav {
  width: 80%;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nav-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.nav-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.3s ease;
}

.nav-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  transition: all 0.3s ease;
}

.nav-overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.nav-overlay p {
  font-size: 12px;
  opacity: 0.8;
}

.nav-item:hover .nav-image {
  transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 992px) {
  .company-stats {
      gap: 20px;
  }
  
  .stat-number {
      font-size: 32px;
  }
}

@media (max-width: 768px) {
  .company-nav {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .company-stats {
      justify-content: center;
  }
  
  .stat-item {
      width: calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .company .section-title {
      font-size: 24px;
  }
  
  .company-nav {
      grid-template-columns: 1fr;
  }
  
  .stat-item {
      width: 100%;
  }
  
  .stat-number {
      font-size: 28px;
  }
}

.company .container  {
  background-image: url('../images/index_bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 8px;
}
/* 荣誉资质部分样式 */
.qualification {
  padding: 80px 0; /* 增大内边距 */
  background: url('../images/index_bg_honor04.jpg') center/cover fixed;
  position: relative;
}

/* 背景遮罩 */
.qualification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 背景遮罩 */
}

.qualification .container {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1400px; /* 限制最大宽度 */
  margin: 0 auto;
}

/* 标题样式 */
.qualification .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.qualification .section-title {
  font-size: 36px; /* 增大标题字体 */
  color: #fff;
  margin-bottom: 15px;
}

.qualification .section-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px; /* 增大描述字体 */
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* 证书轮播样式优化 */
.cert-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 容器用来裁切超出部分 */
.cert-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 60px; /* 为按钮留出空间 */
}

.cert-list {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px; /* 减小间距，确保三个模块能完整显示 */
}

.cert-item {
    flex: 0 0 calc((100% - 40px) / 3); /* 平均分配空间给3个模块，考虑间距 */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cert-item img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 15px 2px;
}

/* 左右箭头样式优化 */
.cert-prev,
.cert-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.cert-prev {
    left: 0;
}

.cert-next {
    right: 0;
}

.cert-prev:hover,
.cert-next:hover {
    background: #ff6633;
    color: #fff;
    border-color: #ff6633;
}

.cert-prev i,
.cert-next i {
    font-size: 20px;
    transition: color 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .cert-slider {
        width: 90%;
    }
    
    .cert-item {
        flex: 0 0 calc((100% - 20px) / 2); /* 两列显示 */
    }
}

@media (max-width: 768px) {
    .cert-slider {
        width: 85%;
        padding: 0;
    }
    
    .cert-slider-wrapper {
        margin: 0 45px;
    }
    
    .cert-item {
        flex: 0 0 100%; /* 单列显示 */
    }
    
    .cert-item img {
        height: 320px;
    }
}

/* 首页新闻模块样式 */
.news-section {
    background: #fff;
}
.news-card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(35,140,255,0.12);
}
.news-card .card-img-top {
    height: 180px;
    object-fit: cover;
}
.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.news-abstract {
    color: #666;
    font-size: 0.98rem;
    min-height: 48px;
}
.news-date {
    color: #999;
    font-size: 0.95rem;
}
.news-category {
    color: #238cff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* 响应式布局 */
@media (max-1200px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-768px) {
  .news-list {
    grid-template-columns: 1fr;
  }
  
  .news-container {
    padding: 0 20px;
  }
  
  .news-item {
    padding: 30px;
  }
  
  .news-date .day {
    font-size: 40px;
  }
  
  .news-content h3 {
    font-size: 24px;
  }
  
  .news-content p {
    font-size: 16px;
  }
}

@media (max-480px) {
  .news-section {
    padding: 80px 0;
  }
  
  .en-title {
    font-size: 36px;
  }
  
  .cn-title {
    font-size: 28px;
  }
  
  .news-item {
    padding: 20px;
  }
  
  .news-date .day {
    font-size: 36px;
  }
  
  .news-content h3 {
    font-size: 22px;
  }
  
  .news-content p {
    font-size: 15px;
  }
  
  .view-all {
    width: 200px;
    font-size: 18px;
  }
}

/* 响应式布局 */
@media (max-768px) {
  .news-item {
    flex-direction: column;
    padding: 20px;
  }

  .news-date {
    padding-right: 0;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 1px solid #eee;
    flex-direction: row;
    gap: 10px;
  }

  .news-content {
    padding-left: 0;
    padding-top: 15px;
  }
}

/* 页脚部分样式 */
.footer {
  background: #1f2937;
  color: #fff;
  padding: 60px 0 20px; /* 增大内边距 */
}

.footer .container {
  width: 80%;
  max-width: 1400px; /* 限制最大宽度 */
  margin: 0 auto;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px; /* 增大间距 */
  margin-bottom: 30px;
}

.footer-nav {
  min-width: 200px;
}

.footer-nav h3,
.footer-contact h3 {
  font-size: 18px; /* 增大标题字体 */
  color: #fff;
  margin-bottom: 20px;
  font-weight: normal;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px; /* 增大链接字体 */
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #ff6633; /* 悬停效果 */
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px; /* 增大文字字体 */
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-qr {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.qr-item {
  text-align: center;
}

.qr-item img {
  width: 120px; /* 增大二维码图片 */
  height: 120px;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.qr-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px; /* 增大文字字体 */
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px; /* 增大版权文字 */
  display: inline-block;
}

.copyright p:first-child {
  margin-right: 20px;
}

.copyright a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* 新闻描述多行省略样式 */
.news-section .news-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;  /* 限制在3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    line-height: 1.5;
    max-height: 4.5em;  /* 3行的高度 = 1.5 * 3 */
    color: #666;
    font-size: 16px;
}

/* 确保新闻项布局正确 */
.news-section .news-item {
    display: flex;
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-section .news-image {
    flex: 0 0 200px;
    margin-right: 20px;
}

.news-section .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-section .news-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.news-section .news-meta {
    margin-top: auto;
    color: #999;
    font-size: 14px;
}

/* 新闻标题链接样式 */
.news-title a {
    color: inherit; /* 继承父元素的颜色 */
    text-decoration: none; /* 移除下划线 */
}

.news-title a:hover {
    color: #666; /* 保持与 news-title 相同的悬停效果 */
}

/* 新闻项悬停效果 */
.news-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* 修改新闻标题样式 */
.news-title {
    color: #333; /* 改为深灰色，替代蓝色 */
    text-decoration: none; /* 移除下划线 */
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    /* 其他样式保持不变 */
}

/* 如果有鼠标悬停效果，可以保留一个柔和的颜色变化 */
.news-title:hover {
    color: #666;
}

/* 轮播图样式 */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* 产品卡片样式 */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.product-card .btn-primary {
    background-color: #ff6633;
    border-color: #ff6633;
}

.product-card .btn-primary:hover {
    background-color: #ff4d1a;
    border-color: #ff4d1a;
}

/* 公司优势样式 */
.advantage-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    color: #ff6633;
}

/* 页脚样式 */
.footer {
    background-color: #1a1a1a;
}

.footer a:hover {
    color: #ff6633 !important;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #238cff;
    transform: translateY(-3px);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #238cff;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1a75d1;
    transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-item {
        height: auto;
        min-height: 180px;
        max-height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }

    .carousel-item img {
        width: 100% !important;
        height: auto !important;
        max-height: 260px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        border-radius: 0;
    }

    .carousel-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: unset;
        background: rgba(0,0,0,0.32);
        color: #fff;
        padding: 0.5rem 1rem;
        max-width: 100vw;
        border-radius: 0 0 8px 8px;
    }

    .carousel-caption h2 {
        font-size: 1.1rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .product-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }
}

/* 语言切换器样式 */
/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.language-selector {
    display: flex;
    align-items: center;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.language-selector a {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.language-selector a:hover {
    background: rgba(255, 255, 255, 0.1);
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.language-selector a.active {
    background: var(--secondary-color);
    color: var(--white) !important;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-toggler {
    display: block !important;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-collapse.show .navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-nav .nav-link {
    padding: 16px 0 !important;
    font-size: 1.1rem;
}
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
.navbar-nav.d-lg-flex { display: none !important; }
*/
/* ======= 迁移注释结束 ======= */

/* ======= 已迁移至header-footer.css，注释防止冲突 ======= */
/*
#site-header, .navbar.sticky-top { position: sticky; top: 0; z-index: 1100; background: #fff; }
*/
/* ======= 迁移注释结束 ======= */

/* ======= 24/7 Support & GET IN TOUCH模块样式已迁移至header-footer.css，现全部注释，避免冲突 ======= */
/*
// 你原有的 .container.my-5、.support-info、.contact-form、.form-control、.support-desc、.support-info img、.support-info h2、.contact-form .btn 等相关样式全部注释
*/
/* ======= 迁移注释结束 ======= */

/* 让公司优势卡片高度一致 */
.advantages .row {
  display: flex;
}
.advantage-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 992px) {
  .advantages .row {
    flex-direction: column;
    display: block;
  }
  .advantage-item {
    height: auto;
  }
}
.text-title2{
	    font-size: 1.15rem;
	    font-weight: 500;
		color: #238cff;
}
/* 全新轮播图样式 - 简洁无间隙 */
.custom-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}

.custom-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.custom-carousel .carousel-slide.active {
  opacity: 1;
}

.custom-carousel img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* 改为cover，填满整个容器，去除左右空隙 */
  object-position: center;
  display: block;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .custom-carousel {
    height: 200px; /* 大幅缩小移动端高度，贴合图片实际显示尺寸 */
  }
}

/* 顶部信息栏优化 */
.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
}
.top-bar .contact-item a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .top-bar .ms-auto {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
    font-size: 13px !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .top-bar .contact-item {
    font-size: 13px;
    gap: 0.4rem;
    margin-bottom: 2px;
  }
}

/* 新闻详情页样式 */
.news-detail-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    margin: 40px auto 60px auto;
    max-width: 900px;
}
.news-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
}
.news-detail-meta {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.news-detail-content {
    font-size: 1.08rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.news-detail-footer {
    text-align: right;
}
.news-detail-footer .back-btn {
    color: #238cff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #238cff;
    border-radius: 4px;
    padding: 6px 18px;
    transition: background 0.2s, color 0.2s;
}
.news-detail-footer .back-btn:hover {
    background: #238cff;
    color: #fff;
}
@media (max-width: 768px) {
    .news-detail-article {
        padding: 1.2rem 0.5rem;
    }
    .news-detail-title {
        font-size: 1.3rem;
    }
}

.btn-news-viewall {
    color: #238cff;
    border: 2px solid #238cff;
    background: #fff;
    border-radius: 6px;
    padding: 10px 36px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(35,140,255,0.06);
}
.btn-news-viewall:hover {
    background: #238cff;
    color: #fff;
    border-color: #238cff;
    text-decoration: none;
}

/* 产品详情页样式 */
.product-detail-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(35,140,255,0.08);
    padding: 2.5rem 2rem;
    margin: 40px auto 60px auto;
    max-width: 900px;
}
.product-detail-img {
    max-width: 360px;
    max-height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(35,140,255,0.10);
    background: #f4f8fc;
}
.product-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.2rem 0 0.7rem 0;
    color: #222;
}
.product-detail-meta {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.product-detail-content {
    font-size: 1.08rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    word-break: break-all;
}
@media (max-width: 768px) {
    .product-detail-article {
        padding: 1.2rem 0.5rem;
    }
    .product-detail-title {
        font-size: 1.3rem;
    }
    .product-detail-img {
        max-width: 100%;
        max-height: 180px;
    }
}

/* 成功案例模块样式 */
.cases-section .case-card {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.cases-section .case-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.cases-section .case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cases-section .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.cases-section .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cases-section .card-text {
    color: #666;
    font-size: 0.95rem;
    flex: 1 1 auto;
}
@media (max-width: 991.98px) {
    .cases-section .case-card img {
        height: 160px;
    }
}
@media (max-width: 767.98px) {
    .cases-section .case-card img {
        height: 120px;
    }
}

/* 成功案例模块按钮样式 */
.btn-cases-viewall {
    color: #238cff;
    border: 2px solid #238cff;
    background: #fff;
    border-radius: 6px;
    padding: 10px 36px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(35,140,255,0.06);
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.btn-cases-viewall:hover {
    background: #238cff;
    color: #fff;
    border-color: #238cff;
    text-decoration: none;
}

/* 首页模块背景色和分割线 */
.section-bg-gray {
    background: #f8fbff;
}
.section-bg-white {
    background: #fff;
}
.section-divider {
    border-bottom: none;
    box-shadow: none;
}
.section-title[data-aos] {
    transition: all 0.7s cubic-bezier(.77,0,.18,1);
}
/* 卡片动画增强 */
#index-product-list > div,
#index-case-list > div,
#index-news-list > div {
    transition: transform 0.5s cubic-bezier(.77,0,.18,1), box-shadow 0.5s;
}
#index-product-list > div[data-aos],
#index-case-list > div[data-aos],
#index-news-list > div[data-aos] {
    will-change: transform, opacity;
}
/* 分割线间距微调 */
.section-divider:last-child {
    border-bottom: none;
    box-shadow: none;
}

/* 主标题、副标题鼠标悬停动画 */
.section-title h2,
.section-title .text-title2,
.section-title p {
    transition: all 0.35s cubic-bezier(.77,0,.18,1), text-shadow 0.35s;
}
.section-title h2:hover {
    transform: translateY(-4px) scale(1.035);
    text-shadow: 0 4px 24px rgba(35,140,255,0.10);
    color: #1766c2;
}
.section-title .text-title2:hover,
.section-title p:hover {
    transform: scale(1.045);
    text-shadow: 0 2px 12px rgba(35,140,255,0.13);
    color: #1766c2;
}
