﻿:root, page {
    --w1000: 1000px;
    --blue: #00bbee;
    --light-blue: #d2ecff;
    --light-blue-transparent: rgba(210,236,255,.12);
    --dark-gray: #2c3e50;
    --light-gray: #cccccc;
    --high-light-gray: #e3e3e3;
    --border: #e3e3e3;
    --bg-gray: #f4f5fa;
    --orange: #ff5000;
    --dark-orange: #ff5000;
    --light-orange: #fff7f3;
    --gray: #999999;
    --green: #4fc08d;
    --radius: 6px;
    --yellow: #ffe000;
    --dark-blue: #001F3F;
}

*, html {
    margin: 0px;
    padding: 0px;
    border-collapse: collapse;
}

html {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 13px !important;
    font: 13px/1.5 tahoma, arial, 'Hiragino Sans GB', '\5b8b\4f53', sans-serif;
    color: #393D49;
    min-width: 800px;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

input, textarea {
    outline: 0;
    resize: none;
    outline: none;
}

form {
}

a, a:visited, a:link {
    color: #01AAED;
    text-decoration: none;
}

    a:hover {
        color: #0197d2;
    }

img {
    border: 0;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.clear {
    clear: both;
}

.clearfix {
    zoom: 1;
    clear: both;
}

    .clearfix:after {
        content: '.';
        visibility: hidden;
        height: 0;
        overflow: hidden;
        clear: both;
        width: 0;
        display: block;
    }

.border-right {
    border-right: solid 2px var(--blue);
}

.f-title {
    font-size: 24px;
    font-weight: 600;
}

.bg-blue {
    background-color: var(--blue);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-light-blue-transparent {
    background-color: var(--light-blue-transparent);
}

.f-blue {
    color: var(--blue);
}

.flex-grow1 {
    flex-grow: 1;
}

.pr10 {
    padding-right: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt30 {
    margin-top: 30px;
}

.mt100 {
    margin-top: 100px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb100 {
    margin-bottom: 100px;
}

.mb200 {
    margin-bottom: 200px;
}

.f-green {
    color: var(--green);
}

.f-gray {
    color: var(--gray);
}

.f-light-gray {
    color: var(--light-gray);
}

.f-dark-gray {
    color: var(--dark-gray);
}

.f-orange {
    color: var(--orange);
}

.f-dark-orange {
    color: var(--dark-orange);
}

.f-yellow {
    color: var(--yellow);
}

.f-white {
    color: #ffffff;
}

.f-blue {
    color: var(--blue)
}

.container {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.p15 {
    padding: 15px;
}

.p30 {
    padding: 30px;
}

.list-item {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

.border-bottom {
    border-bottom: solid 1px var(--high-light-gray);
}

.w100 {
    width: 100%;
}

.w96 {
    width: 96%;
    min-width: 96%;
}

.w80 {
    width: 80%;
    min-width: 80%;
}

.w60 {
    width: 60%;
    min-width: 60%;
}

.w50 {
    width: 50%;
    min-width: 50%;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f24 {
    font-size: 24px;
}

.f30 {
    font-size: 30px;
}

.f33 {
    font-size: 33px;
}

.f36 {
    font-size: 36px;
}

.bold {
    font-weight: bold;
}

.line30 {
    line-height: 30px;
}

.line40 {
    line-height: 40px;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-space-around {
    display: flex;
    justify-content: space-around;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.center-middle {
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.van-toast {
    width: 124px !important;
}

.shadow {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.radius {
    border-radius: 5px;
}

.ml10 {
    margin-left: 10px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml80 {
    margin-left: 80px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.p15 {
    padding: 15px;
}

.p30 {
    padding: 30px;
}

#top {
    width: 100%;
    min-width: 1000px;
    height: 100px;
    background: #409EFF;
    /*box-shadow: 0 5px 5px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 5px rgba(0,0,0,.2);
    -ms-box-shadow: 0 5px 5px rgba(0,0,0,.2);*/
    position: relative;
    /*z-index: 100;*/
}

#top_left_info {
    width: 921px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    overflow: hidden;
    text-align: right;
}

    #top_left_info a {
        color: #ffffff;
    }

#top_right_info {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 460px;
}

#real_name {
    margin-right: 15px;
}

#top_right_info img {
    float: left;
    margin: 3px 5px 0 0;
}

#top_right_info a {
    color: #fff;
    float: left;
    line-height: 20px;
}

#user_info a:hover {
    color: #fff;
    text-decoration: underline;
}


#user_info #link span {
    float: left;
    padding: 0 10px;
}

#user_info span {
    color: #fff;
}

#center {
    min-width: 1000px;
    min-height: 600px;
    _margin-top: -3px;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
}

#left {
    /*    float: left;*/
    width: 200px;
    /*    height: calc(100vh – 100px);*/
    padding-right: 8px;
    position: relative;
    /*background: url(/img/left_bg.png) top left repeat-y;*/
    background-color: #409EFF;
    /*    *min-height: 820px;*/
    /*    min-height: 820px\0;*/
    min-height: 100vh;
}

.bg {
    background-color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
}

.none {
    display: none\0 !important;
    *display: none !important;
}

.lefswitch {
    height: 60px;
    width: 30px;
    position: absolute;
    right: -20px;
    top: 360px;
    *top: 360px;
    top: 360px\0;
    margin-top: -30px;
    z-index: 1000;
    cursor: pointer;
}

.heiper100 {
    *height: 100% !important;
    height: 100%\0 !important;
    background: url(../img/left_bg.png) top left repeat-y !important;
}

.blueopen {
    background: url(../img/blueclose.png);
}

.blueclose {
    background: url(../img/blueopen.png);
}

.leftlcose {
    background-color: #393D49;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 38px;
    display: none;
}

#left .yellow {
    background: #fff url(../img/yellow.png) repeat-x;
    height: 12px;
}

.wid60 {
    width: 32px !important;
}

#middle {
    float: left;
    width: 10px;
    height: 100%;
    background: url(../img/middle_bg.png) repeat-y;
    /*display: none;*/
}

#middle_top {
    width: 10px;
    height: 10px;
    background: url(../img/middle_top.png) no-repeat;
}

#right {
    /*    float: left;*/
    min-width: 785px;
    width: 100%;
    padding-left: 12px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

#bottom {
    width: 100%;
    height: 30px;
    background: url(../img/bottom_bg.png) repeat;
}

.menu {
    background: url(../img/left_bg.png) top left repeat-y;
}

.menu_title {
    height: 55px;
    cursor: pointer;
    font-size: 14px;
    line-height: 55px;
    padding: 0 10px;
    /*border-top: 1px solid rgba(57, 61, 73, 0.8);*/
    border-bottom: 1px solid #fff;
    background: #409EFF;
    position: relative;
    color: #ffffff;
    font-weight: 400;
}

    .menu_title:after {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -3px;
        border-width: 6px;
        border-style: solid dashed dashed;
        border-color: #fff transparent transparent;
        overflow: hidden;
        cursor: pointer;
        transition: all .2s;
        -webkit-transition: all .2s;
        /*border-top-color: rgba(255,255,255,.7);*/
    }

    .menu_title.arrow_up:after {
        margin-top: -9px;
        border-color: transparent transparent #fff;
    }

.menu .arrow_up, .menu .arrow_up:hover {
    background: #79BBFF;
}

    .menu .arrow_up > a {
        color: #fff;
    }

.menu_title:hover a, .menu .current a {
    color: #fff;
}

.menu_title a {
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
}

.menu_title:hover > a {
    color: #fff;
}

.menu_title img {
    margin: 5px 5px 0 0;
}

.menu_title:hover, .menu .current {
    background-color: #79BBFF;
}

.menu ul {
    background-color: #409EFF;
    border-radius: 3px;
}

    .menu ul li {
        list-style: none;
        height: 50px;
        line-height: 50px;
        padding-left: 32px;
        font-size: 14px;
    }

.menu li:hover {
    background-color: #79BBFF;
}

.menu ul li a {
    float: left;
    color: rgba(255, 255, 255, .7);
    text-indent: 5px;
}

    .menu ul li a:hover {
        color: #fff;
    }

.ico {
    width: 16px;
    height: 16px;
    float: left;
    border: 0px;
    margin: 18px 0 0 0;
}

.menu_bottom {
    width: 151px;
    height: 27px;
    background: url(../img/menu_bottom.png) no-repeat;
    display: none;
}

#login_bg {
    position: absolute;
    z-index: -1;
    display: none;
}

/* bread crumbs */
.smp {
    margin: 20px 0;
    background: #ECF5FF;
    padding: 10px 15px;
    font-size: 14px;
}

.form {
    padding: 20px;
    min-width: 780px;
    background: #f5f5f5;
    border-collapse: separate;
}

.form_title {
    background: #f5f5f5;
    border-top: 3px solid #79BBFF;
    font-size: 16px;
    height: 37px;
    line-height: 36px;
    float: left;
    font-weight: bold;
    padding: 0 20px;
}

.form td, .form .alternate {
    height: 32px;
    line-height: 32px;
    padding: 5px 3px;
}

table.form {
    width: 100%;
}

#treeboxbox_tree td {
    height: auto;
    padding: 0;
    line-height: normal;
    font-size: 14px;
}

table.course_edit td {
    vertical-align: top;
}

.add_course_forms div {
    margin: 8px 0;
}

    .add_course_forms div a {
        display: inline-block;
        background: #007ddc url(../img/icons.png) no-repeat;
        background-position: 2px -172px;
        width: 20px;
        height: 20px;
        text-indent: -9999em;
        overflow: hidden;
        margin: 4px 0;
    }

    .add_course_forms div label {
        margin-right: 10px;
    }

.explain {
    color: #666666;
    margin-top: -2px;
    font-size: 13px;
}

.required {
    color: #ff0000;
}

#login_box {
    width: 436px;
    background: #fff;
    color: #fff;
    line-height: 27px;
    display: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0 0 2px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.5);
    -o-box-shadow: 0 0 2px rgba(0,0,0,.5);
    overflow: hidden;
    padding-bottom: 0px;
}

#login_logo {
    width: 436px;
    height: 118px;
    background: url(../img/login_logo.png) no-repeat center center;
}

#login_logo_without_words {
    width: 436px;
    height: 118px;
}

#login_title {
    width: 257px;
    height: 36px;
    float: left;
    margin: 80px auto auto 5px;
    background: url(../img/login_title.png) no-repeat;
}

.login_form {
    background: #fafafa;
    padding: 25px 36px;
    *padding: 0px 36px 10px 36px;
    /*border-top: 1px solid #d0d0d0;*/
    /*height: 240px;*/
}

    .login_form .form_item {
        position: relative;
        margin-bottom: 20px;
        color: #333;
    }

.textbox {
    position: relative;
    height: 34px;
}

.pholder {
    position: absolute;
    left: 0;
    top: 1px;
    width: 320px;
    background: url(../img/login_input_repeat.png) repeat-x;
    z-index: 1;
    height: 34px;
    padding-left: 40px;
    line-height: 34px;
    color: #666;
    border: 1px solid #d0d0d0;
}

.login_form .form_item .login_select {
    position: absolute;
    right: 3px;
    _right: 38px;
    top: 2px;
    z-index: 6;
    *top: 6px;
}

    .login_form .form_item .login_select select {
        padding: 8px 4px;
        background: #f2f2f2;
        border: none;
        border-left: 1px solid #d0d0d0;
        line-height: 32px;
    }

.login_input_left {
    position: absolute;
    left: 1px;
    top: 2px;
    width: 36px;
    height: 34px;
    background: url(../img/login_input_left.png) no-repeat;
    z-index: 6;
}

.login_pwd_left {
    position: absolute;
    left: 1px;
    top: 2px;
    width: 36px;
    height: 34px;
    z-index: 6;
    background: url(../img/login_pwd_left.png) no-repeat;
}

.login_input {
    height: 30px;
    line-height: 16px;
    line-height: 32px\0 !important;
    *line-height: 32px !important;
    width: 320px;
    background: none;
    *background: none;
    padding-left: 40px;
    position: absolute;
    z-index: 2;
    top: 4px;
    border: 0;
}

.login_input_right {
    width: 11px;
    height: 27px;
    background: url(../img/login_input_right.png) no-repeat;
}

#img_login {
    margin: 0 auto;
    display: block;
    cursor: pointer;
}

#login_copy_right {
    line-height: 36px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    #login_copy_right a {
        color: #fff;
    }

.area_btn {
    padding-top: 2%;
    padding-left: 2%;
}

.data_borland {
    position: relative;
    width: 240px;
    height: 140px;
    margin: 10px auto auto 10px;
    color: #333;
    cursor: pointer;
    line-height: 25px;
    /*text-indent: 14px;*/
    border: 1px solid #ddd;
    padding: 10px;
    background: rgb(239,239,239);
    float: left;
    box-sizing: border-box;
    border-radius: var(--radius);
}

    .data_borland .borland_icon {
        width: 120px;
        height: 28px;
        line-height: 28px;
        position: absolute;
        left: 10px;
        bottom: 10px;
        overflow: hidden;
    }

    .data_borland:hover {
        background: #d5f3ff;
        border: 1px solid #bfedff;
        transition: background 0.5s;
        -moz-transition: background 0.5s; /* Firefox 4 */
        -webkit-transition: background 0.5s; /* Safari 和 Chrome */
        -o-transition: background 0.5s; /* Opera */
        /*    color: #fff;*/
    }

.borland_school {
    font-size: 14px;
    font-weight: bold;
}

.ico_genearch {
    width: 32px;
    height: 32px;
    background: url(../img/ico_genearch.png) no-repeat;
    margin: 10px auto auto 14px;
    float: left;
}

.ico_teacher {
    width: 28px;
    height: 28px;
    background: url(../img/ico_teacher.png) no-repeat;
    float: left;
    margin-right: 10px;
}

.data {
    width: 100%;
    margin: auto;
    min-width: 780px;
    border: solid 1px grey;
    background-color: #fff;
    color: #666;
}

.data_disabled td {
    color: #999 !important;
}

.data th {
    background: #f2f2f2;
    height: 36px;
    line-height: normal;
    border: solid 1px #e6e6e6;
    text-align: center;
    padding: 5px;
    vertical-align: middle;
}

    .data th a.sort_asc, .data th a.sort_desc {
        padding: 2px 4px;
        background: url(../img/icons.png) no-repeat;
        display: inline-block;
        height: 16px;
        width: 16px;
    }

    .data th a.sort_asc {
        background-position: 0 -334px;
    }

    .data th a.sort_desc {
        background-position: 0 -308px;
    }

.data td {
    /*background-color: #fff;*/
    height: 40px;
    line-height: normal;
    border: solid 1px #e6e6e6;
    padding: 5px;
    vertical-align: middle;
    overflow: visible;
}
/*.data .alternate {*/
/*background-color: #f2f2f2;*/
/*}*/
.data tr {
    background-color: #fff;
}

    .data tr:nth-child(even) {
        background-color: #f5f5f5;
    }

    .data tr:hover {
        background-color: #e5f7fe;
    }

.data .item {
    text-align: center;
}

.data .tableLight td {
    background-color: #e5f7fe;
}

.data a {
    text-decoration: underline;
}

.data .tree_level {
    display: block;
    float: left;
    text-decoration: none;
}

    .data .tree_level:hover {
        text-decoration: underline;
    }

.data .tree_btn {
    padding: 0 0 0 24px;
    text-align: left;
    margin: 0 auto;
}

.data .tree_plus {
    background: url(../img/plus.png) left center no-repeat;
}

.data .tree_minus {
    background: url(../img/minus.png) left center no-repeat;
}

.table_caption {
    width: 100%;
    border: 1px solid #e3e3e3;
    background: #f5f5f5;
}

    .table_caption th, .table_caption td {
        padding: 8px 10px;
        font-size: 14px;
    }
/* search start */
.search {
    min-width: 780px;
}

.search_content {
    text-align: left;
    padding-bottom: 15px;
    padding-top: 10px;
    box-sizing: border-box;
}

    .search_content p {
        margin-bottom: 15px;
        line-height: 28px;
    }

    .search_content label {
        display: inline-block;
        line-height: 36px;
        height: 36px;
        margin: 5px 15px 5px 0;
        white-space: nowrap;
    }

        .search_content label span {
            line-height: 36px;
        }

        .search_content label select {
            margin: 2px 0;
        }

.search_title {
    padding: 8px 10px;
    background: #eeeeee;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

    .search_title .count {
        line-height: 36px;
    }

/* end */

.div_handle {
    width: 75px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    line-height: 30px;
    margin: 0 auto;
}

.div_handle_click {
    width: 75px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    /*background:  url(../img/handle_bg.png) bottom center no-repeat;*/
    /*background:#5795e8;*/
    color: #409EFF;
    margin: 0 auto;
}

.ul_handle {
    display: none;
    position: absolute;
    cursor: pointer;
    margin: auto auto auto -54px;
    *margin: auto auto auto -92px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.5);
    background: #79BBFF;
    width: 135px;
    z-index: 1000;
}

    .ul_handle li {
        list-style: none;
        color: #fff;
    }

.li_handle_title {
    width: 135px;
    height: 6px;
    overflow: hidden;
    background: #79BBFF;
    *margin-top: -18px;
    *margin-bottom: -10px;
    display: none;
}

.li_handle_bottom {
    width: 135px;
    height: 6px;
    overflow: hidden;
    background: #79BBFF;
    display: none;
}

.ul_handle .item {
    width: 135px;
    height: 30px;
    line-height: 30px;
    list-style: none;
    background: #79BBFF;
}

    .ul_handle .item ~ .item {
        border-top: 1px solid #79BBFF;
    }

.item a:link, .item a:visited {
    color: #333;
}

.ul_handle .item a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
}

    .ul_handle .item a:hover {
        opacity: 0.8;
    }

.hr {
    width: 98%;
    height: 30px;
    line-height: 30px;
    margin: auto;
    min-width: 780px;
    text-indent: 1em;
    border-top: solid 3px #79BBFF;
    border-bottom: solid 3px #79BBFF;
    margin: 10px auto;
}

.area_check_box {
    width: 500px;
    height: 150px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(173, 210, 218);
    margin: 10px auto 10px 10px;
    text-align: left;
    text-indent: 10px;
    line-height: 30px;
    overflow-y: scroll;
    overflow-x: hidden;
}
/* tab */
.tabs, .gitabs {
    margin-top: 20px;
}


    .tabs .tab_nav, .gitabs .tab_nav {
        list-style: none;
        background: url(../img/tabline.png) bottom repeat-x;
    }

        .tabs .tab_nav li, .gitabs .tab_nav li {
            float: left;
            height: 37px;
            border-top: 3px solid #eee;
            border-left: 1px solid #fff;
            border-right: 1px solid #fff;
            border-bottom: 1px solid #ccc;
            background: #eee;
            padding: 0 20px;
            line-height: 34px;
            cursor: default;
        }

            .tabs .tab_nav li.current, .gitabs .tab_nav li.current {
                color: #409EFF;
                background: #fff;
                border-top: 3px solid #79BBFF;
                border-left: 1px solid #ccc;
                border-right: 1px solid #ccc;
                border-bottom: 1px solid #fff;
            }

    .tabs .tab_item, .gitabs .tab_item {
        padding: 15px 0;
        display: none;
    }

    .tabs .on, .gitabs .on {
        display: block;
    }
/* pop */
#coverd {
    width: 100%;
    height: 100%;
    background: url(../img/coverd.png);
}

#pop {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%);
    color: #000000;
    z-index: 30001;
    color: #333;
}

.pop_content {
    height: auto;
    min-width: 300px;
    width: 400px;
    position: absolute;
    background: #fff;
    color: #333;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.5);
    left: 50%;
    top: 50%;
    /*    margin: 0 0 0 -200px;*/
    transform: translate(-50%, -50%)
}

    .pop_content .mes-body {
        padding: 15px 15px 0 15px;
        max-height: 500px;
        overflow-y: auto;
        margin-bottom: 15px;
    }

        .pop_content .mes-body .img-icon {
            margin-right: 6px;
        }

    .pop_content .mes-title {
        width: 100%;
        height: 30px;
        border-bottom: #eee 1px solid;
        position: relative;
    }

        .pop_content .mes-title .img-icon {
            position: absolute;
            left: 15px;
            top: 7px;
        }

        .pop_content .mes-title .title {
            margin-left: 35px;
            line-height: 30px;
            color: #222;
        }

.pop_error {
    background: #fff;
    color: #fe545a;
}

.pop_success {
    background: #fff;
    color: #5da423;
}

.pop_normal {
    background: #fff;
}

    .pop_normal .pop_close, .pop_success .pop_close, .pop_error .pop_close {
        position: absolute;
        right: 8px;
        top: 8px;
        width: 16px;
        height: 16px;
        display: block;
        background: url(../img/icons.png) no-repeat;
        background-position: 0 -288px;
    }

.pop_success .pop_close, .pop_error .pop_close {
    background-position: 0 -288px;
}
/* dailog box */
#dailog {
    min-width: 400px;
    min-height: 300px;
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -200px 0 0 -200px;
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.5);
    z-index: 30002;
    overflow: hidden;
    display: none;
}

    #dailog .dailog_title {
        padding: 0 15px;
        height: 40px;
        background: #eee;
        cursor: move;
        width: 100%;
    }

        #dailog .dailog_title .title {
            line-height: 40px;
            font-size: 16px;
            float: left;
            width: 120px;
        }

        #dailog .dailog_title .dailog_close {
            position: absolute;
            right: 15px;
            top: 10px;
            margin: 0;
        }

    #dailog .dailog_content {
        padding: 15px;
        min-height: 200px;
    }

    #dailog .dailog_btn {
        height: 40px;
        padding: 10px 15px;
    }

/* home page */
.home {
    background: #f1f1f1 url(../img/bg.png);
}

.home_container {
    width: 800px;
    margin: 0 auto;
}

.home_title {
    margin: 30px 20px 20px 0;
}

    .home_title h2 {
        font-size: 20px;
        float: left;
        line-height: 24px;
    }

    .home_title span {
        float: right;
    }

.home .smp {
    background: #fff;
}

.home_left {
    /*    float: left;
    width: 63%;
    margin-right: 20px;*/
}

.home_right {
    /*    float: left;*/
    /*    width: 35.5555%;*/
}

.home_left .map_box {
    background: #fff;
    padding: 10px;
    height: 270px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}

    .home_left .map_box #map {
        background: #f1f1f1;
        height: 270px;
    }

.box {
    position: relative;
}

.box_sm {
    background: #fff;
    width: 390px;
    height: 120px;
    margin: 0 20px 0 0;
    float: left;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}

.salary {
    margin-bottom: 20px;
}

.last {
    margin-right: 0;
}

.box_sm .box_header {
    float: left;
    width: 96px;
    height: 120px;
    background: #ccc;
    color: #fff;
    text-align: center;
}

    .box_sm .box_header .icon {
        width: 52px;
        height: 52px;
        display: block;
        margin: 22px auto 10px;
        float: none;
    }

    .box_sm .box_header .icon_banjikaoqin {
        background: url(../img/icon_banjikaoqin.png) no-repeat;
    }

    .box_sm .box_header .icon_sushekaoqin {
        background: url(../img/icon_sushekaoqin.png) no-repeat;
    }

    .box_sm .box_header .icon_exam {
        background: url(../img/icon_exam.png) no-repeat;
    }

.box_sm .banji {
    background: #1d80d3;
}

.box_sm .sushe {
    background: #ff8800;
}

.box_sm .exam {
    background: #66d064;
}

.box_sm .box_body {
    padding: 10px 15px;
    margin-left: 96px;
    position: relative;
    height: 100px;
}

    .box_sm .box_body .state {
        float: right;
        font-size: 18px;
        position: absolute;
        bottom: 10px;
        right: 15px;
        margin-left: 15px;
    }

        .box_sm .box_body .state a {
            display: inline-block;
            width: 110px;
            line-height: 24px;
            font-size: 16px;
            margin: 0;
        }

    .box_sm .box_body .shiduan {
        color: #333;
        font-size: 16px;
    }

        .box_sm .box_body .shiduan p {
            font-size: 14px;
            line-height: 24px;
        }

            .box_sm .box_body .shiduan p span {
                margin-right: 5px;
            }

    .box_sm .box_body .error {
        color: #ff0000;
    }

.box_timetable {
    height: 250px;
    width: auto;
    float: none;
    margin: 0 0 20px 0;
    position: relative;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 40px;
    margin: -20px 0 0 -50px;
    color: #333;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    z-index: 100;
}

.box_timetable .title, .home_right .box_msg .title {
    padding: 10px 20px;
    border-bottom: 1px solid #d2d2d2;
    height: 30px;
    line-height: 30px;
}

.timetable_content table {
    width: 100%;
    height: 200px;
}

    .timetable_content table td {
        border-bottom: 1px solid #d2d2d2;
        padding: 4px 10px;
        text-align: center;
        vertical-align: middle;
        font-size: 16px;
    }

        .timetable_content table td span {
            display: block;
            line-height: 24px;
            font-size: 14px;
            color: #999;
        }

.quick_mark {
    background: #fff;
    padding: 15px;
    width: 120px;
    position: fixed;
    right: 10px;
    top: 20%;
    font-size: 12px;
    text-align: center;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    z-index: 99;
}

    .quick_mark .mark {
        margin: 5px 0;
    }

    .quick_mark .download {
        background: url(../img/download_apk.png);
        width: 120px;
        height: 44px;
        display: block;
        text-indent: -999em;
        overflow: hidden;
        margin-top: 15px;
    }

    .quick_mark h4 {
        font-size: 16px;
        line-height: 24px;
        margin: 10px 0;
    }

    .quick_mark h3 {
        font-size: 14px;
        margin: 5px 0;
    }

    .quick_mark h5 {
        font-size: 16px;
        margin: 5px 0;
    }

.home_right .box_msg {
    background: #fff;
    height: 420px;
    position: relative;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
    -o-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}

    .home_right .box_msg ul {
        list-style: none;
    }

        .home_right .box_msg ul li {
            background: #f5f5f5;
            height: 60px;
            border-left: 8px solid #ccc;
            margin: 0 10px 10px 10px;
            overflow: hidden;
            position: relative;
        }

            .home_right .box_msg ul li.unread {
                border-color: #007ddc;
            }

            .home_right .box_msg ul li .type {
                height: 60px;
                width: 80px;
                line-height: 60px;
                font-size: 16px;
                border-right: 1px solid #d2d2d2;
                text-align: center;
                color: #666;
                position: absolute;
                left: 0;
            }

            .home_right .box_msg ul li .msg_body {
                padding: 13px 10px 20px 20px;
                background: #f6f6f6;
                margin-left: 70px;
                height: 40px;
            }

    .home_right .box_msg .box_body {
        margin-top: 15px;
    }

.box_msg .box_body a {
    color: #333;
    display: block;
}

.box_msg .box_body h4 {
    font-size: 16px;
    line-height: 33px;
    margin-right: 180px;
    font-weight: normal;
}

.box_msg .box_body p {
    font-size: 14px;
    text-align: right;
    color: #666;
    overflow: hidden;
    float: right;
}

    .box_msg .box_body p span.date {
        display: block;
    }

.grade_list {
    width: 340px;
    height: 310px;
    overflow: auto;
    border: 1px solid #d2d2d2;
    background: #fff;
}

    .grade_list .loading {
        position: relative;
        margin: 0 auto;
        left: 0;
        top: 0;
    }

.grade_header, .class_header {
    padding: 0 10px 0 24px;
    line-height: 32px;
    height: 32px;
    cursor: default;
    background: url(../img/arrow_left.png) no-repeat;
    background-position: 6px 8px;
}

    .grade_header:active, .class_header:active {
        background-color: #007ddc;
    }

    .grade_header:hover, .class_header:hover {
        background-color: #eee;
    }

        .grade_header:hover .grade_add, .class_header:hover .class_add {
            display: block;
        }

.class_header {
    padding-left: 48px;
    background-color: #ffffff;
    background-position: 28px 8px;
}

.grade_list .class_level {
    display: block;
    /*    border-bottom: 1px solid #d2d2d2;*/
}

.grade_add, .class_add {
    /*float: right;*/
    width: 16px;
    height: 16px;
    border: 1px solid #bbb;
    background: #ffffff;
    margin: 5px 0;
    line-height: 16px;
    text-align: center;
    display: none;
    float: right;
    *margin-top: -26px;
}

.grade_list .open {
    background-image: url(../img/arrow_down.png);
}

.student_list {
    /*border-bottom: 1px solid #d2d2d2;*/
}

    .student_list li {
        line-height: 32px;
        padding: 0 10px 0 48px;
        cursor: default;
    }

        .student_list li:hover {
            background-color: #007ddc;
            color: #ffffff;
        }

.sort {
    vertical-align: middle;
    margin: -2px auto 0;
    text-align: center;
    display: inline-block;
}

.data td.alternate_sorting {
    background: #f2fafd;
}

.data td.sorting {
    background: #f2fafd;
}

#cph1_anp {
    margin-top: 20px;
}

.ddcombo td {
    height: 26px;
    line-height: 26px;
    padding: 0;
}

/** notification */
.noti_success_terminal {
    background: #e2fbca url(../img/load.gif) 5px center no-repeat;
    border: 1px solid #92c058;
    color: #76b33a;
    padding: 15px 25px;
    margin: 10px 0 20px 0;
}
/* Q&A */
.qa-container {
    width: 1100px;
    margin: 20px auto 40px;
}

    .qa-container .qa-bread {
        font-size: 24px;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .qa-container .sider-bar {
        float: left;
        width: 200px;
        padding: 10px 0;
    }

    .qa-container .qa-bg {
        background: #f9f9f9;
        border: 1px solid #e3e3e3;
    }

    .qa-container .sider-bar a {
        color: #333;
        display: block;
        padding: 0 20px;
    }

        .qa-container .sider-bar a.on {
            background: #007ddc;
            color: #fff;
        }

    .qa-container .sider-bar li {
        list-style: none;
        line-height: 40px;
    }

    .qa-container .qa-content {
        margin-left: 200px;
        border-left: 1px solid #e3e3e3;
        padding: 20px;
        background: #fff;
    }

        .qa-container .qa-content .qa-hd {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .qa-container .qa-content .qa-bd li {
            list-style: none;
            line-height: 28px;
            font-size: 14px;
            padding-bottom: 15px;
            border-bottom: 1px dotted #dcdcdc;
            margin-bottom: 20px;
        }

        .qa-container .qa-content .qa-bd .qa-q {
            font-size: 15px;
            margin-bottom: 6px;
            cursor: pointer;
        }

        .qa-container .qa-content .qa-bd .qa-a {
            color: #777;
            display: none;
        }

            .qa-container .qa-content .qa-bd .qa-a img {
                max-width: 857px;
                margin-top: 10px;
            }

        .qa-container .qa-content .qa-a ul, .qa-container .qa-content .qa-a ol {
            margin: 10px 0;
        }

            .qa-container .qa-content .qa-a ol li {
                list-style-type: decimal;
                margin: 0;
                margin-left: 20px;
                padding: 0;
                border: 0;
            }

            .qa-container .qa-content .qa-a ul li {
                list-style: square;
                margin: 0;
                margin-left: 20px;
                padding: 0;
                border: 0;
            }

.homework-list {
    width: 400px;
    border: 1px solid #dedddd;
    height: 600px;
    background: #fff;
    overflow: auto;
    margin-left: 100px;
}

    .homework-list h3 {
        background: #79BBFF;
        color: #fff;
        text-align: center;
        font-size: 14px;
        line-height: 40px;
    }

    .homework-list li {
        line-height: 24px;
        padding: 5px 10px;
        border-bottom: 1px dotted #ccc;
    }

.loginway {
    width: 436px;
    height: 62px;
    text-align: center;
    margin-top: -26px;
    *margin-top: -52px;
    margin-left: -36px;
    cursor: pointer;
}

.teacherway {
    width: 218px;
    /*background-color:rgb(255,255,255);*/
    float: left;
    border-bottom: 3px solid #27adfb;
    color: #3fb1f3 !important;
}

a.pare {
    width: 218px;
    float: left;
    /*background-color: #e9e9e9;*/
    border-bottom: 3px solid #d8d8d8;
    color: #fafafa;
}

.btn-download {
    font-size: 14px;
    color: #fff !important;
    text-decoration: underline !important;
}

body {
    background-color: #fff;
}

.timetalble {
    width: 100%;
    margin: auto;
    min-width: 500px;
    border: solid 1px #e3e3e3;
    display: table;
}

    .timetalble .item {
        text-align: center;
    }

    .timetalble td {
        background: #fff;
        height: 40px;
        line-height: normal;
        border: solid 1px #e3e3e3;
        padding: 5px;
        vertical-align: middle;
        overflow: visible;
    }

    .timetalble th {
        background: #f5f5f5;
        height: 36px;
        line-height: normal;
        border: solid 1px #e3e3e3;
        text-align: center;
        padding: 5px;
    }

.btn-blue {
    background-color: #409EFF;
    /* 蓝色 */
    color: #ffffff;
    border: none;
    text-align: center;
    border-radius: 15px;
}

.hide {
    display: none;
}

.flex-warp {
    flex-wrap: wrap;
}

.p10 {
    padding: 10px;
    box-sizing: border-box;
}

.p20 {
    padding: 20px;
    box-sizing: border-box;
}

.p30 {
    padding: 30px;
    box-sizing: border-box;
}

.border-box {
    box-sizing: border-box;
}

.pt10 {
    padding-top: 10px;
}

.wrap {
    flex-wrap: wrap;
}

.scroll::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--blue);
}

.scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--light-blue);
}

.border {
    border: solid 1px var(--border);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.ellipsis-single-line {
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示为省略号 */
    /* 需要设置宽度 */
}

.ellipsis-multi-line {
    display: -webkit-box;
    -webkit-box-orient: vertical; /* 设置为垂直布局 */
    -webkit-line-clamp: 2; /* 限制显示2行 */
    overflow: hidden; /* 隐藏多余的文本 */
    /* 需要设置宽度 */
}

/* 一行显示，超出一行就用...显示 */
.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nowrap {
    flex-wrap: nowrap;
}
