/* 关于我们页面样式 */
.about-container {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e60012;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #e60012;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.company-intro {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.intro-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: #e60012;
    border-radius: 3px;
}

.intro-content {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight {
    color: #e60012;
    font-weight: 700;
}

.achievement-box {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    font-size: 60px;
    color: #e60012;
    text-align: center;
    margin-bottom: 30px;
}

.achievement-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement-number {
    font-size: 36px;
    font-weight: 800;
    color: #e60012;
    margin-bottom: 10px;
}

.achievement-desc {
    font-size: 16px;
    color: #666;
}

.mission-section {
    background: linear-gradient(to right, #e60012, #b3000e);
    color: white;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 70px;
    text-align: center;
}

.mission-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mission-content {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-subcontent {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-section {
    margin-bottom: 70px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e60012;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #e60012;
}

.value-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.value-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.scenarios-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 60px;
    margin-bottom: 70px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.scenario-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scenario-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.scenario-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.scenarios-note {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
}

.contact-content {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
}

.method-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.method-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.method-detail {
    font-size: 20px;
    color: #e60012;
    font-weight: 700;
    margin-bottom: 10px;
}

.method-desc {
    font-size: 16px;
    color: #666;
}

.qr-code {
    width: 180px;
    height: 180px;
    background-color: #eee;
    border-radius: 10px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}

.qr-content {
    text-align: center;
}
.qr-content img{
    width: 100%;
    display: block;
}
.qr-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.service-commitment {
    background-color: #e60012;
    color: white;
    padding: 25px;
    border-radius: 10px;
    /*max-width: 600px;*/
    margin: 50px auto 0;
}

.commitment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.commitment-content {
    font-size: 16px;
    opacity: 0.9;
}

.brand-slogan {
    text-align: center;
    padding: 40px;
    border-top: 2px solid #eee;
}

.slogan-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.slogan-content {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* 图标字体替换emoji */
.icon-trophy:before { content: "🏆"; }
.icon-rocket:before { content: "🚀"; }
.icon-price:before { content: "💰"; }
.icon-handshake:before { content: "🤝"; }
.icon-chat:before { content: "💬"; }
.icon-phone:before { content: "📱"; }

/* 场景图标 */
.icon-building:before { content: "🏢"; }
.icon-muscle:before { content: "💪"; }
.icon-yoga:before { content: "🤸"; }
.icon-boxing:before { content: "🥊"; }
.icon-swim:before { content: "🏊‍♀️"; }
.icon-child:before { content: "🧒"; }
.icon-dance:before { content: "💃"; }
.icon-company:before { content: "🏫"; }

/* 响应式设计 */
@media (max-width: 1200px) {
    .about-container {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .values-grid,
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-section,
    .scenarios-section {
        padding: 40px 30px;
    }

    .page-title {
        font-size: 36px;
    }

    .intro-title,
    .mission-title,
    .contact-title,
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .company-intro {
        flex-direction: column;
        gap: 30px;
    }

    .values-grid,
    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .intro-title,
    .mission-title,
    .contact-title,
    .section-title {
        font-size: 28px;
    }

    .intro-content,
    .mission-content {
        font-size: 18px;
    }
}