/* 页面标题和面包屑导航左对齐 */
.page-banner h1,
.page-banner .breadcrumb {
    text-align: left;
    margin-left: 0;
    transform: none;
}

/* 统一所有标题样式 */
.company-culture h2,
.company-history h2,
.team-intro h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

/* 统一标题下方装饰线 */
.company-culture h2::after,
.company-history h2::after,
.team-intro h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: currentColor;  /* 使用当前文字颜色 */
    opacity: 0.3;
}

/* 公司简介部分 */
.company-intro {
    padding: 80px 0;
    background: var(--white);
}

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

.intro-content h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.3;
}

.intro-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0.3;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.intro-image:hover::before {
    opacity: 0.5;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

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

/* 企业文化部分 */
.company-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
}

.company-culture h2 {
    color: var(--white);
}

.company-culture h2::after {
    background: var(--white);
}

.culture-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.culture-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.culture-content {
    display: flex;
    align-items: center;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.culture-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.2;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.culture-text {
    flex: 1;
    margin-left: 120px;
}

.culture-text h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.culture-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.culture-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-left: 40px;
    color: var(--white);
    transition: all 0.4s ease;
}

.culture-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--white);
    opacity: 0.3;
    transition: all 0.4s ease;
}

/* 悬停效果 */
.culture-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(8, 66, 138, 0.1);
}

.culture-item:hover .culture-number {
    opacity: 0.3;
    transform: translateY(-50%) scale(1.1);
}

.culture-item:hover .culture-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(360deg);
}

.culture-item:hover::before {
    width: 8px;
}

/* 发展历程部分 */
.company-history {
    padding: 80px 0;
    background: var(--light-gray);
}

.company-history h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.2;
}

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

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

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

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

.year {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.event {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(8, 66, 138, 0.08);
    transition: all 0.3s ease;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 66, 138, 0.12);
}

.event h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.event p {
    color: var(--text-color);
    line-height: 1.6;
}

/* 核心团队部分 */
.team-intro {
    padding: 80px 0;
    background: var(--white);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8, 66, 138, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 66, 138, 0.12);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.member-info .description {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* 响应式调整 */
@media screen and (max-width: 991px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item::before {
        left: -6px;
        right: auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }

    .culture-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .culture-text {
        margin-left: 0;
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .culture-number {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }

    .culture-icon {
        margin-left: 0;
    }

    .culture-item:hover {
        transform: translateY(-10px);
    }
} 

.page-banner {
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
} 