* {
    box-sizing: border-box;
}
body {
    background: #262631;
}
.top-container {
    background: #fff;
    padding-bottom: 50px;
}
.top-container .pageContainer {
    background: #262631;
    padding-top: 10px;
    padding-bottom: 0;
}
.video-box {
    width: 880px;
    height: 495px;
    position: relative;
    margin: 0 auto;
}
.video-box video {
    width: 100%;
    height: 100%;
}
.video-icons {
    width: 100%;
    height: 65px;
    /* box-shadow: 0 -30px 30px -6px #000 inset; */
    background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(12,12,12,0.2) 31%,rgba(0,0,0,1) 100%);
    z-index: 1000;
    position: absolute;
    bottom: -1px;
    padding-top: 11px;
    font-size: 0;
}
.video-icons .progressBox {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, .3);
    position: relative;
}
.video-icons .progressBox .progressBar {
    width: 0%;
    height: 100%;
    background: #EE4F45;
}
.video-icons .progressBox .imgBox {
    width: 100%;
}
.imgBox .progressImg {
    display: inline-block;
    width: 6px;
    height: 10px;
    border-radius: 4px;
    background: #EE4F45;
    /* margin-left: 0;
    margin-top: -7px; */
    position: absolute;
    left: 0;
    top: -2px;
    cursor: pointer;
}
.video-icons .icons {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.video-icons .icons .icon-left, .video-icons .icons .icon-right {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.video-icons .icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.reload-btn, .bulm-btn {
    margin: 0 20px;
}
.progressTime {
    font-size: 14px;
    color: #fff;
}
.allTime {
    font-size: 14px;
    color: #999;
}
/* Fullscreen CSS */
  :-webkit-full-screen { 
    width: 100%; 
    height: 100%; 
    /* 360浏览器全屏后空白部分的背景色 */
    background: #000;   
  } 
:-moz-full-screen {  
  width: 100%; 
  height: 100%; 
  } 
:-ms-full-screen {  
    width: 100%; 
    height: 100%; 
}

:fullscreen { 
    width: 100%; 
    height: 100%; 
} 

/* styling the backdrop */ 
::backdrop { 
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: black;
}
.voice-control-box {
    width: 48px;
    height: 160px;
    position: absolute;
    left: 7px;
    bottom: 48px;
    display: none;
}
.voice-control {
    position: absolute;
    width: 45px;
    height: 132px;
    border-radius: 15px;
    background: rgba(0, 0, 0, .7);
    left: 0;
    bottom: 12px;
}
.voice-control .voice-bg {
    width: 5px;
    height: 105px;
    border-radius: 4px;
    margin: 14px 20px;
    background: rgba(255, 255, 255, .3);
    position: relative;
}
.voice-control .voice-bg .voice-color {
    width: 100%;
    height: 20%;
    border-radius: 4px;
    background: #EE4F45;
    position: absolute;
    bottom: 0;
    left: 0
}
.voice-control .voice-bg .voice-img {
    width: 9px;
    height: 9px;
    border-radius: 9px;
    background: #fff;
    position: absolute;
    left: -2px;
    top: 80%;
    margin-top: -2px;
    cursor: pointer;
}
.video-icons .icons .voice-btn {
    margin-left: 19px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url('../../../img/voice.png');
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover;
}
.voice-box {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: end;
}
.voice-box:hover .voice-control-box {
    display: block;
}
.voice-control-box:hover {
    display: block;
}
/* .voice-box:hover .voice-btn {
    background-image: url('../../../img/voice-color.png');
}
.voice-control-box:hover + .voice-btn {
    background-image: url('../../../img/voice-color.png');
} */