#total-videos-new {
    float: right;
}

#total-videos-new,
#total-videos-mobile-new {
    font-size: 15px !important;
    color: #8D8DFF;
}

/* 添加.mobile-video-list-header样式 */
.mobile-video-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
}

/* 统一两个span的字体和颜色 */
.mobile-video-list-header span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px !important;
    color: #8D8DFF !important;
    font-weight: 500;
}

.video-series-container {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    margin: 30px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.video-series-wrapper {
    border-radius: 15px !important;
    padding: 0px !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.video-series-content {
    border-radius: 10px !important;
}

.video-list-container {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    padding: 10px !important;
}

.video-player-wrapper {
    background-color: rgba(0, 0, 0, 0.2) !important;
    /* 半透明黑色背景 */
    border-radius: 10px !important;
    padding: 5px !important;
}

.video-series-header {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.episode-item {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}

.episode-item:hover {
    background-color: rgba(139, 92, 246, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* 限时活动区域移动端优化 */
@media (max-width: 768px) {
    .section-box-lijiguankan-img-container {
        margin-bottom: 0 !important;
        /* 移除负边距 */
        height: 200px !important;
    }

    .section-box-lijiguankan-img {
        width: 160px !important;
        height: 220px !important;
    }

    .section-box-lijiguankan-content-inner {
        width: 95% !important;
        padding: 20px !important;
        margin-top: -30px !important;
        /* 轻微上移，与图片部分重叠但不遮挡 */
        z-index: 2 !important;
    }

    .section-box-lijiguankan-content-text-title {
        font-size: 24px !important;
    }

    .section-box-lijiguankan-content-text-content {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .section-box-lijiguankan-img-container {
        height: 300px !important;
        justify-content: center;
    }

    .section-box-lijiguankan-img {
        width: 200px !important;
        height: 280px !important;
    }

    .section-box-lijiguankan-content-inner {
        padding: 15px !important;
        margin-top: -20px !important;
    }

    .section-box-lijiguankan-content-text-title {
        font-size: 20px !important;
    }
}

.video-series-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.video-series-wrapper {
    padding: 20px;
}

.video-series-header {
    padding: 1px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: #9797971f;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.video-series-header p {
    margin: 0;
    text-align: center;
    padding: 10px 0;
}

.video-series-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.video-list-container {
    flex: 0 0 320px;
    background: rgba(25, 25, 35, 0.8);
    border-radius: 12px;
    padding: 15px;
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.video-list-header {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(159 43 234 / 30%);
    color: #8D8DFF;
}

.episode-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.episode-item:hover {
    background: rgba(60, 60, 70, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}



.episode-thumbnail {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    background-color: black;
    object-fit: cover;
}

.episode-info {
    flex: 1;
}

.episode-info p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #fff;
}

.episode-duration {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(234, 152, 43, 0.8);
}

.video-player-wrapper {
    flex: 1;
}

.video-player {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(234, 152, 43, 0.2);
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.app-promo-button {
    text-align: center;
    padding: 2px 0 18px;
}

.promo-button-wrapper {
    display: inline-block;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #a855f7 0%, #8D8DFF 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
}



/* 移动端样式 */
.mobile-video-series {
    display: none;
}

.mobile-episode-item {
    background: rgba(30, 30, 40, 0.8);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.mobile-episode-item.active {
    background: rgba(40, 40, 50, 0.9);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.mobile-episode-header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.mobile-episode-thumbnail {
    width: 70px;
    height: 45px;
    border-radius: 6px;
    margin-right: 15px;
    background-color: black;
}

.mobile-episode-header p {
    flex: 1;
    font-weight: 600;
    color: #fff;
}

.mobile-toggle-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #ea982b;
}

.mobile-episode-content {
    display: none;
    padding: 15px;
    background: rgba(25, 25, 35, 0.9);
    border-top: 1px solid rgba(234, 152, 43, 0.2);
}

.mobile-episode-content iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .video-series-content {
        flex-direction: column;
    }

    .video-list-container {
        flex: none;
        width: 100%;
        max-height: none;
    }

    .video-player {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .video-series-content {
        display: none;
    }

    .mobile-video-series {
        display: block;
    }

    .video-player {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .video-player {
        height: 300px;
    }

    .promo-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* 滚动条样式 */
.video-list-container::-webkit-scrollbar {
    width: 8px;
}

.video-list-container::-webkit-scrollbar-track {
    border-radius: 4px;
}

.video-list-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8d8dff, #6b46c1);
    border-radius: 4px;
}