/* 播放弹窗 */
.videomodal {
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
}

.videomodal-box {
    position: relative;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.videomodal-main {
    display: inline-block;
    max-width: 1000px;
    max-height: 650px;
    /*height: auto !important;*/
    font-size: 0;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .4);
    border: 2px solid #111;
}

.videomodal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: #ccc;
    cursor: pointer;
}
.videomodal-close:before {
    content: '\00D7';
}

.videomodal,
.videomodal-box {
    transition: all .2s;
    visibility: hidden;
    opacity: 0;
}

.videomodal-box {
    transform: scale(.4);
}

.videomodal.active,
.videomodal.active .videomodal-box {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

/* 调整阿里云播放器的样式 */
.prism-player video {
    /*height: 100% !important;*/
    /*max-height: inherit;*/
    vertical-align: middle;
    object-fit: contain !important;
}
.prism-cc-btn {
    display: none !important;
}
.prism-fullscreen {
    max-width: none;
    max-height: 100%;
}
.prism-big-play-btn{
    left:50% !important;
    bottom: 50% !important;
    transform: translate(-50%, 50%) !important;
}
.prism-player .prism-big-play-btn .outter{
    width:100% !important;
    height:100% !important;
}

@media screen and (max-width: 767px){
    .prism-big-play-btn{
        width:32px !important;
        height:32px !important;
    }
}