/* 品牌色系 - 根据设计图调整 */
:root {
    --primary-color: #a17345;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f5f0;
    --bg-cream: #faf8f5;
    --border-color: #E5E5E5;
    --success-color: #28A745;
    --danger-color: #DC3545;
    --community-color: #C62828;
    --flagship-color: #8B4513;
}

/* 波浪过渡块 */
.wave-transition {
    width: 107%;
    height: 130px;
    position: relative;
    z-index: 20;
    margin-top: -80px;
    overflow: hidden;
    background: #faf8f500;
}

.wave-transition .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.wave-transition .wave-1 {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"%3E%3Cpath fill="%23faf8f5" fill-opacity="1" d="M0,60C240,90,480,30,720,60C960,90,1200,30,1440,60V120H0V60Z"%3E%3C/path%3E%3C/svg%3E');
    animation: wave1 8s linear infinite;
    z-index: 3;
}

.wave-transition .wave-2 {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"%3E%3Cpath fill="%23faf8f5" fill-opacity="0.8" d="M0,80C240,50,480,110,720,80C960,50,1200,110,1440,80V120H0V80Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: 50% 100%;
    animation: wave2 12s linear infinite;
    z-index: 2;
}

.wave-transition .wave-3 {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"%3E%3Cpath fill="%23faf8f5" fill-opacity="0.6" d="M0,70C240,100,480,40,720,70C960,100,1200,40,1440,70V120H0V70Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: 50% 100%;
    animation: wave3 16s linear infinite;
    z-index: 1;
}

@keyframes wave1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Banner区域 - 高度500px */
.banner-section {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.banner-section .swiper-container,
.banner-section .swiper-wrapper,
.banner-section .swiper-slide {
    height: 500px !important;
}

.banner-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 10px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    letter-spacing: 3px;
}

/* 桌面端和移动端轮播显示控制 */
.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }
    
    .mobile-banner {
        display: block;
    }
    
    .banner-section {
        height: 300px;
    }
    
    .banner-section .swiper-container,
    .banner-section .swiper-wrapper,
    .banner-section .swiper-slide {
        height: 300px !important;
    }
    
    .banner-section img {
        height: 300px;
    }
}

/* 品牌故事板块 */
.brand-story {
    padding: 80px 0;
    background: #faf8f5;
    text-align: center;
}

.brand-story-content {
    max-width: 800px;
    margin: 0 auto;
}

.brand-story-tag {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-story-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.brand-story-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.brand-story-quote {
    position: relative;
    padding: 40px 0;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.quote-text .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.quote-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* 发展历程 */
.history-section {
    padding: 100px 0;
    background: linear-gradient(360deg, rgb(249 248 245) 0%, rgb(250 248 245 / 77%) 100%), url(/static/images/index-7.jpg) center / cover;
    position: relative;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e0e0e0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-title p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513 0%, #CD853F 100%);
    margin: 0 auto;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4d4f;
    z-index: 3;
}

.timeline-year {
    font-size: 18px;
    font-weight: bold;
    color: #ff4d4f;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 350px;
}

.timeline-content .timeline-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.timeline-content .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-content .timeline-text {
    padding: 10px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.timeline-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .history-section::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        max-width: 100%;
    }
    
    .timeline-item::before {
        left: 14px;
        top: 30px;
    }
    
    .timeline-content .timeline-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
}

/* 人气推荐 */
.popular-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.popular-main {
    align-items: stretch;
    display: flex;
}

.popular-main .col-md-7,
.popular-main .col-md-5 {
    display: flex;
    flex-direction: column;
}

/* 左侧产品轮播 */
.product-slider {
    position: relative;
    height: 370px;
}

.product-swiper {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.product-swiper .swiper-wrapper {
    height: 100%;
}

.product-swiper .swiper-slide {
    height: 100%;
}

.product-slide-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-slide-tags {
    position: absolute;
    bottom: 60px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-tag {
    padding: 6px 12px;
    background: rgba(139, 69, 19, 0.9);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.slide-tag.red {
    background: rgba(220, 53, 69, 0.9);
}

.product-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: #fff;
}

.product-slide-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-slide-info p {
    font-size: 14px;
    opacity: 0.9;
}

.product-prev,
.product-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 16px;
}

.product-prev:after,
.product-next:after {
    font-size: 16px;
}

.product-prev {
    left: 15px;
}

.product-next {
    right: 15px;
}

/* 右侧产品特色 */
.product-features-panel {
    padding: 0 30px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.features-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* 门店火爆实证 */
.store-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.store-slider {
    position: relative;
    padding: 0 50px;
}

.store-swiper {
    overflow: hidden;
    padding: 10px 0;
}

.store-swiper .swiper-slide {
    width: calc(33.333% - 20px);
    margin-right: 30px;
}

.store-slide-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
}

.store-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.store-slide-item:hover img {
    transform: scale(1.05);
}

.store-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 50px 20px 20px;
    color: #fff;
}

.store-slide-overlay h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.store-slide-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

.store-prev,
.store-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.store-prev:hover,
.store-next:hover {
    background: var(--primary-color);
    color: #fff;
}

.store-prev:after,
.store-next:after {
    font-size: 16px;
}

.store-prev {
    left: 0;
}

.store-next {
    right: 0;
}

/* 六大优势 */
.advantage-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.advantage-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.advantage-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* 品牌故事 */
.story-section {
    padding: 150px 0;
    background: linear-gradient(1deg, rgb(51 51 51 / 66%) 0%, rgb(51 26 1) 100%), url(/static/images/index-6.jpg) center / cover;
    color: #fff;
    text-align: center;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.story-section p {
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* 加盟优势 */
.join-advantage {
    padding: 80px 0;
}

.join-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: var(--bg-cream);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.join-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.join-item:hover h4,
.join-item:hover p {
    color: #fff;
}

.join-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.join-item:hover .join-icon {
    background: #fff;
    color: var(--primary-color);
}

.join-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.join-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* 加盟流程 */
.process-section {
    padding: 80px 0;
    background: repeating-linear-gradient(139deg, #ffffff54, #ff00003b 4px, rgb(112 112 112 / 66%) 1px, rgb(255 255 255 / 66%) 213px), linear-gradient(
1deg, rgb(139 69 19) 6%, rgb(255 255 255) 50%), url(/static/images/index-9.jpg) center / cover no-repeat;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 15px;
}

.process-number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #a90000;
    color: #fff;
    font-size: 46px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-item h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.process-item p {
    color: #000000;
    font-size: 14px;
}

/* 新闻动态 */
.news-section {
    padding: 80px 0;
    background: #fff;
}

.news-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: all 0.3s;
}

.news-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-date {
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 2px solid var(--primary-color);
    margin-right: 20px;
}

.news-date .day {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.news-date .month {
    font-size: 14px;
    color: var(--text-light);
}

.news-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* 底部联系 - 悬浮卡片式 */
.contact-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.contact-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 60px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.3);
    position: relative;
    margin-bottom: -60px;
    z-index: 10;
}

.contact-card h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-buttons {
    margin-bottom: 30px;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-btn::after {
    content: '>';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
}

.service-features {
    margin-bottom: 40px;
}

.service-feature {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.qr-code {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    max-width: 270px;
    margin-left: auto;
}

.qr-code img {
    width: 160px;
    height: 160px;
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 12px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.certifications {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-item {
    display: inline-block;
    margin: 0 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.cert-item::before {
    content: '●';
    margin-right: 5px;
    font-size: 8px;
    color: #CD853F;
}

/* 查看更多按钮 */
.btn-more {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 30px;
}

.btn-more:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .wave-transition {
        width: 100%;
        height: 80px;
        margin-top: -50px;
    }
    
    .banner-section {
        height: 300px;
    }
    
    .banner-section .swiper-container,
    .banner-section .swiper-wrapper,
    .banner-section .swiper-slide {
        height: 300px !important;
    }
    
    .banner-section img {
        height: 300px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    /* 人气推荐移动端适配 */
    .popular-main {
        flex-direction: column;
    }
    
    .popular-main .col-md-7,
    .popular-main .col-md-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .product-slider {
        height: 300px;
    }
    
    .product-slide-item img {
        height: 300px;
    }
    
    .product-features-panel {
        padding: 30px 0 0;
        margin-top: 30px;
        height: auto;
    }
    
    .features-title {
        font-size: 22px;
    }
    
    .features-list {
        gap: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    /* 门店火爆实证移动端适配 */
    .store-slider {
        padding: 0 40px;
    }
    
    .store-slide-item {
        height: 220px;
    }
    
    .store-slide-overlay h4 {
        font-size: 16px;
    }
    
    .store-prev,
    .store-next {
        width: 36px;
        height: 36px;
    }
    
    .contact-card {
        padding: 40px 30px;
        margin-bottom: -80px;
    }
    
    .contact-card h2 {
        font-size: 24px;
    }
    
    .qr-code {
        margin: 30px auto 0;
    }
    
    .cert-item {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}

/* 品牌使命与愿景 */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #d09051 100%);
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-title p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513 0%, #CD853F 100%);
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.mission-item {
    text-align: center;
    padding: 50px 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #CD853F 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.4s ease;
}

.mission-item:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 18px;
    font-weight: 500;
}

.mission-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 三大价值破局点 */
.value-section {
    padding: 100px 0;
    background: #faf8f5;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

.value-icon.product-icon {
    background: #ff4d4f;
}

.value-icon.model-icon {
    background: #fa8c16;
}

.value-icon.empower-icon {
    background: #52c41a;
}

.value-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.value-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .value-section {
        padding: 60px 0;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 30px;
    }
}
