/* 页面主要内容样式 */
.people-main {
    max-width: 1200px;
    margin: calc(var(--header-height) + var(--nav-height) + 30px) auto 50px;
    padding: 0 15px;
}

/* 页面标题样式 */
.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 10px;
}

.page-title p {
    color: #666;
    font-size: 18px;
}

/* 人物分类导航样式 */
.people-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.people-nav button {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.people-nav button:hover,
.people-nav button.active {
    background-color: var(--primary-color);
    color: white;
}

/* 人物展示样式 */
.people-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.people-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.people-card:hover {
    transform: translateY(-5px);
}

.people-image {
    position: relative;
    height: 300px;
}

.people-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.people-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.people-info {
    padding: 20px;
}

.people-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.people-title {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.people-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.people-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.stat {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.stat .number {
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat .label {
    color: #666;
    font-size: 14px;
}

.view-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.view-more:hover {
    background-color: #a00000;
}

/* 传承故事样式 */
.stories {
    margin-bottom: 60px;
}

.stories h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.story-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-story {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-right: 20px;
}

.read-story::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.read-story:hover::after {
    transform: translate(5px, -50%);
}

/* 传承计划样式 */
.program {
    margin-bottom: 60px;
}

.program h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.program-info {
    padding: 30px;
}

.program-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.program-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    margin-bottom: 30px;
}

.program-features li {
    color: #333;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.program-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.join-program {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.join-program:hover {
    background-color: #a00000;
}

.program-image {
    height: 100%;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .people-nav {
        gap: 10px;
    }

    .people-nav button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .people-stats {
        grid-template-columns: 1fr;
    }

    .program-content {
        grid-template-columns: 1fr;
    }

    .program-image {
        height: 300px;
    }
} 