/* 页面标题 */
.page-title {
    margin-top: 80px;
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.page-title h2 {
    font-size: 36px;
    color: #333;
}

/* 公司简介 */
.company-intro {
    padding: 60px 0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin: 20px 0;
    line-height: 1.8;
    color: #666;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
}

/* 发展历程 */
.history {
    padding: 60px 0;
    background: #f8f8f8;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #FF6B6B;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) .content {
    margin-left: 50px;
}

.timeline-item:nth-child(even) .content {
    margin-right: 50px;
    text-align: right;
    order: -1;
}

.year {
    width: 100px;
    height: 100px;
    background: #FF6B6B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

.content {
    flex: 0 1 40%;
}

.content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FF6B6B;
}

.content p {
    color: #666;
}

/* 企业文化 */
.culture {
    padding: 60px 0;
}

.culture-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.culture-item {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.culture-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.culture-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.culture-item p {
    color: #666;
}

/* 资质荣誉 */
.honors {
    padding: 60px 0;
    background: #f8f8f8;
}

.honors-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.honor-item {
    text-align: center;
}

.honor-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.honor-item p {
    color: #666;
}

/* 通用样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
} 