@charset "utf-8";
html{
    background-color: #eef2f5;
}

.content-section{
    min-width: 1420px;
    padding-bottom: 30px;
}
.left-section{width: 200px;}
/* .right-section{width: 1200px;padding: 20px 0 0 20px;} */
.right-section{width: 1200px;padding-top: 20px;}

/* 头部 */

.logo-div{text-align: center;pointer-events: none;}
.logo-div>img{display: inline-block;width: 113px;vertical-align: middle;}

.header-right-div{
    padding-top: 0;
    color: #666;
}
.header-right-div>h3{float: left;font-size: 18px;font-weight: bold;}

.header-right-div>button{color: #666;}
.user-info-div{
    position: relative;
    float: right;
}

.user-info-div>a{margin-left: 24px;}
.user-info-div>span{
    position: relative;
    display: inline-block;
    margin-left: 24px;
}
.user-info-div>span>img{
    display: inline-block;
    width: 19px;
    vertical-align: middle;
}
.user-info-div>span>label{
    
    z-index: 10;
    position: absolute;
    right: -10px;
    top: 15px;
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    border-radius: 50%;
    background-color: #FF5B5B;
    color: #fff;
    text-align: center;
    opacity: 0;
}

.user-header{display: inline-block;
    margin-left: 24px;
    font-size: 14px;
    border-left: 1px solid #E5E5E5;
}
.user-header>img{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #e5e5e5;
    opacity: 0;
}
.user-header>button{
    display: inline-block;
    margin-left: 10px;
    color: #017EE4;
}

.btn-type-1{
    display: inline-block;
    width: 71px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #017EE4;
    color: #017EE4;
    text-align: center;
    border-radius: 13px;
}
.btn-type-1:hover{
    color: #017EE4;
}
.btn-type-2{
    display: inline-block;
    width: 71px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #017EE4;
    color: #fff;
    background-color: #017EE4;
    text-align: center;
    border-radius: 13px;
}
.btn-type-2:hover{
    color: #fff;
}


/* 菜单 */
.menu-div{
    z-index: 20;
    position: fixed;
    box-sizing: border-box;
    padding-top: 20px;
    height: 100vh;
    /* background-color: #1B253F; */
    background-color: #fff;
    user-select: none;
    overflow-y: auto;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.menu-div::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
}
 
/*定义滚动条轨道 内阴影+圆角*/
.menu-div::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 0px;
    background-color: #F5F5F5;
}
 
/*定义滑块 内阴影+圆角*/
.menu-div::-webkit-scrollbar-thumb
{
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #cdcdcd;
}
.menu-list{
    /* padding-top: 20px; */
    font-size: 14px;
    color: #333;
    /* color:#C0D0EB */
}
.menu-list a{
    display: block;
    height: 33px;
    line-height: 33px;
    padding-left: 20px;
    font-size: 14px;
    /* color:#C0D0EB; */
    color: #666;
}
.menu-list a:hover{
    color:#017EE4
}

.menu-title{
    padding-left: 20px;
    height: 33px;
    line-height: 33px;
    cursor: pointer;
    background-image: url(../../images/personalCenter/menu/arrow.png);
    background-position: 90% center;
    background-size: 8px;
    background-repeat: no-repeat;
}
.menu-title:hover{
    color: #017EE4;
}
.menu-title.has-down{
    background-image: url(../../images/personalCenter/menu/arrow-active.png);
    background-size: 14px;
}
.menu-title>img{
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: -2px;
}
.menu-level-2 .menu-title,.menu-level-2 .menu-item{
    padding-left: 40px;
}
.menu-level-3 .menu-title,.menu-level-3 .menu-item{
    padding-left: 60px;
}
.menu-list>li.active>.menu-title{
    position: relative;
    /* color: #fff; */
    color: #017EE4;
    
}
.menu-list>li.active>.menu-item{
    position: relative;
    background-color: #f7f7f7;
    /* background-color: #313E61; */
}
.menu-list>li.active>.menu-item::before{
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    background-color: #017EE4;
}
.menu-list>li.active>a{
    color: #017EE4;
}
.menu-item>img{
    display: inline-block;
    width: 14px;
    /* height: 14px; */
    margin-right: 8px;
    vertical-align: -2px;
}
.menu-list .menu-list{
    display: none;
}
.menu-list>li.active>.menu-list{
    display: block;
}

.panel-shadow{
    background-color: #fff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}


.checkbox-ele{
    display: inline-block;
    user-select: none;
    color: #666;
}
.checkbox-ele>input{
    display: none;
}
.checkbox-ele>span{
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    margin-right: 5px;
    background-color: #FFFFFF;
    border: 1px solid #999999;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    vertical-align: -3px;
}
.checkbox-ele>span::before{
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -4px;
    background-color:transparent;
    border-radius: 2px;
}
.checkbox-ele.active>span::before{
    background-color: #007DE4;
}

.select-ele{
    display: inline-block;
}
.input-ele{
    box-sizing: border-box;
    padding: 0 10px;
    height: 32px;
    font-size: 12px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
}

/* 面包屑 */
.breadcrumb-div{
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 18px;
    color: #666;
    border-bottom: 1px solid #DBE2E9;
}

.breadcrumb-div>span.active{
    color: #333;
}
.breadcrumb-div>span:last-child{
    color: #333;
}
.breadcrumb-div>a{
    color: #666;
}

.breadcrumb-operate-div{
    float: right;
}
.breadcrumb-operate-div>button{
    display: inline-block;
    width: 96px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    border: 1px solid #DBE2E9;
    border-radius: 6px;
}

.bread{
    width: 100%;
    height: 41px;
    border-bottom: 2px solid #DBE2E9;
    margin-bottom: 29px;
    margin-top: 20px;
}
.bread>span{
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
}
.bread >img{
    display: inline-block;
    margin: 0 4px;
}


.btn-common-style-1{
    display: inline-block;
    font-size: 14px;
    border-radius: 3px;
    background-color: #007DE4;
    color: #fff;
}

.btn-common-style-2{
    display: inline-block;
    font-size: 14px;
    border-radius: 3px;
    background-color: #DFF1FF;
    color: #007DE4;
}
.btn-common-style-3{
    display: inline-block;
    font-size: 14px;
    border-radius: 3px;
    background-color: #fff;
    color: #007DE4;
}




textarea::-webkit-input-placeholder,input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #C4C4C4;
}



/* 右侧导航 */

.nav-right-section{
    z-index: 100;
    position: fixed;
    right: 18px;
    bottom: 300px;
}
.nav-right-section button.kefu-btn{
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: #37A1FD;
    background-image: url(../../images/personalCenter/common/kefu.png);
    background-repeat: no-repeat;
    background-size: 34px;
    background-position: center;
}


.nav-right-section .customer-service-div{
    z-index: 10;
    position: absolute;
    top: 0;
    right: 60px;
    width: 185px;
    height: 0px;
    background-color: #fff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.5s;
}
.nav-right-section .customer-service-div.active{
    opacity: 1;
    height: auto;
    transform: translateY(0px);
}


.customer-service-div .title-div{
    padding: 20px 0 0;
    background-color: #37A1FD;
    text-align: center;
}

.customer-service-div .title-div>img{
    display: inline-block;
    width: 34px;
    vertical-align: middle;
}
.customer-service-div .title-div>div{
    display: inline-block;
    font-size: 12px;
    margin-left: 10px;
    color: #fff;
    vertical-align: middle;
}

.customer-service-div .title-div>div>h3{
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.nav-right-section .service-info{
    position: relative;
    padding-top: 24px;
    padding-bottom: 20px;
    overflow: hidden;
    text-align: center;
}
.nav-right-section .service-info::before{
    z-index: 10;
    position: absolute;
    left: 50%;
    top: -427px;
    content: '';
    display: block;
    width: 450px;
    height: 450px;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #37A1FD;
}
.nav-right-section .service-info>h4{
    font-size: 12px;
    margin-top: 15px;
    color: #b2b2b2;
    font-weight: 400;
}
.nav-right-section .service-info>p{
    font-size: 12px;
    margin: 10px 0;
    color: #696969;
}
.nav-right-section .service-info>div{
    height: 1px;
    margin: 0 10px;
    background-color: #f1f1f1;
}

/* 覆盖layui */

div.layui-layer-btn .layui-layer-btn0{
    background-color: #007DE4;
    border-color: #007DE4;
}



/* 引导覆盖 */
.user-info-div>*{
    pointer-events: none !important;
}
.breadcrumb-div>a{
    pointer-events: none !important;
}


.menu-list>li>a{
    pointer-events: none;
}
.menu-list>li.active>a{
    pointer-events: all;
}

.none-event-ele{
    pointer-events: none;
}