@charset "UTF-8";

/* 视频弹框 */

.mask_video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .8;
    background: rgba(0, 0, 0, .8);
}

.video {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999999999;
    width: 968px;
    height: 599px;
    margin-top: -300px;
    margin-left: -485px;
    border:none;
    box-shadow: 0 0 0.8em #fff;
}

.video i {
    position: absolute;
    right: -32px;
    top: -32px;
    z-index: 2;
    height: 60px;
    width: 60px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    font-style: normal;
    text-indent: -9999px;
    background: url(../images/close.png) no-repeat;
    transition: All 0.4s ease-in-out;
            -webkit-transition: All 0.4s ease-in-out;
            -moz-transition: All 0.4s ease-in-out;
            -o-transition: All 0.4s ease-in-out;
}

.video i:hover{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0 0 0.8em #fff
}