/*虚拟播放器*/
.player-container {
    width: 100%;
    /*height: 700px !important;*/
    max-width: 1260px;
    position: relative;
    overflow: hidden;
}
.player-container .preview-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.video-preview {
    height: 100%;
}

.player-container .dplayer-controller {
    z-index: 2;
    color: #fff;
}

.pg_viewthread .player-container .dplayer-icons-left svg {
    width: 18px;
}

.pg_viewthread .player-container .dplayer-play-icon svg {
    width: 15px;
}

.player-container .dplayer-played {
    background: #f50 !important;
}

.player-container .dplayer-thumb {
    background: #f50 !important;
}

.player-container .dplayer-volume-bar-inner {
    background: #f50 !important;
}

.player-container .dplayer-controller svg path {
    fill: #fff;
}

/*.player-container .dplayer-controller .dplayer-played{background: rgba(255,255,255,0.2) !important;}*/
.player-container .dplayer-controller .dplayer-play-icon {
    padding: 5px 7px 7px 7px !important;
}

.video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(18, 18, 18, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.video-preview:hover .preview-image {
    transform: scale(1.05);
    filter: blur(2px) brightness(0.8);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.1), 0 0 0 0px rgba(255, 255, 255, 0.05);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05), 0 0 0 20px rgba(255, 255, 255, 0.02);
}

.play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.play-icon svg {
    width: 32px;
    margin-left: 8px;
}

.play-icon svg path {
    fill: rgba(255, 255, 255, 0.7);
    font-size: 36px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button.play-icon:hover svg path {
    fill: #f50;
    text-shadow: 0 0 15px rgba(255, 77, 148, 0.5);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 5;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.video-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.video-description {
    font-size: 16px;
    opacity: 0.8;
    max-width: 80%;
    transition: all 0.3s ease;
}

.video-preview:hover .video-title {
    transform: translateY(-5px);
    opacity: 1;
}

.video-preview:hover .video-description {
    opacity: 0.9;
}

.decoration {
    display: none;
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00cc, #333399);
    top: -100px;
    right: -100px;
    opacity: 0.1;
    z-index: 0;
}

.decoration-2 {
    display: none;
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    bottom: -75px;
    left: -75px;
    opacity: 0.08;
    z-index: 0;
}

@media (max-width: 768px) {
    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-icon {
        font-size: 28px;
    }

    .video-info {
        padding: 20px;
    }

    .video-title {
        font-size: 20px;
    }

    .video-description {
        font-size: 14px;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: ripple 0.8s linear;
}

/*电脑版样式*/
.pg_viewthread .play-button {
    width: 140px;
    height: 140px;
}

.pg_viewthread .play-icon svg {
    width: 50px;
    margin-left: 15px;
}

/*正常播放器*/
.dplayer-played {
    background: #f50 !important;
}

.dplayer-thumb {
    background: #f50 !important;
}

.dplayer-volume-bar-inner {
    background: #f50 !important;
}

/*VIP提示*/
.vipts_shadeblur {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(2px);
}

.show_vipts {
    padding: 30px 25px;
    background: #1e1e1e;
    border-radius: 16px;
    color: #ddd;
    text-align: center;
}

.show_vipts .vipts-layer-content {
    margin: 20px 0 10px 0
}

.vipts-layer-content a {
    color: #ff7a22;
}

.vipts_a {}

.vipts_a a {
    color: #ff7a22;
    font-size: 16px;
}

.vipts_a a:hover {
    color: rgb(241, 136, 65);
    text-decoration: none;
}

.vipts-layer-content .layui-layer-btn {
    display: flex !important;
}

.vipts_h1 {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
}

.show_vipts .layui-layer-content {
    height: auto !important;
}

.show_vipts .layui-layer-btn {
    text-align: center !important;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.show_vipts .layui-layer-btn0 {
    background-color: #ff7a22 !important;
    border-radius: 8px !important;
    color: #fff !important;
}

.show_vipts .layui-layer-btn1 {
    background: transparent !important;
    border: 1px solid #555 !important;
    color: #ccc !important;
    border-radius: 8px;
}

.show_vipts .layui-layer-btn1:hover {
    background: #333 !important;
}

.show_vipts .layui-layer-btn0,
.show_vipts .layui-layer-btn1 {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 5px 0;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
    height: auto !important;
    line-height: auto !important;
    margin: 0 !important;
}