/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Serif SC', sans-serif;
    color: #333;
    background-color: #f9f7f5;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航样式 */
.header-children {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.founder-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-family: "KaiTi", "STKaiti", "SimKai", serif;
    letter-spacing: 1px; /* 楷体字间距稍大更美观 */
}

/* 品牌Banner样式 */
.brand-banner {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/banner-embroidery.jpg") center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.banner-content {
    padding: 0 20px;
}

.brand-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.brand-slogan {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 18px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* section通用样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto;
}

/* 公司简介样式 */
.company-intro {
    margin-bottom: 120px;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.intro-text {
    flex: 1 1 500px;
}

.intro-paragraph {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-img {
    flex: 1 1 400px;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 创始人介绍样式 */
.founder-section {
    margin-bottom: 120px;
    background-color: #fff;
    padding: 80px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.founder-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.founder-img {
    flex: 1 1 300px;
    text-align: center;
}

.founder-portrait {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #f9f7f5;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.founder-info {
    flex: 1 1 500px;
}

.founder-bio {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.founder-achievements {
    list-style: none;
}

.achievement-item {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.achievement-item::before {
    content: "•";
    color: #d4af37;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* 品牌理念样式 */
.brand-philosophy {
    margin-bottom: 120px;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.philosophy-card {
    flex: 1 1 250px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 80px;
    height: 80px;
}

.card-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 15px;
    color: #555;
}

/* 团队实力样式 */
.team-strength {
    margin-bottom: 120px;
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 0;
    border-radius: 12px;
}

.team-strength .section-title {
    color: #fff;
}

.team-strength .title-divider {
    background-color: #d4af37;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    display: block;
}

.stat-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.stat-desc {
    font-size: 14px;
    opacity: 0.8;
}

/* 荣誉资质样式 */
.honors-section {
    margin-bottom: 120px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
    border-radius: 12px;
}

.honors-section .section-title {
    color: #fff;
}

.honors-section .title-divider {
    background-color: #d4af37;
}

.honors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.honor-item {
    flex: 1 1 300px;
    text-align: center;
}

.honor-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.honor-name {
    font-size: 16px;
    font-weight: 500;
}

/* 战略合作伙伴（纯文字）样式 */
.partners-section {
    margin-bottom: 120px;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.partner-item {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partner-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.partner-type {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.partner-coop {
    font-size: 15px;
    color: #555;
}

/* 国际影响力（纯文字）样式 */
.global-impact {
    margin-bottom: 80px;
}

.impact-events {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.event-item {
    flex: 1 1 350px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.event-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.event-desc {
    font-size: 15px;
    color: #555;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .brand-banner {
        height: 400px;
    }

    .brand-title {
        font-size: 32px;
    }

    .brand-slogan {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-content,
    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-portrait {
        width: 250px;
        height: 250px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .brand-banner {
        height: 320px;
    }

    .brand-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .brand-slogan {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .company-intro,
    .founder-section,
    .brand-philosophy,
    .team-strength,
    .honors-section,
    .partners-section {
        margin-bottom: 80px;
    }

    .philosophy-card,
    .stat-item,
    .honor-item,
    .partner-item,
    .event-item {
        flex: 1 1 100%;
    }
}
