﻿@charset "utf-8";
/* CSS Document */
html {
    font-size: 100px;
    height: 100%;
}

/* basic elements */
body, table, td, div, p, ol, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, a, i, object, input, button, table, select, option, textarea {
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
}

body {
    font-family: 'Microsoft Yahei', sans-serif;
    color: #4f4e4d;
}

img {
    border: none;
}

ol, ul {
    list-style: none;
}

th, td {
    font-weight: normal;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

input:focus {
    outline: none;
}

textarea {
    resize: none;
    font-family: 'Microsoft Yahei', sans-serif;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

* + html .clearfix {
    min-height: 1%;
}

/* ie7 hack */
.fl {
    float: left;
}

.fr {
    float: right;
}

.tl {
    text-align: left !important;
}

.tr {
    text-align: right;
}

.tlighter {
    font-weight: lighter;
}

.fontWeightN {
    font-weight: normal !important;
}

.words_break {
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
}

input, button {
    font-family: 'Microsoft Yahei', sans-serif;
}

* {
    -moz-box-sizing: border-box; /*Firefox3.5+*/
    -webkit-box-sizing: border-box; /*Safari3.2+*/
    -o-box-sizing: border-box; /*Opera9.6*/
    -ms-box-sizing: border-box; /*IE8*/
    box-sizing: border-box; /*W3C(IE9+，*/
}

input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Microsoft Yahei', sans-serif;
    color: #4f4e4d;
}

i {
    font-style: normal;
    vertical-align: text-top;
}

/* ------------------------------------  layout ----------------------------------*/

/*媒体查询- 在特定分辨率下的字体大小*/
@media screen and (max-width: 321px) {
    .content, .container, .input_style, .changeRow input, .qr_code, textarea {
        font-size: 15px;
    }
    
}

@media screen and (min-width: 321px) and (max-width: 400px) {
    .content, .container, .input_style, .changeRow input, .qr_code, textarea {
        font-size: 16px;
    }
    
}

@media screen and (min-width: 400px) {
    .content, .container, .input_style, .changeRow input, .qr_code, textarea {
        font-size: 18px;
    }
    
}

body {
    width: 6.4rem;
    height: 100%;
    overflow-x: hidden;
}

/*登录 begin*/
.padding_style {
    width: 6.4rem;
    height: 100%;
    overflow-x: hidden;
    padding: 0.42rem 0.42rem 0.64rem;
    background: #ffffff url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/login_bg_new.png) no-repeat;
    position: relative;
    background-size: 100% auto;
}

.padding_style.no_padding {
    padding: 0
}

.login-content {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 32px;
}


.content {
    height: 100%;
    background: #326ba4 url("../images/content_bg.png") no-repeat top left;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.login_box {
    overflow: hidden;
}

@media screen and (max-width: 380px) {
    .page_logo {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
    }
}

.page_logo {
    width: 100%;
    height: 120px;
    background: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/login-title.png) no-repeat center center;
    background-size: 100% auto;
    margin-top: 35px;
    margin-bottom: 12px;
}
.forget_page_top {
    width: 100%;
    margin-top: 108px;
    margin-bottom: 24px;
}
.forget_page_top_title {
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #222222;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    margin-bottom: 4px;
}
.forget_page_top_subtitle {
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #888888;
    line-height: 18px;
    text-align: left;
    font-style: normal;
}

.login_input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
    column-gap: 8px;
}

.login_input:after {
    position: absolute;
    top: 14px;
    left: 20px;
    content: "";
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.login_input.phone:after {
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-phone.png);
}
.login_input.password input {
    font-family: sans-serif;
    font-weight: 400;
}
.login_input.password:after {
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-pass.png);
}

.login_input.security:after {
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-secrity.png);
}

.login_input.org:after {
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-org.png);
}

.login_input.email:after {
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-email.png);
}

.login_input.user:after {
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-user.png);
}

.input_style {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background: #F5FAFF;
    border-radius: 24px;
    outline: none;
    box-sizing: border-box;
    padding: 12px 12px 12px 52px;
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 24px;
    text-align: left;
    font-style: normal;
}

.input_style::placeholder {
    color: #ABB0BB;
}

.input_style:focus {
    background: #F5FAFF;
}

.login_a {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
}
.login_a a {
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0066FF;
    line-height: 22px;
    text-align: left;
    font-style: normal;
}

.qr_code {
    min-width: 128px;
    height: 0.8rem;
    color: #0066FF;
    background: #F5FAFF;
    border-radius:24px;
}

.qr_reSend {
    color: #888888;
}


.login_button {
    margin: 0.75rem auto 0;
}

.btn_style_wrap {
    margin-bottom: 12px;
}
.btn_style_wrap.mt {
    margin-top: 24px;
}
.btn_style {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0099FF 0%, #0066FF 100%);
    border-radius: 24px;
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1em;
    font-style: normal;
    border: none;
}

.btn_style.plain {
    box-sizing: border-box;
    border: 1px solid #0066FF;
    background: #fff;
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #0064FA;
    line-height: 1em;
    font-style: normal;
}

.login_figure {
    position: absolute;
    bottom: calc(constant(safe-area-inset-bottom) + 0px);
    bottom: calc(env(safe-area-inset-bottom) + 0px);
    left: 0;
    width: 100%;
    height: 49px;
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/login_bottom_banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 0 16px;
}

.login_figure_button {
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 3px;
    width: 79px;
    height: 25px;
    background: linear-gradient(159deg, #FFFFFF 0%, #78D2FF 100%);
    border-radius: 20px;
}

.login_figure_button_text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #222222;
    line-height: 1em;
    text-align: right;
    font-style: normal;
}

.login_figure_button_text::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.login_bottom_record_info {
    position: absolute;
    bottom: calc(constant(safe-area-inset-bottom) + 66px);
    bottom: calc(env(safe-area-inset-bottom) + 66px);
    width: 100%;
    text-align: center;
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #888888;
    line-height: 16px;
    font-style: normal;
}


.code_img, .indexCodeImg {
    display: inline-block;
    width: 1.3rem;
    height: 0.5rem;
    position: relative;
    top: 6px;
    float: right;
    background: #656565;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.indexCodeImg {
    background: none;
}

.indexCodeImg {
    width: 1.98rem;
    height: 0.8rem;
    top: 0;
}

.tip_position {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 0.24rem;
    color: #fff;
    background: url(../images/tip_bg.png) repeat;
    letter-spacing: 2px;
    z-index: 999;
}
.tip_position.tip_message {
    width: 100%;
    top: 45px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tip_message_wrapper {
    max-width: 324px;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 7px 17px;
    box-shadow: 0px 9px 28px 8px rgba(0,0,0,0.05), 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    column-gap: 9px;
}
.tip_message_icon {
    margin-top: 3px;
    min-width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(https://production-sam.oss-cn-hangzhou.aliyuncs.com/training/crm/schoolpal-10/icon-close.png);
}

.tip_position_box {
    position: relative;
    padding: 0.2rem 0.8rem;
}
.tip_position_box.tip_message_content {
    position: unset;
    padding: 0;
    font-family: PingFangSC, PingFang SC, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    word-break: break-word;
}
/*登录 end*/

/*Tab begin*/
.navTab {
    height: 1rem;
    border-top: 1px solid #cdcbcb;
    font-size: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
}

.tabItem {
    font-size: 0.24rem;
    text-align: center;
    display: inline-block;
    width: 49.99%;
    color: #acacab;
    height: 100%;
}

.tabItem > span {
    display: block;
    width: 0.38rem;
    height: 0.38rem;
    margin: 0.14rem auto 0.08rem;
    position: relative;
}

.funcIcon {
    background: url("../images/icon-func-1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.userIcon {
    background: url("../images/icon-user-1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.tabItem.current {
    color: #67adf7;
}

.tabItem.current .funcIcon {
    background: url("../images/icon-func-2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.tabItem.current .userIcon {
    background: url("../images/icon-user-2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

/*Tab end*/

/*列表 begin*/
.container {
    min-height: 100%;
    background: #f0f0f1;
}

.listItem:last-child {
    padding-bottom: 0.6rem;
}

.listBox span, .listRow span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.listRow {
    border-bottom: 1px solid #d0d0d0;
    padding: 0 0.25rem 0 0.3rem;
    background: #fff;
    position: relative;
}

/*.listRow:first-child{border-top: 1px solid #d0d0d0;}*/
.listTitle {
    color: #929292;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: 0.26rem;
    text-align: center;
    position: relative;
}

.listBox {
    margin: 0 auto;
    width: 6.1rem;
    background: #fff;
    padding: 0 0.25rem;
    border: 1px solid #d0d0d0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 5px 0 rgba(13, 4, 9, 0.14);
    -moz-box-shadow: 1px 1px 5px 0 rgba(13, 4, 9, 0.14);
    -ms-box-shadow: 1px 1px 5px 0 rgba(13, 4, 9, 0.14);
    box-shadow: 1px 1px 5px 0 rgba(13, 4, 9, 0.14);
}

.listBoxClick {
    background: #e5e5e6;
}

/*点击样式*/
.listGo, .listFoot {
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.53rem 0 0.25rem;
    position: relative;
    font-weight: lighter;
}

.listFootBtn {
    line-height: 0.8rem;
    font-weight: lighter;
}

.listGo:after {
    content: "";
    position: absolute;
    top: 0.26rem;
    right: 0.25rem;
    width: 0.13rem;
    height: 0.25rem;
    background: url("../images/icon-go.png") center center no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.circle, .circle2 {
    display: inline-block;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    top: 0.02rem;
    font-size: 0.24rem;
    font-weight: lighter;
    width: 0.4rem;
    height: 0.4rem;
    line-height: 0.4rem;
}

.circle2 {
    width: 0.74rem;
    height: 0.74rem;
    line-height: 0.74rem;
    font-size: 0.36rem;
}

.orangeCircle {
    background: #faa269;
}

.blue2Circle {
    background: #67adf7;
}

.blueWhiteCircle {
    background: url("../images/icon-checkun2.png") no-repeat center center;
    background-size: 100% 100%;
}

.blueWhiteCircle.check {
    background: url("../images/icon-check2.png") no-repeat center center;
    background-size: 100% 100%;
}

.greyCircle {
    background: #b5afaf;
}

.redCircle {
    background: #f78267;
}

.blueCircle {
    background: #67adf7;
}

.yellowCircle {
    background: #f5bc41;
}

.blueTxt {
    color: #67adf7 !important;
    text-align: center;
}

.redTxt {
    color: #ef4855 !important;
}

.greyTxt {
    color: #adafb3 !important;
}

.blackTxt {
    color: #4f4e4d !important;
}

.orangeTxt {
    color: #faa269 !important;
}

.paddingBox .listItem:last-child, .paddingBox .changeRow:last-child {
    padding-bottom: 1.6rem;
}

/*列表 end*/

/*工作台 begin*/
.appBox, .dataBox {
    font-size: 0;
}

.dateBoxTitle {
    text-align: right;
    border-bottom: 1px solid #d0d0d0;
    background: #fff;
}

.dataSetting {
    font-size: 0.28rem;
    padding-right: 0.4rem;
    height: 0.6rem;
    line-height: 0.6rem;
}

.settingIcon {
    display: inline-block;
    width: 0.34rem;
    height: 0.34rem;
    background: url("../images/icon-setting.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: text-bottom;
    margin-left: 0.08rem;
}

.dateItem, .appBox > div {
    background: #fff;
    text-align: center;
    display: inline-block;
    width: 49.999%;
    height: 1.6rem;
    position: relative;
    vertical-align: top;
    font-size: 0.24rem;
}

.appBox > div {
    width: 25%;
}

.appBox > div:nth-child(3n) {
    border-right: 0;
}


.dateItem {
    background: #fff;
    border-bottom: 0.02rem solid #d0d0d0;
    border-right: 0.02rem solid #d0d0d0;
    padding: 0.35rem 0 0 0;
    line-height: 1.5;
}

.dateItem:nth-child(2n-1) {
    border-right: 0;
}

.dateItem:nth-child(2), .dateItem:nth-child(3), .appBox > div:nth-child(1), .appBox > div:nth-child(2), .appBox > div:nth-child(3) {
    z-index: 10;
}

.dateItem:nth-child(4), .dateItem:nth-child(5), .appBox > div:nth-child(4), .appBox > div:nth-child(5), .appBox > div:nth-child(6) {
    z-index: 5;
}

.dateItem .redTxt {
    color: #fa7e8a !important;
}

.appBox div:before {
    content: "";
    display: block;
    width: 0.6rem;
    height: 0.56rem;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    margin: 0.38rem auto 0.1rem;
}

.deskIcon1:before {
    background: url("../images/icon-desk1.png") no-repeat center center;
}

/*校内通知*/
.deskIcon2:before {
    background: url("../images/icon-desk2.png") no-repeat center center;
}

/*咨询本*/
.deskIcon3:before {
    background: url("../images/icon-desk3.png") no-repeat center center;
}

/*课程表*/
.deskIcon4:before {
    background: url("../images/icon-desk4.png") no-repeat center center;
}

/*记上课*/
.deskIcon5:before {
    background: url("../images/icon-desk5.png") no-repeat center center;
}

/*校宝秀*/
.deskIcon6:before {
    background: url("../images/icon-desk6.png") no-repeat center center;
}

/*校宝家*/
.deskIcon7:before {
    background: url("../images/icon-desk7.png") no-repeat center center;
}

/*学员名册*/
.deskIcon8:before {
    background: url("../images/icon-desk8.png") no-repeat center center;
}

/*报表*/
.deskIcon9:before {
    background: url("../images/icon-desk9.png") no-repeat center center;
}

/*帮助中心*/
.deskIcon11:before {
    background: url("../images/icon-desk11.png?v=3") no-repeat center center;
    width: 0.7rem !important;
    height: 0.8rem !important;
    position: relative;
    left: 0.1rem;
    top: -0.2rem;
}

/*收银宝*/
.appBox .deskIcon11:before {
    margin-bottom: -0.1rem !important;
}

.appBox .deskIcon10:before {
    width: 0.85rem;
    background: url("../images/icon-desk10.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

/*校宝学院*/
.newIcon:after {
    content: "";
    display: block;
    width: 0.17rem;
    height: 0.17rem;
    position: absolute;
    top: 0.34rem;
    right: 0.84rem;
    background: url("../images/icon-redSmall.png") center center no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

/*数据*/
.dataItem {
    padding-bottom: 1.6rem;
}

.selectHead {
    font-size: 0;
    border-bottom: 1px solid #d0d0d0;
    background: #fff;
    text-align: center;
}

.hiddenSelect {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.selectTwo, .selectThree {
    position: relative;
    height: 0.8rem;
    line-height: 0.8rem;
    width: 50%;
    font-size: 0.3rem;
    border-left: 1px solid #d0d0d0;
    display: inline-block;
}

.selectTwo span, .selectThree span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    max-width: 70%;
    vertical-align: middle;
}

.selectThree {
    width: 33.33%;
}

.selectTwo:first-child, .selectThree:first-child {
    border-left: 0;
}

.selectThree:after, .selectTwo:after {
    content: "";
    display: inline-block;
    border-top: 0.16rem solid #4f4e4d;
    border-left: 0.1rem solid transparent;
    border-right: 0.1rem solid transparent;
    vertical-align: middle;
}

.listTab {
    background: #fff;
}

.listTabHead {
    border-bottom: 0;
}

.listTab table {
    width: 100%;
    table-layout: fixed;
}

.threeRowTab td, .threeRowTab th {
    width: 33.33%;
    font-size: 0.28rem;
}

.fiveRowTab td, .fiveRowTab th {
    width: 20%;
    font-size: 0.24rem;
}

.listTab td, .listTab th {
    text-align: center;
    height: 0.8rem;
    border-bottom: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
    padding: 0.2rem 0;
}

.listTab td:first-child, .listTab th:first-child {
    border-left: 0;
}

.listTab th {
    border-top: 1px solid #d0d0d0;
}

.listTab .listRow {
    text-align: center;
    display: block;
    padding: 0.2rem 0.25rem;
}

.classNameTd {
    width: 20%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*排行*/
.rankItem .listRow {
    padding: 0.25rem 0 0.35rem;
    text-align: center;
    color: #67adf7;
}

.outCircle, .inCircle {
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.outCircle {
    border: 0.05rem solid #85bffd;
    width: 2.54rem;
    height: 2.54rem;
    display: table;
    padding: 0.06rem;
    margin: 0.25rem auto 0;
}

.rankItem .inCircle {
    border: 0.01rem solid #85bffd;
    display: table-cell;
    vertical-align: middle;
    font-size: 0.6rem;
    font-weight: lighter;
}

.rankListItem {
    font-size: 0.28rem;
}

.rankListItem .listRow {
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.25rem 0 0.25rem
}

.rankNum {
    display: inline-block;
    width: 1rem;
}

.rankListItem .rankSum {
    display: inline-block;
    width: 2.6rem;
    padding-top: 0.27rem;
    position: relative;
    overflow: visible;
}

.rankName {
    width: 1.2rem;
    display: inline-block;
}

.rankCount {
    display: inline-block;
    background: #67adf7;
    height: 0.2rem;
}

.myCount {
    display: inline-block;
    line-height: 1;
    position: absolute;
    top: 0.24rem;
}

/*通知公告*/
.listInfoBox {
    display: inline-block;
    width: 4.7rem;
}

.noticeName {
    display: inline-block;
    width: 3rem;
}

.noticeDate {
    float: right;
    font-size: 0.24rem;
    color: #9b9b9a;
}

.noticeTitle, .noticeInfo {
    width: 4.6rem;
    display: block;
}

.noticeInfo {
    font-weight: lighter;
}

.noticeNew .greyCircle {
    background: #67adf7;
}

.noticeNew .listGo {
    color: #67adf7;
}

.noticeNew .listGo:after {
    background: url("../images/next-icon.png") center center no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.noticeHead {
    border-bottom: 1px solid #d8d7d9;
    margin: 0 0.36rem;
    padding: 0.1rem 0;
}

.headTitle {
    line-height: 1.4;
}

.headSub {
    color: #7c7b79;
    font-size: 0.26rem;
    font-weight: lighter;
    margin-top: 0.2rem;
}

.headSub .marginTxt {
    display: inline-block;
    margin-right: 0.5rem;
    max-width: 3.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: text-top;
}

.noticeContent {
    color: #000;
    font-size: 0.28rem;
    font-weight: lighter;
    margin: 0.3rem 0.36rem 0;
    word-wrap: break-word;
    word-break: normal;
}

.noticeItem .listFoot {
    padding: 0;
}

.noticeListHead .addCommu {
    border-right: 0;
    width: 100%;
}

.changeRow .areaItem {
    border-bottom: 1px solid #d0d0d0;
}

.changeRow .noticeTitleInput {
    font-weight: lighter;
    color: #9c9b9b;
    text-overflow: ellipsis;
    width: 4rem;
    text-align: right;
}

.noticeTypeRpw .listRow {
    min-height: 0.8rem;
    display: table;
    height: auto !important;
    width: 100%;
}

.noticeTypeRpw .roleInfoBox {
    width: 5.3rem;
}

.noticeItem:last-child {
    padding-bottom: 1.6rem;
}

/*富文本样式*/
.noticeContent ul, .noticeContent ol {
    margin: 1em 0;
    padding: 0 40px;
}

.noticeContent ul {
    list-style: disc;
}

.noticeContent ol {
    list-style: decimal;
}

.noticeContent a {
    text-decoration: underline;
}

/*工作台 end*/

/*我的 begin*/
.userItem span {
    display: inline-block;
    height: 0.8rem;
    line-height: 0.8rem;
}

.userInfo {
    float: right;
    color: #9c9b9b;
    max-width: 3rem;
    font-size: 0.28rem;
}

.rowType {
    max-width: 90%;
}

.userInfo.listGo {
    padding-right: 0.25rem;
}

.userInfo.listGo:after {
    right: 0;
}

.exitBtn {
    padding: 0;
    text-align: center;
}

.rowSub {
    margin-left: 0.25rem;
    color: #9c9b9b;
    display: inline-block;
    max-width: 3.2rem;
}

.changeRow .listRow {
    padding: 0 0.3rem;
    height: 0.8rem;
    line-height: 0.8rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*.changeRow .listRow:first-child{border-top: 1px solid #d0d0d0;}*/
.changeRow:before {
    content: "";
    display: block;
    height: 0.6rem;
}

.changeWithHead:before {
    display: none;
}

.changeWithHead .listTitle {
    text-align: center;
}

.changeRow input {
    color: #373634;
    width: 5.1rem;
    padding-right: 0.2rem;
}

.changeRow .smallInput {
    text-overflow: clip;
    width: 3rem;
    text-align: right;
}

.checkItem {
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    border: 0.04rem solid #676766;
    margin-right: 0.2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    vertical-align: middle !important;
    margin-bottom: 0.02rem;
}

.checkItem:before {
    content: "";
    display: block;
    height: 0.13rem;
    border: 0.02rem solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.delIcon {
    display: block;
    float: right;
    width: 0.29rem;
    height: 0.29rem;
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    background: url("../images/icon-del.png") center center no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.checkIcon {
    display: block;
    float: right;
    width: 0.33rem;
    height: 0.22rem;
    position: absolute;
    top: 0.3rem;
    right: 0.5rem;
    background: url("../images/icon-check.png") center center no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.changeRow .qr_code {
    width: 2.2rem;
    height: 0.57rem;
    background: #fff;
    color: #66aef8;
    border: 1px solid #d0d0d0;
}

.changeRow .qr_reSend {
    color: #787878;
}

.roleChangeRow .listRow {
    min-height: 1.2rem;
    padding: 0.2rem 0.3rem;
    line-height: 1.4;
    display: table;
    width: 100%;
    height: auto;
}

.roleChangeRow .delIcon {
    top: 0.45rem;
}

.checkInfo {
    white-space: normal !important;
    display: block;
}

.current .checkItem:before {
    background: #67adf7;
}

.current .checkInfo {
    display: inline-block;
}

.current .rowSub {
    color: #67adf7
}

.checkGo {
    height: 0.25rem;
    position: relative;
    right: 0.15rem;
}

.checkBox {
    display: table-cell;
    vertical-align: middle;
    width: 0.46rem;
    height: 0.25rem;
}

.paddingLeft {
    padding-left: 0.76rem !important;
}

.delBox {
    display: table-cell;
    vertical-align: middle;
    width: 0.29rem;
}

.checkGoBox {
    display: table-cell;
    vertical-align: middle;
    max-width: 0.8rem;
}

.checkGoBox .listGo:after {
    top: 0.06rem;
    right: 0.2rem;
}

.roleInfoBox {
    width: 4.4rem;
}

.roleChangeRow .delIcon {
    float: none;
    position: relative;
    top: auto;
    right: auto;
}

.roleChangeRow p {
    white-space: normal;
}

/*遮罩*/
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.confirmBox {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #f0eff0;
}

.confirmBox div {
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
    font-size: 0.3rem;
    background: #fff;
    border-top: 1px solid #d0d0d0;
}

.confirmBox .blueTxt {
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 0.2rem;
}

/*我的 end*/

/*课程表 begin*/
.headDate {
    text-align: center;
    height: 1rem;
    line-height: 1rem;
    border-bottom: 1px solid #d0d0d0;
    background: #fff;
    padding: 0 0.25rem;
}

.lastWeek, .nextWeek, .currentDate {
    color: #67adf7;
    font-size: 0.28rem;
    text-align: center;
}

.currentDate {
    width: 3rem;
}

.lastWeek:before, .nextWeek:after {
    content: "";
    display: inline-block;
    width: 0.15rem;
    height: 0.28rem;
    vertical-align: middle;
}

.lastWeek:before {
    background: url("../images/last-icon.png") no-repeat center center;
    margin-right: 0.16rem;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.nextWeek:after {
    background: url("../images/next-icon.png") no-repeat center center;
    margin-left: 0.16rem;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.headWeek {
    font-size: 0;
    border-bottom: 1px solid #d0d0d0;
}

.headWeek li {
    display: inline-block;
    width: 14.25%;
}

.headWeek a {
    font-size: 0.24rem;
    background: #fff;
    display: block;
    height: 1.2rem;
    border-left: 1px solid #d0d0d0;
    line-height: 1.8;
    padding: 0.16rem 0;
    text-align: center;
}

.headWeek li:first-child a {
    border-left: 0;
}

.headWeek li.current a {
    background: #67adf7;
    color: #fff;
}

.courseItem .listRow {
    padding: 0.19rem 0.25rem 0.19rem 0.35rem;
}

.courseItem .listRow .times {
    font-size: 0.28rem;
    vertical-align: middle;
    font-weight: lighter;
}

.courseInfo {
    width: 2.7rem;
    margin-left: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

.courseItem h4 {
    font-weight: normal;
}

.courseItem p {
    font-size: 0.28rem;
    font-weight: lighter;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.courseItem .listRow .nextWeek {
    float: right;
    vertical-align: middle;
    text-align: right;
    position: relative;
    top: 0.16rem;
}

.courseDetailItem .listRow {
    display: block;
    padding-left: 0.5rem;
}

.courseDetailInfo {
    width: 4.4rem;
    float: left;
}

/*课程表 end*/

/*记上课 begin*/
.searchBox {
    height: 1rem;
    background: #fff;
    position: fixed;
    padding: 0 0.15rem;
    border-bottom: 1px solid #d0d0d0;
    width: 100%;
    z-index: 100;
}

.searchBox:before {
    content: "";
    display: inline-block;
    width: 0.32rem;
    height: 0.32rem;
    background: url("../images/icon-search.png") no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    left: 0.3rem;
    top: 0.35rem;
    z-index: 10;
}

.searchBox input {
    position: absolute;
    top: 0.2rem;
    width: 5rem;
    height: 0.6rem;
    padding: 0 0.55rem;
    font-size: 0.28rem;
    border-radius: 5px;
    background: #f0f0f1;
}

.searchBox .delIcon {
    top: 0.35rem;
    right: 1.4rem;
}

.searchBtn {
    float: right;
    margin-top: 0.2rem;
    height: 0.6rem;
    width: 1rem;
    border-radius: 5px;
    background: #67adf7;
    color: #fff;
    font-size: 0.28rem;
}

.listInfo {
    border-bottom: 1px solid #d0d0d0;
    padding: 0.2rem 0 0.1rem;
}

.listInfo .pLine {
    font-size: 0;
    font-weight: lighter;
    line-height: 1.8;
    position: relative;
    min-height: 0.46rem;
}

.listInfo .pLine span {
    font-size: 0.26rem;
}

.boxTitle {
    max-width: 4rem;
    display: inline-block;
}

.nameTxt, .countTxt, .classTxt {
    display: inline-block;
}

.nameTxt {
    width: 2rem;
}

.countTxt {
    width: 1.9rem;
}

.classTxt {
    width: 1.7rem;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
}

.dateList {
    border-bottom: 1px solid #d0d0d0;
    height: 0.8rem;
    line-height: 0.8rem;
    font-weight: lighter;
    font-size: 0.26rem;
}

.dateList.listGo {
    padding: 0 0.15rem 0 0;
}

.dateList.listGo:after {
    right: 0;
}

.classDate {
    display: inline-block;
    width: 1.4rem;
}

.classRecord {
    width: 3.86rem;
    display: inline-block;
}

.classRecord .circle {
    vertical-align: text-bottom;
}

.recordCount {
    display: inline-block;
    width: 0.46rem;
    margin-left: 0.04rem;
}

.classItem .listFoot {
    padding: 0;
}

.listFoot a, .listFootBtn a {
    text-align: center;
    width: 49%;
    display: inline-block;
    border-left: 1px solid #d0d0d0;
}

.listFoot a:first-child, .listFootBtn a:first-child {
    border-left: 0;
}

/*记上课操作*/
.logClassHead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.logClassTitle {
    height: 0.8rem;
    line-height: 0.8rem;
    background: #fff;
    padding: 0 0.3rem;
    border-bottom: 1px solid #d0d0d0;
}

.dateTime {
    color: #67adf7;
}

.logClassItem {
    padding-top: 3rem;
    padding-bottom: 1.6rem;
}

.viewLogItem {
    padding: 0;
}

.editLogItem {
    padding: 1rem 0 1.6rem;
}

.logClassTab {
    width: 100%;
    text-align: left;
    background: #fff;
}

.logClassTab td {
    height: 1rem;
    width: 1rem;
    border-bottom: 1px solid #d0d0d0;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.26rem;
}

.logClassTab td:first-child {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    width: 2.1rem;
    max-width: 2.1rem;
    font-size: 0.3rem;
}

.logClassTab td:last-child {
    width: 1.3rem;
}

.viewLogItem td:first-child, .logClassTab td.dateTd {
    padding-right: 0;
}

.logClassTab .circle {
    vertical-align: text-bottom;
    margin-right: 0.04rem;
}

.viewGo {
    position: relative;
}

.viewGo:after {
    content: "";
    display: block;
    width: 0.13rem;
    height: 0.25rem;
    background: url("../images/icon-go.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    position: absolute;
    right: 0.2rem;
    top: 0.36rem;
}

.logClassFoot {
    color: #fff;
    text-align: center;
    height: 1rem;
    line-height: 1rem;
    background: #67adf7;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    font-size: 0.3rem;
    font-weight: bold;
}

.classItem .listTitle {
    height: 0.2rem;
}

.status {
    display: block !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    font-size: 0.2rem;
    line-height: 0.35rem !important;
    width: 0.7rem !important;
    text-align: center;
    background: #B3B1B1;
}

.logClassFootBox {
    font-size: 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 20;
}

.logClassFootBox .logClassFoot {
    width: 49.8%;
    display: inline-block;
    position: relative;
    bottom: 0;
    left: 0;
}

/*免费版记上课 padding*/
.logClassItemFree {
    padding-top: 2rem;
}

/*评价*/
.areaItem {
    min-height: 1.6rem;
    background: #fff;
    padding: 0.15rem 0.3rem;
    border-bottom: 1px solid #d0d0d0;
    word-break: break-all;
}

.areaItem textarea {
    width: 100%;
    height: 1.3rem;
    font-size: 0.28rem;
}

.assessItem {
    padding: 0 0.3rem;
    background: #fff;
}

.assessItem > div {
    border-bottom: 1px solid #d0d0d0;
    height: 0.8rem;
}

.assessItem span {
    line-height: 0.8rem;
    display: inline-block;
}

.assessItem span:first-child {
    width: 1.4rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
    margin-right: 0.7rem;
}

.assessStu {
    line-height: 0.4rem !important;
    height: 0.8rem;
}

.starCheck {
    background: url("../images/icon-star1.png") no-repeat center center;
}

.starGreyCheck {
    background: url("../images/icon-starGrey1.png") no-repeat center center;
}

.starUnCheck {
    background: url("../images/icon-star2.png") no-repeat center center;
}

/*.starHalf{width: 0.13rem !important;background: url("../images/icon-starHalf.png") no-repeat center center;}*/
.starCheck, .starUnCheck, .starGreyCheck {
    display: inline-block;
    width: 0.35rem;
    height: 0.33rem !important;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    margin-right: 0.08rem;
}

/*记上课 end*/

/*咨询本+学员 begin*/
.listTabBarDiv, .listTabBarDiv2 {
    font-size: 0;
    padding: 0;
    border-bottom: 0;
}

.listTabBar {
    width: 50%;
    font-size: 0.28rem;
    line-height: 0.8rem;
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid #d0d0d0;
}

.listTabBarDiv2 .listTabBar {
    width: 33.33%;
}

.listTabBar.current {
    color: #67adf7;
    border-bottom: 2px solid #67adf7;
}

.communicateHead, .noticeListHead {
    font-size: 0;
    padding: 0.13rem 0;
    background: #fff;
    border-bottom: 1px solid #d0d0d0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.headBtn {
    vertical-align: middle;
}

.addCommu, .searchCommu {
    display: inline-block;
    height: 0.74rem;
    line-height: 0.74rem;
    width: 49.99%;
    font-size: 0.3rem;
    text-align: center;
    color: #67adf7;
}

.addCommu:before {
    width: 0.27rem;
    height: 0.27rem;
    background: url("../images/icon-add.png") no-repeat center center;
}

.searchCommu:before {
    width: 0.32rem;
    height: 0.32rem;
    background: url("../images/icon-searchBlue.png") no-repeat center center;
}

.addCommu:before, .searchCommu:before {
    content: "";
    display: inline-block;
    margin-right: 0.1rem;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
}

.addCommu, .searchCommu {
    border-left: 1px solid #d0d0d0;
}

.addCommu:first-child {
    border-left: 0;
}

.communicateItem .listRow {
    padding: 0.15rem 0.25rem 0.1rem 0.35rem;
}

.communicateItem .listInfoBox {
    margin-left: 0.15rem;
}

.communicateItem .noticeInfo {
    line-height: 1.6;
    font-size: 0.28rem;
    display: inline-block;
    width: 2.6rem;
}

.communInfo .circle2 {
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: 0.28rem;
}

.communInfo .listInfoBox {
    width: 4.85rem;
}

.communInfo .noticeInfo {
    width: 4.85rem;
    max-height: 1rem;
    white-space: normal;
    word-break: break-all;
}

.changeRow .textareaDiv {
    height: 1.6rem;
    padding: 0.2rem 0.3rem;
}

.textareaDiv textarea {
    height: 1.2rem;
    width: 100%;
}

.listChoose {
    float: right;
    display: block;
    width: 0.46rem;
    height: 0.46rem;
    background: url("../images/icon-choose-1.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    position: relative;
    top: 0.14rem;
}

.listChoose.choose {
    background: url("../images/icon-choose-2.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.changeRow .commuContent, .stuItem .commuContent, .stuMultiInfo {
    height: auto;
    line-height: 1.6;
    padding: 0.2rem 0.3rem;
    word-break: break-all;
    word-wrap: break-word;
}

.commuContInfo {
    white-space: normal;
    font-size: 0.28rem;
    font-weight: lighter;
    word-break: break-all;
    word-wrap: break-word;
}

.commuNavTab .tabItem, .stuNavTab .tabItem {
    color: #737373;
}

.editIcon {
    background: url("../images/icon-commu-1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.addIcon {
    background: url("../images/icon-commu-2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.profileIcon {
    background: url("../images/icon-commu-3.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.commuName {
    display: inline-block;
    max-width: 1.5rem;
    vertical-align: middle !important;
}

.subSpan {
    background: #43bbb4;
    color: #fff;
    font-size: 0.24rem;
    margin-left: 0.16rem;
    padding: 0.06rem 0.1rem;
    vertical-align: middle !important;
    border-radius: 3px;
}

/*学员名册*/
.studentItem {
    margin-top: 0.2rem;
}

.studentItem .subSpan {
    background: #f78267;
}

.studentItem .commuName {
    max-width: 1.8rem;
}

.stuNavTab .tabItem {
    width: 33.33%;
}

.stuNavTab .tabItem, .commuNavTab .tabItem {
    border-left: 1px solid #d0d0d0;
}

.stuNavTab .tabItem:first-child, .commuNavTab .tabItem:first-child {
    border-left: 0;
}

.stuItem, .stuMoreItem {
    line-height: 0.8rem;
}

.stuMoreItem {
    color: #adafb3;
}

.stuInfo {
    max-width: 4rem;
    color: #4f4e4d;
}

.listGo select {
    font-size: 0.28rem;
}

.stuClassState1, .stuClassState2 {
    padding: 0 0.2rem;
    line-height: 0.45rem;
    color: #fff;
    font-size: 0.24rem;
    -webkit-border-radius: 0.03rem;
    -moz-border-radius: 0.03rem;
    border-radius: 0.03rem;
}

.stuClassState1 {
    background: #67adf7;
}

.stuClassState2 {
    background: #b5afaf;
}

.studentItem .listBox {
    line-height: 0.45rem;
}

.filesItem .listRow {
    padding: 0.2rem 0.3rem;
}

.filesItem .bigSpan {
    display: inline-block;
    max-width: 4.5rem;
    white-space: normal;
    vertical-align: top;
}

.stuMoreItem input {
    text-align: right;
    right: 0.3rem;
    font-size: 0.28rem;
    position: relative;
    width: 4.2rem;
}

.stuMoreItem .listGo input {
    right: 0;
}

.stuMoreItem .listGo {
    padding: 0 0.3rem 0 0;
}

.stuMoreItem .listGo:after {
    right: 0;
}

.phoneIcon:before {
    content: "";
    display: inline-block;
    width: 0.32rem;
    height: 0.32rem;
    background: url("../images/icon-phone.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
    margin-right: 0.08rem;
}

.titleName, .titleClass {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.titleName {
    max-width: 1.6rem;
}

.titleClass {
    max-width: 3.4rem;
}

/*开关*/
.switch {
    display: inline-block;
    float: right;
    height: 0.5rem;
    position: relative;
    top: 0.12rem;
    left: 0.1rem;
}

.fold-switchStyle {
    display: none;
}

.fold-switchStyle + label {
    border-radius: 15px;
    margin: 0;
    display: inline-block;
    position: relative;
    height: 0.5rem;
    width: 0.9rem;
    line-height: 0.5rem;
    background-color: #cbcbcb;
    color: #939393;
}

.fold-switchStyle + label:before {
    content: "";
    display: inline-block;
    position: absolute;
    background: #fff;
    top: 1px;
    left: 1px;
    border-radius: 50%;
    width: 0.46rem;
    height: 0.46rem;
    -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.fold-switchCheckStyle label {
    background-color: #35c367;
    color: #fff;
}

.fold-switchCheckStyle label:before {
    left: 0.41rem;
}

/*咨询本 end*/

/*无数据*/
.noDateCont {
    padding-top: 3rem;
    text-align: center;
    height: 100%;
    background: #f0f0f1;
}

.noDataIcon {
    display: block;
    width: 2.34rem;
    height: 2.34rem;
    margin: 0 auto;
    background: url("../images/icon-noData.png") center center no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.noData {
    color: #a4a2a2;
    font-size: 0.4rem;
    margin-top: 0.36rem;
}

/*提示页面*/
.update-top {
    padding: 1.2rem 0.86rem 0.80rem;
    font-size: 0.34rem;
    line-height: 0.5rem;
    color: #686a74;
    text-align: center;
}

.update-bg {
    position: absolute;
    width: 100%;
    height: 3.80rem;
    background: url(../images/update_bottom_bg.png) no-repeat bottom;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    bottom: 0;
    left: 0;
}

/*校宝家*/
.sphItem {
    margin-top: 0.2rem;
    border-bottom: 1px solid #d0d0d0;
}

.sphItem:first-child {
    margin-top: 0;
}

.sphItem .listTitle {
    margin-top: -0.2rem;
}

.sphItem .listRow {
    border: 0;
    color: #000;
    line-height: 0.8rem;
}

.sphItem .areaItem {
    padding: 0 0.3rem 0.2rem;
    min-height: 0.5rem;
    border-bottom: 0;
}

.sphItem textarea {
    font-size: 0.28rem;
}

.sphItem .sphContentArea {
    height: 1.7rem;
}

.sphItem .listGo {
    color: #9c9b9b;
}

.addStu:after {
    content: "";
    display: inline-block;
    width: 0.3rem;
    height: 0.29rem;
    background: url("../images/icon-addCircle.png") no-repeat center center;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    background-size: 100%;
    margin-left: 0.08rem;
    margin-bottom: 0.05rem;
    vertical-align: middle;
}

.sphClassItem {
    margin-bottom: 0.2rem;
}

.sphClassItem .boxTitle {
    max-width: 4.2rem;
}

.chooseAll {
    width: 6.1rem;
    margin: 0 auto;
    line-height: 0.75rem;
}

.chooseStu:before {
    content: "";
    display: inline-block;
    width: 0.3rem;
    height: 0.3rem;
    vertical-align: middle;
    background: #fff;
    margin-right: 0.1rem;
    border: 1px solid #b8b8b9;
    border-radius: 50%;
    box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.18);
}

.chooseStu.check:before {
    background: url("../images/icon-sphCheck.png") no-repeat center center;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    background-size: 100%;
    border: 0;
    width: 0.32rem;
    height: 0.32rem;
    box-shadow: none;
}

.chooseSubmit {
    font-size: 0.28rem;
    position: fixed;
    width: 100%;
    height: 1rem;
    background: #fff;
    z-index: 20;
    bottom: 0;
    left: 0;
    padding: 0.2rem 0.15rem;
    border-top: 1px solid #d0d0d0;
}

.chooseSubmit .blueTxt {
    line-height: 0.6rem;
}

.submit {
    background: #66b1fc;
    color: #fff;
    height: 0.6rem;
    padding: 0 0.3rem;
    line-height: 1;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    border-radius: 0.1rem;
}

/*蓝底白字按钮*/
.stuHead {
    width: 0.57rem;
    height: 0.57rem;
    vertical-align: middle;
    margin: 0 0.25rem 0.15rem 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.sphStuItem {
    border-top: 1px solid #d0d0d0;
    padding-left: 0.7rem;
    background: #fff;
}

.sphStuItem:first-child {
    border-top: 0;
}

.sphStuItem .listRow {
    border-top: 1px solid #d0d0d0;
    line-height: 1rem;
    position: relative;
    padding-left: 0.1rem;
}

.sphStuItem .listRow:first-child {
    border-top: 0;
}

.sphStuItem .chooseStu:before {
    position: absolute;
    top: 0.3rem;
    left: -0.45rem;
}

.sphStu {
    display: inline-block;
    max-width: 4.4rem;
}

.sphDetailPic {
    margin: 0 0.32rem;
}

/*添加图片*/
.picRow {
    padding: 0.2rem 0.16rem 0.1rem;
    font-size: 0;
}

.picRow > span {
    margin: 0 0.1rem 0.1rem;
}

.addPic {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 1px dashed #67adf7;
    font-size: 0.18rem;
    color: #67adf7;
    line-height: 1;
    padding-top: 0.12rem;
    text-align: center;
}

.addPic:before {
    content: "";
    display: block;
    width: 0.46rem;
    height: 0.44rem;
    margin: 0 auto 0.08rem;
    background: url("../images/icon-pic.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

.viewPic {
    position: relative;
    display: inline-block;
    height: 1rem;
    margin: 0 0.04rem;
}

.picSmall {
    width: 1rem;
    height: 1rem;
}

.picBig {
    width: 5.6rem;
    display: block;
    margin: 0 auto;
}

.delPic {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    width: 100%;
    text-align: center;
    line-height: 0.4rem;
    font-size: 0.24rem;
}

.delfoot {
    background: #f05b69;
}

.picBox {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 1.2rem;
    padding-top: 0.2rem;
}

/*帮助*/
.helpItem .listRow {
    line-height: 0.8rem;
}

.helpItem img {
    vertical-align: middle;
}

.helpSpan {
    width: 4.6rem;
    display: inline-block;
    vertical-align: middle !important;
}

.searchRelated {
    font-size: 0.24rem;
    position: absolute;
    width: 5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06);
    z-index: 21;
    top: 0.76rem;
    left: 0.15rem;
}

.searchRelated li {
    padding: 0.14rem 0.3rem;
}

.helpWarning {
    padding-left: 0.3rem;
    margin-top: 0.15rem;
    display: block;
    text-align: left;
    font-size: 0.24rem;
}

.help-content {
    font-size: 0.26rem;
    padding: 0.25rem 0.5rem;
    line-height: 1.6;
}

.help-content img {
    width: 5.06rem;
    display: block;
    margin: 0.4rem auto;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.11);
}

.help-content p {
    font-weight: lighter;
}

.helpTips {
    padding-top: 0.7rem;
    text-align: center;
    color: #999;
    line-height: 1.6;
    font-size: 0.24rem;
}

.helpTips .blueTxt {
    text-decoration: underline;
}

/*反馈*/
.suggestSuccess {
    text-align: center;
    padding-top: 0.8rem;
}

.suggestSuccess:before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background: url("../images/icon-check-big.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    margin: 0 auto 0.35rem;
}

.successTitle {
    font-size: 0.28rem;
    margin-bottom: 0.3rem;
}

.successInfo, .successBack {
    font-size: 0.24rem;
    color: #999;
}

.successInfo {
    padding: 0 0.3rem;
}

.successBack:before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.4rem;
    background: url("../images/icon-back.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    margin: 3.4rem auto 0.2rem;
}

.suggestItem .listRow {
    padding: 0.15rem 0.3rem;
    height: 0.8rem;
}

.listInput {
    height: 100%;
    width: 100%;
    font-size: 0.28rem;
}

/*报表*/
.reportItem {
    margin-bottom: 0.2rem;
}

.reportItemHead {
    line-height: 0.7rem;
}

.reportTime {
    font-size: 0.24rem;
}

.reportType {
    font-size: 0.28rem;
}

.reportItem .listInfo {
    padding: 0 0 0.25rem;
}

.reportItem .listGo, .reportDataItem .listGo {
    padding: 0 0.17rem;
    font-size: 0.24rem;
    line-height: 0.6rem;
    height: 0.6rem;
}

.reportItem .listGo:after, .reportDataItem .listGo:after {
    right: 0;
    top: 0.17rem;
}

.reportSpan {
    width: 49%;
    display: inline-block;
    vertical-align: middle !important;
}

.fontSize1 {
    font-size: 0.24rem;
}

.fontSize2 {
    font-size: 0.18rem;
}

.fontSize3 {
    font-size: 0.22rem;
}

.reportDataItem {
    margin-bottom: 0.4rem;
    font-size: 0.24rem;
}

.reportDataItem:last-child {
    margin-bottom: 0;
}

.reportDataItem .listTitle {
    padding: 0 0.3rem;
}

.reportDataItem .listTabHead {
    text-align: left;
    padding: 0.2rem 0.3rem;
    line-height: 1.6;
}

.reportDataItem .listTab {
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #d0d0d0;
}

.reportDataItem .reportTab {
    width: 5.76rem;
    margin: 0 auto;
    border-right: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
    font-size: 0.21rem;
}

.reportChartRow {
    padding: 0 0.3rem;
    background: #fff;
}

.reportChartRow:last-child {
    border-bottom: 1px solid #d0d0d0;
}

.reportChartRow:last-child .chartBox {
    border-bottom: 0;
}

.chartBox {
    border-bottom: 1px solid #d0d0d0;
    padding: 0.3rem 0;
}

.reportData {
    line-height: 0.8rem;
    border-bottom: 1px solid #d0d0d0;
}

.dataRow {
    border-bottom: 0;
}

.reportData .fontSize2 {
    margin-left: 0.15rem;
}

.reportChart {
    width: 4.71rem;
    height: 2.34rem;
    margin: 0 auto;
    background: url("../images/bg_chart.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    position: relative;
}

.chartItem {
    position: absolute;
    text-align: center;
    bottom: -0.43rem;
    height: 2.5rem;
}

.chartData {
    padding: 0 0.1rem;
    line-height: 0.25rem;
    background: #e2edf8;
    -webkit-border-radius: 0.05rem;
    -moz-border-radius: 0.05rem;
    border-radius: 0.05rem;
}

.chartGraph {
    background: #68aef7;
    width: 0.4rem;
    margin: 0.14rem auto;
    display: block;
    -webkit-border-radius: 0.03rem;
    -moz-border-radius: 0.03rem;
    border-radius: 0.03rem;
}

.chartItem:nth-child(2n) .chartGraph {
    background: #fbac2c;
}

.detailTime {
    position: absolute;
    left: 0.3rem;
    top: 0;
}

.reportHeadDiv {
    border-bottom: 1px solid #d0d0d0;
}

.reportHead {
    line-height: 0.6rem;
    font-size: 0.21rem;
}

.reportDetailInfo {
    border-bottom: 0;
    padding: 0.1rem 0;
}

.reportDetailInfo .pLine span {
    font-size: 0.21rem;
    color: #959595;
    font-weight: normal;
    line-height: 2;
}

.reportDetailInfo .nameTxt {
    width: 3rem;
}

.reportDetailInfo .countTxt {
    width: 2.5rem;
}

.reportDetailInfo .largeTxt {
    width: 100%;
    display: inline-block;
}

.reportTip {
    padding: 0 0.3rem;
    font-size: 0.2rem;
    margin-top: 0.2rem;
    line-height: 1.6;
}

.spanWidth {
    display: inline-block;
    width: 3rem;
}

.reportSumRow {
    background: #fff url("../images/bg_chart2.png") no-repeat 0.6rem 0;
    -webkit-background-size: 3.57rem 2.63rem;
    -moz-background-size: 3.57rem 2.63rem;
    background-size: 3.57rem 2.63rem;
    height: 3.2rem;
    position: relative;
}

.reportSumRow span {
    display: block;
}

.reportSumBox1, .reportSumBox2 {
    position: absolute;
}

.reportSumBox1 {
    top: 0.52rem;
    left: 0.65rem;
    text-align: center;
    width: 2.8rem;
    color: #fff;
}

.reportSumBox1 span:nth-child(2), .reportSumBox1 span:nth-child(3) {
    margin-top: 0.5rem;
}

.reportSumBox2 {
    top: 1.35rem;
    left: 4.2rem;
}

.reportSumBox2 span:nth-child(2) {
    margin-top: 0.45rem;
}

/* ------------------------------------  style css ----------------------------------*/

/*当焦点在输入框时，兼容性的媒体查询*/
@media screen and (max-height: 400px) {
    .content {
        height: 8.0rem;
    }

    /*.logClassFoot,.chooseSubmit{display: none;}*/
    .login_figure {
        display: none;
    }
}

/*iphone4*/
@media screen and (max-height: 480px) {
    .login_button {
        margin-top: 0.4rem;
    }

    .headWeek li {
        width: 14.1%;
    }

    .headWeek li:first-child {
        width: 15%;
    }

    .login_figure {
        display: none;
    }
}

/*安卓机型*/
@media screen and (min-width: 384px) and (max-height: 519px) {
}

/* ------------------------------------  media css ----------------------------------*/


/*横屏显示*/
#div_body {
    height: 100%;
}

.lockMask_darker {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.lockMask_darker {
    position: absolute;
    z-index: 110;
    filter: alpha(opacity=90);
    -khtml-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
}

.rotate_phone {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 50%;
    margin-top: -1rem;
    z-index: 111;
    text-align: center;
}

.rotate_phone .icon_phone {
    height: 1rem;
    width: 1rem;
    background: url("../images/rotate_phone.gif") no-repeat center center;
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    margin: 0 auto;
}

.rotate_phone .rotate_text {
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding-top: 0.2rem;
}

/*横屏显示*/

/*loading*/
.loading2 {
    background: url("../images/loading.gif") no-repeat center center/0.4rem 0.4rem;
    height: 100%;
}

/*返回按钮*/
.backBtn {
    padding: 0.08rem 0.2rem;
    background: #82baf6;
    color: #fff;
    font-size: 0.2rem;
    -webkit-border-radius: 0.26rem;
    -moz-border-radius: 0.26rem;
    border-radius: 0.26rem;
    position: fixed;
    left: 0.1rem;
    bottom: 1.1rem;
    z-index: 50;
}

.backBtn:before {
    content: "";
    display: inline-block;
    margin-right: 0.04rem;
    width: 0.3rem;
    height: 0.24rem;
    background: url("../images/icon-back2.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    margin-bottom: -0.03rem;
}


/*三通项目*/
.newReg input {
    margin-left: 0.2rem;
    padding-right: 0;
}

.newReg .largeInput {
    width: 4.3rem;
    height: 100%;
}

.newReg .largeTxt {
    font-size: 0.4rem;
    position: relative;
    top: 2px;
}

.newReg .smallInput {
    text-align: left;
}

.newReg .code_img {
    width: 1.6rem;
    height: 0.6rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.blueBtn {
    background: #67adf7;
    width: 6.1rem;
    margin: 0.6rem auto 0;
    display: block;
    height: 0.8rem;
    font-size: 0.3rem;
    color: #fff;
    -webkit-border-radius: 0.08rem;
    -moz-border-radius: 0.08rem;
    border-radius: 0.08rem;
}

.disabled {
    background: #abcef3;
}

.regTips {
    font-size: 0.24rem;
    text-align: center;
    display: block;
    line-height: 1.6;
}

p.regTips {
    margin-top: 0.25rem;
}

.phoneCodeBox {
    padding: 0.3rem 0 0;
}

/*四位验证码*/
.pwd-box {
    width: 5.63rem;
    position: relative;
    border: 0.02rem solid #cdcbcb;
    -webkit-border-radius: 0.04rem;
    -moz-border-radius: 0.04rem;
    border-radius: 0.04rem;
    overflow: hidden;
    margin: 0.45rem auto 0;
    background: #fff;
    padding: 0.15rem 0;
}

.pwd-box input[type="tel"] {
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    margin-left: -100%;
}

.code {
    border-left: 0.02rem solid #cdcbcb;
    width: 0.93rem;
    height: 0.7rem;
    font-size: 0.54rem;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.code:first-child {
    border-left: 0;
}

/*banner*/
.banner {
    max-width: 800%;
    height: 3.4rem;
    font-size: 0;
    overflow: hidden;
}

.banner img {
    width: 6.4rem;
    height: 3.4rem;
    display: inline-block;
}

.oldAppBox > div {
    width: 49.99%;
}

/*强密码规则*/
.pwdTips {
    font-size: 0.18rem;
    color: #ABB0BB;
    padding: 0 0.2rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.level {
    display: inline-block;
    width: 2rem;
}

.level .levelSpan1, .level .levelSpan2, .level .levelSpan3 {
    width: 0.4rem;
    height: 0.12rem;
    display: inline-block;
    margin-right: 0.03rem;
}

.level1 .levelSpan1, .level1 .levelSpan2, .level1 .levelSpan3, .level2 .levelSpan2, .level2 .levelSpan3, .level3 .levelSpan3 {
    background: rgba(255, 255, 255, 0.23);
}

.level2 .levelSpan1 {
    background: #fa4419;
}

.level3 .levelSpan1, .level3 .levelSpan2 {
    background: #fab819;
}

.level4 .levelSpan1, .level4 .levelSpan2, .level4 .levelSpan3 {
    background: #07ba39;
}

.levelTxt {
    margin-left: 0.03rem;
}

.level2 .levelTxt {
    color: #fa4419;
}

.level3 .levelTxt {
    color: #fab819;
}

.level4 .levelTxt {
    color: #07ba39;
}

.pwdTips p, .pwdTips2 p {
    padding-left: 15px;
}

.default {
    background: url("../images/tips-default.png") no-repeat left center;
    -webkit-background-size: 0.15rem 0.15rem;
    -moz-background-size: 0.15rem 0.15rem;
    background-size: 0.15rem 0.15rem;
}

.error {
    background: url("../images/tips-error.png") no-repeat left center;
    -webkit-background-size: 0.15rem 0.15rem;
    -moz-background-size: 0.15rem 0.15rem;
    background-size: 0.15rem 0.15rem;
}

.right {
    background: url("../images/tips-right.png") no-repeat left center;
    -webkit-background-size: 0.17rem 0.15rem;
    -moz-background-size: 0.17rem 0.15rem;
    background-size: 0.17rem 0.15rem;
}

.pwdTips2 {
    font-size: 0.18rem;
    padding: 0.1rem 0.3rem;
    line-height: 1.5;
    border-bottom: 1px solid #d0d0d0;
}

.pwdTips2 .level1 .levelSpan1, .pwdTips2 .level1 .levelSpan2, .pwdTips2 .level1 .levelSpan3, .pwdTips2 .level2 .levelSpan2, .pwdTips2 .level2 .levelSpan3, .pwdTips2 .level3 .levelSpan3 {
    background: #dcdcdc;
}

/*201608_erp_improvement日常版本*/
.loginTips {
    font-size: 0.24rem;
    padding: 0.1rem 0.4rem;
    line-height: 1.5;
    color: #fff;
}

.loginTips a {
    color: #fff;
    text-decoration: underline;
}

/*校宝家2.3 申请+反馈*/
/*校宝家Tab { */
.sphTab {
    display: -webkit-flex;
    display: flex;
}

.sphTab .tabItem {
    -webkit-flex: 1;
    flex: 1;
}

.sphTab .tabItem > span {
    width: 0.49rem;
    height: 0.46rem;
    margin-top: 0.06rem;
    position: relative;
}

.sphNoticeIcon {
    background: url("../images/sph-icon1-1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.sphApplyIcon {
    background: url("../images/sph-icon2-1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.sphBFIcon {
    background: url("../images/sph-icon3-1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.tabItem.current .sphNoticeIcon {
    background: url("../images/sph-icon1-2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.tabItem.current .sphApplyIcon {
    background: url("../images/sph-icon2-2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.tabItem.current .sphBFIcon {
    background: url("../images/sph-icon3-2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.messNewCount {
    background: #f96041;
    font-size: 0.14rem;
    color: #fff;
    min-width: 0.25rem;
    line-height: 0.25rem;
    padding: 0 0.06rem;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    position: absolute;
    top: 0;
    right: -0.1rem;
}

/* } 校宝家Tab*/
.subHead {
    height: 0.7rem;
    background: #fff;
    font-size: 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}

.type {
    width: 49.99%;
    display: inline-block;
}

.type:first-child {
    border-right: 1px solid #f0f0f1;
}

.type a, .type span {
    font-size: 0.26rem;
    display: inline-block;
    line-height: 0.67rem;
}

.type.current a, .type.current span {
    border-bottom: 0.04rem solid #48befd;
    color: #48befd;
}

.sphHeadDiv {
    height: 0.78rem;
    border-bottom: 1px solid #d0d0d0;
    padding: 0.12rem 0;
    line-height: 0.5rem;
    font-size: 0.24rem;
}

.sphApplyItem .circle {
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: 0.32rem;
    margin-right: 0.1rem;
}

.sphApplyItem .redTxt {
    color: #f78267 !important;
}

.sphApplyItem .blueTxt {
    text-align: left;
}

.sphApplyItem .lightBlueTxt {
    color: #52d7fd;
}

.lightBlueCircle {
    background: #52d7fd
}

.sphApplyItem .listGo:after {
    background: url("../images/next-icon.png") no-repeat center center;
    position: relative;
    display: inline-block;
    top: initial;
    right: initial;
    margin-left: 0.2rem;
    vertical-align: middle;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.sphApplyItem .listGo {
    color: #67adf7 !important;
    padding: 0;
    vertical-align: middle;
    height: auto;
    line-height: inherit;
    font-weight: normal;
}

.sphApplyItem .listInfo {
    line-height: 1.8;
    padding: 0.12rem 0;
    font-size: 0.24rem;
    color: #a6a5a5;
}

.sphApplyItem .listInfo span {
    color: #565554;
    display: inline-block;
}

.applyClass {
    width: 4.5rem;
}

.applyStu, .applySch {
    width: 1.8rem;
}

.sphApplyItem .listFootBtn {
    font-size: 0.24rem;
    font-weight: normal;
}

.sign1 {
    color: #fb672d;
}

.sign2 {
    color: #6baef4;
}

.sign3 {
    width: 100% !important;
}

.sign1:before, .sign2:before {
    content: "";
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    vertical-align: middle;
    position: relative;
    bottom: 0.02rem;
    margin-right: 0.12rem;
}

.sign1:before {
    background: url("../images/sph-error.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.sign2:before {
    background: url("../images/sph-right.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.sphApplyBox {
    background: #fff;
    padding: 0 0.3rem;
    -webkit-box-shadow: 3px 3px 4px 0 rgba(13, 4, 9, 0.1);
    -moz-box-shadow: 3px 3px 4px 0 rgba(13, 4, 9, 0.1);
    box-shadow: 3px 3px 4px 0 rgba(13, 4, 9, 0.1);
    min-height: 100%;
}

.sphApplyHead {
    border-bottom: 1px solid #d0d0d0;
    padding: 0.25rem 0;
    font-size: 0.3rem;
}

.sphApplyHead .circle {
    width: 0.5rem;
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: 0.32rem;
}

.sphApplyHead .sphApplyName {
    display: inline-block;
    width: 1.6rem;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sphApplyDate {
    float: right;
    color: #a6a4a4;
    line-height: 0.5rem;
}

.sphApplyDate span {
    color: #4f4e4d;
}

.sphApplyContent {
    padding: 0.1rem 0.15rem;
    font-size: 0.24rem;
    color: #a6a5a5;
    line-height: 1.8;
    background: #fff;
}

.sphApplyContent span {
    color: #4f4e4d;
    word-wrap: break-word;
}

.detailSign1, .detailSign2 {
    line-height: 1rem;
    display: inline-block;
    width: 49.8%;
    color: #fff;
    font-size: 0.28rem;
    text-align: center;
}

.detailSign1 {
    background: #fb672d;
}

.detailSign2 {
    background: #6cb0f4;
}

.detailSign1:before, .detailSign2:before {
    content: "";
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    vertical-align: middle;
    position: relative;
    bottom: 0.02rem;
    margin-right: 0.1rem;
}

.detailSign1:before {
    background: url("../images/sph-error2.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.detailSign2:before {
    background: url("../images/sph-right2.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
}

.suggTxt {
    display: inline-block;
    width: 4.3rem;
}

.sphApplyItem .suggGo {
    width: 100%;
    text-align: right;
}

.suggArea {
    padding: 0.2rem 0.3rem 0.7rem;
    font-size: 0.24rem;
    line-height: 1.8;
    min-height: 3rem;
    position: relative;
    word-break: break-all;
}

.listRow.suggArea {
    padding: 0.2rem 0.3rem;
}

.suggArea textarea {
    width: 100%;
    height: 2.4rem;
    font-size: 0.24rem;
}

.suggArea .sendInfo {
    position: absolute;
    bottom: 0.2rem;
    right: 0.3rem;
}

.logClassFoot.greyBg {
    background: #c1c1c1;
}

/*遮罩*/
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.alertDiv {
    background: #fff;
    width: 4.6rem;
    margin: 2.85rem auto 0;
    -webkit-border-radius: 0.16rem;
    -moz-border-radius: 0.16rem;
    border-radius: 0.16rem;
}

.alertTxt {
    font-size: 0.26rem;
    padding: 0.45rem;
    line-height: 1.8;
}

.alertBtn {
    font-size: 0.28rem;
    color: #48befc;
    height: 0.8rem;
    line-height: 0.8rem;
    border-top: 1px solid #d0d0d0;
    text-align: center;
}

.alertBtnBox {
    font-size: 0;
}

.alertBtnBox .alertBtn {
    width: 49.99%;
    display: inline-block;
    border-left: 1px solid #d0d0d0;
}

.alertBtnBox .alertBtn:first-child {
    border-left: 0;
}

.alertInput {
    border: 1px solid rgb(169, 169, 169);
    border-radius: 4px;
    line-height: 0.5rem;
    padding: 0 0.2rem;
    width: 100%;
}

/*咨询本*/
.state {
    padding: 0.02rem 0.16rem;
    color: #fff;
    -webkit-border-radius: 0.04rem;
    -moz-border-radius: 0.04rem;
    border-radius: 0.04rem;
    font-size: 0.2rem;
    vertical-align: middle !important;
    line-height: 0.3rem;
    position: relative;
}

.state1 {
    background: #ff6e48;
}

/*跟进中*/
.state2 {
    background: #fec42c;
}

/*待跟进*/
.state3 {
    background: #3781dd;
}

/*已成交*/
.state4 {
    background: #8f94a1;
}

/*已失效*/
.personal {
    position: absolute;
    top: 0.36rem;
    right: 0.25rem;
}

.starItem {
    width: 20%;
    vertical-align: top;
}

.bigItem {
    width: 39.99%;
}

.navTab .starIcon {
    background: url("../images/icon_star2.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    width: 0.45rem;
    height: 0.43rem;
    margin: 0.28rem auto 0;
}

.navTab .check .starIcon {
    background: url("../images/icon_star1.png") bottom left no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

.frDiv {
    position: absolute;
    top: 0.12rem;
    right: 0.3rem;
    text-align: right;
}

.frDiv .redTxt, .frDiv .blueTxt, .frDiv .greyTxt {
    display: block;
    margin-top: 0.04rem;
}

.personalDetail {
    height: 1.11rem;
}

.personalDetail .noticeName {
    line-height: 0.75rem;
}

.personalDetail .frDiv .state {
    top: 0.16rem;
}

.stuMoreItem .state {
    top: 0.23rem;
}

.filter {
    border-top: 1px solid #d0d0d0;
    margin-top: 0.13rem;
    margin-bottom: -0.13rem;
    background: #f0f0f1;
    padding: 0.11rem 0 0;
    height: 0.8rem;
    position: relative;
    z-index: 10;
}

.filter + .listTabBarDiv {
    margin-bottom: -0.15rem;
}

.stateFilter, .screenFilter, .starFilter {
    display: inline-block;
    line-height: 0.52rem;
    height: 0.56rem;
    background: #fff;
    font-size: 0.22rem;
    margin: 0 0.07rem;
    -webkit-border-radius: 0.04rem;
    -moz-border-radius: 0.04rem;
    border-radius: 0.04rem;
    border: 0.02rem solid #d9e5ee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    vertical-align: top;
}

.stateFilter, .starFilter {
    width: 1.55rem;
}

.screenFilter {
    width: 2.6rem;
}

.stateFilter, .screenFilter {
    padding-right: 0.24rem;
}

.stateFilter:after, .screenFilter:after {
    content: "";
    display: inline-block;
    width: 0.15rem;
    height: 0.52rem;
    background: url("../images/filter-icon.png") no-repeat center center;
    -webkit-background-size: 100% 0.08rem;
    -moz-background-size: 100% 0.08rem;
    background-size: 100% 0.08rem;
    z-index: 5;
    position: absolute;
    right: 0.1rem;
    top: 0;
}

.selectFilterMask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    top: 1.8rem;
    left: 0;
    display: none;
    overflow: auto;
    padding-bottom: 1.8rem;
}

.selectFilter {
    width: 6.4rem;
    z-index: 1;
}

.selectFilter li {
    background: #fff !important;
    width: 100%;
    display: block;
    border-bottom: 0.02rem solid #d9e5ee;
    line-height: 0.75rem;
    height: 0.75rem;
    min-height: 0.75rem !important;
    padding: 0 0.5rem !important;
    text-align: left;
    color: #4f4e4d;
    font-size: 0.28rem !important;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.selectFilter li .checkIcon {
    right: 0.3rem;
}

.stateFilter.focus, .screenFilter.focus {
    height: 0.8rem;
    border-bottom: 1px solid #fff;
}

.stateFilter.focus .selectFilterMask, .screenFilter.focus .selectFilterMask {
    display: block;
}

.starFilter.choose, .stateFilter.choose, .screenFilter.choose {
    border: 1px solid #4591e2;
    position: relative;
}

.starFilter.choose:after, .stateFilter.choose:before, .screenFilter.choose:before {
    content: "";
    display: block;
    width: 0.32rem;
    height: 0.32rem;
    background: url("../images/filter-starCheck.png") no-repeat center center;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.stateFilter.choose:before, .screenFilter.choose:before {
    background: none;
}

/*覆盖*/
.reportDetailItem .listBox {
    margin-bottom: 0.2rem;
}
