html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-size: cover;
    background: radial-gradient(circle at 50% -20%, #1e293b 0%, #020617 80%) no-repeat fixed;
}

.swiper {
    height: 70%;
    width: 100%;
}

.swiper-slide {
    height: 100%;
    width: 100%;
}

.dplayer-container {
    height: 100%;
    width: 100%;
    min-height: 400px;
}

.dplayer-setting, .dplayer-full-in-icon {
    display: none !important;
}

.dplayer-mobile-play {
    display: none !important;
}

.dplayer-pause-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100; /* 确保在视频上方 */
    cursor: pointer;
    pointer-events: none;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: relative;
    transition: transform 0.2s;
}

.play-icon:hover {
    transform: scale(1.1);
}

.play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    border-width: 15px 0 15px 25px;
    border-style: solid;
    border-color: transparent transparent transparent #fffdfd8a;
}

.header-navbar {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.site-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f8fafc;
}

.navbar-menu-center a {
    text-decoration: none;
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 600 !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand a:hover,.navbar-menu-center a:hover {
    opacity: 1;
    background-color: transparent;
}

.navbar-menu-center a.active {
    opacity: 1;

}
.navbar-menu-center a:hover::after,
.navbar-menu-center a.active::after {
    transform: scaleX(1);
}

.navbar-menu-center a.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 21%;
    width: 60%;
    height: 2px;
    background-color: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
}
.navbar-menu-center{
    display: inline-flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 576px) {
    .swiper {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .swiper {
        width: 80%;
    }
}