﻿/* 关于我们页特有样式 */

/* 页面标题区域 */
.page-header {
    background: linear-gradient(rgba(15, 32, 55, 0.85), rgba(15, 32, 55, 0.85)), url('https://minimax-algeng-chat-tts.oss-cn-wulanchabu.aliyuncs.com/ccv2%2F2026-04-03%2FMiniMax-M2.7%2F1687257157088627%2Fd49c1bfe5fe3613fe87f8163a8f5031dfc8a19e1eb5bb1e54135728e43c80366..webp?Expires=1775308740&OSSAccessKeyId=LTAI5tGLnRTkBjLuYPjNcKQ8&Signature=%2FM%2BSyC9sBKVBfL9tYPE38F90VeY%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 50px;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    margin-top: -80px;
}

.page-header .container {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    max-width: 900px;
}

.page-header h1 {
    color: #ffffff !important;
    margin-bottom: 30px !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.9) !important;
    letter-spacing: -1px !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
}

.page-header p {
    color: #f0f9ff !important;
    font-size: 1.25rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8) !important;
    font-weight: 500 !important;
}

/* 公司介绍区域 */
.company-intro {
    padding: 80px 0;
    background-color: white;
}

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

.intro-text {
    order: 1;
}

.intro-image {
    order: 2;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-text h2 {
    margin-bottom: 20px;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 公司理念区域 */
.company-values {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.values-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.values-content h2 {
    margin-bottom: 40px;
    position: relative;
}

.values-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
}

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

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.value-item h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* 团队成员区域 */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-content {
    text-align: center;
}

.team-content h2 {
    margin-bottom: 40px;
    position: relative;
}

.team-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
}

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

.team-member {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a365d 0%, #3182ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.member-info p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-link {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    transform: translateY(-2px);
}

/* 发展历程区域 */
.timeline-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.timeline-content {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-content h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #3182ce 0%, #2c5282 100%);
}

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

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

.timeline-content-box {
    width: 45%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-text,
    .intro-image {
        order: unset;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }

    .timeline-content-box {
        width: 100%;
    }

    .timeline-date {
        left: 20px;
        transform: translateX(0);
    }
}

/* 动画效果 */
.intro-content,
.value-item,
.team-member,
.timeline-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }