/* 关于我们页面样式 */
.about-banner {
    margin-top: 80px;
    height: 400px;
    background-image: url('../images/about-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* 简介部分 */
.intro-section {
    padding: 60px 0;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text {
    padding: 20px;
}

.intro-text h3 {
    color: #c12c1f;
    font-size: 24px;
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* 团队介绍 */
.team-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 30px auto 20px;
    object-fit: cover;
}

.team-info {
    padding: 0 20px 30px;
}

.team-name {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.team-position {
    color: #c12c1f;
    margin-bottom: 15px;
}

.team-desc {
    color: #666;
    line-height: 1.6;
}

/* 联系方式 */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    color: #c12c1f;
    margin-right: 15px;
    font-size: 24px;
}

.contact-text {
    color: #666;
}

.contact-text h4 {
    color: #333;
    margin-bottom: 5px;
}

/* 留言板 */
.message-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .intro-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        height: 300px;
    }
    
    .about-banner {
        height: 300px;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
} 