#mVideo #mVideoPlay {
    height: 7.86rem;
    position: relative;
    z-index: 1001;
}

#mVideo #mVideoPlay .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover
}

#mVideo #mVideoPlay .videoWrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    clip-path: circle(3.1rem at -webkit-calc(50vw + 3.1rem) 50%);
    clip-path: circle(3.1rem at calc(50vw + 3.1rem) 50%);
    -webkit-transition: all .7s cubic-bezier(.17,.67,.49,.93);
    transition: all .7s cubic-bezier(.17,.67,.49,.93)
}

#mVideo #mVideoPlay .videoWrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

#mVideo #mVideoPlay .videoWrapper video {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    position: absolute
}

#mVideo #mVideoPlay .closeBtn {
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #A0020A;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    right: 0.3rem;
    top: 0.3rem;
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px)
}

#mVideo #mVideoPlay .closeBtn div {
    width: 0.46rem;
    height: 0.46rem;
    position: relative
}

#mVideo #mVideoPlay .closeBtn div:after,#mVideo #mVideoPlay .closeBtn div:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff
}

#mVideo #mVideoPlay .closeBtn div:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#mVideo #mVideoPlay .closeBtn div:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#mVideo #mVideoPlay .playButton {
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #A0020A;
    width: 1.99rem;
    height: 1.99rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    display: -moz-box;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    z-index: 2;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

#mVideo #mVideoPlay .playButton:after,#mVideo #mVideoPlay .playButton:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(160,2,10,.4);
    content: "";
    -moz-border-radius: 50%;
    border-radius: 50%
}

#mVideo #mVideoPlay .playButton:before {
    background-color: rgba(160,2,10,.4)
}

#mVideo #mVideoPlay .playButton:before {
    background-color: rgba(160,2,10,.2)
}

#mVideo #mVideoPlay .playButton .wrapper {
    width: 0.8rem;
    position: relative;
    /*top: 4px;
    left: 6px;*/
    z-index: 2
}

#mVideo #mVideoPlay .playButton .wrapper span {
    display: block;
    margin: 0 auto;
}

#mVideo #mVideoPlay .playButton .wrapper .text {
    color: #ffffff;
    line-height: 1;
    text-align: center;
    margin-top: 0.35rem;
}

#mVideo #mVideoPlay .playButton:hover .wrapper {
    -webkit-animation: swing .8s;
    animation: swing .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

#mVideo #mVideoPlay .playButton:hover:after,#mVideo #mVideoPlay .playButton:hover:before {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0
}

#mVideo #mVideoPlay .playButton:hover:before {
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

#mVideo #mVideoPlay .playButton:hover:after {
    -webkit-transition: all .8s ease .4s;
    transition: all .8s ease .4s
}

#mVideo #mVideoPlay.playing .videoWrapper {
    clip-path: circle(100vw at 50vw 50vh);
    z-index: 21
}

#mVideo #mVideoPlay.playing .videoWrapper:before {
    background: rgba(0,0,0,.2)
}

#mVideo #mVideoPlay.playing .playButton {
    opacity: 0;
    visibility: hidden;
}

#mVideo #mVideoPlay.playing .closeBtn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition-delay: .6;
    transition-delay: .6;
}

.icon_play{
    width: 0.35rem;
    height: 0.52rem;
    background: url("../images/icon_play.png") no-repeat center;
    background-size: 100%;
}


/*@media (min-width:1518px) and (max-width:1700px){
    #mVideo #mVideoPlay .videoWrapper{
        clip-path: circle(2.6rem at -webkit-calc(50vw + 2.6rem) 31vh);
        clip-path: circle(2.6rem at calc(50vw + 2.6rem) 31vh);
    }
}*/

@media(max-width:1199px) {
    #mVideo #mVideoPlay .playButton{
        left: 30%;
    }
    #mVideo #mVideoPlay .videoWrapper{
        clip-path: circle(3.1rem at -webkit-calc(30vw + 3.1rem) 50%);
        clip-path: circle(3.1rem at calc(30vw + 3.1rem) 50%);
    }
}
@media(max-width:600px) {
    #mVideo #mVideoPlay{
        height: 51vh;
    }
    #mVideo #mVideoPlay .playButton{
        left: 20%;
    }
    #mVideo #mVideoPlay .videoWrapper{
        clip-path: circle(2.7rem at -webkit-calc(20vw + 2.7rem) 50%);
        clip-path: circle(2.7rem at calc(20vw + 2.7rem) 50%);
    }
}