* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", sans-serif;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    min-width: 1024px;
    background: #FAFAFA;
}

header {
    width: 100%;
    height: 60px;
    background: #AE0C2A;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.06);
}

header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center {
    width: 100%;
    padding: 0 40px;
}

header h4 {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}

.selectList {
    width: auto;
    height: 100%;
    position: relative;
    cursor: pointer;
    z-index: 99;
}

.selectList::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #fff;
    top: 24px;
    right: 0;
    position: absolute;
    transition: all .3s ease-in;
}

.userName {
    display: flex;
    width: auto;
    align-items: center;
}

.userName i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.userName i img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.selectList p {
    width: auto;
    line-height: 60px;
    font-size: 14px;
    color: #fff;
    padding: 0px 15px;
    padding-right: 30px;
}

.selectList ul {
    width: 100%;
    display: block;
    font-size: 20px;
    background: #FFFFFF;
    position: absolute;
    top: 60px;
    left: 0px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height .3s ease-in;
    background: #ffc6d1;
}

.selectList ul li a {
    width: 100%;
    padding: 15px;
    list-style: none;
    text-align: center;
    display: block;
}

.selectList ul li a {
    color: #333;
    font-size: 14px;
}

.selectList ul li:hover a {
    background: #AE0C2A;
    color: #fff;
}


/* 自定义 disabled 状态下的文字颜色 */

.readonlyMess input[disabled],
.readonlyMess select[disabled],
.readonlyMess textarea[disabled],
.readonlyMess input[readonly],
.readonlyMess input[disabled]:hover,
.readonlyMess select[disabled]:hover,
.readonlyMess textarea[disabled]:hover,
.readonlyMess input[readonly]:hover {
    color: #333!important;
    cursor: text!important;
    border: none!important;
    /* 设置为灰色 */
}

.readonlyMess .layui-select-title i {
    display: none;
}

.readonlyMess .chooseBtn,
.readonlyMess .attention {
    display: none;
}

@-webkit-keyframes slide-down {
    0% {
        transform: scale(1, 0);
    }
    25% {
        transform: scale(1, 1.2);
    }
    50% {
        transform: scale(1, 0.85);
    }
    75% {
        transform: scale(1, 1.05);
    }
    100% {
        transform: scale(1, 1);
    }
}

.selectList.open ul {
    max-height: 250px;
    transform-origin: 50% 0;
    -webkit-animation: slide-down .5s ease-in;
    transition: max-height .2s ease-in;
}

.selectList.open::after {
    transform: rotate(180deg);
    transition: all .3s ease-in;
    top: 24px;
}

.pageName {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 18px 0;
    margin-top: 8px;
}

.pageName h4 {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
}

main {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

aside {
    width: 260px;
}

article {
    flex: 1;
}

.sideNav {
    background: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 24px 20px;
}

.sideNav ul li>a {
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 20px;
    gap: 6px;
    font-size: 16px;
    color: #333333;
}

.sideNav ul li {
    position: relative;
}

.sideNav ul li::after {
    content: url('../images/icon-down.png');
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 16px;
}

.sideNav ul li:first-child::after {
    content: none;
}

.sideNav ul li.noAfter::after {
    content: none;
}

.sideNav ul li.active::after {
    content: url('../images/icon-downW.png');
}

.sideNav ul li.active>a {
    color: #fff;
    background: #AE0C2A;
}

.sideNav ul li {
    margin-bottom: 10px;
}

.sideNav ul li>a svg {
    stroke: #333333;
}

.sideNav ul li.active>a svg {
    stroke: #ffffff;
}

.sideNav ul li dl {
    margin-top: 10px;
    padding-left: 40px;
}

.sideNav ul li dd a {
    text-align: center;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    transition: 0.3s;
}

.sideNav ul li dd a::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border: 2px solid #666666;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

.sideNav ul li dd a.active::before,
.sideNav ul li dd a:hover::before {
    background: #AE0C2A;
    border-color: #AE0C2A;
    transition: 0.3s;
}

.sideNav ul li dd a.active,
.sideNav ul li dd a:hover {
    color: #AE0C2A;
    transition: 0.3s;
}

.sideNav ul li dl {
    display: none;
}

.schoolName {
    width: 100%;
    height: 90px;
    background: url(../images/schoolBg.png) no-repeat center/cover;
    border-radius: 6px;
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
}

.schoolName h4 {
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
}

.schoolName a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 88px;
    height: 26px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    font-size: 12px;
    color: #AE0C2A;
    transition: 0.3s;
}

.schoolName a:hover {
    background: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.pubMess {
    width: 100%;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.pubMess h4 {
    width: 100%;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    background: #F8F8F8;
    font-weight: bold;
    font-size: 16px;
    color: #AE0C2A;
}

.pubMessList {
    background: #fff;
    padding: 26px 20px;
    display: flex;
    gap: 14px 20px;
    flex-wrap: wrap;
}

.pubMessList a {
    flex: 0 0 calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    background: #AE0C2A;
    border-radius: 6px;
    font-size: 14px;
    color: #FFFFFF;
    transition: 0.3s;
}

.pubMessList a:hover {
    background: rgba(174, 12, 42, 0.9);
    transition: 0.3s;
}

.countNum {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.numItem {
    flex: 1;
    padding: 20px;
    background: url(../images/icon.png) no-repeat right bottom #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    border-bottom: 2px solid #AE0C2A;
}

.numItem:nth-child(2) {
    background-image: url(../images/icon2.png);
}

.numItem:nth-child(3) {
    background-image: url(../images/icon3.png);
}

.numItem:nth-child(4) {
    background-image: url(../images/icon4.png);
}

.numItem p {
    font-size: 14px;
    color: #333333;
}

.numItem h4 {
    font-weight: bold;
    font-size: 22px;
    color: #AE0C2A;
}

.numItem:nth-child(2) h4 {
    color: #E37900;
}

.numItem:nth-child(3) h4 {
    color: #0D53C6;
}

.numItem:nth-child(4) h4 {
    color: #06AB58;
}

.tableBox {
    margin-bottom: 30px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.tableBox h4 {
    height: 36px;
    background: #F8F8F8;
    line-height: 36px;
    padding: 0 24px;
    font-weight: bold;
    font-size: 16px;
    color: #AE0C2A;
}

.tabItem {
    background: #fff;
    padding: 20px;
}

.tabItem table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    overflow: hidden;
}

.tabItem table th,
.tabItem table td {
    padding: 14px 8px;
    line-height: 1.6;
    text-align: center;
    color: #333;
}

.tabItem table th {
    background-color: #F5F5F5;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
}

.tabItem table tr {
    background: #fff;
}

.tabItem table tr:nth-child(even) {
    background-color: #FAFAFA;
}

.tabItem table tr:hover {
    background-color: #FAFAFA;
}

.tabItem table tr td:nth-child(2) a {
    color: #1269FF;
}

.tabItem table td span.wtb {
    color: #333;
}

.tabItem table td span.ddsh {
    color: #E99700;
}

.tabItem table td span.ytb {
    color: #06AB58;
}

.tabItem table td:last-child span,
.tabItem table td:last-child a {
    background: rgba(174, 12, 42, 0.04);
    border-radius: 6px;
    padding: 2px 8px;
}

.tabItem table td:last-child .red {
    background: rgba(174, 12, 42, 0.04);
    border: 1px solid #AE0C2A;
    color: #AE0C2A;
}

.tabItem table td .gray {
    background: #E6E6E6;
}

.tabItem table td .green {
    background: rgba(6, 171, 88, 0.1);
    color: #06AB58;
}

.rightTit {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
}

.rightTitBox {
    margin-bottom: 18px;
    margin-top: -42px;
}

.jysxfb {
    background: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 40px 44px;
}

.layui-form-label {
    width: 130px;
    font-size: 14px;
    color: #666;
}

.layui-input-block {
    margin-left: 0;
    flex: 1;
}

.layui-form-item {
    display: flex;
    justify-content: flex-start;
    gap: 0 10px;
    margin-bottom: 20px;
}

article {
    margin-bottom: 40px;
}

.layui-flex {
    display: flex;
}

.baseMess .layui-form-label {
    width: 156px;
}

.baseMess,
.tzMess {
    background: #FFFFFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
}

.MessTit {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: -32px;
    margin-bottom: 20px;
}

.MessTit::before {
    content: "";
    width: 4px;
    height: 24px;
    background: #AE0C2A;
}

.baseMess .layui-form-label span.red {
    color: #AE0C2A;
}

.layui-form-text {
    display: block;
}

.layui-form-text .layui-form-label,
.layui-form-group .layui-form-label {
    text-align: left;
    width: auto;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    padding: 0;
    margin: 14px 0;
    position: relative;
    z-index: 2;
}

.layui-form-item input,
.layui-form-item textarea {
    background: #F7F7F7;
}

.rightTitBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.layui-form-progress {
    display: flex;
    align-items: center;
}

.layui-progress {
    width: 200px;
}

.layui-progress-label {
    font-size: 14px;
    color: #666;
}

.attention {
    font-size: 12px;
    color: #999999;
}

.uploadCon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}

.attent {
    font-weight: normal;
    font-size: 14px;
    color: #666;
}

.addBtn span {
    cursor: pointer;
}

.layui-form-group .layui-form-label {
    float: none;
}

.layui-form-group {
    display: flex;
    flex-direction: column;
}

.addFormGroup {
    align-items: center;
    display: flex;
    gap: 30px;
}

.addFormInp {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 80%;
}

.addFormGroupHid {
    display: none;
}

.counter {
    float: right;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    margin-right: 20px;
    font-size: 14px;
    color: #666666;
}

.textarea-counter {
    padding: 18px;
    padding-right: 90px;
    min-height: 130px;
}

.layui-form-radio>i {
    font-size: 16px;
}

.layui-form-radio {
    margin: 14px 10px 0 14px;
    line-height: normal;
}

.radioBox {
    width: 100%;
    background: #F7F7F7;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
}

.layui-radioBox {
    flex-direction: column;
}

.layui-radioBox .layui-form-label {
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 14px 0;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
}

.radioBox .layui-input-inline {
    flex: 0 0 calc(33.33%);
    margin-right: 0;
}

.radioBox .layui-input-inline div {
    color: #333;
}

.readonlyTitBox {
    display: flex;
    gap: 50px;
}

.readonlyMess .addFormGroup {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
}

.chooseBtn {
    background: rgba(18, 105, 255, 0.06);
    border: 1px solid #1269FF;
    color: #1269FF;
}

.readonlyMess .layui-upload-list {
    color: #1269FF;
    font-size: 14px;
    background: url(../images/icon-link.png) no-repeat 16px center #F4F7FF;
    padding: 4px 40px;
}

.chooseBtnRed {
    border: 1px solid #AE0C2A;
    background: rgba(174, 12, 42, 0.06);
    color: #AE0C2A;
}

.tableBg {
    background: #FFFFFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 30px;
}

.filterForm {
    margin: 20px 0;
    background: #F8F8F8;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    display: flex;
    gap: 20px;
}

.inputInlineBox {
    display: inline-block;
}

.filterForm .layui-btn+.layui-btn {
    margin-left: 0;
    background: rgba(174, 12, 42, 0.1);
    color: #AE0C2A;
}

.inputInlineBox {
    display: flex;
    align-items: center;
    gap: 6px;
}

#page {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.layui-laypage a,
.layui-laypage span {
    margin-bottom: 0;
}

.layui-table-view {
    margin: 0;
}

.layerBox {
    display: none;
}

article .layui-layer {
    border-radius: 6px;
    overflow: hidden;
}

article .layui-layer-title {
    border-top: 8px solid #AE0C2A;
    border-bottom: 0;
    height: auto;
    line-height: normal;
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    padding: 40px 0;
    text-align: center;
}

.layerBox .layui-time-flex {
    display: flex;
    align-items: center;
    gap: 18px;
}

article .layui-layer-page .layui-layer-content {
    padding: 0 70px 0 50px;
}

.layerBox .layui-form-label {
    width: 192px;
}

.layui-layer-setwin {
    background: url(../images/icon-close.png) no-repeat center/cover;
    right: 20px!important;
    top: 28px!important;
}

.layui-layer-setwin a {
    width: 30px!important;
    height: 30px!important;
    margin-left: 0!important;
}

.generalBtn {
    text-align: center;
    margin-top: 20px;
}

.layui-table-page {
    text-align: center;
    padding: 30px 0;
    height: auto;
}

.layui-table-page .layui-laypage a {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.layui-table-page .layui-laypage span.layui-laypage-spr {
    margin-left: 10px;
    margin-right: 10px;
}

.layui-table-page .layui-laypage span.layui-laypage-curr .layui-laypage-em {
    border-radius: 0;
}

.layui-table-page .layui-laypage span.layui-laypage-curr {
    border: 1px solid #AE0C2A;
}

article .layui-table-view {
    border: none;
}

.layui-table td,
.layui-table th {
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
}

.layui-table td {
    height: 56px;
}

.layui-table th {
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    color: #5C5C5C;
}

.layui-table tr:hover {
    background: rgba(18, 105, 255, 0.06)!important;
}

.layui-table-tips-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.layui-table-tips-c:before {
    right: initial;
}

.toolitem {
    font-size: 14px;
    color: #1269FF;
    background: url(../images/icon-see.png) no-repeat left center;
    padding-left: 20px;
    padding-right: 6px;
}

.layui-table-cell {
    padding: 0 6px;
}

.toolitem:nth-child(2) {
    background-image: url(../images/icon-edit.png);
}

.toolitem:nth-child(3) {
    background-image: url(../images/icon-del.png);
}

.toolitem:nth-child(4) {
    background-image: url(../images/icon-copy.png);
}

th .layui-table-cell {
    font-weight: bold;
    font-size: 14px;
    color: #5C5C5C;
}

th:last-child {
    text-align: center;
}

td .layui-table-cell {
    color: #333333;
    font-size: 14px;
}

td .laytable-cell-1-0-1,
td .laytable-cell-1-0-2,
td .laytable-cell-1-0-3 {
    color: #1269FF;
}

.laytable-cell-1-0-0 {
    width: 80px!important;
}

.laytable-cell-1-0-3 {
    width: 240px;
}

.laytable-cell-1-0-2 {
    width: 220px!important;
}

.layui-table-view .layui-table {
    width: 100%;
}

.laytable-cell-1-0-4 {
    width: 100px!important;
    text-align: center;
}

.layui-laydate .layui-this {
    background-color: #AE0C2A!important;
}

.posInp {
    position: relative;
}

.timePos input {
    padding-left: 50px;
}

.posInp b {
    font-size: 14px;
    color: #333333;
    position: absolute;
    font-style: normal;
    position: absolute;
    right: 30px;
    top: 10px;
}

.posInp i.iconTime {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: 16px;
    top: 9px;
    background: url(../images/icon-time.png) no-repeat center/cover;
}

.TableTimePos i.iconTime {
    left: auto;
    right: 16px;
}

.layui-time-flex input {
    background: url(../images/icon-time.png) calc(100% - 20px) center no-repeat;
}

@media (max-width: 1200px) {
    .tabItem table {
        overflow-x: auto;
        white-space: nowrap;
    }
    .center {
        padding: 0 20px;
    }
    main {
        gap: 15px;
    }
}