/* 关于我们页面专用样式 */

.company-intro {
    padding: 80px 0;
    background: var(--white-color);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-highlight {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-text p {
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
}

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* 公司信息 */
.company-info {
    padding: 80px 0;
    background: var(--light-color);
}

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

.info-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 企业文化 */
.company-culture {
    padding: 80px 0;
    background: var(--white-color);
}

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

.culture-card {
    background: var(--white-color);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--light-color);
    transition: var(--transition);
}

.culture-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.culture-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.culture-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.culture-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* 团队展示 */
.team-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/10;
    transition: var(--transition);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.team-image:hover img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.95), transparent);
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-image:hover .team-overlay {
    transform: translateY(0);
}

.team-overlay h3 {
    color: var(--white-color);
    font-size: 20px;
}

/* 发展历程 */
.timeline-section {
    padding: 80px 0;
    background: var(--white-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 45%;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: center;
}

.timeline-content {
    width: 45%;
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* 资质荣誉 */
.honors-section {
    padding: 80px 0;
    background: var(--light-color);
}

.honors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.honors-list {
    list-style: none;
    padding: 0;
}

.honors-list li {
    font-size: 18px;
    color: var(--dark-color);
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    transition: var(--transition);
}

.honors-list li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.honors-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.honors-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.honors-images img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .team-gallery {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        text-align: center;
        font-size: 24px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .honors-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .intro-text h2 {
        font-size: 28px;
    }
    
    .intro-highlight {
        font-size: 18px;
    }
    
    .culture-card {
        padding: 30px 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        font-size: 20px;
        width: 50px;
    }
}

