/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-family:SourceHanSansSC-regular;
    font-weight:400;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html{
    touch-action: none;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
i{
    font-style: normal;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


textarea,input{
    outline: none;
}

button{
    outline: none;
}

.z-video-no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.scrollbar::-webkit-scrollbar { /*滚动条整体样式*/
    width: 5px; 
    height: 1px;
}


.scrollbar::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 5px;
    background: rgb(158, 156, 156);
}

.scrollbar::-webkit-scrollbar-track { /*滚动条里面轨道*/
    border-radius: 5px;
    background: rgb(82, 78, 78);
}
.z-video{
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    min-height: 100px;
}
#z-video.full{
    width: 100%!important;
    height: auto!important;
}
.z-video-container{
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
}

.z-video-control{
    background-color: rgba(0,0,0, 0.68);
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
    height: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 99;
    transition: all .2s ease;
    box-shadow: 0px 2px 2px 0px #5f5f5f inset;
    padding-bottom: 0;
}
.z-video-control .z-video-control-item{
    display: none;
}
.z-progress{
  position: absolute;
    width: 100%;
    height: 35px;
    background-color: transparent;
    top: -20px;
    left: 0;
    z-index: 99;
}
.z-progress-line{
    width: 0;
    height: 4px;
    background-image: linear-gradient(45deg, #174a06, #85ff43);
}
.z-progress-bar{
    display: none;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #fff;
    top: 14px;
    left: -20px;
   box-shadow: 0 0 0px 4px rgba(55,191,0, 0.3);
}

.z-progress-bar.active{
    width: 13px;
    height: 13px;
    top: 11px;
}
.z-progress-bar.no{
    transition: none
}

.z-video-control.active{
    height: 45px;
    padding-bottom: 15px;
}
.z-video-control.active .z-video-control-item{
    display: block;
}
.z-video-control.active .z-progress{
    top: -17px;
}

.z-video-control.active .z-progress-line{
    height: 2px;
}

.z-video-control.active .z-progress-bar{
    display: block;
}

.z-video-control > div{
    display: flex;
    align-items: center;
}
.z-video-control .iconfont{
    color: #cecbcb;
    cursor: pointer;
    transition: all .2s ease;
}
.z-video-control .iconfont:hover{
    color: #fff;
}
.z-video-control .z-play-pause{
    font-size: 30px;
    position: relative;
    top: 5px;
}
.z-video-control .z-video-prev{
    font-size: 22px;
    margin-left: 25px;
}   
.z-video-control .z-video-next{
    font-size: 22px;
    margin-left: 10px;
}
.z-video-time{
    color: #cecbcb;
    margin-left: 25px;
}

.z-video-control .z-video-voice{
    font-size: 22px;
    margin-right: 20px;
}
.z-video-control .icon-guanbishengyin{
    font-size: 18px;
}
.z-video-control .z-video-full{
    font-size: 20px;
    margin-right: 20px;
}
.z-video-control .z-video-list{
    font-size: 22px;
    position: relative;
    top: -2px;
}

/**播放列表*/
.z-video-list-content{
    position: absolute;
    width: 245px;
    height: calc(100% - 60px);
    right: 0;
    top: 0;
    background-color: rgba(31,31,31, 0.68);
    z-index: 9;
    color: #e0e0e0;
    transition: width .2s ease;
}
.z-video-list-box{
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 39px);
    box-shadow: -2px -3px 7px -4px #000 inset;
}
.z-video-play-title{
    line-height: 40px;
    overflow: hidden;
    height: 40px;
    background-color: rgba(72,72,72, 0.81);
    box-shadow: -2px 3px 7px -4px #000;
    font-size: 15px;
}
.z-video-item{
    line-height: 30px;
    overflow: hidden;
    height: 30px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 13px;
    padding: 0 10px;
    width: calc(100% - 15px);
    display: inline-block;
    text-overflow: ellipsis;
    transition: all .05s ease-in;
    position: relative;
}
.z-video-item:hover{
    background-color: rgba(72,72,72, 0.81);
}
.z-video-item.active::before{
    content: '';
    width: 4px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: #8ef755;
    border-radius: 0 20px 20px 0;
}

.z-video-item.error{
    color: #f56c6c;
}
.z-video-item.error::before{
 background-color: #f56c6c;
}


.z-video .z-video-error,
.z-video .z-video-loading{
    position: absolute;
   top: 40%;
    left: 50%;
    z-index: 9;
    color: #6d6d6d;
    display: none;
    transform: translate(-50%, -50%);
}
.z-video .z-video-loading{
    color: #c1f372;
    font-size: 3em;
    animation:turn 500ms linear infinite;      
}

.z-video .z-video-error::before{
    font-size: 3em;
    display: flex;
    flex-direction: column;
}
.z-video .z-video-error{
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.z-video .z-video-message{
    height: 35px;
    line-height: 35px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: absolute;
    width: 100%;
    top: -35px;
    display:block ;
    transition: all .5s ease-in-out;
}

.z-video .z-video-message.success{
    background-color: #f0f9eb;
    color: #67c23a;
    top: 0;
}

.z-video .z-video-message.error{
    background-color: #fef0f0;
    color: #f56c6c;
    top: 0;
}
/* 音乐盘子 */


.z-video-pan{
    position: absolute;
    top: 42%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: black;
    border: 20px solid #1b1b1bdb;  
}

.z-video .z-video-audio{
    position: absolute;
    top: 29%;
    left: 29%;
    z-index: 99;
    color: #495f40;
    font-size: 4em;
}

.z-video-pan-circle{
    position: absolute;
    top: 50%;
    left: 50%;  
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #141514;
}
.z-video-pan-circle.c-1{border-color:#162916;}
.z-video-pan-circle.c-2{border-color:#162916;}
.z-video-pan-circle.c-3{border-color:#162916;}
.z-video-pan-circle.c-4{width: 180px;height: 180px}
.z-video-pan-circle.c-5{width: 175px;height: 175px}
.z-video-pan-circle.c-6{width: 169px;height: 169px}
.z-video-pan-circle.c-7{width: 160px;height: 160px}
.z-video-pan-circle.c-8{width: 155px;height: 155px}
.z-video-pan-circle.c-9{width: 150px;height: 150px}
.z-video-pan-circle.c-10{width: 145px;height: 145px}
.z-video-pan-circle.c-11{width: 140px;height: 140px}
.z-video-pan-circle.c-12{width: 138px;height: 138px}
.z-video-pan-circle.c-13{width: 132px;height: 132px}
.z-video-pan-circle.c-14{width: 125px;height: 125px}
.z-video-pan-circle.c-15{width: 120px;height: 120px}


.z-video-pan.play .z-video-audio{
  animation: turn 4s linear infinite;
}
.z-video-pan.play .c-1{
 animation: cricle 2s ease-in-out infinite;
}
.z-video-pan.play .c-2{
animation-delay: 2s; animation: cricle 4s ease-in-out infinite;
}
.z-video-pan.play .c-3{
 animation-delay: 4s; animation: cricle 7s ease-in-out infinite;
}




@keyframes turn{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}

@keyframes cricle{
    0%{
        width: 0px;
        height: 0px;
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

