.temp-video {
    position: fixed;
    z-index: 1000;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.box{
    position: relative;
    width: 800px;
    margin: auto;
}
.temp-video .box video{
    width: 800px;
    height: 450px;
    position: absolute;
    z-index: 19891015;
    overflow: auto;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
} 

.vclose {
    position: absolute;
    right: 10px;
    top: 110px;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    z-index: 119891016;
    cursor: pointer;
}
.zt{
    position: absolute;
    right: 0px;
    top: 660px;
    bottom: 0px;
    left: 0px;
    width: 247px;
    height: 248px;
    margin: auto;
    z-index: 119891017;
    display: none;
}
.foot-video{
    position: absolute;
    top: 549px;
    left: 0;
    right: 0;
    margin: auto;
    width: 800px;
    height:119px;

}

.foot-video img{
    width: 800px;
    height:119px;
}
.btn-ksxp{
    position: absolute;
    width: 230px;
    height: 50px;
    cursor: pointer;
    /* opacity: 0; */
    top: 40px;
    right: 50px;
}
.btn-ksxp img{
    width: 48px;
    z-index: 1000000;
    height: 52px;
    right: -11px;
    top: 13px;
}


.aniScale{
    position: absolute;
    animation: aniScale 2s infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    -webkit-animation: aniScale 2s infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-name: scaleDraw; /*关键帧名称*/
}

@keyframes scaleDraw {  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0%{
        transform: scale(1);  /*开始为原始大小*/
    }
    25%{
        transform: scale(1.1); /*放大1.1倍*/
    }
    50%{
        transform: scale(1);
    }
    75%{
        transform: scale(1.1);
    }
}