/*所有载入框架包含div*/
html,body{
    background-color: #ffffff !important;
}
/*logo*/
.layadmin-side-shrink .bf-logo-svg{
	display: none;
}
.layui-logo.bf-frame-logo{
    display: flex;
    align-items: center;
    height: 60px;
    box-shadow:0 1px 0 rgba(0,0,0,.15);
}
.bf-logo-svg{
    width: 160px;
    height: 40px;
    float: left;
    margin-left: 6px;
    margin-right: 10px;
    color: #dadada;
    margin-top: 5px;
}
.bf-logo-svg img{
    display: block;
    width: auto;
    height: 94%;
}
/*每个页面都带的class*/
.bf-page-body{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #ffffff;
    position: relative;
    height: 100%;
}
/*个人资料 -info.html*/
.bf-info-body .icon-erweima{
    display: block;
    height: 38px;
    width: 38px;
    line-height: 38px;
    font-size: 38px;
    cursor: pointer;
}
.bf-info-body .headimg_mark{
    width: 120px;
    height: 120px;
    position: relative;
}
.bf-info-body .headimg_mark img{
    display: block;
    width: 100%;
    height: 100%;
}
/*统一邮件系统 - email.html*/
.bf-email-body .layui-form-label{
    width: 100px;
}
.bf-email-body .email-box{
    min-width: 600px;
}
.bf-email-body .sendaddress-box
{
    min-width: 400px;
}

/*定时任务页面*/
.bf-task-body .tab-content{
    padding: 0;
}
.bf-task-body .bf-task-content{
    padding-top: 20px;
}
.bf-task-body .email-box{
    min-width: 600px;
}
.bf-task-body .bf-task-search-email{
    width: 405px;
    position: relative;
}

/*管理员列表页*/
.admin-headimg{
    width: 40px;
    height: 40px;
}
.admin-headimg img{
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

/* 使用伪类选择器 ::-webkit-scrollbar ,兼容chrome和safari浏览器 */
.note-slide-scroll::-webkit-scrollbar {
    width: 0 !important;
    background: transparent;
}
/* 兼容IE10+ */
.note-slide-scroll {
    -ms-overflow-style: none;
}
/* 但是firefox代码无效 */
.note-slide-scroll {
    overflow: -moz-scrollbars-none;
}

.note-side .note-layui-from{
    box-sizing: border-box;
    height: 110px;
    padding: 10px 10px 0px 10px;
}
.note-content{
    position: absolute;
    top: 10px;
    right: 10px;
    left: 330px;
    height: 100%;
    bottom: 40px;
    background-color: #e8e8e8;
    padding:0px 20px;
}
.note-content-top{
    width: 100%;
    height: 115px;
}
.note-content-title{
    width: 100%;
    padding: 15px 0px 15px 0px;
    box-sizing: border-box;
    font-size: 28px;
}
.note-content-desc{
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    border-bottom: 1px dashed #878787;
}
.note-content-time{
    display: block;
    float: left;
    font-size: 14px;
    color: #3d3d3d;
    line-height: 40px;
}
.note-content-btn-group{
    float: right;
}
#content{
    position: absolute;
    top: 115px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 20px 0px 10px;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}









/*************************layui的下拉select滚动条美化*************************/
.layui-anim-upbit::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

.layui-anim-upbit::-webkit-scrollbar-track-piece {
    margin-right: 10px;
    background-color: #EEE;
    -webkit-border-radius: 8px;
}

.layui-anim-upbit::-webkit-scrollbar-thumb:vertical {
    height: 8px;
    background-color: #DDD;
    -webkit-border-radius: 8px;
}

.layui-anim-upbit::-webkit-scrollbar-thumb:horizontal {
    width: 6px;
    background-color: #EEE;
    -webkit-border-radius: 8px;
}
/*************************笔记内容滚动条设置*************************/
#content::-webkit-scrollbar {
    width: 8px;
    height: 7px;
}
/*正常情况下滑块的样式*/
#content::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.1);
    border-radius: 10px;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
}
/*鼠标悬浮在该类指向的控件上时滑块的样式*/
#content:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2);
    border-radius: 10px;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
}
/*鼠标悬浮在滑块上时滑块的样式*/
#content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.3);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
}
/*正常时候的主干部分*/
#content::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0);
    background-color: #ffffff;
}
/*鼠标悬浮在滚动条上的主干部分*/
#content::-webkit-scrollbar-track:hover {
    box-shadow: inset 0 0 6px rgba(0,0,0,.4);
    background-color: rgba(255,255,255,1);
}

/*************************浏览器滚动条设置*************************/
body::-webkit-scrollbar {
    width: 8px;
    height: 7px;
}
/*正常情况下滑块的样式*/
body::-webkit-scrollbar-thumb {
    background-color: #d4d8d9;
    border-radius: 10px;
    box-shadow: inset 1px 1px 0 rgba(255,255,255,.1);
}
/*鼠标悬浮在该类指向的控件上时滑块的样式*/
body:hover::-webkit-scrollbar-thumb {
    background-color: #d4d8d9;
    border-radius: 10px;
    box-shadow: inset 1px 1px 4px rgba(0,0,0,.1);
}
/*鼠标悬浮在滑块上时滑块的样式*/
body::-webkit-scrollbar-thumb:hover {
    background-color: #d4d8d9;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
}
/*正常时候的主干部分*/
body::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0);
    background-color: #ffffff;
}
/*鼠标悬浮在滚动条上的主干部分*/
body::-webkit-scrollbar-track:hover {
    box-shadow: inset 0 0 6px rgba(0,0,0,.4);
    background-color: rgba(255,255,255,1);
}