/* 关于我们页面样式 */

.about-hero {
    background: linear-gradient(135deg, rgba(3, 3, 3, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(123, 97, 255, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.page-hero-content {
    text-align: center;
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d9ff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* 公司介绍 */
.company-intro {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.2) 0%, rgba(30, 40, 60, 0.2) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.mission {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.core-values {
    margin-top: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.value-item {
    background: rgba(3, 3, 3, 0.5);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* 时间轴 */
.company-timeline {
    background: linear-gradient(135deg, rgba(250, 252, 255, 0.1) 0%, rgba(245, 250, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.company-timeline:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 团队介绍 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.1) 0%, rgba(245, 248, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.team-member:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(123, 97, 255, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.member-title {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.member-expertise {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.expertise-tag {
    background: rgba(0, 217, 255, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* 专业部门 */
.team-departments {
    margin-top: 60px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.department {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.department:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.department-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.department h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.department p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 发展历程 */
.development-timeline {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.2) 0%, rgba(30, 40, 60, 0.2) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.development-timeline:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-light);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    width: 60px;
    text-align: right;
    color: var(--secondary);
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--gradient-light);
    border-radius: 50%;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 合作伙伴 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.partner-logo {
    height: 100px;
    background: rgba(17, 17, 17, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.partners-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-category {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.partner-category h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.partner-category p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 加入我们 */
.join-us {
    background: linear-gradient(135deg, rgba(25, 40, 65, 0.18) 0%, rgba(35, 50, 75, 0.18) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.join-us:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.join-slogan {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 500;
}

.join-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.job-category {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.job-category h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.job-category p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.join-benefits {
    background: var(--gradient);
    padding: 40px;
    border-radius: 15px;
}

.join-benefits h3 {
    color: white;
    margin-bottom: 25px;
}

.join-benefits ul {
    list-style: none;
    padding-left: 0;
}

.join-benefits ul li {
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.join-benefits ul li i {
    color: var(--secondary);
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.contact-item h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}


@keyframes BeijingGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(123, 97, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.3);
    }
}

/* 地图 */
.map-section {
    padding-top: 0;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)), rgba(74, 122, 201, 0.1);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.map-placeholder:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00c9ff, #92fe9d, #00d9ff, #7b61ff);
    z-index: -1;
    border-radius: 17px;
    animation: gradientShift 4s ease infinite;
}

.map-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.map-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.map-info .notice {
    margin-top: 20px;
    color: var(--secondary);
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .company-timeline {
        order: -1;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-avatar {
        margin: 0 auto;
    }
    
    .timeline:before {
        left: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-date {
        text-align: left;
    }
    
    .timeline-content:before {
        left: -15px;
    }
    
    .job-categories {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        height: auto;
    }
}