﻿/* 企业文化页面特定样式 */
.culture-section {
    padding: 100px 0;
    background-color: white;
}

.culture-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.section-heading {
    font-size: 28px;
    color: #1890ff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

/* 使命愿景样式 */
.vision-section {
    margin-bottom: 80px;
}

.vision-content {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(24, 144, 255, 0.85), rgba(9, 109, 217, 0.85)), url('/images/bannerwh.jpg') center/cover no-repeat;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-attachment: fixed;
    transition: transform 0.3s ease;
}

.vision-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vision-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

/* 发展历程样式 */
.history-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e8e8e8;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: #1890ff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.timeline-events {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-events li {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    color: #666;
}

.timeline-events li:last-child {
    margin-bottom: 0;
}

/* 企业荣誉样式 */
.honors-section {
    margin-bottom: 40px;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.honor-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s;
}

.honor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #1890ff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .culture-title {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .vision-title {
        font-size: 24px;
    }
    
    .vision-content {
        padding: 40px 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year::before {
        left: 20px;
    }
    
    .timeline-year {
        text-align: left;
        margin-left: 50px;
    }
    
    .timeline-events {
        margin-left: 50px;
        margin-right: 0;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .honor-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .culture-title {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .vision-title {
        font-size: 20px;
    }
    
    .vision-content {
        padding: 30px 15px;
    }
    
    .timeline-events li {
        padding: 15px;
        font-size: 14px;
    }
    
    .honor-item {
        padding: 15px;
        font-size: 14px;
    }
}