/* 页面标题 */
.page-header {
    margin-top: 80px;
    background: linear-gradient(to right, #ff6b81, #ff4757);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* 公司简介 */
.company-intro {
    padding: 80px 0;
    background: #fff;
}

.company-intro .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.intro-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 发展历程 */
.history {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff6b81;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.year {
    background: #ff6b81;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin: 0 30px;
}

.content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
}

.content h3 {
    color: #333;
    margin-bottom: 10px;
}

.content p {
    color: #666;
}

/* 企业文化 */
.culture {
    padding: 80px 0;
    background: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.culture-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-10px);
}

.culture-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.culture-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.culture-item p {
    color: #666;
}

/* 团队介绍 */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    color: #666;
} 