/**
 * 阜吉馒头官网 - 全局样式表
 * 使用Bootstrap 5作为基础框架
 * @author fjmt
 * @version 1.0
 */

/* ==================== 全局变量定义 ==================== */
:root {
    /* 主题色彩 */
    --primary-color: #d4a574;        /* 馒头金黄色 */
    --primary-dark: #b8956a;         /* 深色主题 */
    --primary-light: #f5e6d3;        /* 浅色主题 */
    --secondary-color: #8b4513;      /* 棕色 */
    --accent-color: #c9302c;         /* 强调色-中国红 */
    
    /* 中性色 */
    --text-dark: #2c2c2c;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-cream: #fdf8f3;
    
    /* 间距 */
    --section-padding: 80px 0;
    
    /* 过渡动画 */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== 基础样式重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Bootstrap主题色覆盖 */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==================== 导航栏样式 ==================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    margin-top: 10px !important;
    padding: 12px 8px;
    min-width: 180px;
    background: #fff;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f5e6d3 0%, #efe0cf 100%);
    color: #8b4513;
    transform: translateX(4px);
}

.dropdown-item:active {
    background: var(--primary-light);
}

/* 下拉菜单悬浮显示效果 */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown {
        position: relative;
    }
    
    .navbar .nav-item.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        margin-top: 0 !important;
    }
    
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* 扩展悬浮区域避免菜单消失 */
    .navbar .nav-item.dropdown::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 20px;
    }
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* ==================== Hero轮播区域样式 ==================== */
.hero-section {
    margin-top: 100px; /* 导航栏高度补偿 */
}

.hero-carousel {
    position: relative;
    width: 100%;
    background-color: #000; /* 背景色，防止留白时出现空白 */
}

.carousel-item {
    /* 使用16:9宽高比（2560×1440）确保图片完整展示 */
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: unset;
    background-size: contain; /* 确保图片完整显示，不裁剪 */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000; /* 背景色填充 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 19, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
}

/* ==================== 通用区块样式 ==================== */
.section {
    padding: var(--section-padding);
}

.section-cream {
    background-color: var(--bg-cream);
}

.section-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==================== 品牌特色区域 ==================== */
/* 品牌故事背景图区域 - 背景图2560×1950，全宽显示 */
.brand-story-section {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}
.brand-story-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.55);
}
.brand-story-section > .container {
    position: relative;
    z-index: 1;
}
.brand-story-section .section-title h2 {
    color: #5a3e2b;
}
.brand-story-section .section-title h2::after {
    background: linear-gradient(90deg, #d4a574, #8b5a3c);
}
.brand-story-section .section-title p,
.brand-story-section .section-subtitle {
    color: #7a5d4a;
}

/* 品牌模式背景图区域 - 背景图2560×870，全宽显示 */
.brand-mode-section {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}
.brand-mode-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.55);
}
.brand-mode-section > .container {
    position: relative;
    z-index: 1;
}
.brand-mode-section .section-title h2 {
    color: #5a3e2b;
}
.brand-mode-section .section-title h2::after {
    background: linear-gradient(90deg, #d4a574, #8b5a3c);
}
.brand-mode-section .section-title p,
.brand-mode-section .section-subtitle {
    color: #7a5d4a;
}

/* 品牌特色背景图区域 - 背景图2560×800，全宽显示 */
.brand-features-section {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}
/* 半透明遮罩层 */
.brand-features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.55);
}
.brand-features-section > .container {
    position: relative;
    z-index: 1;
}
/* 品牌特色区域标题 - 暖棕色调 */
.brand-features-section .section-title h2 {
    color: #5a3e2b;
}
.brand-features-section .section-title h2::after {
    background: linear-gradient(90deg, #d4a574, #8b5a3c);
}
.brand-features-section .section-title p {
    color: #7a5d4a;
}
/* 品牌特色卡片 - 半透明暖色调 */
.brand-features-section .feature-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,165,116,0.3);
}
.brand-features-section .feature-card:hover {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 20px 40px rgba(90,62,43,0.15);
}
.brand-features-section .feature-card h4 {
    color: #5a3e2b;
}
.brand-features-section .feature-card p {
    color: #7a5d4a;
}
.brand-features-section .feature-icon {
    background: linear-gradient(135deg, #d4a574, #8b5a3c);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== 产品展示区域 ==================== */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 25px;
}

.product-info h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ==================== 关于我们区域 ==================== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.about-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.9rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--primary-color);
    font-weight: 500;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* ==================== 数据统计区域 ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==================== 加盟流程区域 ==================== */
.process-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 连接线 */
.process-line {
    position: relative;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.process-line:last-child::after {
    display: none;
}

/* ==================== 新闻资讯区域 ==================== */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.news-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.news-content h5 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== CTA区域 ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* ==================== 页脚样式 ==================== */
.footer {
    background: #1a1a1a;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links a {
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.social-links a {
    transition: var(--transition-base);
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

/* ==================== 回到顶部按钮 ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        display: inline-block;
    }
    
    .process-line::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    /* 修复移动端右侧留白问题 */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container,
    .container-fluid,
    section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .row > * {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero-section {
        margin-top: 70px;
    }
    
    .carousel-item {
        /* 移动端保持16:9宽高比，图片完整展示 */
        aspect-ratio: 16 / 9;
        width: 100%;
        height: auto;
        min-height: unset;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    /* ==================== Footer移动端优化 ==================== */
    .footer {
        padding-top: 2.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .footer .row.g-4 > div {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer .footer-brand h5 {
        font-size: 1.25rem;
    }
    
    .footer .footer-brand + p {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    /* 社交媒体图标居中 */
    .footer .social-links {
        justify-content: center;
        display: flex;
        gap: 20px;
    }
    
    .footer .social-links a {
        margin: 0 !important;
        font-size: 1.3rem;
    }
    
    /* 快速链接和产品系列优化 */
    .footer h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem !important;
        position: relative;
        display: inline-block;
    }
    
    .footer h6::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 1px;
    }
    
    .footer .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px 15px;
        margin-top: 10px;
    }
    
    .footer .footer-links li {
        padding: 3px 0;
    }
    
    .footer .footer-links a {
        font-size: 0.85rem;
    }
    
    /* 联系方式区域优化 */
    .footer .col-lg-4:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .col-lg-4:last-child h6 {
        margin-bottom: 1rem !important;
    }
    
    .footer .col-lg-4:last-child ul {
        text-align: left;
        display: block;
    }
    
    .footer .col-lg-4:last-child ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem !important;
    }
    
    /* 版权信息区域优化 */
    .footer hr {
        margin: 1.5rem 0 !important;
    }
    
    .footer .row.align-items-center > div {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }
    
    .footer .row.align-items-center p {
        font-size: 0.75rem;
        line-height: 1.8;
    }
    
    .footer .row.align-items-center .mx-2 {
        margin-left: 0.3rem !important;
        margin-right: 0.3rem !important;
    }
    
    /* 回到顶部按钮移动端调整 */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    
    /* ==================== 产品特色区域移动端重构 ==================== */
    .section-cream .row.g-4.align-items-center {
        display: flex;
        flex-direction: column;
    }
    
    /* 隐藏中间的占位图片 */
    .section-cream .row.g-4.align-items-center > .col-lg-4:nth-child(2) {
        display: none;
    }
    
    /* 调整左右列顺序和布局 */
    .section-cream .row.g-4.align-items-center > .col-lg-4 {
        width: 100%;
        order: 1;
    }
    
    /* 特色项卡片式布局 */
    .section-cream .product-feature-item {
        background: white;
        border-radius: 12px;
        padding: 18px 20px;
        margin-bottom: 12px !important;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
        text-align: center !important;
    }
    
    .section-cream .product-feature-item h5 {
        font-size: 1rem;
        margin-bottom: 8px;
        justify-content: center;
    }
    
    .section-cream .product-feature-item h5 i {
        font-size: 1.1rem;
    }
    
    .section-cream .product-feature-item p {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.5;
    }
    
    /* 最后一个特色项去掉底部边距 */
    .section-cream .product-feature-item:last-child {
        margin-bottom: 0 !important;
    }
}

/* ==================== 动画效果 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* 图片占位样式（无实际图片时使用） */
.placeholder-image {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

/* ==================== 页面Banner样式 ==================== */
.page-banner {
    padding: 120px 0 80px;
    margin-top: 76px;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb-item a {
    text-decoration: none;
    transition: var(--transition-base);
}

.page-banner .breadcrumb-item a:hover {
    color: white !important;
}

/* ==================== 关于我们页面样式 ==================== */

/* 小标题样式 */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* 公司介绍区域 */
.about-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.experience-badge .badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: 0.9rem;
    margin-top: 5px;
}

.intro-stat {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: var(--bg-light);
}

.intro-stat .stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.intro-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* 品牌故事区域 */
.story-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.poem-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.poem-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    font-style: italic;
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    text-indent: 2em;
}

/* 品牌特色区域 */
.feature-box {
    display: flex;
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box-icon {
    flex-shrink: 0;
    margin-right: 20px;
    position: relative;
}

.feature-box-icon .feature-num {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-box-icon i {
    font-size: 3rem;
    color: var(--primary-light);
}

.feature-box-content h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 工艺卡片 */
.craft-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.craft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.craft-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.craft-icon i {
    font-size: 1.8rem;
    color: white;
}

.craft-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.craft-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* 工艺卡片背景图样式 - 320×220 */
.craft-card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.craft-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 16px;
}

.craft-card-bg .craft-icon {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.craft-card-bg .craft-icon i {
    color: var(--primary-color);
}

.craft-card-bg h5 {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.craft-card-bg p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.craft-card-bg:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.craft-card-bg:hover::before {
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
}

/* 品牌模式卡片 */
.mode-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mode-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mode-icon i {
    font-size: 2rem;
    color: white;
}

.mode-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mode-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* 品牌模式卡片 - 半透明暖色调 */
.brand-mode-section .mode-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,165,116,0.3);
}
.brand-mode-section .mode-card:hover {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 20px 40px rgba(90,62,43,0.15);
}
.brand-mode-section .mode-card h4 {
    color: #5a3e2b;
}
.brand-mode-section .mode-card p {
    color: #7a5d4a;
}

/* 企业文化区域 - 背景图2560×750 */
.culture-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.culture-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(212,165,116,0.85), rgba(139,69,19,0.85));
}
.culture-section > .container {
    position: relative;
    z-index: 1;
}

/* 企业文化标题下划线适配深色背景 */
.culture-section .section-title h2 {
    color: white;
}
.culture-section .section-title h2::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
}

.culture-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    height: 100%;
}

.culture-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.culture-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.culture-icon i {
    font-size: 1.5rem;
    color: white;
}

.culture-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.culture-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* 发展历程时间线 */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 30px;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* 荣誉卡片 */
.honor-card {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.honor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.honor-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.honor-icon i {
    font-size: 1.5rem;
    color: white;
}

.honor-content .honor-year {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.honor-content h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.honor-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* CTA按钮组 */
.cta-buttons .btn {
    margin: 5px;
}

/* ==================== 关于我们页面响应式 ==================== */
@media (max-width: 991.98px) {
    .page-banner {
        padding: 100px 0 60px;
    }
    
    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        display: inline-block;
        margin-top: 20px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .story-card {
        padding: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 90px 0 50px;
        margin-top: 70px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-box-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .poem-text {
        font-size: 1rem;
    }
    
    .honor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .honor-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ==================== 产品页面样式 ==================== */

/* 产品分类标签导航 */
.product-category-nav {
    margin-top: 76px;
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 76px;
    z-index: 100;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 12px;
    transition: var(--transition-base);
    background: var(--bg-light);
}

.category-tab:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.category-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.category-tab i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-tab span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 产品轮播展示区域 */
.product-carousel-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
}

.product-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* 轮播图容器 - 固定高度 */
.product-carousel .carousel-inner,
.product-carousel .carousel-item {
    height: 400px;
}

.product-slide-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.product-slide-image.placeholder-image {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.product-slide-image i {
    font-size: 5rem;
    color: var(--primary-color);
}

.product-slide-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-slide-logo i {
    font-size: 1.5rem;
}

/* 产品介绍内容 */
.product-intro-content {
    padding: 20px 0 20px 40px;
}

.product-intro-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-intro-slogan {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(201, 48, 44, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.product-intro-desc {
    margin-bottom: 25px;
}

.product-intro-desc p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 产品特点标签 */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-tag i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* 产品网格展示 */
.product-grid-section {
    padding: 80px 0;
}

.product-grid-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-grid-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-grid-image .placeholder-image {
    height: 100%;
    border-radius: 0;
}

.product-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.product-grid-card:hover .product-grid-overlay {
    opacity: 1;
}

/* 产品标签徽章 */
.product-grid-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.product-grid-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.product-grid-badge.new {
    background: linear-gradient(135deg, #4CAF50, #45B649);
}

.product-grid-badge.recommend {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* 产品信息 */
.product-grid-info {
    padding: 20px;
    text-align: center;
}

.product-grid-info h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-grid-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* 产品卡片Logo */
.product-grid-logo {
    position: absolute;
    bottom: 70px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.product-grid-card:hover .product-grid-logo {
    opacity: 1;
    transform: scale(1);
}

/* 产品优势区域 */
.product-advantage-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.advantage-item {
    padding: 30px 20px;
    color: white;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.advantage-icon i {
    font-size: 2rem;
}

.advantage-item:hover .advantage-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.advantage-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-item p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
}

/* ==================== 产品页面响应式 ==================== */
@media (max-width: 991.98px) {
    .product-category-nav {
        top: 70px;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-tab {
        flex-shrink: 0;
        padding: 12px 20px;
    }
    
    .product-intro-content {
        padding: 30px 0 0 0;
    }
    
    .product-intro-title {
        font-size: 1.8rem;
    }
    
    .product-carousel .carousel-inner,
    .product-carousel .carousel-item,
    .product-slide-image {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .product-category-nav {
        margin-top: 70px;
        top: 70px;
    }
    
    .category-tab {
        padding: 10px 15px;
    }
    
    .category-tab i {
        font-size: 1.2rem;
    }
    
    .category-tab span {
        font-size: 0.8rem;
    }
    
    .product-carousel .carousel-inner,
    .product-carousel .carousel-item,
    .product-slide-image {
        height: 250px;
    }
    
    .product-intro-title {
        font-size: 1.5rem;
    }
    
    .product-grid-image {
        height: 180px;
    }
}

/* ==================== 招商加盟页面样式 ==================== */

/* 加盟Banner区域 */
.franchise-banner {
    margin-top: 76px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: auto;
}

.min-vh-50 {
    min-height: 50vh;
}

.franchise-banner-content {
    color: white;
}

.banner-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.8;
}

.banner-hotline {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
}

.banner-hotline i {
    font-size: 2rem;
    margin-right: 15px;
}

.banner-hotline span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.banner-hotline strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.franchise-banner-image {
    height: 400px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.franchise-banner-image i {
    color: rgba(255, 255, 255, 0.5);
}

/* 品牌优势卡片 */
.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-card-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* 总部支持卡片 */
.support-card {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.support-icon i {
    font-size: 1.5rem;
    color: white;
}

.support-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.support-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* 加盟流程 */
.process-timeline {
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

.process-step-num {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.5;
    line-height: 1;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}

.process-step-icon i {
    font-size: 1.5rem;
    color: white;
}

.process-step h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* 加盟条件 */
.conditions-content {
    padding-left: 20px;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.condition-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.condition-icon i {
    font-size: 1.2rem;
    color: white;
}

.condition-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.condition-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* 投资模型卡片 */
.investment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.investment-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.investment-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.investment-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.investment-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.investment-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.investment-area {
    opacity: 0.9;
    margin: 0;
}

.investment-body {
    padding: 30px;
    flex: 1;
}

.investment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.investment-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.investment-list li:last-child {
    border-bottom: none;
}

.investment-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.investment-total {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.investment-total span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.investment-total strong {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.investment-footer {
    padding: 0 30px 30px;
}

/* 加盟申请表单 */
.apply-form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.apply-form-header h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.apply-form-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.apply-form .form-control,
.apply-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    transition: var(--transition-base);
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.apply-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.apply-contact h3 {
    font-weight: 700;
}

/* ==================== 加盟政策模块 ==================== */
.policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.policy-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.policy-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 20px;
}

.policy-icon i {
    font-size: 1.5rem;
    color: white;
}

.policy-text h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.policy-text p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==================== 加盟条件模块 ==================== */
.condition-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    height: 100%;
}

.condition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.condition-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.condition-card-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.condition-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.condition-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==================== 商铺要求模块 ==================== */
.shop-req-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.shop-req-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shop-req-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 20px;
}

.shop-req-icon i {
    font-size: 1.3rem;
    color: white;
}

.shop-req-text h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.shop-req-text p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* 加盟页面占位图样式 */
.policy-image,
.shop-image,
.conditions-image {
    border-radius: 16px;
    overflow: hidden;
}

.policy-image.placeholder-image,
.shop-image.placeholder-image,
.conditions-image.placeholder-image {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.policy-image.placeholder-image i,
.shop-image.placeholder-image i,
.conditions-image.placeholder-image i {
    font-size: 5rem;
    opacity: 0.6;
}

/* ==================== 招商加盟页面响应式 ==================== */
@media (max-width: 991.98px) {
    .franchise-banner {
        margin-top: 70px;
        padding: 60px 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .franchise-banner-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .investment-card.featured {
        transform: scale(1);
    }
    
    .investment-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .franchise-banner {
        margin-top: 70px;
        padding: 50px 0;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-hotline {
        padding: 12px 20px;
    }
    
    .banner-hotline i {
        font-size: 1.5rem;
    }
    
    .banner-hotline strong {
        font-size: 1.2rem;
    }
    
    .franchise-banner-image {
        height: 250px;
    }
    
    .support-card {
        flex-direction: column;
        text-align: center;
    }
    
    .support-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .process-step-num {
        font-size: 2rem;
    }
    
    .process-step-icon {
        width: 60px;
        height: 60px;
    }
    
    .conditions-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .apply-form-card {
        padding: 30px 20px;
    }
}

/* ==================== 门店案例页面样式 ==================== */

/* 门店统计区域 */
.store-stats-section {
    padding: 40px 0;
    background: var(--bg-light);
    margin-top: -1px;
}

.store-stat-item {
    text-align: center;
    padding: 20px 15px;
}

.store-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 12px;
}

.store-stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 门店列表区域 */
.store-list-section {
    background: white;
}

/* 门店卡片 */
.store-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.store-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.store-card-image .placeholder-image {
    height: 100%;
    border-radius: 0;
}

.store-card-image .placeholder-image i {
    font-size: 4rem;
}

.store-card-image .store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-card:hover .store-img {
    transform: scale(1.05);
}

.store-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.store-card:hover .store-card-overlay {
    opacity: 1;
}

.store-card-content {
    padding: 25px;
}

.store-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.store-card-title i {
    flex-shrink: 0;
    margin-top: 2px;
}

.store-card-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    padding-left: 24px;
}

.store-card-phone {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 8px 0 0;
    padding-left: 24px;
}

/* 分页组件 */
.store-pagination .pagination {
    gap: 8px;
}

.store-pagination .page-link {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition-base);
}

.store-pagination .page-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.store-pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

.store-pagination .page-item.disabled .page-link {
    background: var(--bg-light);
    color: #ccc;
}

/* ==================== 门店案例页面响应式 ==================== */
@media (max-width: 991.98px) {
    .store-stat-num {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .store-stats-section {
        padding: 30px 0;
    }
    
    .store-stat-item {
        padding: 15px 10px;
    }
    
    .store-stat-num {
        font-size: 1.1rem;
    }
    
    .store-stat-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .store-card-image {
        height: 180px;
    }
    
    .store-card-content {
        padding: 20px;
    }
    
    .store-pagination .page-link {
        padding: 10px 14px;
    }
}

/* ==================== 新闻资讯页面样式 V2 ==================== */

/* 分类筛选导航 */
.news-filter-section {
    padding: 25px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.news-filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.news-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-filter-btn i {
    font-size: 1rem;
}

.news-filter-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
}

.news-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

/* 新闻主体区域 */
.news-main-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* 列表头部 */
.news-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.news-section-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-section-header h3 i {
    color: var(--primary-color);
}

.news-total {
    font-size: 0.9rem;
    color: #999;
}

.news-total em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
}

/* 新闻卡片列表 */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-card-item {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.news-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.news-card-img {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-item:hover .news-card-img img {
    transform: scale(1.08);
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-placeholder i {
    font-size: 3rem;
    color: #ccc;
}

.news-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-tag.tag-company {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.news-card-tag.tag-industry {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #fff;
}

.news-card-tag.tag-knowledge {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: #fff;
}

.news-card-body {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #999;
}

.news-card-meta i {
    margin-right: 5px;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-title a:hover {
    color: var(--primary-color);
}

.news-card-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.news-card-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* 空状态 */
.news-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
}

.news-empty i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.news-empty h4 {
    color: #999;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-empty p {
    color: #bbb;
    font-size: 0.9rem;
}

/* 分页组件 */
.news-pager {
    margin-top: 40px;
}

.news-pager .pagination {
    gap: 8px;
}

.news-pager .page-link {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    color: #555;
    background: #fff;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.news-pager .page-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.news-pager .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.news-pager .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #ccc;
}

/* 右侧边栏组件 */
.news-widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.widget-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.widget-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-header h4 i {
    color: #ff6b6b;
}

/* 热门文章列表 */
.hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.hot-list li:last-child {
    border-bottom: none;
}

.hot-rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #f0f0f0;
    color: #999;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.hot-rank.top {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
}

.hot-list li:nth-child(2) .hot-rank.top {
    background: linear-gradient(135deg, #ffa94d, #ff922b);
}

.hot-list li:nth-child(3) .hot-rank.top {
    background: linear-gradient(135deg, #ffd43b, #fab005);
}

.hot-list li a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s;
}

.hot-list li a:hover {
    color: var(--primary-color);
}

.hot-list .empty-tip {
    color: #bbb;
    font-size: 0.9rem;
    padding: 10px 0;
}

/* 分类导航 */
.category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-nav li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s;
}

.category-nav li a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateX(5px);
}

.category-nav li a span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-nav li a i {
    color: var(--primary-color);
}

.cat-num {
    background: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #999;
}

/* CTA 卡片 */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    padding: 35px 25px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    font-size: 2rem;
}

.cta-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-number {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-time {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-time {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* ==================== 新闻详情页面样式 V2 ==================== */
.news-detail-main {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* 文章容器 */
.article-container {
    background: #fff;
    border-radius: 20px;
    padding: 45px 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* 文章头部 */
.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.meta-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.meta-tag.tag-company {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.meta-tag.tag-industry {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #fff;
}

.meta-tag.tag-knowledge {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: #fff;
}

.meta-info {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-info i {
    color: var(--primary-color);
}

/* 封面图 */
.article-cover {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* 摘要 */
.article-summary {
    position: relative;
    background: linear-gradient(135deg, #fdf8f3 0%, #f5ebe0 100%);
    padding: 25px 30px 25px 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.article-summary i {
    position: absolute;
    top: 15px;
    left: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.article-summary p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* 正文内容 - 富文本支持 */
.article-content {
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.article-content h2 {
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.article-content h3 {
    font-size: 1.3rem;
}

.article-content h4 {
    font-size: 1.15rem;
}

.article-content ul,
.article-content ol {
    margin: 1em 0 1.5em 1.5em;
    padding: 0;
}

.article-content li {
    margin-bottom: 0.5em;
}

.article-content blockquote {
    margin: 1.5em 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: all 0.3s;
}

.article-content a:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}

.article-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.article-content code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    font-size: 0.9em;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.article-content th,
.article-content td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.article-content th {
    background: #f5f5f5;
    font-weight: 600;
}

.article-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 2em 0;
}

/* 文章底部 */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    color: #888;
    font-size: 0.9rem;
}

.share-btns {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.wechat:hover {
    background: #07c160;
    color: #fff;
}

.share-btn.weibo:hover {
    background: #e6162d;
    color: #fff;
}

.share-btn.qq:hover {
    background: #12b7f5;
    color: #fff;
}

.share-btn.copy:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* 相关推荐 */
.related-section {
    background: #fff;
    border-radius: 20px;
    padding: 30px 35px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.related-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-title i {
    color: var(--primary-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    background: #fafafa;
}

.related-card:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.related-img {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8, #d8d8d8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

.related-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-info span {
    font-size: 0.8rem;
    color: #999;
}

/* 新闻页面响应式 */
@media (max-width: 991.98px) {
    .news-card-item {
        flex-direction: column;
    }
    
    .news-card-img {
        width: 100%;
        height: 200px;
    }
    
    .article-container {
        padding: 30px 25px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .news-filter-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .news-filter-btn {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .news-card-body {
        padding: 20px;
    }
    
    .news-card-title {
        font-size: 1rem;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-meta {
        gap: 12px;
    }
    
    .news-widget {
        margin-top: 30px;
    }
}

/* ==================== 联系我们页面样式 ==================== */

/* 主要联系方式区域 */
.contact-main-section {
    background: white;
}

.contact-main-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition-base);
    height: 100%;
}

.contact-main-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-main-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-main-icon i {
    font-size: 2rem;
    color: white;
}

.contact-main-card h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-main-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-main-desc {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* 分公司联系信息区域 */
.contact-branch-section {
    background: var(--bg-light);
}

.branch-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.branch-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.branch-header i {
    font-size: 1.5rem;
}

.branch-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.branch-body {
    padding: 20px 25px;
}

.branch-body p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.branch-body p:last-child {
    margin-bottom: 0;
}

.branch-body p i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

/* 在线留言区域 */
.contact-form-section {
    background: white;
}

.contact-info-box {
    padding-right: 30px;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* 联系表单卡片 */
.contact-form-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid transparent;
    background: white;
    border-radius: 12px;
    padding: 12px 18px;
    transition: var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

.contact-form textarea.form-control {
    resize: none;
}

/* 地图区域 - 全新设计 */
.contact-map-section {
    background: linear-gradient(180deg, #fdf8f3 0%, #f5ebe0 100%);
}

.map-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* 左侧信息卡片 */
.map-info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 35px 30px;
}

.map-info-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 25px;
}

.map-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info-icon i {
    font-size: 2rem;
}

.map-info-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.map-info-body {
    flex: 1;
}

.map-info-body .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.map-info-body .info-item:last-child {
    margin-bottom: 0;
}

.map-info-body .info-item > i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.map-info-body .info-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.map-info-body .info-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-info-footer {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.btn-navigate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-navigate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--secondary-color);
}

/* 右侧地图 */
.map-wrapper {
    height: 100%;
    min-height: 420px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* 地图加载状态 */
.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    z-index: 10;
}

.map-loading p {
    margin-top: 15px;
    color: #999;
    font-size: 0.95rem;
}

/* 响应式 */
@media (max-width: 991.98px) {
    .map-card .row {
        flex-direction: column-reverse;
    }
    
    .map-info-card {
        padding: 30px 25px;
    }
    
    .map-wrapper {
        min-height: 350px;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .map-card {
        border-radius: 16px;
    }
    
    .map-info-card {
        padding: 25px 20px;
    }
    
    .map-info-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .map-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .map-info-icon i {
        font-size: 1.5rem;
    }
    
    .map-info-header h4 {
        font-size: 1.1rem;
    }
    
    .map-wrapper {
        min-height: 280px;
    }
    
    .map-container {
        min-height: 280px;
    }
}

/* ==================== 联系我们页面响应式 ==================== */
@media (max-width: 991.98px) {
    .contact-info-box {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-main-card {
        padding: 30px 20px;
    }
    
    .contact-main-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-main-icon i {
        font-size: 1.5rem;
    }
    
    .contact-main-value {
        font-size: 1.2rem;
    }
    
    .branch-header {
        padding: 15px 20px;
    }
    
    .branch-body {
        padding: 15px 20px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
}
