 :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
        }
        
        body {
            background-color: var(--light-gray);
            font-family: 'TikTok Sans', 'Microsoft YaHei', sans-serif;
            color: var(--dark-gray);
        }
		
		
		   .header-container {
            width: 100%;
            /* 隐藏可能溢出的部分，对于保持宽高比很有用 */
            overflow: hidden;
            position: relative;
        }

        .header-image {
            /* 关键：图片宽度撑满容器，高度自动调整以保持比例 [1](@ref) */
            width: 100%;
            height: auto;
            /* 使图片以块级元素显示，消除底部默认间隙 [1](@ref) */
            display: block;
        }

        /* 在图片上方叠加文字的容器 */
        .header-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        /* 针对小屏幕调整图片显示或文字大小 */
        @media (max-width: 768px) {
            /* 可以进一步调整样式 */
        }
		.product-item{margin-bottom:10px;}
		
        
        .header {
            background-color: var(--white);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--primary-green);
        }
        
        .news-container {
            border-radius: 10px;
            padding: 0;
            overflow: hidden;
        }
        
        .news-item {
            padding: 40px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            background-color: rgba(40, 167, 69, 0.03);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .news-img:hover {
            transform: scale(1.03);
        }
        
        .news-title {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
            transition: color 0.2s ease;
        }
        
        .news-title:hover {
            color: var(--primary-green);
            text-decoration: none;
        }
        
        .news-summary {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .news-meta {
            font-size: 0.85rem;
            color: #888;
        }
        
        .news-meta i {
            margin-right: 5px;
        }
        
        .category-badge {
            background-color: var(--light-green);
            color: var(--primary-green);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .read-more {
            color: var(--primary-green);
            font-weight: 500;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        

        
        .page-title {
            color: var(--dark-gray);
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .page-subtitle {
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;padding:30px 10px;
            }
            
            .news-img-container {
                margin-bottom: 15px;
            }
            
            .news-img {
                height: 200px;
            }
        }
        
        .empty-img {
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            font-size: 0.9rem;
        }
		
		
		
		
		 :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
            --border-gray: #e9ecef;
        }
        

        
        .header {
            background-color: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid var(--border-gray);
            margin-bottom: 30px;
        }
        
        .news-detail-container {
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
        }
        
        .news-header {
            border-bottom: 1px solid var(--border-gray);
            padding-bottom: 25px;
            margin-bottom: 30px;
        }
        
/*        .news-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 20px;
        }*/
        
    .news-meta {
           display: flex;           /* 启用 Flexbox */
    justify-content: flex-start; /* 子元素左对齐（可选：space-between、center 等） */
    align-items: center;     /* 垂直居中对齐（可选） */
    gap: 10px;     
        }
        
        .news-meta-item {
            display: flex;
            align-items: center;
        }
        
        .news-meta-item i {
            color: var(--primary-green);
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .news-tags {
            margin-top: 10px;
        }
        
        .news-tag {
            background-color: var(--light-green);
            color: var(--primary-green);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 8px;
            display: inline-block;
            margin-bottom: 5px;
        }
        
        .news-hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .news-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }
        
        .news-content h2 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-top: 35px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-left: 4px solid var(--primary-green);
            padding-left: 15px;
        }
        
        .news-content h3 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .news-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .news-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .news-content blockquote {
            border-left: 4px solid var(--primary-green);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #666;
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .news-content ul, .news-content ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        .news-content li {
            margin-bottom: 8px;
        }
        
        .news-footer {
            border-top: 1px solid var(--border-gray);
            padding-top: 25px;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .news-actions {
            display: flex;
            gap: 15px;
        }
		.news-actions a{text-decoration:none}
        
        .btn-action {
            background-color: transparent;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 8px 15px;
            color: var(--text-gray);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-action:hover {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }
        
        .btn-back {
            background-color: var(--light-green);
            color: var(--primary-green);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-back:hover {
            background-color: var(--primary-green);
            color: white;
        }
        
        .related-news {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }
        
        .section-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
        }
        
        .related-item {
            display: block;
            padding: 15px;
            border-bottom: 1px solid var(--border-gray);
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .related-item:hover {
            background-color: rgba(40, 167, 69, 0.05);
            border-radius: 8px;
        }
        
        .related-item:last-child {
            border-bottom: none;
        }
        
        .related-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-gray);
            transition: color 0.3s ease;
        }
        
        .related-item:hover .related-title {
            color: var(--primary-green);
        }
        
        .related-meta {
            font-size: 0.85rem;
            color: var(--text-gray);
        }
        

        
        .author-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 20px;
            background-color: var(--light-gray);
            border-radius: 8px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid var(--primary-green);
        }
        
        .author-details h4 {
            margin: 0 0 5px 0;
            font-weight: 600;
        }
        
        .author-details p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-gray);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .news-detail-container {
                padding: 25px 10px;
            }
            
            .news-title {
                font-size: 1.5rem;
            }
            
            .news-meta {
                gap: 10px;
            }
            
            .news-footer {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .news-content h2 {
                font-size: 1.5rem;
            }
            
            .news-content h3 {
                font-size: 1.3rem;
            }
            
            .news-content {
                font-size: 1rem;
            }
        }
        
        .news-source {
            font-size: 0.9rem;
            color: var(--text-gray);
            font-style: italic;
            margin-top: 10px;
        }
		
		





     :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --medium-green: #c3e6cb;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
            --border-gray: #e9ecef;
        }
        

        
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(212, 237, 218, 0.2) 100%);
            padding: 80px 0 60px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .hero-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-green);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-container {
            border-radius: 12px;
            padding: 50px 40px;
            margin-bottom: 60px;
        }
        
        .company-intro, .company-culture {
            display: flex;
            align-items: center;
        }
        
        .intro-image, .culture-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .intro-image:hover, .culture-image:hover {
            transform: translateY(-5px);
        }
        
        .intro-content, .culture-content {
            padding: 0 30px;
        }
        
        .content-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .content-text {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .feature-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }
        
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            min-width: 150px;
        }
        
        .stat-number {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        /* Swiper 轮播图样式 - 初始显示3张 */
        .swiper-container {
            width: 100%;
            padding: 20px 0 40px;
        }
        
        .swiper {
            width: 100%;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .swiper-slide-active {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transform: scale(1.02);
        }
        
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--white);
            background-color: rgba(40, 167, 69, 0.8);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
        }
        
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background-color: var(--primary-green);
        }
        
        .swiper-pagination {
            bottom: 0 !important;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #ccc;
            opacity: 0.7;
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--primary-green);
            opacity: 1;
        }
        
        .environment-section {
            text-align: center;
        }
        
        .environment-title {
            color: var(--dark-gray);
            font-weight: 600;
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .environment-desc {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
       /* .footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }*/
        
        .contact-info {
            color: #ccc;
            font-size: 0.95rem;
        }
        
        .contact-info i {
            color: var(--primary-green);
            margin-right: 10px;
            width: 20px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .company-intro, .company-culture {
                flex-direction: column;
            }
            
            .intro-content, .culture-content {
                padding: 30px 0 0 0;
            }
            
            .culture-content {
                order: 1;
            }
            
            .culture-image {
                order: 2;
                margin-top: 30px;
            }
            
            .swiper {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-container {
                padding: 30px 10px;
            }
            
            .content-title {
                font-size: 1.6rem;
            }
            
            .swiper {
                height: 250px;
            }
            
            .stat-item {
                min-width: 120px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #218838;
            transform: translateY(-5px);
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .value-icon i {
            color: var(--primary-green);
            font-size: 1.5rem;
        }
        
        .value-content h4 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .value-content p {
            color: var(--text-gray);
            margin: 0;
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            font-size: 0.9rem;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .swiper-slide:hover .image-caption {
            opacity: 1;
        }
		
		
		



       :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --medium-green: #c3e6cb;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
            --border-gray: #e9ecef;
        }

        
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(212, 237, 218, 0.2) 100%);
            padding: 80px 0 60px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .hero-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-green);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-image-container {
            position: relative;
            overflow: hidden;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-title {
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }
        
        .product-card:hover .product-title {
            transform: translateY(0);
        }
        
        .product-link {
            color: var(--white);
            background-color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            width: fit-content;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }
        
        .product-card:hover .product-link {
            transform: translateY(0);
            opacity: 1;
        }
        
        .product-link:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-category {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .product-name {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .product-description {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .product-features {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .product-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .product-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }
        
        .product-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }
        
        .price-unit {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: normal;
        }
        
        .product-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn-detail {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            flex: 1;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
        
        .btn-detail:hover {
            background-color: #218838;
            color: var(--white);
        }
        
        .btn-cart {
            background-color: var(--light-green);
            color: var(--primary-green);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
        
        .btn-cart:hover {
            background-color: var(--primary-green);
            color: var(--white);
        }
        
       .filter-section {
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    gap: 10px;
}

.filter-btn {
    background-color: var(--text-gray);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none; /* 移除链接下划线 */
    display: inline-block; /* 确保按钮样式正确 */
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
}
        
      /*  .footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }*/
        
        .contact-info {
            color: #ccc;
            font-size: 0.95rem;
        }
        
        .contact-info i {
            color: var(--primary-green);
            margin-right: 10px;
            width: 20px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #218838;
            transform: translateY(-5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .product-card {
                margin-bottom: 25px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .product-name {
                font-size: 1.3rem;
            }
            
            .filter-options {
                justify-content: center;
            }
        }
        
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-gray);
        }
        
        .no-results i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }
		
		
		
	
	
	
	
	  :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --medium-green: #c3e6cb;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
            --border-gray: #e9ecef;
        }
        

        
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 15px 0;
            margin-bottom: 30px;
        }
        
        .breadcrumb-item a {
            color: var(--text-gray);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--primary-green);
        }
        
        .product-detail-container {
            border-radius: 12px;
            padding: 30px 10px;
            margin-bottom: 50px;
        }
        
        .product-gallery {
            position: relative;
        }
        
        237346 {
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;border: solid 1px #ccc;
        }
        
        .main-image:hover {
            transform: scale(1.02);
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 10px 0;
        }
        
        .thumbnail-item {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .thumbnail-item.active {
            border-color: var(--primary-green);
        }
        
        .thumbnail-item:hover {
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        
        .thumbnail-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-green);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-info {
            padding-left: 30px;
        }
        
        .product-category {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .product-title {
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .stars {
            color: #ffc107;
            margin-right: 10px;
        }
        
        .rating-text {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .product-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .price-unit {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: normal;
        }
        
        .old-price {
            font-size: 1.5rem;
            color: var(--text-gray);
            text-decoration: line-through;
            margin-left: 10px;
        }
        
        .product-description {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-gray);
        }
        
        .spec-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 30px;
        }
        
        .spec-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: var(--dark-gray);
        }
        
        .spec-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .btn-primary-action {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary-action:hover {
            background-color: #218838;
            color: var(--white);
            transform: translateY(-2px);
        }
        
        .btn-secondary-action {
            background-color: var(--light-green);
            color: var(--primary-green);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-secondary-action:hover {
            background-color: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        .product-tabs {
            margin-top: 50px;
        }
        
        .nav-tabs {
            border-bottom: 2px solid var(--border-gray);
        }
        
        .nav-tabs .nav-link {
            color: var(--text-gray);
            font-weight: 600;
            padding: 12px 25px;
            border: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .nav-tabs .nav-link:hover {
            color: var(--primary-green);
            border-bottom: 2px solid var(--primary-green);
        }
        
        .nav-tabs .nav-link.active {
            color: var(--primary-green);
            border: none;
            border-bottom: 2px solid var(--primary-green);
        }
        
        .tab-content {
            padding: 30px 0;
        }
        
        .tab-pane h3 {
            color: var(--dark-gray);

            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .tab-pane p {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature-item {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-green);
        }
        
        .feature-item h4 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-item p {
            margin: 0;
            font-size: 1rem;
        }
        
        .review-item {
            border-bottom: 1px solid var(--border-gray);
            padding: 20px 0;
        }
        
        .review-item:last-child {
            border-bottom: none;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .review-date {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .review-content {
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /*.footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }*/
        
        .contact-info {
            color: #ccc;
            font-size: 0.95rem;
        }
        
        .contact-info i {
            color: var(--primary-green);
            margin-right: 10px;
            width: 20px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #218838;
            transform: translateY(-5px);
        }
        
        /* 模态框样式 */
        .modal-content {
            border-radius: 10px;
            border: none;
        }
        
        .modal-header {
            background-color: var(--primary-green);
            color: var(--white);
            border-radius: 10px 10px 0 0;
        }
        
        .modal-title {
            font-weight: 600;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 比例 */
            margin-bottom: 20px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        
        .contact-details {
            padding: 20px 0;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-green);
            flex-shrink: 0;
        }
        
        .contact-text h5 {
            margin: 0 0 5px 0;
            font-weight: 600;
        }
        
        .contact-text p {
            margin: 0;
            color: var(--text-gray);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .product-info {
                padding-left: 0;
                margin-top: 30px;
            }
            
            .product-title {
                font-size: 1.8rem;
            }
            
            237346 {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .product-title {
                font-size: 1.6rem;
            }
            
            .product-price {
                font-size: 2rem;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn-primary-action, .btn-secondary-action {
                width: 100%;
                justify-content: center;
            }
            
            .section-title237346 {
                height: 300px;
            }
        }
        
        .related-products {
            margin-top: 50px;
        }
        
        .related-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .related-item {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .related-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .related-info {
            padding: 15px;
        }
        
        .related-name {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .related-price {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.2rem;
        }
		



   :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --medium-green: #c3e6cb;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
            --border-gray: #e9ecef;
        }
        

        
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(212, 237, 218, 0.2) 100%);
            padding: 80px 0 60px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .hero-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-green);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .recruitment-container {
            background-color: var(--white);
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
            overflow: hidden;
        }
        
        .job-item {
            border-bottom: 1px solid var(--border-gray);
            padding: 0;
            transition: all 0.3s ease;
        }
        
        .job-item:last-child {
            border-bottom: none;
        }
        
        .job-item:hover {
            background-color: rgba(40, 167, 69, 0.02);
        }
        
        .job-header {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .job-header:hover {
            background-color: rgba(40, 167, 69, 0.03);
        }
        
        .job-header.active {
            background-color: var(--light-green);
        }
        
        .job-title-container {
            flex: 1;
            min-width: 300px;
        }
        
        .job-main-title {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--dark-gray);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .job-tag {
            display: inline-block;
            background-color: var(--light-green);
            color: var(--primary-green);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .job-meta-info {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        
        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .job-meta-item i {
            color: var(--primary-green);
            font-size: 1rem;
        }
        
        .job-status {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .job-status-tag {
            background-color: #ffeaa7;
            color: #e17055;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .job-toggle {
            color: var(--primary-green);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .job-toggle.active {
            transform: rotate(180deg);
        }
        
        .job-content {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
        }
        
        .job-content.active {
            padding: 25px 30px;
            max-height: 2000px;
            border-top: 1px solid var(--border-gray);
        }
        
        .job-section {
            margin-bottom: 25px;
        }
        
        .job-section-title {
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--light-green);
        }
        
        .job-description {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .job-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .job-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: var(--text-gray);
        }
        
        .job-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .job-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-gray);
        }
        
        .apply-btn {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .apply-btn:hover {
            background-color: #218838;
            color: var(--white);
            transform: translateY(-2px);
        }
        
        .save-btn {
            background-color: var(--light-gray);
            color: var(--text-gray);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .save-btn:hover {
            background-color: #e9ecef;
            color: var(--dark-gray);
        }
        
      /*  .footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }*/
        
        .contact-info {
            color: #ccc;
            font-size: 0.95rem;
        }
        
        .contact-info i {
            color: var(--primary-green);
            margin-right: 10px;
            width: 20px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #218838;
            transform: translateY(-5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .job-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .job-status {
                width: 100%;
                justify-content: space-between;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .job-main-title {
                font-size: 1.2rem;
            }
            
            .job-meta-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .job-actions {
                flex-direction: column;
            }
            
            .apply-btn, .save-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        .company-benefits {
            background-color: var(--light-green);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .benefits-title {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .benefit-item {
            background-color: var(--white);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--primary-green);
            font-size: 1.5rem;
        }
        
        .benefit-item h4 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .benefit-item p {
            color: var(--text-gray);
            margin: 0;
            font-size: 0.95rem;
        }
        
        .urgent-tag {
            background-color: #ff6b6b;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
        }
		
		



     :root {
            --primary-green: #237346;
            --light-green: #d4edda;
            --medium-green: #c3e6cb;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-gray: #6c757d;
            --dark-gray: #343a40;
            --border-gray: #e9ecef;
        }

        
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(212, 237, 218, 0.2) 100%);
            padding: 80px 0 60px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .hero-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .section-title {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-green);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .form-container {
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 50px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border: 1px solid var(--border-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
        }
        
        .form-control.is-invalid, .form-select.is-invalid {
            border-color: #dc3545;
        }
        
        .form-control.is-invalid:focus, .form-select.is-invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }
        
        .form-text {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        .invalid-feedback {
            display: none;
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 5px;
        }
        
        .was-validated .form-control:invalid ~ .invalid-feedback,
        .was-validated .form-select:invalid ~ .invalid-feedback {
            display: block;
        }
        
        .form-check {
            margin-bottom: 15px;
        }
        
        .form-check-input {
            width: 1.2em;
            height: 1.2em;
            margin-top: 0.2em;
            margin-right: 10px;
            border: 2px solid var(--border-gray);
        }
        
        .form-check-input:checked {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
        
        .form-check-input:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
        }
        
        .form-check-label {
            color: var(--dark-gray);
        }
        
        .btn-submit {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-submit:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
        }
        
        .btn-reset {
            background-color: var(--light-gray);
            color: var(--text-gray);
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-left: 15px; margin-top: 20px;
        }
        
        .btn-reset:hover {
            background-color: #e9ecef;
            color: var(--dark-gray);
        }
        
        .form-actions {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .contact-info-sidebar {
            background-color: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-info-title {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-info-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-green);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .contact-info-content h4 {
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .contact-info-content p {
            color: var(--text-gray);
            margin: 0;
        }
        
      /*  .footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            color: var(--white);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }*/
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #218838;
            transform: translateY(-5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .form-container {
                padding: 30px;
            }
            
            .contact-info-sidebar {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .form-container {
                padding: 10px;
            }
            
            .btn-submit, .btn-reset {
                width: 100%;
                margin-left: 0;
                margin-bottom: 10px;
            }
            
            .form-actions {
                flex-direction: column;
            }
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            color: var(--dark-gray);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .required-label:after {
            content: " *";
            color: #dc3545;
        }
        
        .success-message {
            display: none;
            background-color: var(--light-green);
            color: #155724;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid var(--primary-green);
        }
        
        .success-message.show {
            display: block;
        }
        
        .error-message {
            display: none;
            background-color: #f8d7da;
            color: #721c24;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid #dc3545;
        }
        
        .error-message.show {
            display: block;
        }





table {
  width: 100% !important;
  margin: 20px 0 !important;
}

/* 设置奇数行背景色 */
tr:nth-child(odd) {
  background-color: #f1f1f1 !important; /* 浅灰色背景 */
}

/* 为每个单元格添加内边距，使间距更明显 */
td {
  padding: 12px 15px !important;
  border: 1px solid #ddd !important;
  vertical-align: middle !important;
}

/* 可选：添加圆角效果，使表格更美观 */
tr:first-child td:first-child {
  border-top-left-radius: 8px !important;
}

tr:first-child td:last-child {
  border-top-right-radius: 8px !important;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 8px !important;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 8px !important;
}



        
        .subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 图片网格样式 */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .image-item {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .image-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
        
        .image-item img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .image-item:hover img {
            transform: scale(1.05);
        }
        
        .image-info {
            padding: 20px;
        }
        
        .image-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .image-description {
            font-size: 0.95rem;
            color: #7f8c8d;
            line-height: 1.5;
        }
        
        /* 弹窗样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            padding: 20px;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal-content {
            transform: scale(1);
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background-color: #2c3e50;
            color: white;
        }
        
        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s;
        }
        
        .close-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .modal-body {
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .modal-image-container {
            width: 100%;
            height: 400px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        
        .modal-image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        
        .modal-image-info {
            text-align: center;
            max-width: 600px;
        }
        
        .modal-image-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .modal-image-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* 导航按钮 */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.85);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #333;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .nav-btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .nav-btn.prev {
            left: 20px;
        }
        
        .nav-btn.next {
            right: 20px;
        }
        
        /* 图片指示器 */
        .image-indicator {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }
        
        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator-dot.active {
            background-color: #3498db;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .modal-image-container {
                height: 300px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .image-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .modal-content {
                width: 95%;
            }
            
            .modal-image-container {
                height: 250px;
            }
            
            .nav-btn {
                width: 36px;
                height: 36px;
            }
            
            .nav-btn.prev {
                left: 10px;
            }
            
            .nav-btn.next {
                right: 10px;
            }
            
            .modal-header {
                padding: 15px 20px;
            }
            
            .modal-body {
                padding: 20px;
            }
        }
        
        /* 加载动画 */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 图片计数器 */
        .image-counter {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }


/* 务必将这段 CSS 加到你的样式表中 */
.job-content {
    /* 默认隐藏 */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* 核心：添加过渡动画，控制时长和曲线 */
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    /* 可选：增加内边距，展开后更美观 */
    padding: 0 15px;
}

.job-content.active {
    /* 展开时设置足够大的 max-height（覆盖所有职位内容高度） */
    max-height: 2000px;
    opacity: 1;
    padding: 15px;
    /* 过渡曲线微调，更丝滑 */
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}

/* 切换图标也加过渡动画 */
.job-toggle i {
    transition: transform 0.3s ease;
}

.job-toggle.active i {
    transform: rotate(180deg); /* 箭头旋转动画 */
}

/* 头部点击区域加过渡，提升交互感 */
.job-header {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.job-header.active {
    background-color: #f8f9fa; /* 可选：展开时头部轻微变色 */
}