body,html{
    width: 100%;
    height: 100%;
}
.header{
    height: 70px;
    width: 100%;
    background-color: #4f77aa;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.02);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.side{
    float: left;
    width: 250px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    padding-top: 70px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}
.content{
    height: 100%;
    width: 100%;
    background: #f8f8f8;
    box-sizing: border-box;
    padding-left: 250px;
    padding-top: 70px;
}

/********* header *********/
.logo{
    float: left;
    height: 100%;
    vertical-align: middle;
    line-height: 70px;
    margin-left: 20px;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}
.logo img{
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 4px;
}
.header-right{
    float: right;
    height: 100%;
}
.nav{
    float: left;
    height: 100%;
}
@media screen and (max-width: 1250px) {
    .nav{
        display: none;
    }
}
.nav ul{
    height: 100%;
}
.nav li{
    float: left;
    height: 100%;
    margin-left: 8px;
}
.nav li a{
    display: block;
    height: 100%;
    width: auto;
    color: #ffffff;
    padding: 13px 20px 0 20px;
    box-sizing: border-box;
    text-align: center;
}
.nav li p{
    opacity: 0.8;
    font-size: 16px;
}
.nav li:hover{
    background-color: #476b99;
}
.nav li:hover p{
    opacity: 1;
}
.nav li.active{
    background-color: #476b99;
}
.nav li.active p{
    opacity: 1;
}
.nav li div{
    position: relative;
}
.nav li div span{
    position: absolute;
    right: 13px;
    top: -7px;
    width: 8px;
    height: 8px;
    background-color: #dc4040;
    border-radius: 50%;
    display: none;
}
.nav li.unread-msg div span{
    display: block;
}

.search{
    float: left;
    width: 180px;
    height: 70px;
    position: relative;
    box-sizing: border-box;
    padding: 18px 0;
    margin-left: 40px;
    margin-right: 18px;
}
.search input{
    display: block;
    height: 30px;
    box-sizing: border-box;
    outline: none;
    border: none;
    background: #4a70a0;
    border-radius: 4px;
    padding-left: 34px;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
}
.search input::placeholder{
    color: #e3e7ee;
}
.search input::-moz-placeholder{
    color: #e3e7ee;
}
.search input::-webkit-input-placeholder{
    color: #e3e7ee;
}
.search input::-ms-input-placeholder{
    color: #e3e7ee;
}
.search img{
    position: absolute;
    width: 16px;
    height: 16px;
    left: 8px;
    top: 50%;
    margin-top: -8px;
}
.login{
    float: left;
    margin-right: 20px;
    position: relative;
}
.login-btn{
    height: 100%;
    line-height: 70px;
    cursor: pointer;
}
.login-btn>img{
    width: 23px;
    height: 22px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}
/* 个人信息弹框 */
.login-person-info{
    width: 328px;
    height: 170px;
    position: absolute;
    top: 63px;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0px 8px 32px 0px rgba(27, 33, 45, 0.14);
    z-index: 20;
}
.login-person-info::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: absolute;
    right: 4px;
    top: -8px;
}
.person-info-name{
    font-size: 24px;
    color: #262626;
    height: 65px;
    line-height: 65px;
    box-sizing: border-box;
    padding: 0 24px;
}
.person-info-intro{
    height: 36px;
    color: #8c8c8c;
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 24px;
}
.person-info-operate{
    height: 68px;
    box-sizing: border-box;
    border-top: 1px solid #e6e6e6;
    padding: 15px 0;
    text-align: center;
}
.person-info-operate button:last-of-type{
    margin-right: 0;
}
/********* header *********/

/********* side *********/
.side-title{
    width: 100%;
    height: 72px;
    line-height: 72px;
    font-size: 14px;
    color: #8c8c8c;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}
.side-title h2{
    font-size: 14px;
    font-weight: normal;
}
.side-title span{
    position: absolute;
    width: 50px;
    height: 2px;
    background: #f2f2f2;
    top: 50%;
    margin-top: -1px;
}
.side-title span.line-left{
    left: 32px;
}
.side-title span.line-right{
    right: 32px;
}
.menus{
    width: 100%;
    padding-top: 18px;
}
.menu-item{
    line-height: 60px;
    font-size: 16px;
    color: #595959;
    position: relative;
}
.menu-tab{
    width: 100%;
    height: 60px;
    cursor: pointer;
    overflow: hidden;
}
.menu_item_icon{
    float: left;
    width: 72px;
    height: 100%;
    padding-left: 37px;
    box-sizing: border-box;
}
.menu_item_icon img{
    vertical-align: middle;
    position: relative;
    top: -2px;
}
.menu_item_title{
    float: left;
    position: relative;
    font-size: 16px;
    color: #595959;
    font-weight: normal;
    width: 160px;
}
.menu_item_title img{
    position: absolute;
    width: 8px;
    height: 6px;
    right: 10px;
    top: 50%;
    margin-top: -3px;
}
.menu-content{
    width: 100%;
    display: none;
}
.menu-content li{
    height: 60px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 72px;
    border-right: 4px solid #ffffff;
    cursor: pointer;
}
.menu-content li.active,.menu-content li:hover{
    color: #2170d9;
    background: #eff5fc;
    border-right: 4px solid #2170d9;
}
.menu-item.active .menu-content{
    display: block;
}
.toggle{
    height: 48px;
    box-sizing: border-box;
    border-top: 1px solid #ebebeb;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}
.toggle div{
    height: 100%;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.toggle div img{
    position: absolute;
    right: 20px;
    top: 50%;
    width: 6px;
    height: 12px;
    margin-top: -6px;
}
.fold-btn{
    display: none;
}

/*收起的样式*/
.fold{
    width: 96px;
    overflow: inherit;
}
.fold .side-title span{
    display: none;
}
.fold .menus{
    width: 96px;
}
.fold .menu-item.active .menu-tab{
    width: 346px;
    box-shadow: 0 0 16px 0 rgba(27, 33, 45, 0.14);
}
.fold .menu-item.active .menu-tab .menu_item_icon {
    width: 96px;
    padding-left: 0;
    text-align: center;
}
.fold .menus .menu_item_title{
    display: none;
}
.fold .menus .menu_item_title img{
    display: none;
}

.fold .menu-item.active .menu_item_title{
    display: block;
    background: #ffffff;
    width: 250px;
    box-sizing: border-box;
    padding-left: 20px;
}
.fold .menus .menu-content{
    width: 250px;
    background: #ffffff;
    position: absolute;
    left: 96px;
    top: 60px;
    box-shadow: 0 8px 8px 0 rgba(27, 33, 45, 0.14);
}
.fold .fold-btn{
    display: block;
}
.fold .unfold-btn{
    display: none;
}
.fold .toggle{
    position: absolute;
    left: 0;
    bottom: 0;
}

/********* side *********/

/********* content *********/
.main-top{
    background: #ffffff;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
    box-sizing: border-box;
    line-height: 40px;
    color: #2170d9;
    font-size: 14px;
}
.main-top img{
    vertical-align: baseline;
    position: relative;
    top: 1px;
}
.tab-home{
    width: 93px;
    position: relative;
    box-sizing: border-box;
    padding-left: 18px;
    cursor: pointer;
    float: left;
}
.tab-home img{
    margin-right: 10px;
}
.tab-home i{
    display: block;
    width: 1px;
    height: 15px;
    background-color: #f1f1f1;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
}
.main-tabs {
    float: left;
}
.main-tabs li{
    float: left;
    padding: 0 20px 0 5px;
    position: relative;
    color: #595959;
    cursor: pointer;
    margin-left: 8px;
}
.main-tabs li p{
    padding: 0 8px;
}
.main-tabs li .main-tabs-close{
    height: 100%;
    width: 16px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
}
.main-tabs li .main-tabs-close img{
    top: 0;
}
.main-tabs li.active{
    color: #2170d9;
}
.main-tabs li.active span{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #2170d9;
}
.main-tabs li:hover{
    color: #2170d9;
}
.main-warp{
    padding: 20px 20px 0 20px;
    width: 100%;
    height: calc(100% - 40px);
    box-sizing: border-box;
}
.main-content{
    width: 100%;
    height: 100%;
    background: #ffffff;
}
.main-search{
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 24px;
}
.main-content-warp{
    width: 1035px;
    float: right;
}
.more-button{
    height: 44px;
    outline: none;
    display: inline-block;
    width: 44px;
    border: none;
    background: none;
    text-align: center;
    cursor: pointer;
}
.more-button .sx_sq{
    display: none;
}
.more-button .active .sx_sq{
    display: block;
}
.more-button .active .sx_xl{
    display: none;
}
.main-btns{
    height: 68px;
    padding: 16px 0 0 24px;
    position: relative;
    box-sizing: border-box;
    text-align: left;
    width: 100%;
}


.customize{
    width: 72px;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    text-align: center;
    border-left: 1px solid #e6e6e6;
    right: 0;
    top: 0;
    cursor: pointer;
}
.customize img{
    position: absolute;
    width: 18px;
    height: 18px;
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -9px;
}
.customize-hover-img{
    display: none;
    z-index: 10;
}
.main-btns .customize:hover .customize-hover-img{
    display: block;
}
.customize-dialog-warp {
    position: absolute;
    right: 0;
    top: 78px;
    width: 528px;
    height: 320px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.13);
    z-index: 10;
}
.customize-dialog-warp .customize-title{
    font-size: 14px;
    color: #262626;
    height: 70px;
    box-sizing: border-box;
    border-bottom: 1px solid #e6e6e6;
    line-height: 70px;
    text-align: left;
    text-indent: 24px;
}
/* 测试的自定义内容 */
.customize-content ul{
    box-sizing: border-box;
    padding: 13px 0;
}
.customize-content li{
    float: left;
    height: 44px;
    line-height: 44px;
    width: 33.33%;
    text-align: left;
    text-indent: 22px;
}
.customize-content li span{
    margin-left: 4px;
}
.customize-operate{
    text-align: right;
    height: 50px;
    border-top: 1px solid #e6e6e6;
    box-sizing: border-box;
    padding-right: 20px;
}
.customize-operate button{
    display: inline-block;
    height: 100%;
    padding: 0 20px;
    color: #2170d9;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}

.table-warp{
    width: 100%;
    height: calc(100% - 275px);
    position: relative;
}
.table-warp>div{
    height: 100%;
}
/********* content *********/
.logo img{
    display: none;
}
.nav li{
    position: relative;
}

.nav-more{
    width: 72px;
}

