/* 公司简介页面样式 */
.about-page {
    margin-top: 80px;
    padding: 40px 0;
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.company-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 8px;
}
/* 发展历程样式 */
.history-section {
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #007bff;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.year {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 0 20px;
}

.content {
    max-width: 500px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 15px;
}

/* 企业文化样式 */
.culture-section {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    padding: 40px 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.culture-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.culture-item h3 {
    color: #007bff;
    margin-bottom: 15px;
}

/* 团队介绍样式 */
.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h3 {
    color: #333;
    margin-bottom: 5px;
}

.team-member .position {
    color: #007bff;
    margin-bottom: 10px;
}

.team-member .description {
    color: #666;
    font-size: 0.9em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        margin-left: 20px;
    }
    
    .year {
        margin-bottom: 10px;
    }
    
    .content {
        width: 100%;
    }
} 