        /* 页面横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 61, 28, 0.85), rgba(10, 61, 28, 0.9)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .page-banner h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }
        
        .page-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 产品列表页主要内容 */
        .product-list-section {
            padding-bottom: 80px;
        }
        
        /* 筛选侧边栏 */
        .filter-sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            position: sticky;
            top: 20px;
        }
        
        .filter-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .filter-title i {
            color: var(--accent-gold);
        }
        
        .filter-category {
            margin-bottom: 30px;
        }
        
        .filter-category h5 {
            color: var(--primary-medium);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .filter-option {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .filter-option input {
            margin-right: 10px;
            cursor: pointer;
        }
        
        .filter-option label {
            cursor: pointer;
            color: #555;
            transition: color 0.3s;
            flex: 1;
        }
        
        .filter-option label:hover {
            color: var(--primary-dark);
        }
        
        .filter-count {
            color: var(--accent-gold);
            font-weight: 600;
            background-color: var(--accent-light);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        /* 价格范围滑块 */
        .price-range {
            margin-top: 20px;
        }
        
        .price-inputs {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .price-input {
            width: 45%;
        }
        
        .price-input label {
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .price-input input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        
        /* 产品列表区域 */
        .product-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .product-count {
            color: var(--primary-medium);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .sort-options select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background-color: white;
            color: #555;
            font-size: 0.95rem;
            cursor: pointer;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        /* 产品卡片 */
        .product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 28, 0.15);
        }
        
        .product-img {
            height: 220px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-light);
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-dark);
            color: white;
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 2;
        }
        
        .product-card-body {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-card h4 a {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.3rem;
			text-decoration:none
        }
        
        .product-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
   
            flex: 1;
        }
        
        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .feature-tag {
            background-color: var(--accent-light);
            color: var(--primary-medium);
            font-size: 0.8rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .product-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .price {
            color: var(--primary-medium);
            font-weight: 700;
            font-size: 1.4rem;
        }
        
        .price span {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 8px;
        }
        
        .btn-add-to-cart {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .btn-add-to-cart i {
            margin-right: 8px;
        }
        
        .btn-add-to-cart:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 61, 28, 0.2);
        }
        
        /* 分页 */
        .pagination-container {
            margin-top: 60px;
        }
        
        .pagination {
            justify-content: center;
        }
        
        .page-link {
            color: var(--primary-medium);
            border: 1px solid #ddd;
            margin: 0 5px;
            border-radius: 6px;
            padding: 8px 16px;
            transition: all 0.3s;
        }
        
        .page-link:hover {
            background-color: var(--accent-light);
            color: var(--primary-dark);
            border-color: var(--accent-gold);
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-medium);
            border-color: var(--primary-medium);
            color: white;
        }
        
       
	     /* 面包屑导航 */
        .breadcrumb-nav {
            padding: 15px 0;
            background-color: var(--accent-light);
            margin-bottom: 40px;
        }
        
        .breadcrumb {
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--primary-medium);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        /* 产品展示区域 */
        .product-detail-section {
            padding-bottom: 40px;
        }
        
        /* 产品图片展示区 */
        .product-images-container {
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        
        }
        
        .main-image-swiper {
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .main-image-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            overflow: hidden;
        }
        
        .main-image-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .thumbnails-swiper {
            height: 100px;
        }
        
        .thumbnails-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
            opacity: 0.7;
        }
        
        .thumbnails-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thumbnails-swiper .swiper-slide-thumb-active {
            border-color: var(--accent-gold);
            opacity: 1;
        }
        
        /* 产品信息区 */
        .product-info-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .product-title {
            color: var(--primary-dark);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .product-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .product-category {
            display: inline-block;
            background-color: var(--accent-light);
            color: var(--primary-medium);
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 25px;
            font-size: 0.9rem;
        }
        
        .product-sku {
            color: #666;
            margin-bottom: 5px;
            font-size: 0.95rem;
        }
        
        .product-features {
            margin-bottom: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
			width:100%
        }
        
        .feature-item i {
            color: var(--accent-gold);
            margin-right: 10px;
            margin-top: 3px;
        }
        
        /* 立即咨询按钮 */
        .btn-consult {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px;
        }
        
        .btn-consult i {
            margin-right: 10px;
        }
        
        .btn-consult:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 61, 28, 0.3);
            color: white;
        }
        
        /* 产品详情内容区域 */
        .product-detail-content {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
            margin-bottom: 40px;
        }
        
        .detail-section-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-light);
            position: relative;
        }
        
        .detail-section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
            bottom: -2px;
            left: 0;
        }
        
        .detail-content {
            line-height: 1.7;
            color: #555;
            margin-bottom: 30px;
        }
        
        .detail-content p {
            margin-bottom: 15px;
        }
        
        .detail-content ul, .detail-content ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        
        .detail-content li {
            margin-bottom: 8px;
        }
        
        .specifications-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        
        .specifications-table th,
        .specifications-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .specifications-table th {
            background-color: var(--accent-light);
            color: var(--primary-dark);
            font-weight: 600;
            width: 30%;
        }
        
        .ingredients-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        
        .ingredient-item {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: var(--accent-light);
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }
        
        .ingredient-item i {
            color: var(--primary-medium);
            margin-right: 10px;
        }
        
        /* 联系表单 */
        .contact-form-container {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .form-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .form-subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 0.2rem rgba(201, 169, 89, 0.25);
            outline: none;
        }
        
        .form-control textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .required {
            color: #e53935;
        }
        
        .btn-submit-form {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }
        
        .btn-submit-form i {
            margin-right: 10px;
        }
        
        .btn-submit-form:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(10, 61, 28, 0.3);
        }
        
        .form-note {
            font-size: 0.85rem;
            color: #666;
            margin-top: 15px;
            text-align: center;
        }
        
        /* 相关产品 */
        .related-products {
            margin-bottom: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--primary-dark);
            font-weight: 700;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .related-product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            height: 100%;
        }
        
        .related-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 28, 0.15);
        }
        
        .related-product-img {
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-light);
        }
        
        .related-product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-product-body {
            padding: 20px;
        }
        
        .related-product-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .related-product-desc {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .btn-view-details {
            background-color: var(--accent-light);
            color: var(--primary-medium);
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-view-details:hover {
            background-color: var(--primary-medium);
            color: white;
        }
		
		        /* 响应式调整 */
    
       
        /* 新闻列表页主要内容 */
        .news-list-section {
            padding-bottom: 80px;
        }
        
        /* 筛选侧边栏 */
        .filter-sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            position: sticky;
            top: 20px;
        }
        
        .filter-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .filter-title i {
            color: var(--accent-gold);
        }
        
        .filter-category {
            margin-bottom: 30px;
        }
        
        .filter-category h5 {
            color: var(--primary-medium);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .filter-option {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .filter-option input {
            margin-right: 10px;
            cursor: pointer;
        }
        
        .filter-option label {
            cursor: pointer;
            color: #555;
            transition: color 0.3s;
            flex: 1;
        }
        
        .filter-option label:hover {
            color: var(--primary-dark);
        }
        
        .filter-count {
            color: var(--accent-gold);
            font-weight: 600;
            background-color: var(--accent-light);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        /* 新闻列表区域 */
        .news-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .news-count {
            color: var(--primary-medium);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .sort-options select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background-color: white;
            color: #555;
            font-size: 0.95rem;
            cursor: pointer;
        }
        
        /* 新闻列表 */
        .news-list-container {
            margin-bottom: 40px;
        }
        
        .news-item {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .news-item {
                flex-direction: row;
                height: 280px;
            }
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(10, 61, 28, 0.15);
        }
        
        .news-image {
            flex: 0 0 40%;
            overflow: hidden;
            position: relative;
        }
        
        @media (max-width: 767px) {
            .news-image {
                height: 200px;
            }
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-dark);
            color: white;
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 2;
        }
        
        .news-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .news-date {
            color: var(--primary-medium);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 8px;
            color: var(--accent-gold);
        }
        
        .news-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1rem;
            line-height: 1.3;
            text-decoration: none;
            display: block;
        }
        
        .news-title:hover {
            color: var(--primary-medium);
        }
        
        .news-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .news-read-more {
            color: var(--primary-medium);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .news-read-more:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }
        
        .news-read-more i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .news-read-more:hover i {
            transform: translateX(5px);
        }
          /* 新闻详情页主要内容 */
        .news-detail-section {
            padding-bottom: 80px;
        }
        
        /* 新闻详情容器 */
        .news-detail-container {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .news-detail-container {
                padding: 25px;
            }
        }
        
        /* 新闻头部信息 */
        .news-header {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--accent-light);
            padding-bottom: 25px;
        }
        
        .news-category {
            display: inline-block;
            background-color: var(--primary-dark);
            color: white;
            font-size: 0.9rem;
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        .news-title {
            color: var(--primary-dark);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        @media (max-width: 768px) {
            .news-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .news-title {
                font-size: 1.7rem;
            }
        }
        
        .news-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
        }
        
        .news-meta-item {
            display: flex;
            align-items: center;
        }
        
        .news-meta-item i {
            color: var(--accent-gold);
            margin-right: 8px;
        }
        
        /* 新闻特色图片 */
        .news-featured-image {
            margin-bottom: 35px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .news-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .news-image-caption {
            color: #666;
            font-size: 0.9rem;
            text-align: center;
            margin-top: 10px;
            font-style: italic;
        }
        
        /* 新闻正文 */
        .news-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        
        .news-content p {
            margin-bottom: 1.5rem;
        }
        
        .news-content h3 {
            color: var(--primary-dark);
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .news-content h4 {
            color: var(--primary-medium);
            font-weight: 600;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        
        .news-content ul, .news-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        .news-content li {
            margin-bottom: 0.5rem;
        }
        
        .news-content blockquote {
            border-left: 4px solid var(--accent-gold);
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: var(--accent-light);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        /* 新闻内嵌图片 */
        .news-inline-image {
            margin: 2rem 0;
            text-align: center;
        }
        
        .news-inline-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .news-inline-caption {
            color: #666;
            font-size: 0.9rem;
            margin-top: 10px;
            font-style: italic;
        }
        
        /* 新闻底部信息 */
        .news-footer {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid var(--accent-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .news-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .news-tag {
            background-color: var(--accent-light);
            color: var(--primary-medium);
            font-size: 0.85rem;
            padding: 5px 12px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .news-tag:hover {
            background-color: var(--primary-medium);
            color: white;
        }
        
        .news-share {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .share-title {
            color: #666;
            font-size: 0.95rem;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        
        .share-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .share-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .share-wechat {
            background-color: #09bb07;
        }
        
        .share-weibo {
            background-color: #e6162d;
        }
        
        .share-qq {
            background-color: #12b7f5;
        }
        
        /* 相关新闻侧边栏 */
        .related-news-sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            position: sticky;
            top: 20px;
        }
        
        .sidebar-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-light);
            position: relative;
        }
        
        .sidebar-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
            bottom: -2px;
            left: 0;
        }
        
        .related-news-item {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .related-news-item:last-child {
            border-bottom: none;
        }
        
        .related-news-item:hover {
            background-color: rgba(232, 245, 233, 0.4);
            padding-left: 10px;
            border-radius: 6px;
        }
        
        .related-news-date {
            color: var(--primary-medium);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .related-news-date i {
            margin-right: 8px;
            color: var(--accent-gold);
            font-size: 0.8rem;
        }
        
        .related-news-title {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.4;
            margin-bottom: 0;
            text-decoration: none;
            display: block;
        }
        
        .related-news-title:hover {
            color: var(--primary-medium);
        }
        
        /* 新闻导航 */
        .news-navigation {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }
        
        .news-nav-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .news-nav-item:hover {
            transform: translateX(5px);
        }
        
        .news-nav-prev {
            margin-bottom: 20px;
        }
        
        .news-nav-label {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .news-nav-title {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 1rem;
        }
        
        .news-nav-icon {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin: 0 15px;
        }
        
        /* 推荐新闻 */
        .recommended-news {
            margin-bottom: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--primary-dark);
            font-weight: 700;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .recommended-news-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            height: 100%;
        }
        
        .recommended-news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(10, 61, 28, 0.15);
        }
        
        .recommended-news-img {
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary-light);
        }
        
        .recommended-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .recommended-news-card:hover .recommended-news-img img {
            transform: scale(1.05);
        }
        
        .recommended-news-body {
            padding: 20px;
        }
        
        .recommended-news-category {
            display: inline-block;
            background-color: var(--accent-light);
            color: var(--primary-medium);
            font-size: 0.8rem;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
        
        .recommended-news-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
            line-height: 1.4;
            text-decoration: none;
            display: block;
        }
        
        .recommended-news-title:hover {
            color: var(--primary-medium);
        }
        
        .recommended-news-date {
            color: #999;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        
        .recommended-news-excerpt {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .btn-read-more {
            background-color: var(--accent-light);
            color: var(--primary-medium);
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            width: 100%;
            text-decoration: none;
            display: block;
            text-align: center;
        }
        
        .btn-read-more:hover {
            background-color: var(--primary-medium);
            color: white;
        }
          
        /* 联系信息卡片 */
        .contact-card {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem 2rem;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #c19a53;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--accent-gold);
            font-size: 2rem;
        }
        
        .contact-title {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .contact-detail {
            color: var(--text-dark);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .contact-subdetail {
            color: #666;
            font-size: 0.95rem;
        }
	   
	   
        /* 响应式调整 */
        @media (max-width: 992px) {
			    .product-title {
                font-size: 1.8rem;
            }
            
            .main-image-swiper {
                height: 400px;
            }
            
            .thumbnails-swiper {
                height: 80px;
            }
            
            .product-detail-content, .contact-form-container {
                padding: 30px;
            }
            .page-banner h1 {
                font-size: 2.5rem;
            }
            
            .filter-sidebar {
                position: static;
                margin-bottom: 40px;
            }
            
            .product-list-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
			 .product-title {
                font-size: 1.6rem;
            }
            
            .main-image-swiper {
                height: 350px;
            }
            
            .thumbnails-swiper {
                height: 70px;
            }
            
            .nav-phone {
                display: none;
            }
            
            .btn-consult, .btn-submit-form {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .product-detail-content, .contact-form-container {
                padding: 25px;
            }
            .page-banner {
                padding: 80px 0;
                margin-bottom: 40px;
            }
            
            .page-banner h1 {
                font-size: 2rem;
            }
            
            .nav-phone {
                display: none;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
			    .product-info-container {
                padding: 20px;
            }
            
            .main-image-swiper {
                height: 300px;
            }
            
            .thumbnails-swiper {
                height: 60px;
            }
            
            .product-detail-content, .contact-form-container {
                padding: 20px;
            }
        }