/* index8 — 学校人物：焦点长廊（柔和居中缩放） */
.SchoolFigures-cover {
    --sf-blue: #004b8d;
    --sf-ink: #1a1a1a;
    --sf-muted: #666;
    --sf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    width: 1232px;
    margin: 15px auto 0;
    background: #fff;
    border-radius: 7px;
    padding: 9px 20px 18px;
    border: 2px solid #ccc;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}

.SchoolFigures-cover .sf-cover-stage {
    position: relative;
    padding: 18px 0 8px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(0, 75, 141, 0.05) 0%, transparent 72%);
}

.SchoolFigures-cover .sf-cover-swiper {
    overflow: visible;
    padding: 12px 0 8px;
}

.SchoolFigures-cover .sf-cover-swiper .swiper-wrapper {
    transition-timing-function: var(--sf-ease) !important;
}

.SchoolFigures-cover .sf-cover-swiper .swiper-slide {
    width: 260px;
    height: auto;
}

.SchoolFigures-cover .sf-cover-card {
    display: block;
    text-decoration: none;
    color: inherit;
    opacity: 0.38;
    transform: scale(0.86);
    transform-origin: center center;
    transition:
        opacity 1.1s var(--sf-ease),
        transform 1.1s var(--sf-ease);
    will-change: transform, opacity;
}

.SchoolFigures-cover .sf-cover-swiper .swiper-slide-prev .sf-cover-card,
.SchoolFigures-cover .sf-cover-swiper .swiper-slide-next .sf-cover-card {
    opacity: 0.72;
    transform: scale(0.93);
}

.SchoolFigures-cover .sf-cover-swiper .swiper-slide-active .sf-cover-card {
    opacity: 1;
    transform: scale(1);
}

.SchoolFigures-cover .sf-cover-photo {
    position: relative;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    background: #e8eef4;
    box-shadow: 0 8px 22px rgba(0, 40, 80, 0.08);
    transition: box-shadow 1.1s var(--sf-ease);
}

.SchoolFigures-cover .sf-cover-swiper .swiper-slide-active .sf-cover-photo {
    box-shadow: 0 14px 32px rgba(0, 40, 80, 0.14);
}

.SchoolFigures-cover .sf-cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--sf-ease);
}

.SchoolFigures-cover .sf-cover-card:hover .sf-cover-photo img {
    transform: scale(1.03);
}

.SchoolFigures-cover .sf-cover-meta {
    padding: 16px 6px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.7s var(--sf-ease) 0.15s,
        transform 0.7s var(--sf-ease) 0.15s;
    pointer-events: none;
}

.SchoolFigures-cover .sf-cover-swiper .swiper-slide-active .sf-cover-meta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.SchoolFigures-cover .sf-cover-swiper .swiper-slide:not(.swiper-slide-active) .sf-cover-meta {
    transition-delay: 0s;
}

.SchoolFigures-cover .sf-cover-meta h5 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sf-ink);
    line-height: 1.3;
}

.SchoolFigures-cover .sf-cover-meta p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--sf-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.SchoolFigures-cover .sf-cover-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 6px;
    padding-bottom: 4px;
}

.SchoolFigures-cover .sf-cover-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    background: #fff;
    color: var(--sf-blue);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
    outline: none;
    padding: 0;
}

.SchoolFigures-cover .sf-cover-btn:hover {
    border-color: #b8c9da;
    background: #f5f8fb;
    color: #003a6e;
}

.SchoolFigures-cover .sf-cover-pagination {
    position: relative !important;
    bottom: auto !important;
    display: inline-flex;
    align-items: center;
}

.SchoolFigures-cover .sf-cover-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #b5afaf;
    opacity: 1;
    margin: 0 6px !important;
    transition: 0.45s var(--sf-ease);
}

.SchoolFigures-cover .sf-cover-pagination .swiper-pagination-bullet-active {
    background: var(--sf-blue);
    transform: scale(1.45);
}

@media (min-width: 1px) and (max-width: 1268px) {
    .SchoolFigures-cover {
        width: 100%;
        padding: 9px 12px 16px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .SchoolFigures-cover .sf-cover-swiper .swiper-slide {
        width: 220px;
    }

    .SchoolFigures-cover .sf-cover-photo {
        height: 280px;
    }
}
