﻿@import url('../index/style.css');

/* ===== 关于页专属样式 ===== */

/* 关于公司 */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--md-sys-color-on-surface);
}

.about-text strong {
    color: var(--deep-orange);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: var(--md-sys-color-surface-variant);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(65, 53, 18, 0.08);
    position: relative;
    overflow: hidden;
    will-change: transform;
    --spot-x: 50%;
    --spot-y: 50%;
    --card-shift-x: 0px;
    --card-shift-y: 0px;
    --card-lift: 0px;
    --reveal-y: 0px;
    transform: translate(var(--card-shift-x), calc(var(--card-shift-y) + var(--card-lift) + var(--reveal-y)));
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
                background-color 0.45s ease,
                color 0.45s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: var(--spot-opacity);
    background: radial-gradient(var(--spot-size) circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, var(--spot-core-alpha)) 0%, rgba(255, 255, 255, var(--spot-edge-alpha)) 45%, rgba(255, 255, 255, 0) 78%);
    transition: opacity 0.22s ease, background 0.22s ease;
}

.stat-card:hover {
    --card-lift: -8px;
    background-color: var(--md-sys-color-primary-container);
    box-shadow: 0 14px 32px rgba(65, 53, 18, 0.22);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    min-width: 64px;
    text-align: center;
    color: var(--deep-orange);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--md-sys-color-on-surface);
}

/* 业务矩阵 */
.business-section {
    padding: 80px 0;
    background-color: var(--md-sys-color-surface-variant);
    transition: background-color 0.45s ease;
}

.business-section .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 企业理念 */
.values-section {
    padding: 80px 0;
    background-color: var(--md-sys-color-primary-container);
}

.values-section .card {
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

html[data-theme='dark'] .values-section .card {
    background-color: rgba(255, 255, 255, 0.04);
}

/* 团队 */
.team-detail {
    padding: 80px 0;
}

.member-tag {
    display: inline-block;
    background-color: var(--deep-orange-soft);
    color: var(--deep-orange);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.member-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.82;
    padding: 0 8px;
}

/* 联系 */
.contact {
    background-color: var(--md-sys-color-surface-variant);
}

/* 响应式 */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .business-section .grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 40%;
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
}

