
        /* 页面标题区 */
        .page-header {
            background: linear-gradient(135deg, #f7ede4 0%, #fef5ec 100%);
            padding: 70px 0 60px;
            margin-top: 70px;
            text-align: center;
        }
        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1.2rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 4px;
        }
        /* 筛选按钮 */
        .filter-btn {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: 40px;
            padding: 0.5rem 1.8rem;
            margin: 0 0.5rem;
            transition: all 0.25s;
        }
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        /* 产品卡片 */
        .product-card {
            border-radius: 28px;
            overflow: hidden;
            background: white;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.08);
            transition: all 0.35s ease;
            height: 100%;
            border: none;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px rgba(130, 66, 33, 0.25);
        }
        .product-card img {
            height: 260px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s ease;
        }
        .product-card:hover img {
            transform: scale(1.03);
        }
        .badge-category {
            background-color: var(--primary-light);
            color: white;
            border-radius: 30px;
            padding: 0.3rem 1rem;
            font-size: 0.75rem;
        }

 /* 页面标题区 */
   
  
   
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        /* 卡片样式 */
        .culture-card, .honor-card {
            background: white;
            border-radius: 28px;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
            height: 100%;
            box-shadow: 0 15px 30px -12px rgba(0,0,0,0.05);
            border: 1px solid rgba(130,66,33,0.08);
        }
        .culture-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px -12px rgba(130,66,33,0.15);
            border-color: var(--primary-light);
        }
        .timeline-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }
        .timeline-year {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            min-width: 100px;
        }
        .timeline-content {
            background: #fefaf5;
            padding: 1rem 1.5rem;
            border-radius: 24px;
            flex: 1;
        }
        .team-member img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        /* 面包屑 */
        .breadcrumb-custom {
            background: transparent;
            padding: 0.5rem 0;
        }
        .breadcrumb-custom a {
            color: var(--primary);
            text-decoration: none;
        }
        /* 产品详情区 */
        .product-gallery img {
            border-radius: 32px;
            width: 100%;
            object-fit: cover;
        }
        .product-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .price-tag {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .badge-custom {
            background-color: var(--primary-light);
            color: white;
            border-radius: 40px;
            padding: 0.4rem 1.2rem;
        }
        .info-card {
            background: #fefaf5;
            border-radius: 28px;
            padding: 1.5rem;
            height: 100%;
            border: 1px solid rgba(130,66,33,0.1);
        }
        .product-detail-text {
            font-size: 1.05rem;
            line-height: 1.7;
        }
             .btn-outline-custom {
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 40px;
            padding: 0.5rem 1.5rem;
            transition: 0.2s;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
        }
        
         /* 新闻卡片 (列表样式) */
        .news-list-item {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid rgba(130,66,33,0.08);
        }
        .news-list-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(130,66,33,0.15);
            border-color: var(--primary-light);
        }
        .news-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .news-date {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 500;
        }
        .sidebar-card {
            background: #fefaf5;
            border-radius: 28px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(130,66,33,0.1);
        }
        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 700;
            border-left: 4px solid var(--primary);
            padding-left: 0.8rem;
            margin-bottom: 1.2rem;
        }
        .hot-news-item {
            border-bottom: 1px dashed #e2d5ca;
            padding: 0.8rem 0;
        }
        .hot-news-item:last-child { border-bottom: none; }
        .pagination .page-link {
            color: var(--primary);
            border-radius: 40px;
            margin: 0 4px;
            border: 1px solid #e0cfc0;
        }
        .pagination .page-item.active .page-link {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
        }
             .news-img { height: 180px; }
             
                  .btn-outline-custom {
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 40px;
            padding: 0.3rem 1rem;
            transition: 0.2s;
            font-size: 0.85rem;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
        }
        
          /* 新闻详情内容 */
        .news-detail-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #3e3a37;
        }
        .news-detail-content p {
            margin-bottom: 1.5rem;
        }
        .news-detail-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        .news-detail-content img {
            border-radius: 28px;
            margin: 1.5rem 0;
            width: 100%;
        }
        .share-buttons a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f0e7df;
            border-radius: 50%;
            color: var(--primary);
            transition: 0.2s;
        }
        .share-buttons a:hover {
            background: var(--primary);
            color: white;
        }
        .sidebar-card {
            background: #fefaf5;
            border-radius: 28px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(130,66,33,0.1);
        }
        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 700;
            border-left: 4px solid var(--primary);
            padding-left: 0.8rem;
            margin-bottom: 1.2rem;
        }
        .related-news-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e9dfd4;
        }
        .related-news-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 16px;
        }
        .related-news-item h6 {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        
           .contact-info-card {
            background: #fefaf5;
            border-radius: 32px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid rgba(130,66,33,0.08);
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(130,66,33,0.15);
        }
        .contact-icon-circle {
            width: 70px;
            height: 70px;
            background-color: var(--primary);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            margin-bottom: 1.2rem;
        }
        .form-card {
            background: white;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.08);
            border: 1px solid rgba(130,66,33,0.1);
        }
        .form-control, .form-select {
            border-radius: 40px;
            border: 1px solid #e0cfc0;
            padding: 0.7rem 1.2rem;
            background: #ffffff;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(130,66,33,0.2);
        }
        .map-placeholder {
            background: #e9e0d5;
            border-radius: 32px;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            background-image: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?w=800&h=400&fit=crop');
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 32px;
            overflow: hidden;
        }
        .map-overlay {
            background: rgba(0,0,0,0.5);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 500;
            backdrop-filter: blur(2px);
        }

        @media (max-width: 768px) {
            .section-title { font-size: 2rem; }
            .product-card img { height: 200px; }
            .filter-btn { padding: 0.3rem 1.2rem; margin: 0.2rem; }
                 .section-title { font-size: 2rem; }
        .product-title { font-size: 1.8rem; }
            .price-tag { font-size: 1.6rem; }
        }