.page-about .hero {
    position: relative;
    height: calc(650 * var(--rpx));
    overflow: hidden;
    background: #1a2a4a;
}

.page-about .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-about .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.page-about .hero-fg {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-height);
    transform: translateY(calc(-16 * var(--rpx)));
}

.page-about .hero-card {
    max-width: calc(850 * var(--rpx));
    min-height: calc(230 * var(--rpx));
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    padding: calc(40 * var(--rpx));
}

.page-about .hero-card .title {
    font-size: calc(48 * var(--fpx-50));
    font-weight: 700;
    line-height: calc(58 * var(--rpx));
}

.page-about .hero-card .desc {
    margin-top: calc(12 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    line-height: calc(32 * var(--rpx));
    max-width: calc(780 * var(--rpx));
}

.inner-nav {
    border-bottom: calc(1 * var(--rpx)) solid rgba(0, 0, 0, 0.15);
}

.inner-nav-tabs {
    display: flex;
    gap: calc(60 * var(--rpx));
    padding-top: calc(18 * var(--rpx));
}

.inner-nav-tabs a {
    position: relative;
    font-size: calc(16 * var(--fpx));
    line-height: calc(24 * var(--rpx));
    color: var(--muted);
    padding-bottom: calc(16 * var(--rpx));
}

.inner-nav-tabs a.is-current {
    color: var(--brand);
    font-weight: 500;
}

.inner-nav-tabs a.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-1 * var(--rpx));
    width: calc(65 * var(--rpx));
    height: calc(2 * var(--rpx));
    background: var(--brand);
}

.page-crumb {
    padding-top: calc(30 * var(--rpx));
}

.page-crumb .crumb {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(8 * var(--rpx));
    font-size: calc(14 * var(--fpx));
    color: var(--text);
}

.page-crumb .sep {
    color: var(--text);
}

.page-crumb .is-current {
    color: var(--brand);
}

.about-sec {
    padding-top: calc(111 * var(--rpx));
}

.about-intro {
    padding-top: calc(32 * var(--rpx));
}

.about-why {
    padding-bottom: calc(100 * var(--rpx));
}

.about-title {
    font-size: calc(38 * var(--fpx-50));
    font-weight: 700;
    line-height: calc(58 * var(--rpx));
    color: #000;
}

.about-desc {
    margin-top: calc(34 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    font-weight: 300;
    line-height: calc(32 * var(--rpx));
    color: var(--text-2);
}

.about-materials .about-desc,
.about-apps .about-desc {
    margin-top: calc(51 * var(--rpx));
}

.material-list {
    display: flex;
    gap: calc(20 * var(--rpx));
    margin-top: calc(36 * var(--rpx));
}

.material-list li {
    width: calc(285 * var(--rpx));
    height: calc(105 * var(--rpx));
    border-radius: calc(10 * var(--rpx));
    border: calc(1 * var(--rpx)) solid #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(32 * var(--fpx-67));
    line-height: calc(32 * var(--rpx));
    color: var(--muted);
}

.material-list li:nth-child(even) {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.material-list li:last-child {
    width: calc(380 * var(--rpx));
}

.app-list {
    display: flex;
    justify-content: space-between;
    margin-top: calc(39 * var(--rpx));
}

.app-card {
    position: relative;
    width: calc(235 * var(--rpx));
    height: calc(235 * var(--rpx));
    border: calc(1 * var(--rpx)) solid var(--brand);
    border-radius: calc(15 * var(--rpx));
    overflow: hidden;
}

.app-card .icon {
    position: absolute;
    left: 50%;
    top: calc(30 * var(--rpx));
    transform: translateX(-50%);
    width: calc(107 * var(--rpx));
    height: calc(120 * var(--rpx));
}

.app-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.app-card .label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(61 * var(--rpx));
    border-radius: 0 0 calc(15 * var(--rpx)) calc(15 * var(--rpx));
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(28 * var(--fpx-67));
    line-height: calc(32 * var(--rpx));
}

.why-list {
    display: flex;
    gap: calc(40 * var(--rpx));
    margin-top: calc(38 * var(--rpx));
}

.why-card {
    width: calc(506 * var(--rpx));
    min-height: calc(220 * var(--rpx));
    padding: calc(41 * var(--rpx)) calc(42 * var(--rpx));
    background: rgba(6, 83, 182, 0.05);
}

.why-card .name {
    font-size: calc(28 * var(--fpx-67));
    font-weight: 600;
    line-height: calc(42 * var(--rpx));
    color: var(--brand);
}

.why-card p {
    margin-top: calc(7 * var(--rpx));
    font-size: calc(18 * var(--fpx));
    line-height: calc(32 * var(--rpx));
    color: var(--muted);
}
