        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Noto Serif SC', serif;
            background-color: #f8f8f8;
            color: #333;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(56, 142, 60, 0.85) 100%);
        }
        
        .magazine-shadow {
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .transition-smooth {
            transition: all 0.6s ease;
        }
        
        .text-stroke {
            -webkit-text-stroke: 1px #fff;
            text-stroke: 1px #fff;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
        }
        
        /* 轮播图样式 - 修改后 */
        .carousel-container {
            width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            max-width: 1920px;
            height: auto;
            min-height: 300px;
            max-height: 600px; /* 电脑端设置最大高度600px */
            margin: 0 auto;
            overflow: hidden;
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.6s ease;
            height: 100%;
        }
        
        .carousel-item {
            min-width: 100%;
            height: auto;
            position: relative;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            max-height: 600px; /* 电脑端设置最大高度600px */
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            text-align: left;
            background: transparent;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .carousel-control:hover {
            background-color: rgba(255,255,255,0.5);
        }
        
        .carousel-control.prev {
            left: 40px;
        }
        
        .carousel-control.next {
            right: 40px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        
        .carousel-indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-indicator.active {
            background-color: white;
            transform: scale(1.3);
        }
        
        /* 公司简介板块 */
        .about-section {
            background-color: #fff;
            padding: 80px 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        
        /* 动画效果 - 600ms持续时间 */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-left {
            opacity: 0;
            animation: fadeInLeft 0.6s ease forwards;
        }
        
        .animate-right {
            opacity: 0;
            animation: fadeInRight 0.6s ease forwards;
        }
        
        .animate-feature {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .animate-stat {
            opacity: 0;
            animation: countUp 0.6s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* 数字计数动画 */
        .counter {
            font-variant-numeric: tabular-nums;
        }
        
        /* 内容容器 */
        .content-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .about-text {
                padding-right: 0;
                order: 1;
            }
            
            .about-image {
                order: 2;
                width: 100%;
            }
            
            .animate-left, .animate-right {
                animation-name: fadeInUp !important;
            }
            
            .carousel {
                max-height: 400px; /* 移动端适当降低高度 */
            }
            
            .carousel-item img {
                max-height: 400px; /* 移动端适当降低高度 */
            }
            
            .carousel-caption {
                padding: 20px;
                text-align: left;
            }
            
            .footer-links-mobile-hidden {
                display: none;
            }
			
            /* 移动端文字缩小为原来的一半 */
            .carousel-caption h2 {
                font-size: 1.5rem; /* 原3rem的一半 */
                margin-bottom: 8px;
            }
            
            .carousel-caption p {
                font-size: 0.875rem; /* 原1.75rem的一半 */
                margin-bottom: 12px;
            }
            
            .carousel-caption a {
                font-size: 0.875rem;
                padding: 8px 16px;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
            }
            
            .carousel-control.prev {
                left: 15px;
            }
            
            .carousel-control.next {
                right: 15px;
            }
            
            /* 小屏幕隐藏数据统计 */
            .stats-section {
                display: none;
            }
            
            /* 特色板块四宫格布局 */
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .feature-item {
                padding: 15px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
            }
        }
        
        @media (min-width: 768px) {
            .carousel-caption h2 {
                font-size: 3rem;
                margin-bottom: 20px;
                text-shadow: 1px 2px 3px black;
            }
            
            .carousel-caption p {
                font-size: 1.25rem;
                margin-bottom: 30px;
                text-shadow: 1px 2px 3px black;
            }
        }
        
        /* 产品系列选项卡 */
        .product-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #e2e8f0;
            overflow-x: auto;
            white-space: nowrap;
            padding-bottom: 10px;
        }
        
        .product-tab {
            padding: 12px 24px;
            cursor: pointer;
            font-weight: 600;
            color: #64748b;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .product-tab.active {
            color: #16a34a;
            border-bottom-color: #16a34a;
        }
        
        .product-tab-content {
            display: none;
        }
        
        .product-tab-content.active {
            display: grid;
        }
        
        /* 产品展示和文章轮播样式 */
        .mobile-carousel {
            display: none;
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .mobile-carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .mobile-carousel-item {
            min-width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
        }
        
        .mobile-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .mobile-carousel-control.prev {
            left: 10px;
        }
        
        .mobile-carousel-control.next {
            right: 10px;
        }
        
        .mobile-carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 8px;
        }
        
        .mobile-carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-carousel-indicator.active {
            background-color: #16a34a;
            transform: scale(1.2);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            /* 隐藏桌面版产品展示和文章 */
            .desktop-products, .desktop-articles {
                display: none;
            }
            
            /* 显示移动端轮播 */
            .mobile-carousel {
                display: block;
            }
            
            /* 调整产品卡片样式 */
            .mobile-product-card {
                background: white;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                margin: 0 5px;
            }
            
            .mobile-product-card img {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }
            
            .mobile-product-info {
                padding: 15px;
            }
            
            /* 调整文章卡片样式 */
            .mobile-article-card {
                background: white;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                margin: 0 5px;
            }
            
            .mobile-article-card img {
                width: 100%;
                height: 180px;
                object-fit: cover;
            }
            
            .mobile-article-info {
                padding: 15px;
            }
            
            .product-tabs {            
            justify-content: left;
			}
        }