input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.aui-bar-nav {
    height: 35px;
    line-height: 35px;
    min-height: 35px;
}

.aui-title {
    height: 35px;
    line-height: 35px;
}

.aui-bar-nav .aui-btn {
    height: 45px;
}

.column {
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
    box-sizing: border-box;
    flex-direction: column;
}

.row {
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0px;
    height: 5px;
}


/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}


/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(#0570db, 0.4);
}

html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
    width: 100%;
}

.page {
    width: 100%;
    height: 100%;
}

.page.page-has-header .main-box {
    height: calc(100% - 35px);
    overflow-x: hidden;
    overflow-y: auto;
}

.page.page-has-header.page-has-footer .main-box {
    height: calc(100% - 100px);
}

.page header .aui-title {
    height: 100%;
    min-height: 100%;
}

.web-body {
    height: 100%;
    width: 100%;
}

.web-content {
    height: calc(100% - 2.25rem);
    overflow-y: auto;
}

.web-list {
    background: #f2f2f2;
}

.web-item {
    background: #ffffff;
    margin-bottom: .5rem;
}

.web-item-title {
    min-height: 2rem;
    line-height: 1.2rem;
    align-items: center;
    padding: .3rem .75rem;
    border-bottom: 1px solid #F2F2F2;
    z-index: 2;
}

.web-item-content {
    padding: .5rem .75rem;
    align-items: center;
    min-height: 3rem;
    flex-wrap: wrap;
    z-index: 2;
}

.web-item-footer {
    min-height: 2rem;
    padding: 0 .75rem;
    z-index: 2;
}

.web-dividing-line {
    height: 1px;
    border-bottom: 1px solid #F2F2F2;
    z-index: 2;
}

.web-item-circle-btn {
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 50%;
    background: var(--text-color);
    color: #fff;
    align-items: center;
    justify-content: center;
}

input.web-item-input {
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    padding: 0 10px;
    font-size: .7rem;
    border: 1px solid #f2f2f2;
    border-radius: .2rem;
}

select.web-item-select {
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    padding: 0 10px;
    font-size: .7rem;
    border: 1px solid #f2f2f2;
    border-radius: .2rem;
}

.align-item-left {
    align-items: flex-start!important;
}

.align-item-center {
    align-items: center!important;
}

.items-right {
    align-items: flex-end!important;
}

.justify-content-center {
    justify-content: center!important;
}

.justify-content-left {
    justify-content: flex-start!important;
}

.justify-content-right {
    justify-content: flex-end!important;
}

.justify-content-space-between {
    justify-content: space-between!important;
}

.web-dialog {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 10000;
}

.web-dialog-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #fff;
}

.web-dialog-box-header {
    height: 2rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #F2F2F2;
    padding: 0 .5rem;
}

.web-dialog-box-content {
    height: calc(100% - 2rem);
}

.web-dialog-search {
    height: 3rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 .5rem;
}

.web-dialog-search>div:first-child {
    width: calc(100% - 3.5rem);
}

.web-item-btn {
    height: 2rem;
    width: 3rem;
    border-radius: .2rem;
    align-items: center;
    justify-content: center;
    background: var(--text-color);
    color: #ffffff;
}

.web-full-btn {
    height: 2rem;
    width: 100%;
    border-radius: .2rem;
    align-items: center;
    justify-content: center;
    background: var(--text-color);
    color: #ffffff;
}

.web-dialog-box .teacher-box {
    height: calc(100% - 3rem);
    width: 100%;
    overflow: auto;
}

.web-dialog-box .teacher-item {
    height: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 .5rem;
    border-bottom: 1px solid #F2F2F2;
}

.web-dialog-box .teacher-item.active {
    background: var(--text-color);
    color: #ffffff;
}

.graphi_module_txt {
    line-height: 1.4rem;
    font-size: .65rem;
}


/* Author：mingyuhisoft@163.com
 * Github:https://github.com/imingyu/jquery.mloading
 * Npm:npm install jquery.mloading.js
 * Date：2016-7-4
 */

.mloading-container {
    position: relative;
    min-height: 70px;
    -webkit-transition: height 0.6s ease-in-out;
    -o-transition: height 0.6s ease-in-out;
    transition: height 0.6s ease-in-out;
}

.mloading {
    position: absolute;
    background: #E9E9E8;
    font: normal 12px/22px "Microsoft Yahei", "微软雅黑", "宋体";
    display: none;
    z-index: 1600;
    background: rgba(233, 233, 232, 0);
}

.mloading.active {
    display: block;
}

.mloading.mloading-mask {
    background: rgba(233, 233, 232, 0.75);
    filter: progid: DXImageTransform.Microsoft.Alpha(opacity=75);
}

.mloading-full {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.mloading-container>.mloading {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.mloading-body {
    width: 100%;
    height: 100%;
    position: relative;
}

.mloading-bar {
    width: 250px;
    min-height: 22px;
    text-align: center;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27);
    border-radius: 7px;
    padding: 20px 15px;
    font-size: 14px;
    color: #999;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -140px;
    margin-top: -30px;
    word-break: break-all;
    justify-content: center;
    align-items: center;
}

@media (max-width: 300px) {
    .mloading-bar {
        width: 62px;
        height: 56px;
        margin-left: -30px !important;
        margin-top: -30px !important;
        padding: 0;
        line-height: 56px;
    }
    .mloading-bar>.mloading-text {
        display: none;
    }
}

.mloading-bar-sm {
    width: 62px;
    height: 56px;
    margin-left: -30px !important;
    margin-top: -30px !important;
    padding: 0;
    line-height: 56px;
}

.mloading-bar-sm>.mloading-text {
    display: none;
}

.mloading-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.mloading-text {
    margin-left: 10px;
}

.scroll-box {
    overflow-y: auto;
}

.status-item {
    justify-content: space-around;
    background: #f8f8f8;
}

.status-item>* {
    background: #f8f8f8;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    height: 2rem;
}

.status-item>*.aui-active {
    background: #f8f8f8;
}

.web-tab {
    padding: 0;
    margin: 0;
    border-bottom: 0;
}

.web-tab>* {
    flex-grow: 1;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f2f2f2;
}

.web-tab>.active {
    color: var(--text-color);
    border-bottom: 2px solid var(--text-color);
}

.web-tab-items>* {
    display: none;
}

.web-tab-items>.active {
    display: flex;
}

.web-select-item {
    flex-grow: 0;
    align-items: center;
    justify-content: center;
    padding: .2rem .5rem;
    background: #eeeeee;
    border-radius: 6px;
    margin: .2rem;
}

.web-select-item.select {
    background: var(--text-color);
    color: #ffffff;
}

.keyboard {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 260px;
    background: #f2f2f2;
    padding: .2rem;
    justify-content: space-between;
    display: none;
}

.keyboard.keyboard-show {
    display: flex;
}

.keyboard>div {
    width: 23.5%;
    height: 100%;
    justify-content: space-between;
}

.keyboard>div>span {
    width: 100%;
    border-radius: 6px;
    background: #fff;
    justify-content: center;
    align-items: center;
    height: 23.5%;
}

.keyboard>div span.finish-item {
    height: 49%;
}

.keyboard-input-div.active>div>div {
    /*border: 2px solid orange;*/
    background: skyblue;
    color: #fff !important;
}

.keyboard-input-div.active input {
    color: #fff;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.web-bars {
    flex-wrap: wrap;
}

.web-bars:nth-child(2n + 1) {
    background: #ffffff;
}

.web-bars:nth-child(2n) {
    background: #f8f8f8;
}

.web-bars:nth-child(2n) .web-bar-item {
    background: #f8f8f8;
}

.web-bar-item {
    width: auto;
    padding: 0 .5rem;
    min-width: 15%;
    height: 2rem;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.form-control-upper {
    width: 35%;
    margin: 0 auto;
}

.form-control-upper>.form-control {
    color: #FFF!important;
    text-align: center;
    margin-top: -3px!important;
}

.form-control-midday {
    width: 49%;
    height: 1.8rem;
    line-height: 2rem;
}

.web-components {
    align-items: center;
    justify-content: center;
}

.web-number-components {
    border: 1px solid #999999;
    border-radius: 6px;
    height: 42px;
    width: 140px !important;
    justify-content: space-between;
}

div.web-number-components>div {
    width: 50px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

div.web-number-components>div:nth-child(2) {
    width: 50px;
    border-right: 1px solid #999999;
    border-left: 1px solid #999999;
}

.model {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.model_box {
    position: fixed;
    background: #fff;
}

.model_title {
    height: 4rem;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
    padding: .5rem .75rem;
    margin: 0;
}

.model_content {
    height: calc(100% - 8rem);
    margin: 0;
}

.model .model_footer {
    align-items: center;
    border-top: 1px solid #F2F2F2;
    height: 4rem;
    padding: .5rem .75rem;
    margin: 0;
}

.fit {
    height: 100%;
    width: 100%;
}

.score_type {
    align-items: center;
    justify-content: center;
    width: 100%;
}

.score_type_list {
    width: 100%;
}

.score_type_list.has_more {
    width: calc(100% - 60px);
}

.score_type_list .aui-tab-item {
    overflow: hidden;
}

.score_type_more {
    width: 60px;
    height: 24px;
    border-left: 1px solid #eeeeee;
    align-items: center;
    justify-content: center;
}

.score_type_select {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    justify-content: flex-end;
    z-index: 100;
    background: rgba(0, 0, 0, .5);
}

.score_type_select_panel {
    height: 70%;
    width: 100%;
    background: #ffffff;
    box-shadow: 2px 0 4px #666;
    overflow: hidden;
}

.score_type_select_header {
    height: 50px;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.score_type_select_cancel {
    background: #eeeeee;
    padding: 5px 15px;
    border-radius: 6px;
}

.score_type_select_list {
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: auto;
}

.score_type_select_item {
    height: 50px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eeeeee;
}

.score_type_select_item.aui-active {
    background: var(--text-color);
    color: #ffffff;
    cursor: pointer;
}

.page_body {
    height: calc(100% - 35px);
    background: #ffffff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.roll_call_semester>div {
    width: 100%;
}

.roll_call_semester_title {
    height: 50px;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    padding: 0 10px;
}

.roll_call_semester_main>div {
    height: 64px;
    width: 25%;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eeeeee;
}

.roll_call_header>div span:first-child {
    color: #999;
}

.roll_call_header>div:last-child {
    border-right: none;
}

.roll_call_panel {
    height: calc(100% - 114px);
}

.page_body .date_show {
    height: 70px;
    align-items: center;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    padding: 0 10px;
}

.page_body .date_show i {
    font-size: 36px;
    color: #ccc;
}

.page_body .date_show>div {
    align-items: center;
    justify-content: center;
}

.page_body .date_show>div:nth-child(2) {
    width: calc(100% - 80px);
}

.page_body .date_show>div:first-child,
.section_box>div:last-child {
    width: 40px;
}

.roll_call_box {
    height: calc(100% - 100px);
    overflow: hidden;
    overflow-y: auto;
}

.roll_call_item {
    height: 50px;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #eeeeee;
}

.roll_call_item>div:first-child {
    margin-right: 20px;
    color: #666;
}

.roll_call_item>div:last-child {
    color: var(--text-color);
}

.roll_call_item>div.abnormal {
    color: red;
}

.roll_call_tip {
    color: #FB0202;
    padding: 10px;
}

.h_calendar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 100;
}

.h_calendar_panel {
    justify-content: flex-end;
    max-width: 640px;
    margin: auto;
}

.h_calendar_box {
    background: #ffffff;
    box-shadow: 4px 0 4px #999999;
}

.h_calendar_header {
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #eeeeee;
}

.h_calendar_btn {
    width: 60px;
    font-size: 20px;
    justify-content: space-between;
}

.h_calendar_btn>div:first-child {
    margin-top: 9px;
}

.h_calendar_btn>div:last-child {
    margin-bottom: 11px;
}

.h_calendar_btn i {
    font-size: 20px;
}

.h_calendar_main {
    width: 100%;
}

.h_calendar_table_header {
    width: 100%;
    justify-content: space-around;
}

.h_calendar_table_body {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

.h_calendar_date {
    width: 14.285714%;
    height: 44px;
    margin: 3px 0;
    align-items: center;
    justify-content: center;
}

.h_calendar_date span {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.h_calendar_date.start_select {
    border-radius: 30rem 0 0 30rem;
}

.h_calendar_date.end_select {
    border-radius: 0 30rem 30rem 0;
}

.h_calendar_date.select span {
    border-radius: 30em;
    background: var(--text-color);
    color: #ffffff;
}

.h_calendar_date.select_range {
    background: #F2F2F2;
}

.h_calendar_date.grey {
    color: #999999;
}

.h_calendar_date.active {
    color: var(--text-color);
}

.table_header {
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    background: var(--text-color);
    color: #ffffff;
}

.table_body {
    height: calc(100% - 50px);
    overflow: hidden;
    overflow-y: auto;
}

.table_tr {
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.table_header>div,
.table_tr>div {
    height: 50px;
    align-items: center;
    justify-content: center;
}

.table_tr>div.tr_append {
    display: none;
    height: auto;
    width: 100%;
    background: #fafafa;
    padding: 10px 0 0 10px;
    flex-wrap: wrap;
}

.tr_append span {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid skyblue;
    color: skyblue;
    margin: 0 10px 10px 0;
}

.section_box {
    height: 50px;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
}

.section_box>div {
    height: 50px;
    align-items: center;
    justify-content: center;
}

.section_box>div:nth-child(2) {
    width: calc(100% - 80px);
}

.section_box>div:first-child,
.section_box>div:last-child {
    width: 40px;
}

.section_box i {
    font-size: 24px;
    color: #ccc;
}

.half_box .slot_item {
    width: 50%;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #eeeeee;
    cursor: pointer;
}

.half_box .slot_item.active {
    color: var(--text-color);
    border-bottom: 2px solid var(--text-color);
}

.calendar_select {
    padding: 0 10px;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.calendar_select i {
    width: 26px;
    font-size: 24px;
    color: var(--text-color);
}

.calendar_select span {
    width: 24px;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.calendar_select .date {
    width: calc(50% - 25px);
    align-items: center;
    justify-content: center;
}

.hide_div {
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#image_text {
    padding: 20px;
}

#image_text img {
    width: 100%;
}

.home-content {
    /* height: calc(100% - 165px - 2.25rem);
    overflow: hidden;
    overflow-y: auto; */
}

.user_card {
    padding: 5px;
}

.user_card .avatar {
    height: 80px;
    width: 90px;
}

.user_card .info {
    width: calc(100% - 90px);
}

.user_card .info.has-sign {
    width: calc(100% - 130px);
}

.user_card .info>div:first-child {
    height: 36px;
    align-items: center;
}

.user_card .info>div:first-child>* {
    margin-right: 8px;
}

.user_card .change_account {
    height: 46px;
    align-items: center;
    justify-content: flex-end;
}

.user_card .change_account>span {
    height: 36px;
    width: 80%;
    background-color: var(--text-color);
    color: #ffffff;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.user_card .change_account>span i {
    font-size: 24px;
    margin-right: 5px;
}

.user_card .sign-item {
    width: 40px;
    height: 80px;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.user_tag {
    flex-wrap: wrap;
}

.user_tag span {
    font-size: 10px;
    height: 20px;
    align-items: center;
    padding: 0 7px;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 4px;
    margin: 0 3px 3px 0;
    opacity: 0.7;
}

.user_tag span.more {
    background-color: #EAEAEF;
    color: #333333;
    border: none;
}

.user_tag span.more i {
    font-size: 10px;
}

.user_tag span.more .icon-down {
    margin: -5px 0 0 4px;
}

.user_tag span.more .icon-up {
    margin: 5px 0 0 4px;
}

.hide {
    display: none !important;
}

.scroll-y {
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#exam_lists {
    margin-top: 1px;
    height: calc(100% - 90px);
}

.student-card {
    background-color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.student-card .bg-white {
    position: absolute;
    background-color: #f0eff4;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.student-card-body {
    position: sticky;
    background-color: #ffffff;
    border-radius: 10px 10px 0 0;
    margin: 80px 30px 0 30px;
    z-index: 10;
}

.student-car-img {
    align-items: center;
    justify-content: center;
    margin-top: -60px;
}

.student-car-img img {
    width: 60%;
}

.student-car-info {
    padding: 10px;
}

.student-car-info>div {
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.file-list {
    padding: 0;
}

.file-item {
    font-size: 12px;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.file-ext {
    width: 40px;
}

.file-info {
    width: calc(100% - 50px);
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.file-item:last-child .file-info {
    border-bottom: 0;
}

.file-ext i {
    font-size: 30px;
}

.file-name {
    width: calc(100% - 70px);
    cursor: pointer;
}

.file-download {
    width: 70px;
    border-radius: 30rem;
    border: 1px solid DodgerBlue;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: DodgerBlue;
}

.file-download i {
    margin-right: 5px;
}

.comment_input {
    max-width: 640px;
}

@media screen and (min-width: 640px) {
    .comment_input {
        left: calc(50% - 320px) !important;
    }
}