/* 企业形象展示 */
.hero {
    margin-top: 80px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
}

/* 品牌故事 */
.brand-story {
    padding: 80px 0;
    background: #f8f8f8;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* 发展历程 */
.history {
    padding: 80px 0;
}

.history h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c41230;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-item .year {
    background: #c41230;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item .content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 45%;
    margin-top: 40px;
}

.timeline-item:nth-child(odd) .content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .content {
    margin-left: 55%;
}

.timeline-item .content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.timeline-item .content p {
    color: #666;
    margin-bottom: 15px;
}

.timeline-item .content img {
    width: 100%;
    border-radius: 5px;
}

/* 企业文化 */
.culture {
    padding: 80px 0;
    background: #f8f8f8;
}

.culture h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.culture-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.culture-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    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: 10px;
    color: #333;
}

.culture-item p {
    color: #666;
}

/* 团队展示 */
.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.team-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.team-member {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #333;
}

.team-member p {
    padding: 0 20px 20px;
    color: #666;
} 