/*蒙版遮罩*/
.wrap{
    position: relative;
    width: 100%;
    height: 100%;
    background: no-repeat center center;
    background-size: cover;
}

.wrap::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2;
}
.timer_title_css {
    color: white;
    font-size: 3rem;
    position: relative;
    top: 208px;
    z-index: 1001;
}
.timer_css {
    color: white;
    font-size: 3.9rem;
    position: relative;
    top: 213px;
    z-index: 1001;
}

/*倒计时*/
.mui-badge {
    line-height: 1;
    display: inline-block;
    padding: 3px 6px;
    color: #333;
    border-radius: 100px;
    background-color: rgba(0,0,0,.15);
}

.mui-badge-blue, .mui-badge-primary{
    color: #fff;
    background-color: #007aff;
}

/*播放器按钮*/
.prism-player .prism-big-play-btn {
    background: url(../img/play.png) no-repeat;
    background-size: contain;
    width: 64px;
    height: 64px;
    bottom: 40% !important;
    left: 50% !important;
}

.prism-player .prism-big-play-btn .outter {
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
}

.prism-player .prism-cover {
    background-size: 100% 100%;
}