/*引入字体包*/
@font-face {
    font-family: SourceHanSansCN;
    src: url('../fonts/SourceHanSansCN-Regular.otf');
    font-weight: 400;
}
@font-face {
    font-family: SourceHanSansCN;
    src: url('../fonts/SourceHanSansCN-Medium.otf');
    font-weight: 500;
}
@font-face {
    font-family: SourceHanSansCN;
    src: url('../fonts/SourceHanSansCN-Light.otf');
    font-weight: 300;
}
@font-face {
    font-family: SourceHanSansCN;
    src: url('../fonts/SourceHanSansCN-Bold.otf');
    font-weight: 600;
}

html,body{
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    font-family: SourceHanSansCN,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol !important;
}
body{
    min-width: 1280px;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background: #b01c19;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: #f5f5f5;
}
.el-button--danger.is-plain{
    color: #BA2926!important;
    border-color:#BA2926!important;
    background: rgba(186, 41, 38, 0.05) !important;
}
.el-button--danger.is-plain:focus, .el-button--danger.is-plain:hover{
    color: #ffffff !important;
    background:#BA2926!important;
}
.el-button--danger{
    background:  #BA2926 !important;
}
.el-button--danger.is-disabled{
    background:  #C8C9CC !important;
    border-color: #C8C9CC !important;
}
.video-js .vjs-progress-holder{
 height: 1.2em;
}
.video-js .vjs-play-progress:before {
    font-size: 2.5em;
    line-height: .5em;
}
.vjs-control-bar{
    align-items: center;
    height: 4em !important;
}
.vjs-button>.vjs-icon-placeholder:before{
    font-size: 2.3em;
}
.video-js .vjs-time-control{
    font-size: 1.2em;
    line-height: 3.5em;
}
.vjs-tooltip{
    position: absolute;
    bottom: 38px;
    pointer-events: none;
    left: 2px;
    z-index: 10;
    padding: 8px 20px;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
}

.el-pagination.is-background .el-pager li:not(.disabled).active{
    background-color: #B50413!important;
}
.el-pagination.is-background .btn-prev{
    background-color: #ffffff !important;
}

.el-pagination.is-background .btn-next{
    background-color: #ffffff !important;
}
.el-pagination.is-background .el-pager li {
    background-color: #ffffff !important;
    box-sizing: border-box;
    border: 1px solid #DBDBDB;
    color: #606266;
}
.el-pagination.is-background .el-pager li:hover {
    color: #B50413 !important;
}

.el-pagination.is-background .el-pager li.active:hover{
    color: #ffffff!important;
}
#loading-model{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0,0,0,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
}
.loading-model-box{
    text-align: center;
}
.loading-spring{
    width: 30px;
    height: 30px;
    border: 2px solid #419EFB;
    margin: 0 auto;
    border-top-color: transparent;
    border-radius: 100%;
    animation: circle infinite 0.75s linear;
}
.loading-tip{
    margin-top: 10px;
    display: block;
    color: #419EFB;
}
@keyframes circle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
