@charset 'utf-8';
#hd #sec_video{
    margin-top: 0;
}
#hd #sec_video .main-video iframe{
    width: 90vw;
    height: calc(90vw * 0.5625);
    margin: 3vw 5vw;
}




/*-list-*/

#hd #sec_video{
    position: relative;
    background: #000;
    overflow: hidden;
}
#hd #sec_video .list{
    max-width: 1400px;
    box-sizing: border-box;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}
#hd #sec_video .list .entry{
    cursor: pointer;
    transition: all 0.2s;
}

.video-owl{
    
}

.video-owl .owl-prev{
    position: absolute;
    top: 40%;
    left: -100px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 5;
    background: url(../img/arrow-back.png) center no-repeat !important;
    background-size: 40px !important;
    border: none;
    opacity: 0.7;
}
.video-owl .owl-prev:hover{
    opacity: 1;
}
.video-owl .owl-prev span{
    display: none;
}
.video-owl .owl-next{
    position: absolute;
    top: 40%;
    right: -100px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 5;
    background: url(../img/arrow-next.png) center no-repeat !important;
    background-size: 40px !important;
    border: none;
    opacity: 0.7;
}
.video-owl .owl-next:hover{
    opacity: 1;
}
.video-owl .owl-next span{
    display: none;
}

.video-owl .owl-dots{
    display: none;
}



.video-owl p{
    color: #fff;
    text-align: center;
    margin-top: 10px !important;
}





@media screen and (max-width: 1600px) {    
#hd #sec_video .list{
    padding: 0 10px;
    margin: 0 50px;
}
.video-owl .owl-prev{
    width: 40px;
    height: 40px;
    left: -50px;
}
.video-owl .owl-next{
    width: 40px;
    height: 40px;
    right: -50px;
}
}




#hd .video-list .list .entry .cover .image{
    position: relative;
}
#hd .video-list .list .entry .cover .image:after{
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    border-radius: 50%;
    background: url(../img/play.png) center no-repeat;
    background-size: 40px;
    border: 3px solid #fff;
    opacity: 0.7;
    transition: all 0.3s;
}
#hd .video-list .list .entry .cover:hover .image:after{
    opacity: 1;
    transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
#hd .video-list .list .entry .cover .image:after{
    width: 50px;
    height: 50px;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    background-size: 25px;
}
}


/*-pop video-*/

#hd .video-pop{
    position: fixed;
    background: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
    margin-top: 0;
}
#hd .video-pop .pop-main{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hd .video-pop .video{
    width: 70vw;
    margin: 3vw auto;
}
#hd .video-pop iframe{
    width: 100%;
    height: calc(70vw * 0.5625);
}
#hd .video-pop .btn-x{
    position: fixed;
    right: 30px;
    top: 30px;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: #444 url(../img/close-light.png) center no-repeat;
    background-size: 30px;
    transition: opacity 0.2s;
    opacity: 0.7;
}
#hd .video-pop .btn-x:hover{
    opacity: 1;
}

@media screen and (max-width: 768px) {
#hd .video-pop .video{
    width: 100vw;
}
#hd .video-pop iframe{
    height: calc(100vw * 0.5625);
}
}

