/* 页面标题样式 */
.page-title {
    padding: 150px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    z-index: -1;
}

.page-title .section-title {
    font-size: 3rem;
    color: var(--primary);
    text-shadow: var(--neon-glow);
    margin-bottom: 20px;
}

/* 公司简介样式 */
.company-intro {
    padding: 100px 0;
    position: relative;
}

.company-intro h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: var(--neon-glow);
}

.company-intro p {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.company-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.stat-item p {
    color: var(--light);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* 企业文化样式 */
.company-culture {
    padding: 100px 0;
    position: relative;
}

.culture-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.culture-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: var(--neon-glow);
}

.culture-card p {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* 发展历程样式 */
.company-history {
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    box-shadow: var(--neon-glow);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -6px;
}

.year {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.timeline-item .content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.timeline-item:hover .content {
    transform: translateX(10px);
    box-shadow: var(--neon-glow);
}

.timeline-item:nth-child(even):hover .content {
    transform: translateX(-10px);
}

.timeline-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.timeline-item p {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* 动画效果 */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* 移动端适配 */
@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(even) {
        padding-left: 70px;
        margin-left: 0;
    }

    .timeline-item::before {
        left: 24px;
    }

    .timeline-item:nth-child(even)::before {
        left: 24px;
    }

    .timeline-item .content {
        padding: 15px;
    }

    .timeline-item:hover .content,
    .timeline-item:nth-child(even):hover .content {
        transform: translateX(5px);
    }
}

@media (max-width: 576px) {
    .timeline {
        padding: 20px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 20px;
    }

    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 14px;
        width: 10px;
        height: 10px;
    }

    .timeline-item:nth-child(even)::before {
        left: 14px;
    }

    .year {
        font-size: 1rem;
    }

    .timeline-item h3 {
        font-size: 1rem;
    }

    .timeline-item p {
        font-size: 0.8rem;
    }

    .timeline-item .content {
        padding: 12px;
    }
} 