/*PC 布局框架相关样式*/
body {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    background-color: #F8FAFF;
}

html {
    height: 100%;
    box-sizing: border-box;
}
[v-cloak]{
    display: block;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

a, a:focus, a:hover {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
/*// 在填充数据之前隐藏*/
[v-cloak] {
    display: none;
}

/*页面主体*/
/*app-wrapper-》app-main-》app-container*/
.app-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.app-wrapper:after {
    content: "";
    display: table;
    clear: both;
}

.main-container {
    min-height: 100%;
    transition: margin-left .28s;
    position: relative;
    margin-left: 0px;
    margin: 48px auto;
    width: 90%;
    background-color: #fff;
    box-shadow: 0 4px 30px 0 rgba(223, 225, 230, 0.5);
}

.main-container.fixed-headerState {
    margin-top: 128px;
}

.app-container {
    padding: 20px 0;
}

/*头部区域*/
.logo-container {
    float: left;
    margin-right: 50px;
    line-height: 80px;
    height: 80px;
    font-size: 28px;
    color: #6190E8;
    font-weight: bold;
}

.logo-container img {
    vertical-align: middle;
    height: 65px;
}

.top-nav {
    float: left;
}

.top-nav .el-menu-item {
    height: 80px;
    min-height: 80px;
    line-height: 80px;
}

.jui-header {
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    box-shadow: 0 10px 60px 0 rgba(29, 29, 31, 0.07);
}

.jui-header .header-container {
    width: 90%;
    margin: 0 auto;
}

.jui-header .header-container .right-menu {
    float: right;
    height: 100%;
    line-height: 50px;
    padding-top: 8px;
}

.jui-header .header-container .right-menu:focus {
    outline: none;
}

.jui-header .header-container .right-menu .right-menu-item {
    display: inline-block;
    padding: 0 8px;
    height: 100%;
    font-size: 18px;
    color: #5a5e66;
    vertical-align: text-bottom;
}

.jui-header .header-container .right-menu .right-menu-item.hover-effect {
    cursor: pointer;
    transition: background 0.3s;
}

.jui-header .header-container .right-menu .right-menu-item.hover-effect:hover {
    background: rgba(0, 0, 0, 0.025);
}

.jui-header .header-container .right-menu .avatar-container {
    margin-right: 30px;
}

.jui-header .header-container .right-menu .avatar-container .avatar-wrapper {
    margin-top: 5px;
    position: relative;
}

.jui-header .header-container .right-menu .avatar-container .avatar-wrapper .el-icon-caret-bottom {
    cursor: pointer;
    position: absolute;
    right: -20px;
    top: 25px;
    font-size: 12px;
}

.fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    transition: width 0.28s;
}
/*汉堡包导航*/
.sidebar-container{
    margin: 32px 0;
}
.sidebar-container .el-menu-item:after{
        content: '';
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: #6190E8;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        box-shadow: 1px 0 12px 0 #6190E8;
      }
.sidebar-container .is-active.el-menu-item:after{ display: block; }

.sidebar-container .el-menu-item:focus,
.sidebar-container .el-menu-item:hover,
.sidebar-container .el-submenu__title:hover,
.sidebar-container .el-submenu .el-menu-item:hover,
.sidebar-container .submenu-title-noDropdown:hover,
.sidebar-container .nest-menu .el-submenu>.el-submenu__title:hover{
    background-color: #fbfcfe!important;
}


/*面包屑*/
.navbar {
    height: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 21, 41, .08);
}

.hamburger-container {
    line-height: 46px;
    height: 100%;
    color: #606266;
    float: left;
    cursor: pointer;
    transition: background .3s;
    -webkit-tap-highlight-color: transparent;
    padding: 0 15px;
    font-size: 22px;
}

.hamburger-container:hover {
    background: rgba(0, 0, 0, .025)
}

.hamburger {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.hamburger.is-active {
    transform: rotate(180deg);
}

.breadcrumb-container {
    float: left;
}

.breadcrumb-container .el-breadcrumb {
    line-height: 50px;
}

/*底部区域*/
.jui-footer {
    background-color: #fff;
    box-shadow: 0 4px 30px 0 rgba(223, 225, 230, 0.8);
    padding: 30px 0 30px;
    color: #6190E8;
    font-size: 14px;
}

.jui-footer .footer-container {
    width: 90%;
    margin: 0 auto;
}

.footer-container .footer-logo {
    float: left;
    width: 198px;
    height: 40px;
    background-image: url("../img/logo-f.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    margin: 10px 0 14px;
}

.footer-container .footer-nav {
    float: right;
    text-align: right;
    color: #909399;
    margin: 0;
}

.footer-container .footer-nav li {
    list-style: none;
    padding: 4px;
}

.footer-container .footer-copyright {
    clear: both;
}

/*列表*/
.filter-container {
    padding-bottom: 20px;
    text-align: right;
    display: inline-block;
    float: right;
}

.action-container {
    padding-bottom: 20px;
    display: inline-block;
}

.pagination-container {
    background: #fff;
    padding: 32px 16px;
}
