
        :root {
            --primary-color: #1a2b4c;
            --secondary-color:#8b7355;
            --accent-color: #c0a062;
            --light-color: #f8f9fa;
            --dark-color: #333333;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            background-color: #f9f9f9;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        h1, h2, h3, h4, h5 {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--primary-color) !important;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 8px;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .btn-outline-primary {
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 8px;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
        }
        
/*  公区样式    */
          /* 咨询CTA */
        .consultation-cta {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 60px;
        }
        
        .consultation-cta h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .consultation-cta p {
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .page-hero {
            background: linear-gradient(rgba(26, 43, 76, 0.85), rgba(26, 43, 76, 0.9)), url('https://images.unsplash.com/photo-1593030761757-71fae45fa0e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        
        .breadcrumb-item.active {
            color: var(--secondary-color);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
       /* 限时优惠 */
        .limited-offer {
            background-color: rgba(231, 76, 60, 0.1);
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 4px solid #e74c3c;
        }
        
        .limited-offer h3 {
            color: #e74c3c;
            margin-bottom: 15px;
        }
        
/*   404页面 */

        .error-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            background-color: white;
        }
        
        .error-content {
            max-width: 800px;
            text-align: center;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            background-color: white;
            margin:0 auto;
        }
        
        .error-number {
            font-size: 8rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .error-number:after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 8px;
            background-color: var(--primary-color);
            opacity: 0.2;
            border-radius: 4px;
        }
        
        .error-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .error-message {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .error-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        

/*联系我们页面*/
         /* 联系方式卡片 */
        .contact-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border-top: 4px solid var(--secondary-color);
            transition: transform 0.3s ease;
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(139, 115, 85, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 2rem;
        }
        
        .contact-detail {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .contact-label {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 8px 20px;
            background-color: rgba(139, 115, 85, 0.1);
            color: var(--secondary-color);
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .contact-btn:hover {
            background-color: var(--secondary-color);
            color: white;
        } 
         
        /*门店和地图导航信息*/
        .store-info-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border-left: 4px solid var(--secondary-color);
        }
        
        .store-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .store-feature-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(139, 115, 85, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--secondary-color);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
         .store-badge {
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(139, 115, 85, 0.1);
            color: var(--secondary-color);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        /* 地图容器 */
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 400px;
            background-color: #f8f9fa;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e9ecef;
            color: #6c757d;
            font-size: 1.2rem;
        }
          /* 服务时间 */
        .schedule-card {
            background-color: rgba(139, 115, 85, 0.05);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .schedule-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .schedule-item:last-child {
            border-bottom: none;
        }
        
/* 关于我们页面 */
          .value-card {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(139, 115, 85, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 1.8rem;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 30px;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--secondary-color);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            padding: 20px;
            border:0.2rem solid var(--secondary-color);
            background-color: #fff;
        }
        
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 5px solid #f8f9fa;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }


          .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }



/* 面料页面  */

         /* 面料卡片 */
        .fabric-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .fabric-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .fabric-card-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .fabric-card-body {
            padding: 25px;
        }
        
        .fabric-brand {
            font-size: 0.9rem;
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .fabric-country {
            display: inline-block;
            padding: 3px 10px;
            background-color: rgba(139, 115, 85, 0.1);
            color: var(--secondary-color);
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }
        
        .fabric-features {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .fabric-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .fabric-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
         .partner-logo-item {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .partner-logo-item:hover {
            transform: translateY(-5px);
        }
        
        .partner-logo-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .partner-logo-country {
            color: var(--secondary-color);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .partner-logo-desc {
            font-size: 0.85rem;
            color: #666;
        }
         /* 面料属性表格 */
        .fabric-property-table {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .fabric-property-table th {
            background-color: rgba(139, 115, 85, 0.1);
            color: var(--primary-color);
            border: none;
            padding: 15px;
            width: 30%;
        }
        
        .fabric-property-table td {
            padding: 15px;
            vertical-align: middle;
            border-top: 1px solid #dee2e6;
        }
        
        .property-rating {
            display: flex;
            align-items: center;
        }
        
        .rating-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 5px;
            background-color: #e9ecef;
        }
        
        .rating-dot.filled {
            background-color: var(--secondary-color);
        }
        /* 面料选择指南 */
        .guide-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .guide-step-number {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
/*  套餐页面 */
         /* 套餐卡片样式 */
        .package-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .package-header {
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .package-price {
            margin-bottom: 10px;
        }
        
        .market-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .sale-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1;
        }
        
        .package-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .package-subtitle {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .package-body {
            padding: 0 30px 30px;
        }
        
        .package-items {
            list-style: none;
            padding-left: 0;
            margin-bottom: 25px;
        }
        
        .package-items li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
            position: relative;
            padding-left: 25px;
        }
        
        .package-items li:last-child {
            border-bottom: none;
        }
        
        .package-items li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .package-benefits {
            background-color: rgba(139, 115, 85, 0.05);
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 25px;
        }
        
        .benefit-title {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .package-actions {
            text-align: center;
        }


/* 套餐对比表 */
        .package-comparison {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .comparison-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }
        .comparison-header h4,.comparison-header h3 { 
            color:#fff;
            font-weight:bold;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background-color: #f8f9fa;
            padding: 15px;
            text-align: center;
            font-weight: 600;
            color: var(--primary-color);
            border-bottom: 1px solid #e9ecef;
        }
        
        .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #e9ecef;
            vertical-align: middle;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table .feature {
            text-align: left;
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .checkmark {
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }
/* 流程页面 */        

         /* 流程步骤样式 */
        .process-timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #e9ecef;
            transform: translateX(-50%);
        }
        
        .process-step {
            position: relative;
            margin-bottom: 60px;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            position: absolute;
            left: 50%;
            top: 0;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            transform: translateX(-50%);
            z-index: 2;
            border: 5px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        
        .step-content {
            width: 45%;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .process-step:nth-child(odd) .step-content {
            margin-left: auto;
        }
        
        .process-step:nth-child(even) .step-content {
            margin-right: auto;
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .process-highlight {
            background-color: rgba(139, 115, 85, 0.05);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin-top: 20px;
            border-radius: 0 8px 8px 0;
        }
        .milestone-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border-top: 4px solid var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        .milestone-card:hover {
            transform: translateY(-10px);
        }
        
        .milestone-number {
            font-size: 3rem;
            font-weight: 700;
            color: rgba(139, 115, 85, 0.2);
            line-height: 1;
            margin-bottom: 15px;
        }
        /* 发展数据 */
        .stats-section {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .stat-item {
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.2rem;
            margin-top: 10px;
            opacity: 0.9;
        }
        /* 品牌荣誉 */
        .honor-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border-left: 4px solid var(--secondary-color);
        }
        
        .honor-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
/* ===== 图片画廊样式 ===== */
.tab-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 缩略图导航样式 */
.tab-gallery .nav-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: none;
}

.tab-gallery .nav-pills li {
    margin: 0;
    padding: 0;
}

.tab-gallery .nav-pills a {
    display: block;
    width: 120px;
    height: 120px;
    padding: 0;
    border-radius: var(--border-radius);
    border: 3px solid transparent;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    background-color: var(--light-color);
    position: relative;
}

.tab-gallery .nav-pills a:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tab-gallery .nav-pills a.active {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.tab-gallery .nav-pills a.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--secondary-color);
}

.tab-gallery .nav-pills img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-gallery .nav-pills a:hover img {
    transform: scale(1.05);
}

/* 主图内容区域样式 */
.tab-content {
  margin:0 0 20px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.tab-pane img {
    width: 100%;
    height: auto;
    border-radius:10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


  /* 快速搜索 */
        .faq-search {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box .form-control {
            padding-left: 50px;
            padding-right: 50px;
            height: 55px;
            border-radius: 8px;
            border: 2px solid #e9ecef;
            font-size: 1.05rem;
        }
        
        .search-box .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(139, 115, 85, 0.25);
        }
        
        .search-box .bi-search {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            font-size: 1.2rem;
        }
        
        .search-box .btn-clear {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            display: none;
        }
        
        /* 热门问题 */
        .hot-questions {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        
        .hot-question-item {
            padding: 15px;
            border-bottom: 1px solid #f1f1f1;
            transition: all 0.3s ease;
        }
        
        .hot-question-item:hover {
            background-color: rgba(139, 115, 85, 0.05);
        }
        
        .hot-question-item:last-child {
            border-bottom: none;
        }
        
        .hot-question-item a {
            color: var(--dark-color);
            text-decoration: none;
            display: block;
        }
        
        .hot-question-item a:hover {
            color: var(--secondary-color);
        }
        
        .hot-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 10px;
        }
        
        /* 知识卡片 */
        .knowledge-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            border-top: 4px solid var(--secondary-color);
        }
        
        .knowledge-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
         

        /*文章页面*/
          .article-header {
            margin-bottom: 40px;
            text-align: left;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .article-category {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 15px;
        }
        
        .article-date {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            margin-right: 15px;
        }
        
        .article-views {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
        }
        
        .article-views i {
            margin-right: 5px;
        }
        
        .article-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            color:#fff;
        }
        
        .article-excerpt {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin-bottom: 30px;
        }
        
        .article-author {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid rgba(255,255,255,0.2);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .author-info p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        /* 文章内容样式 */
        .article-content {
            padding: 60px 0;
        }
        
        .article-body {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .article-body h2 {
            font-size: 1.8rem;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .article-body h3 {
            font-size: 1.4rem;
            margin-top: 35px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .article-body figure {
            margin: 40px 0;
            text-align: center;
        }
        
        .article-body figcaption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
          /* 相关资讯 */
        .related-articles {
            margin-bottom: 60px;
        }
        
        .related-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .related-news-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }
        
        .related-news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .related-news-img {
            height: 200px;
            overflow: hidden;
        }
        
        .related-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .related-news-card:hover .related-news-img img {
            transform: scale(1.05);
        }
        
        .related-news-content {
            padding: 20px;
            background-color: white;
        }
        
        .related-news-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .related-news-title a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .related-news-title a:hover {
            color: var(--secondary-color);
        }
        
        .related-news-excerpt {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        


        /* 侧边栏 */
        /* 侧边栏样式 */
        .sidebar-widget {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            position: sticky;
            top: 30px;
        }
        
        .widget-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            color: var(--primary-color);
        }
        
        .widget-news-list {
            list-style: none;
            padding-left: 0;
        }
        
        .widget-news-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .widget-news-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .widget-news-img {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .widget-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .widget-news-content h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .widget-news-content h4 a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .widget-news-content h4 a:hover {
            color: var(--secondary-color);
        }
        
        .widget-news-date {
            font-size: 0.8rem;
            color: #999;
        }
        
        .widget-tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .widget-tag-item {
            background-color: #f8f9fa;
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .widget-tag-item:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        .widget-category-list {
            list-style: none;
            padding-left: 0;
        }
        
        .widget-category-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .widget-category-list li:last-child {
            border-bottom: none;
        }
        
        .widget-category-list a {
            color: var(--dark-color);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .widget-category-list a:hover {
            color: var(--secondary-color);
        }
        
        .widget-category-count {
            background-color: var(--primary-color);
            color: white;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }
/* 资讯列表  */
  .newslist-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        
        .newslist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .newslist-img {
            height: 250px;
            overflow: hidden;
        }
        
        .newslist-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .newslist-card:hover .news-img img {
            transform: scale(1.05);
        }
        
        .newslist-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .newslist-content {
            padding: 25px;
            background-color: white;
        }
        
        .newslist-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .newslist-title a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .newslist-title a:hover {
            color: var(--secondary-color);
        }
        
        .newslist-excerpt {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .newslist-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #999;
            border-top: 1px solid #f1f1f1;
            padding-top: 15px;
        }
        
        .newslist-date i, .newslist-views i {
            margin-right: 5px;
        }

        /*  常见问题 */
          /* FAQ手风琴样式 */
        .faq-accordion {
            margin-bottom: 30px;
        }
        
        .faq-accordion .accordion-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .faq-accordion .accordion-item:last-child {
            border-bottom: none;
        }
        
        .faq-accordion .accordion-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 20px 25px;
            box-shadow: none;
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: rgba(139, 115, 85, 0.1);
            color: var(--primary-color);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(139, 115, 85, 0.3);
        }
        
        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2b4c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2b4c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .faq-accordion .accordion-body {
            padding: 20px 25px 30px;
            background-color: white;
        }
         
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
        }

          /* 响应式调整 */
        @media (max-width: 768px) {
            .page-hero {
                padding: 80px 0;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .timeline {
                padding-left: 20px;
            }
            
            .timeline-item:before {
                left: -26px;
            }
        }