html {
    margin: 0 !important;
}

main,
.entry-content {
    margin: 0 !important;
}

body .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

::-webkit-scrollbar {
    width: 6px;
    /*滚动条宽度*/
    height: 6px;
    background-color: #ebeef5;
    /*滚动条高度*/
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(144, 147, 153, 0.2);
    /*滚动条的背景区域的内阴影*/
    border-radius: 3px;
    /*滚动条的背景区域的圆角*/
    background: rgba(255, 255, 255, 1);
    /*滚动条的背景颜色*/
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(144, 147, 153, .3);
    /*滚动条的内阴影*/
    background-color: rgba(144, 147, 153, .3);
    /*滚动条的背景颜色*/
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(144, 147, 153, .5);
}

.entry-content {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto !important;
    padding: 0;
    height: 100%;
    background-color: #fafafa;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-column {
    flex-flow: column;
}

.flex-center-start {
    justify-content: flex-start;
}

.flex-center-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bgpublice {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*-------------------------头部-----------------------------*/
.school-header {
    width: 100%;
    height: 120px;
    background: #fff;
    margin-bottom: 16px;
}

.school-header .header-main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-header .logo {
    width: 331px;
    margin-left: 37px;
}

.school-header .header-right {
    display: flex;
    align-items: center;
    margin-right: 58px;
}

.school-header .header-right .name {
    font-size: 16px;
    color: #48494B;
    margin-right: 25px;
}

.school-header .header-right .head {
    width: 48px;
    height: 48px;
    background: #F1E0E0;
    border-radius: 37px;
    opacity: 1;
    border-image: linear-gradient(270deg, rgba(160, 148, 104, 1), rgba(201, 190, 126, 1)) 1 1;
}

.school-header .header-right .head img {
    border-radius: 37px;
    width: 100%;
}

/*-------------------------侧边栏-----------------------------*/
.is-layout-constrained .school-admin {
    max-width: 100%;
    width: 100%;
    display: flex;
    height: calc(100% - 130px);
    margin: 0;
}

/*侧边导航*/
.navigation {
    width: 180px;
    height: 100%;
    background: #fff;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    flex: 1;
    position: relative;
    margin-right: 16PX;
}

.navigation .logo-text {
    width: 100%;
    margin: 29px 0 65px;
    text-align: center;
}

.navigation .logo-text img {
    width: 109px;
}

.navigation ul {
    margin: 0;
    padding: 0;
}

.navigation ul li {
    list-style: none;
    width: 100%;
    height: 80px;
    text-align: center;
}

.navigation ul li.active {
    background: #A09468;
    color: #E4DACA;
}

.navigation ul li img {
    width: 24px;
    height: 24px;
    margin-right: 20px;
}

.navigation ul li a {
    font-size: 18px;
    color: #A09468;
    text-decoration: none;
    width: 100%;
    height: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.navigation ul li.active a {
    color: #e4daca;
}

.navigation ul li:hover a {
    font-weight: bold;
}

.navigation ul li a span {
    display: inline-block;
    width: 75px;
}

.navigation .logo-bottom {
    position: absolute;
    bottom: 46px;
    left: 0;
    width: 100%;
    text-align: center;
}

.navigation .logo-bottom img {
    width: 50px;
    margin-bottom: 0;
}

.navigation .logo-bottom div {
    color: #DCBD8D;
    font-size: 12px;
}


/*-------------------------主体内容-----------------------------*/
.school-right {
    width: calc(100% - 196px);
    background-color: #Fff;
}

.right-main {
    padding: 31px 36px;
}

.right-main h2 {
    color: #17171C;
    font-size: 20px;
}

/*搜索表单*/
.right-main .search-form {
    margin: 28px 0 60px;
}

.search-form .layui-form {
    display: flex;
    justify-content: space-between;
}

.search-form .layui-col-form {
    display: flex;
    flex: 1;
}

.layui-col-zdy {
    margin-right: 60px;
}

.layui-col-zdy:last-child {
    margin-right: 0;
}

.search-form .layui-input-wrap {
    border-radius: 4px;
    max-width: 260px;
}

.search-form .layui-input:focus,
.search-form .layui-textarea:focus {
    border-color: #46220E !important;
    box-shadow: none;
    border-radius: 4px;
}

.search-form .layui-inpu {
    border-radius: 4px;
}

.search-form .layui-btn-container {
    margin-left: 132px;
}

.search-form .layui-btn-container .layui-btn {
    width: 119px;
    background: #A09468;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

.search-form .layui-btn.layui-btn-primary {
    background: rgba(153, 153, 153, 0.5);
}

.search-form .layui-btn.layui-btn-primary:hover {
    border-color: rgba(153, 153, 153, 0.5);
}

.search-form .border-height {
    height: 1px;
    width: 100%;
    background: #F7F8FA;
    margin: 19px 0 42px;
}

/*导入导出按钮*/
.tool-button {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.tool-button .title {
    font-size: 20px;
    color: #17171C;
    font-weight: bold;
    margin-right: 10px;
}

.tool-button button {
    margin-right: 10px;
    font-size: 12px;
    color: #Fff;
    width: 94px;
    height: 32px;
    background: #384261;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tool-button .layui-btn-zdy-right {
    border-radius: 4px;
    border: 1px solid #3E977D;
    color: #3E977D;
    background: #fff;
}

.tool-button button i {
    margin-right: 5px;
}

.tool-button .layui-btn-zdy-left i {
    transform: rotate(180deg);
}

/*表格*/
.layui-table-view .layui-table th,
.layui-table-view .layui-table td {
    border-color: transparent;
}

.layui-table-view .layui-table th {
    background: #F7F8FA;
    font-weight: normal;
    color: #333;
    font-size: 14px;
}

.layui-table-view .layui-table td {
    border-bottom: 1px solid #F7F8FA;
    color: #4C4F64;
}

.layui-table-view .layui-table td .layui-table-cell {
    padding: 15px;
    height: auto;
}

.table-zdy .layui-form {
    border: none;
}

.layui-table-column {
    padding: 25px 16px;
}

.click-edit {
    color: #5762C3;
    cursor: pointer;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #384261 !important;
}

.layui-laypage a:hover {
    color: #4756E0 !important;
}

/**layui open 样式**/
.style-open-zdy .layui-layer-btn {
    background: #f9f9f9;
}

.style-open-zdy .layui-layer-content .content-open {
    font-size: 16px;
    padding: 20px;
}

.style-open-zdy .layui-layer-title {
    font-size: 16px;
}

.style-open-zdy .layui-layer-btn .layui-layer-btn0,
.style-open-zdy .layui-layer-btn a {
    background-color: #384261;
    border-radius: 4px;
    color: #fff;
}

/**layui 表单样式**/

/*登录模块相关*/
.user-login {
    max-width: 768px;
    height: 100%;
    overflow: hidden;
}

.user-login h2 {
    font-size: 18px;
    color: #A09468;
    text-align: center;
    margin: 24px 0 48px;
    font-weight: normal;
}

.user-login .layui-form {
    margin: 24px;
}

.login-main .layui-form-main {
    margin: 0;
}

.login-main .layui-form-item {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    margin: 0 0 24px;
    overflow: hidden;
}

.login-main .bottom-m-no {
    margin-bottom: 0;
}

.login-main .item-bottom {
    display: flex;
    justify-content: space-between;
    flex-flow: nowrap;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;

}

.login-main .item-bottom a {
    color: #A09468;
}

.login-main .item-bottom .forget {
    margin-left: auto;
    color: #4756E0;
}

.login-main .layui-form-login {
    margin-bottom: 100px;
    width: 100%;
}

.login-main .layui-form-label {
    width: auto;
    float: none;
    text-align: left;
    padding: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.login-main .layui-input-block {
    margin: 0;
    line-height: inherit;
}

.login-main .layui-form-login .layui-input-block {
    width: 100%;
    margin: 0 auto;
}

.login-main .layui-form-login .layui-login-register {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.login-main .layui-input {
    height: 50px;
    background: #FFFFFF;
    border-radius: 50px;
    border: 1px solid rgba(160, 148, 104, 0.5);
    padding-left: 20px;
}

.login-main .layui-input:focus,
.login-main .layui-textarea:focus {
    border-color: #A09468 !important;
    box-shadow: none;
}

.login-main .layui-form-danger:focus {
    border-color: red !important;
}

.login-main .layui-input-block .vercode-right {
    position: absolute;
    right: 15px;
    top: 0;
    height: 50px;
    color: #A09468;
    font-size: 14px;
    z-index: 11;
    display: flex;
    align-items: center;
}

.login-main .layui-input-block .vercode-right b {
    font-weight: normal;
}

.login-main .layui-input-suffix {
    right: 15px;
}

.login-main .layui-input-block .vercode-right span {
    display: inline-block;
    margin-right: 15px;
    margin-top: -2px;
}

.login-main .layui-input-block .vercode-right.disabled {
    color: #999;
}

.login-main .layui-input-affix {
    line-height: 50px;
}

.login-main .layui-btn {
    width: 100%;
    height: 54px;
    line-height: 54px;
    background: linear-gradient(270deg, #A09468 0%, #C9BE7E 100%);
    border-radius: 57px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 3px;
}

.login-main #register {
    background: #fff;
    color: #C9BE7E;
    border: 1px solid #C9BE7E;
    margin: 0;
    margin-top: 15px;
}

.login-main #register a {
    color: #C9BE7E;
}

/**tabs切换***/
.tabs-filter {
    cursor: pointer;
    margin-bottom: 40px;
    display: flex;
    font-size: 16px;
    color: #000;
}

.tabs-filter .filter-item.active {
    color: #A09468;
}

.tabs-filter .filter-item {
    margin-right: 30px;
}

/**加载**/
.mx-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.63);
}

.mx-loading .loading-main {
    width: 150px;
    height: 175px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}

.mx-loading .loading-image {
    width: 60px;
    height: 60px;
}

.mx-loading .loading-text {
    font-size: 15px;
}

.mx-loading .loading1 {
    margin: 0 auto;
}

.mx-loading .three {
    padding: 20px 0;
}

.mx-loading .loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
    background-color: #fff;
    background-image: url(https://oss.mucha.cn/wp-content/uploads/2023/12/20231214060240983.png);
    background-repeat: no-repeat;
    background-position: 50% 40%;
    background-size: 60%;
}

.mx-loading #loader-1:before,
.mx-loading #loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 10px solid transparent;
    border-top-color: #359583;
    opacity: 0.8;
}

.mx-loading #loader-1:before {
    z-index: 100;
    animation: loading-spin 1s infinite;
}

.mx-loading #loader-1:after {
    border: 10px solid #f5f5f5;
}

@keyframes loading-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**暂无数据***/
.empty {
    width: 100%;
    height: 200px;
    text-align: center;
    margin: 50px 0;
    display: none;
}

.empty img {
    width: 80px;
}

.empty .text {
    margin-top: 30px;
    font-size: 14px;
    color: #979797;
}
