
        /* Swiper 全屏轮播 - 修改为缩放效果 */
        .swiper-container {
            width: 100%;
            height: auto;
            margin-top: 70px; /* 为固定导航留出空间 */
        }
        
        .swiper-slide {
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
      
        }
  
        
   
        /* 分页器 */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: white;
            opacity: 0.5;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--primary-red);
        }
        
        /* 核心产品版块 */
        .products-section {
            background-color: var(--light-bg);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 25px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .section-title.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
            border-radius: 2px;
        }
        
        .section-description {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            max-width: 1000px;
            margin: 0 auto 60px;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }
        
        .section-description.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 产品Swiper容器 */
        .products-swiper-container {
            width: 100%;
            padding: 20px 0 60px;
        }
        
        .products-swiper {
            overflow: hidden;
        }
        
        .product-slide {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .product-slide.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
  
        
        .product-image {
            width: 368px;
            height: 464px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-slide:hover .product-image {
            transform: scale(1.05);
        }
        
        /* 产品内容覆盖在图片上 */
        .product-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;

            align-items: center;
      
            padding-top:20px;
            text-align: center;
           
        }
        
      
        
   
        
        .product-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;

        }
        
        .product-more-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
		.explore-btn {

    color: #da251c;
    border: none;

    padding: 12px 28px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
	    align-items: center;
    display: flex;
    justify-content: center;
    
    margin: 0 auto  ;
    text-decoration: none;
}
    .icon-circle{
		background:#da251c;
		border-radius:50%;
		height:25px;
		width:25px;
		color:#fff;
		margin-left:5px;
		font-size:16px;
		    align-items: center;
    display: flex;
    justify-content: center;
		}    
        .product-more-btn:hover {
            background-color: #b81f17;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(218, 37, 28, 0.3);
            color: white;
        }
        
        /* 查看全部按钮 */
        .view-all-container {
            text-align: center;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.6s;
        }
        
        .view-all-container.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .view-all-btn {
            background-color: transparent;
            color:#646567;
            border: 2px solid #646567;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .view-all-btn:hover {
            background-color: var(--primary-red);
            color: white;
			   border: 2px solid var(--primary-red);;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(218, 37, 28, 0.2);
        }
        
        /* 产品Swiper导航按钮 */
        .products-swiper-button-next,
        .products-swiper-button-prev {
            color: #333;
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .products-swiper-button-next:after,
        .products-swiper-button-prev:after {
            font-size: 20px;
        }
        
        .products-swiper-button-next:hover,
        .products-swiper-button-prev:hover {
            background-color: var(--primary-red);
            color: white;
        }
        
        /* Swiper 导航按钮 - 大图轮播 */
        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background-color: rgba(0, 0, 0, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 24px;
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: rgba(218, 37, 28, 0.8);
        }
        
      
        /* 新闻动态版块 */
         .news-section,.partners-section {
            background-color: var(--news-bg);
            padding: 100px 0;
        }
        
        .news-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
			margin-right:auto;
				margin-left:auto;
          
			background:#fff;
			max-width:490px;
        }
        
        .news-tab {
            background: none;
            border: none;
            padding: 10px 30px;
            font-size: 23px;
			width:50%;
			text-align:center;
            color: #333;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        .news-tab:nth-child(1)::after{content:'';position:absolute;right:0;width:2px;height:25px;background:#333;top:15px}
        .news-tab:hover {
            color: var(--primary-red);
        }
        
        .news-tab.active {
            color: var(--primary-red);
            font-weight: 600;
        }
        
       
        
        .news-content {
            position: relative;
        }
        
        .news-swiper-container {
            display: none;
            transition: opacity 0.5s ease;
        }
        
        .news-swiper-container.active {
            display: block;
        }
        
        .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
        }
        
        .news-img {
            height: 290px;
            width: 100%;
            object-fit: cover;
        }
        
        .news-info {
            padding: 20px;
        }
        
        .news-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .news-info h4 a {
            font-size: 18px;
            margin-bottom: 10px;
            color: #000;
        }
        
        .news-info p {
            color: #666;
            font-size: 15px;
            line-height: 1.5;
        }
        
        .news-swiper-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .news-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .news-nav-btn:hover {
            background-color: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
        }
		
	  .stat-value {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            color: #333;
        }
		
		  .partner-logo {
            background-color: white;
            border-radius: 10px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 80px;
        }
.pd-19{padding-left:9rem}




        /* 桌面端鼠标悬停显示 */
        @media (max-width: 767px) {
        .swiper-container {
            width: 100%;
          
            overflow: hidden;
            margin-top: 70px; /* 为固定导航留出空间 */
        }

        .products-section,.industry-section, .stats-section,.news-section, .partners-section{padding:50px 0}
        .section-description{    margin: 0 auto 30px;}
        .news-tab{font-size:18px;margin-bottom:0;width:40%}
        
        .stat-value{font-size:24px}
        .stat-label{font-size:16px}
        .product-image{width:100%}
                .section-title{font-size:1.6rem}
        }