* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*scrollbar*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track-piece {
    background-color: #181a1d;
    margin: -2px;
}

::-webkit-scrollbar-thumb {
    background: #4b525d;
    min-height: 10px;
    min-width: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background: #41464e
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background: #41464e
}

body {
    margin: 0px;
    background: #1b1d1f;
}

.toast-wrap {
    position: relative;
    z-index: 10051;
}


/*首页 header*/

.biaozhu-wrap.index-wrap .header {
    border-top: 3px solid #2f85e9;
}

/*media 最少1024*/

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1024px) {

}

/*modal styles*/
.modal-wrap .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10050;
    display: none;
    outline: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-wrap .modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    width: 400px;

}

.modal-wrap .modal-content {
    position: relative;
    background-color: #edf1f3;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-wrap .modal .modal-header {
    padding: 30px;
    border-bottom: none;
}

.modal-wrap .modal .modal-header button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    margin-top: -2px;
    float: right;
    font-weight: 700;
    line-height: 1;
    color: #878787;
    outline: none;
}

.modal-wrap .modal .modal-header button.close .icon-del {
    font-size: 20px;
}

.modal-wrap .modal .modal-body {
    padding: 0 30px;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    position: relative;
}

.modal-wrap .modal .modal-body p.body-hint {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.modal-wrap .modal .modal-footer {
    text-align: center;
    border-top: 0;
    padding: 0 15px 50px 15px;
}

.modal-wrap .modal .modal-footer .btn,
.modal .modal-footer .el-button {
    width: 160px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    margin-left: 5px;
    outline: none;
    cursor: pointer;
}

.modal-wrap .modal .modal-footer .btn,
.modal .modal-footer .el-button:first-child {
    margin-right: 10px;
}

.modal-wrap .modal .btn-primary {
    border: none;
    transition: all 0.3s;
    color: #fff;
    background-color: #135fd1;
    background: -webkit-linear-gradient(left, #135fd1 0%, #2680e7 100%);
}

.modal-wrap .modal .btn-primary:hover {
    background-color: #2f85e9;
    background: -webkit-linear-gradient(left, #2f85e9 0%, #2f85e9 100%);
}

.modal-wrap .modal .btn-default {
    color: #333;
    background: none;
    border: 1px solid transparent;
    border-color: #888;
}

.modal-wrap .modal .btn-default:hover {
    border: 1px solid #2f85e9;
    color: #2f85e9;
}

/*Toast Styles*/
.toast-wrap {
    transition: opacity 1s
}

.toast-wrap .alert {
    border-radius: 0;
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    padding: 0;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    z-index: 10051;
    border: none;
    transition: opacity 1s
}

.toast-wrap .alert i {
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
}
.toast-wrap .alert .close {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.toast-wrap .alert.alert-warn {
    background: #efaf1e;
    color: #fff;
    border-color: #efaf1e;
}

.toast-wrap .alert.alert-danger {
    color: #fff;
    background-color: #e8534f;
    background: -webkit-linear-gradient(left, #e8534f 32%, #fc806b 100%);
}

.toast-wrap .alert.alert-success {
    color: #fff;
    background-color: #00b39c;
    background: -webkit-linear-gradient(left, #00b39c 32%, #00b1b3 100%);
}

.toast-wrap .alert.alert-blue {
    color: #fff;
    background-color: #135fd1;
    background: -webkit-linear-gradient(left, #135fd1, 32%, #135fd1 100%);
}

.notifier-wrap {
    transition: opacity 1s ease;
}

.notifier-wrap .top-warning-dialog {
    z-index: 10051;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 700px;
    max-width: 100%;
    padding: 14px 20px;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

@media (max-width: 700px) {
    .notifier-wrap .top-warning-dialog {
        min-width: 345px;
        font-size: 14px;
    }
}

.notifier-wrap .top-warning-dialog.notifier-danger {
    background-color: #dd5756;
}

.notifier-wrap .top-warning-dialog i {
    font-weight: bolder;
    vertical-align: middle;
    margin-right: 10px;
}

.notifier-wrap .top-warning-dialog .close-notifer {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 12px;
    cursor: pointer;
}

/* vue框架加载未完成时，页面loading样式 */
.page-loading.el-loading-mask {
    position: absolute;
    z-index: 2000;
    background-color:#000000e6;
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity .3s;
}
.page-loading .el-loading-spinner {
    top: 50%;
    margin-top: -21px;
    width: 100%;
    text-align: center;
    position: absolute;
}
.page-loading .el-loading-spinner .circular {
    height: 42px;
    width: 42px;
    animation: loading-rotate 2s linear infinite;
}
.page-loading .el-loading-spinner .path {
    animation: loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90,150;
    stroke-dashoffset: 0;
    stroke-width: 2;
    stroke: #409eff;
    stroke-linecap: round;
}