::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    overflow: auto;
}

::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    min-height: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

::-webkit-scrollbar-track {
    background-color: #f7f7f7;
    border: 1px solid #efefef;
}

* {
    scrollbar-color: #e6e6e6 #f7f7f7;
    scrollbar-width: thin;
}

#dialog_overlay {
    visibility: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 6000;
}

#dialog_bg,
#dialog_panel_bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

#dialog_panel_bg {
    display: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    border-radius: 3px;
}

#dialog_overlay.disbg {
    position: static;
}

#dialog_panel.dialog_modal {
    /*background:rgba(0,0,0,0.9);*/
    border: none;
    border-radius: 3px;
    color: #fff;
    box-shadow: none;
    padding: 5px 10px;
    position: fixed;
    z-index: 999;
}

#dialog_panel.dialog_modal.loading_modal {
    padding: 5px 10px;
    min-width: 0;
}

#dialog_panel.dialog_modal #dialog_panel_bg {
    display: block;
}

#dialog_panel {
    background-color: #F8F8F8;
    border: 1px solid #ddd;
    border-radius: 3px;
    left: 50%;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 45%;
    max-width: 90%;
}

#dialog_title {
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    border-radius: 3px 3px 0 0;
    color: #444;
    font-weight: bold;
    padding: 5px;
}

#dialog_content {
    padding: 15px 10px;
    min-width: 250px;
    font-size: 14px;
    color: #444;
    max-height: 360px;
    overflow: auto;
}

#dialog_panel.dialog_modal #dialog_content {
    color: #fff;
    text-align: center;
    min-width: 120px;
    position: relative;
}

#dialog_panel.dialog_modal.loading_modal #dialog_content {
    min-width: 20px;
    padding: 5px;
    overflow: unset;
}

#dialog_panel.dialog_modal.loading_modal #dialog_content .loading-tip {
    margin-top: 5px;
}

#dialog_panel.dialog_modal.loading_modal #dialog_content .close-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #000;
    border-radius: 32px;
    width: 19px;
    height: 19px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

#dialog_content>input {
    border: 1px solid #ddd;
    height: 28px;
    width: 100%;
}

#dialog_control {
    background-color: #f5f5f5;
    border-radius: 0 0 3px 3px;
    border-top: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
}

#dialog_control a {
    border-right: 1px solid #ddd;
    display: inline-block;
    height: 100%;
    margin-right: -1px;
    text-align: center;
    width: 50%;
    color: #444;
    cursor: pointer;
    font-size: 15px;
}

#dialog_control #dialog_ok {
    color: #428bca;
}

#dialog_control .col2 {
    border: none;
    margin: 0;
    width: 100%;
}

#dialog_content img {
    max-width: 220px;
    max-height: 220px;
}

#dialog_content .dialog_ul li {
    border-bottom: 1px solid #efefef;
    padding: 10px 0;
}

#dialog_content .dialog_ul li:last-child {
    border-bottom: none;
}

.dialog-input {
    border: 1px solid #ddd;
    height: 34px;
    line-height: 34px;
    width: 90%;
    padding: 0 5%;
    background: none;
}

.dialog-error-msg {
    color: #cc0000;
    margin-top: 10px;
}

/*progress*/
.dialog_progress #dialog_content {
    width: 150px;
    min-height: 150px;
    border-radius: 50%;
    min-width: 100px;
    line-height: 150px;
    font-size: 24px;
    padding: 0;
    color: #ff6600;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
    overflow: hidden;
}

.dialog_progress#dialog_panel {
    background: none;
    border: none;
}

/*跳转链接*/
#dialog_panel.dialog_gotoLink {
    border: none;
    border-radius: 20px;
}

.dialog_gotoLink #dialog_title {
    background: none;
    border: none;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
    color: #000;
}

.dialog_gotoLink #dialog_content {
    padding: 15px 40px;
    word-break: break-all;
    text-align: justify;
    max-height: 90%;
    max-width: 650px;
}

.dialog_gotoLink .iconfont {
    color: #4976e8;
    margin-right: 5px;
}

.dialog_gotoLink .goLink-tip {
    background: #f3f7ff;
    color: #333;
    border-radius: 3px;
    padding: 10px;
}

.dialog_gotoLink a {
    color: #4976e8;
    font-size: 12px;
}

.dialog_gotoLink #dialog_control {
    background: none;
    border: none;
    height: 80px;
}

.dialog_gotoLink #dialog_control #dialog_ok {
    background: #4976e8;
    width: 100px;
    color: #fff;
    height: 46px;
    line-height: 46px;
    border-radius: 46px;
    margin: 0 auto;
    display: block !important;
    box-shadow: 1px 1px 5px 2px rgb(73 118 232 / 40%);
}

.dialog_gotoLink #dialog_control #dialog_ok:hover {
    background: #3e66cb;
    text-decoration: none;
}

.new-dialog #dialog_title {
    background: none;
    border: none;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    font-size: 18px;
    padding: 15px 0;
    color: #06087A;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
}

.new-dialog#dialog_panel {
    border-radius: 15px;
    min-width: 300px;
    max-width: 50%;
}

.new-dialog #dialog_content {
    text-align: center;
    padding: 25px 20px;
    color: #737373;
    font-size: 13px;
}

.new-dialog #dialog_control {
    height: 60px;
    line-height: 60px;
    border: none;
    background: none;
    text-align: center;
    border-radius: 0 0 15px 15px;
    padding-bottom: 20px;
    border-radius: 0 0 10px 10px;
}

.new-dialog #dialog_control a {
    min-width: 70px;
    border: 1px solid #F4BF49;
    height: 36px;
    line-height: 36px;
    background: #06087A;
    color: #fff;
    border-radius: 10px;
    margin: 0 15px;
    float: none;
    display: block;
    font-size: 14px;
    width: auto;
    padding: 0 15px;
}

.new-dialog #dialog_control #dialog_ok {
    color: #fff;
}

.new-dialog #dialog_control #dialog_close {
    background: #fff;
    color: #06087A;
}

.new-dialog #dialog_control #dialog_close:hover {
    background: #06087A;
    color: #F4BF49;
}

.new-dialog #dialog_control #dialog_ok:hover {
    background: #F4BF49;
}

/*头像图片上传*/
.image-file-content {
    float: right;
    width: 365px;
    margin-top: 30px;
    position: relative;
}

.image-file-btn {
    background: #2f7cee;
    position: relative;
    height: 42px;
    line-height: 42px;
    width: 120px;
    border-radius: 3px;
    cursor: pointer;
    margin: 0;
}

.image-file-btn:hover {
    background: #447fd0;
}

.image-file-btn .image-file-txt {
    display: block !important;
    height: 100%;
    width: 100%;
    line-height: 42px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.image-file-btn input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-size: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    z-index: 1;
}

#clipArea {
    height: 300px;
}

#dialog_content #clipArea img {
    max-width: none;
    max-height: none;
}

.image-clip .image-file-txt.iconfont {
    font-size: 28px;
    line-height: 60px;
}

.image-clip .image-file-btn {
    width: 60px;
    border-radius: 60px;
    position: absolute;
    top: -65px;
    left: 50%;
    margin-left: -24px;
    height: 60px;
    line-height: 60px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a40efe+0,524ae0+100 */
    background: #a40efe;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #a40efe 0%, #524ae0 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #a40efe 0%, #524ae0 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #a40efe 0%, #524ae0 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a40efe', endColorstr='#524ae0', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.image-clip .image-file-btn:hover {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#524ae0+0,a40efe+100 */
    background: #524ae0;
    /* Old browsers */
    background: -moz-linear-gradient(45deg, #524ae0 0%, #a40efe 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #524ae0 0%, #a40efe 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #524ae0 0%, #a40efe 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#524ae0', endColorstr='#a40efe', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

@media screen and (max-width: 700px) {
    .image-file-content {
        width: 100%;
        float: none;
        margin-top: 30px;
        text-align: center;
    }

    .image-file-btn {
        margin: 0 auto;
    }
    
    .new-dialog#dialog_panel {
        max-width: 90%;
    }
}