
        /* Swiper轮播图样式 - 优化版 */
        .swiper-section {
            position: relative;
            margin-bottom: 40px;
        }
        
        .swiper-container {
            width: 100%;
            height: 600px;
            border-radius: 0 0 20px 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            background-size: cover;
            background-position: center;
            transition: transform 0.8s ease;
        }
        
        .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
       /*     background: linear-gradient(135deg, rgba(10, 61, 28, 0.85) 0%, rgba(10, 61, 28, 0.6) 50%, rgba(10, 61, 28, 0.3) 100%);*/
            z-index: 1;
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 80px;
            transform: translateY(-50%);
            max-width: 650px;
            text-align: left;
            z-index: 2;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border-left: 5px solid var(--accent-gold);
        }
        
        .slide-content h2 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--accent-gold);
            transform: scale(1.3);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--accent-gold);
            background: rgba(10, 61, 28, 0.7);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
        }
        
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: rgba(10, 61, 28, 0.9);
            transform: scale(1.1);
        }
        
        /* 各部分标题样式 */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--primary-dark);
            font-weight: 700;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* 产品展示区域 */
        .product-card {
            border-radius: 12px;
            overflow: hidden;
            border: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
      
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 28, 0.15);
        }
        
        .product-img {
            height: 220px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-light);
        }
        
        .product-img i {
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .product-card .card-body {
            padding: 25px;
            background-color: white;
        }
        
        .product-card h4 {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .product-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .price-tag {
            color: var(--primary-medium);
            font-weight: 700;
            font-size: 1.3rem;
            margin-top: 15px;
        }
        
        /* 公司简介区域 */
        .about-section {
            background-color: var(--accent-light);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary-dark), var(--accent-gold));
        }
        
        .about-content {
            padding-right: 40px;
        }
        
        .about-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 15px 15px 0 rgba(10, 61, 28, 0.1);
        }
        
        /* 新闻中心 - 修复版 */
        .news-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .news-left {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .news-right {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .news-swiper-container {
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .news-swiper-slide {
            position: relative;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .news-swiper-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(10, 61, 28, 0.9), rgba(10, 61, 28, 0.4));
            color: white;
            z-index: 2;
        }
        
        .news-swiper-content h4 a {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.4rem;
            line-height: 1.4;
			color:#fff;
        }
        
        .news-swiper-date {
            font-size: 0.85rem;
            color: var(--accent-gold);
            font-weight: 600;
        }
        
        /* 新闻列表 - 修复版 */
        .news-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-medium);
        }
        
        .news-list-header h3 {
            color: var(--primary-dark);
            font-weight: 700;
            margin: 0;
        }
        
        .news-list {
            max-height: 380px;
   
            padding-right: 10px;
        }
        
        .news-list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .news-list-item:last-child {
            border-bottom: none;
        }
        
        .news-list-item:hover {
            background-color: rgba(232, 245, 233, 0.4);
            padding-left: 15px;
            padding-right: 15px;
            margin: 0 -15px;
            border-radius: 6px;
        }
        
        .news-title {
            flex: 1;
            color: var(--primary-dark);
       
            font-size: 1.05rem;
            line-height: 1.4;
            margin: 0;
            padding-right: 20px;
            text-decoration: none;
        }
        
        .news-title:hover {
            color: var(--primary-medium);
        }
        
        .news-date {
            color: var(--primary-medium);
           
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .news-more-link {
            display: block;
            color: var(--primary-medium);
            font-weight: 600;
            text-decoration: none;
            margin-top: 25px;
            transition: all 0.3s;
            padding: 10px 20px;
            border: 2px solid var(--primary-medium);
            border-radius: 30px;
            text-align: center;
        }
        
        .news-more-link:hover {
            color: white;
            background-color: var(--primary-medium);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 61, 28, 0.2);
        }
        
        /* 自定义滚动条样式 */
        .news-list::-webkit-scrollbar {
            width: 6px;
        }
        
        .news-list::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        
        .news-list::-webkit-scrollbar-thumb {
            background: var(--primary-medium);
            border-radius: 10px;
        }
        
        .news-list::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
   
        /* 响应式调整 */
        @media (max-width: 1200px) {
            .slide-content h2 {
                font-size: 2.8rem;
            }
            
            .swiper-container {
                height: 550px;
            }
        }
        
        @media (max-width: 992px) {
            .swiper-container {
                height: 480px;
            }
            
            .slide-content {
                left: 40px;
                padding: 30px;
            }
            
            .slide-content h2 {
                font-size: 2.4rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .nav-phone {
                margin-left: 10px;
                padding: 8px 10px;
                font-size: 0.9rem;
            }
            
            .news-swiper-container {
                height: 400px;
            }
            
            .news-right {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .swiper-container {
                height: 420px;
            }
            
            .slide-content {
                left: 20px;
                right: 20px;
                padding: 25px;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .nav-phone {
                display: none;
            }
            
            .news-swiper-container {
                height: 350px;
            }
            
            .swiper-button-next, .swiper-button-prev {
                width: 50px;
                height: 50px;
            }
            
            .news-left, .news-right {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .swiper-container {
                height: 380px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h2 {
                font-size: 1.7rem;
            }
        }