/*重置css*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0
}

/* 初始化标签在所有浏览器中的margin、padding值 */

fieldset,
img {
    border: 0 none
}


/* 重置fieldset（表单分组）、图片的边框为0*/

dl,
ul,
ol,
menu,
li {
    list-style: none
}

* {
    box-sizing: border-box;
}

a {
    color: #333333;
}

a:hover {
    color: #409eff;
}

/*内容*/
main.content {
    width: 100%;
    height: 100vh;
    padding: 0;
}

.ui-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 15px;
}

.ui-content {
    width: 100%;
    height: 100%;
    flex: 1;
    margin-left: 16px;
}

.ui-main {
    background: #FFFFFF;
    height: calc(100% - 66px);
    overflow-y: hidden;
    overflow-x: hidden;
    margin-top: 16px;
}

.ui-body {
    background-color: #FFFFFF;
}

/*滚动条整体样式,高宽分别对应横竖滚动条的尺寸*/
.ui-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    scrollbar-arrow-color: #898989;
}

/*滚动条里面小方块*/
.ui-body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #E0E1E3;
    scrollbar-arrow-color: #898989;
}

/*滚动条里面轨道*/
.ui-body::-webkit-scrollbar-track {
    border-radius: 0;
    background: transparent;
}

/*
*
*
*
左侧菜单栏 */
.sidebar-section {
    background: #FFFFFF;
    height: 100%;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: width .3s ease;
    width: 260px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: #FCFCFC;
    padding: 0 20px;
    font-weight: 600;
    font-size: 16px;
}

.sidebar-logo img {
    width: 40px;
    height: 40px;
}

.sidebar-ul {
    background: #FFFFFF;
    height: calc(100% - 50px);
    overflow-y: auto;
}

.sidebar-menu .sidebar-item {
    padding-left: 30px;
}

.sidebar-ul .sidebar-item .sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    line-height: 56px;
    font-size: 14px;
    padding: 0 20px;
    cursor: pointer;
}

.sidebar-menu {
    /*display: none;*/
}

.sidebar-menu .sidebar-item .sidebar-title {
    height: 50px;
    line-height: 50px;
}

.sidebar-ul .sidebar-item .sidebar-title .name {
    display: flex;
    align-items: center;
}

.sidebar-ul .sidebar-item .sidebar-title .name i {
    margin-right: 8px;
    width: 22px;
    text-align: center;
    font-size: 20px;
}

.sidebar-ul .sidebar-item.active {
    background-color: rgba(64, 158, 255, 0.12);
}

.sidebar-ul .sidebar-item.active .sidebar-title .name {
    color: #409eff;
}

.pull-right-container {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
}

/*
*
*
*
头部 */
.header-section {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: center;
}

.header-nav .nav-item {
    padding: 0 30px;
    font-size: 14px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
}

.header-nav .nav-item .fa {
    margin-left: 5px;
}

#header-navbar {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.panel-body {
    padding-top: 60px;
}

/*
标题
*/
.tabs-head {
    height: 60px;
    line-height: 60px;
    color: #333333;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #409eff;
}

.tabs-head .tabinfo {
    font-size: 16px;
}

.tabs-head .tabmore {
    font-size: 14px;
}

.tabs-head:after {
    content: " ";
    width: 0px;
    height: 40px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #409eff;
    border-radius: 5px;
}


/*
*
*
表格信息
*/
.data-table {
    padding: 30px 0;
}

.datalist {
    width: 100%;
}

.datalist th, .datalist td {
    border: 1px solid #F6F6F6;
}

.datalist .table-tbody tr:hover {
    background-color: #F6F8FA;
}

.datalist .thead-title {
    font-size: 14px;
    color: #909399;
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: center;
}