@charset "utf-8";
html {
    overflow-x: auto;
    min-width: 1340px;
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; /*"Helvetica Neue"这款字体以保证最新版本Mac用户的最佳体验*/
    box-sizing: border-box;
    font-size: 12px;
}

main {
    height: 100%;
}

a {
    text-decoration: none;
    color: #999;
}

li {
    list-style: none;
}

/*水平翻转*/
.flipx {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
}

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, i, em, b, img, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: normal;
    border: 0 none;
}

html {
    min-width: 1340px;
}

body {
    background: #F3F3F8;
    font-size: 14px;
    min-width: 1340px;
    /*overflow-x: scroll;*/
    color: #666;
}

input, textarea, button {
    outline: none;
    color: #666;
}

input[type="text"]::-ms-clear {
    display: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
    width: 100%;
    display: block;
    visibility: hidden;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.clearfix:after {
    content: '';
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.clearfix {
    *zoom: 1;
}

.main {
    width: 100%;
    padding-top: 80px;
    height: 100%;
}

.radius50 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.radius2 {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.p-leftnav::-webkit-scrollbar {
    width: 0;
}

/* 这是针对缺省样式 (必须的) */
.p-leftnav::-webkit-scrollbar-track {
    background-color: #fff;
}

/* 滚动条的滑轨背景颜色 */

.p-leftnav::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
}

/* 滑块颜色 */

.p-leftnav::-webkit-scrollbar-button {
    background-color: #fff;
}

/* 滑轨两头的监听按钮颜色 */

.p-leftnav::-webkit-scrollbar-corner {
    background-color: #000;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */

/* 单行文本溢出 */
.inaline {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 多行文本溢出 */
.intwoline {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b3b3b3;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b3b3b3;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #b3b3b3;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}

.topline:before {
    content: '';
    height: 1px;
    background: #dddddd;
    transform: scaleY(0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.bottomline:after {
    content: '';
    height: 1px;
    background: #dddddd;
    transform: scaleY(0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

/*气泡提示*/
/*.p-top .name {
    font-size: 14px;
    color: #fff;
    line-height: 80px;
    margin-right: 10px;
    position: relative;
}

.p-top .name .tuandui {
    line-height: 80px;
}

.p-top .name .more-box {
    position: absolute;
    top: 80px;
    right: -22px;
    display: none;
    z-index: 100;
}

.p-top .name .more-box .more {
    width: 100%;
    height: 100%;
    position: relative;
}

.p-top .name .more-box .more i.icon-shang {
    width: 22px;
    height: 10px;
    background: url(../images/shang.png) no-repeat center;
    background-size: 22px 10px;
    position: absolute;
    top: -7px;
    right: 20px;
}

.p-top .name .more-box .more .box {
    background: #fff;
    box-shadow: #C0B7B7 0 2px 4px 0;
}

.p-top .name .more-box .more .box .li {
    padding: 0 15px;
    position: relative;
    color: #333333;
    cursor: pointer;
}

.p-top .name .more-box .more .box .li div {
    font-size: 12px;
    border-top: 1px solid #D4D4D4;
    line-height: 30px;
}

.p-top .name .more-box .more .box .li:first-child div {
    border-top: 0 none;
}

.p-top .name .more-box .more .box .li ul {
    position: absolute;
    right: 110px;
    top: 0;
    background: #fff;
    box-shadow: #C0B7B7 0 2px 4px 0;
    display: none;
}

.p-top .name .more-box .more .box .li ul li {
    line-height: 26px;
    font-size: 12px;
    color: #333333;
    padding: 0 10px;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-top .name .more-box .more .box .li ul li:hover {
    color: #0ABF50;
    background: #F3FCF7;
}

.p-top .name .more-box .more .box .tuandui {
    background: url(../images/zuo.png) no-repeat left center;
    background-size: 5px 9px;
    padding-left: 15px;
    line-height: 30px;
    font-size: 12px;
}

.p-top .name .more-box .more .box .quit {
    line-height: 30px;
    font-size: 12px;
    border-top: 1px solid #D4D4D4;
    padding-left: 15px;
}

.p-top .name .more-box .more .box .li:hover {
    background: #F3FCF7;
    color: #0ABF50;
}*/

/**/
/*顶部*/
.p-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: url(../images/topbg.png) repeat-y #00BBAA;
    background-size: 100%;
    padding-right: 40px;
    min-width: 1366px;
    z-index: 10000;
}

.p-top .logo {
    width: 180px;
    height: 80px;
    background: url(../images/logo.png) no-repeat center;
    background-size: 86px 23px;
}

.p-top .nav {
    height: 20px;
    padding-top: 35px;
}

.p-top .nav li {
    margin-left: 40px;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.p-top .nav li:hover {
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
}

.p-top .nav .act {
    opacity: 1;
    filter: alpha(opacity=100);
}

.p-top .nav .icon1 {
    width: 17px;
    height: 16px;
    background: url(../images/topnav.png) no-repeat 0 0;
    background-size: 20px 238px;
    margin: 1px 10px 0 0;
}

.p-top .nav .icon2 {
    width: 16px;
    height: 16px;
    background: url(../images/topnav.png) no-repeat 0 -31px;
    background-size: 20px 238px;
    margin: 1px 10px 0 0;
}

.p-top .nav .icon3 {
    width: 16px;
    height: 16px;
    background: url(../images/topnav.png) no-repeat 0 -62px;
    background-size: 20px 238px;
    margin: 2px 10px 0 0;
}

.p-top .nav .icon4 {
    width: 20px;
    height: 16px;
    background: url(../images/topnav.png) no-repeat 0 -93px;
    background-size: 20px 238px;
    margin: 2px 10px 0 0;
}

.p-top .nav .icon5 {
    width: 15px;
    height: 14px;
    background: url(../images/topnav.png) no-repeat 0 -124px;
    background-size: 20px 238px;
    margin: 3px 10px 0 0;
}

.p-top .nav .icon6 {
    width: 17px;
    height: 17px;
    background: url(../images/topnav.png) no-repeat 0 -153px;
    background-size: 20px 238px;
    margin: 1px 10px 0 0;
}

.p-top .nav .text {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}

.p-top .usermore {
    height: 100%;
    width: 16px;
    background: url(../images/xiala.png) no-repeat center;
    background-size: 8px 5px;
    position: relative;
}

.p-top .usermore:hover {
    cursor: pointer;
}

.p-top .usermore .more-box {
    position: absolute;
    top: 80px;
    right: -22px;
    display: none;
    z-index: 100;
}

.p-top .usermore .more-box .more {
    width: 100%;
    height: 100%;
    position: relative;
}

.p-top .usermore .more-box .more i.icon-shang {
    width: 22px;
    height: 10px;
    background: url(../images/shang.png) no-repeat center;
    background-size: 22px 10px;
    position: absolute;
    top: -7px;
    right: 20px;
}

.p-top .usermore .more-box .more .box {
    background: #fff;
    width: 110px;
    box-shadow: #C0B7B7 0 2px 4px 0;
}

.p-top .usermore .more-box .more .box .li {
    padding: 0 15px;
    position: relative;
    color: #333333;
}

.p-top .usermore .more-box .more .box .li div {
    font-size: 12px;
    padding-left: 15px;
    border-top: 1px solid #D4D4D4;
    line-height: 30px;
}

.p-top .usermore .more-box .more .box .li:first-child div {
    border-top: 0 none;
}

.p-top .usermore .more-box .more .box .li ul {
    position: absolute;
    right: 110px;
    top: 0;
    background: #fff;
    box-shadow: #C0B7B7 0 2px 4px 0;
    display: none;
    max-height: 300px;
    overflow: auto;
}

.p-top .usermore .more-box .more .box .li ul li {
    line-height: 26px;
    font-size: 12px;
    color: #333333;
    padding: 0 10px;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-top .usermore .more-box .more .box .li ul li:hover {
    color: #0ABF50;
    background: #F3FCF7;
}

.p-top .usermore .more-box .more .box .tuandui {
    background: url(../images/zuo.png) no-repeat left center;
    background-size: 5px 9px;
    padding-left: 15px;
    line-height: 30px;
    font-size: 12px;
}

.p-top .usermore .more-box .more .box .quit {
    line-height: 30px;
    font-size: 12px;
    border-top: 1px solid #D4D4D4;
    padding-left: 15px;
}

.p-top .usermore .more-box .more .box .li:hover {
    background: #F3FCF7;
    color: #0ABF50;
}

.p-top .toux-box {
    width: 44px;
    height: 44px;
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    margin-right: 10px;
}

.p-top .toux-box .bg {
    width: 44px;
    height: 44px;
    background: url(../images/touxbg.png) no-repeat;
}

.p-top .toux-box .toux {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 3px;
    left: 3px;
    overflow: hidden;
}

.p-top .toux-box .toux .relative {
    position: relative;
    width: 100%;
    height: 100%;
}

.p-top .toux-box .toux .relative img {
    width: 100%;
    height: 100%;
}

.p-top .toux-box .toux .relative .ie {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.p-top .name {
    font-size: 14px;
    color: #fff;
    line-height: 80px;
    margin-right: 10px;
}

.p-top .tip {
    width: 18px;
    height: 19px;
    background: url(../images/topnav.png) no-repeat 0 -219px;
    background-size: 20px 238px;
    margin-top: 31px;
    margin-right: 20px;
    position: relative;
}

.p-top .tip:hover {
    cursor: pointer;
}

.p-top .tip > span {
    position: absolute;
    right: -9px;
    top: -9px;
    width: 18px;
    height: 18px;
    background: #FF5101;
    text-align: center;
    color: #fff;
    line-height: 18px;
    font-size: 11px;
}

/*气泡更改*/
.p-top .tip .more-box {
    position: absolute;
    top: 34px;
    right: -22px;
    display: block;
    z-index: 100;
    max-width: 300px;
}

.p-top .tip .more-box .more {
    position: relative;
}

.p-top .tip .more-box .more i.icon-shang {
    width: 22px;
    height: 10px;
    background: url(../images/shang.png) no-repeat center;
    background-size: 22px 10px;
    position: absolute;
    top: -7px;
    right: 20px;
}

.p-top .tip .more-box .more .box {
    background: #fff;
    box-shadow: #C0B7B7 0 2px 4px 0;
}

.p-top .tip .more-box .more .box .li {
    padding: 0 15px;
    position: relative;
    color: #333333;
    cursor: pointer;
}

.p-top .tip .more-box .more .box .li div {
    font-size: 12px;
    border-top: 1px solid #D4D4D4;
    line-height: 30px;
}

.p-top .tip .more-box .more .box .li:first-child div {
    border-top: 0 none;
}

.p-top .tip .more-box .more .box .li ul {
    position: absolute;
    right: 110px;
    top: 0;
    background: #fff;
    box-shadow: #C0B7B7 0 2px 4px 0;
    display: none;
}

.p-top .tip .more-box .more .box .li ul li {
    line-height: 26px;
    font-size: 12px;
    color: #333333;
    padding: 0 10px;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-top .tip .more-box .more .box .li ul li:hover {
    color: #0ABF50;
    background: #F3FCF7;
}

.p-top .tip .more-box .more .box .tuandui {
    background: url(../images/zuo.png) no-repeat left center;
    background-size: 5px 9px;
    padding-left: 15px;
    line-height: 30px;
    font-size: 12px;
}

.p-top .tip .more-box .more .box .quit {
    line-height: 30px;
    font-size: 12px;
    border-top: 1px solid #D4D4D4;
    padding-left: 15px;
}

.p-top .tip .more-box .more .box .li:hover {
    background: #F3FCF7;
    color: #0ABF50;
}

/*结束*/

.p-top .olderversion {
    font-size: 14px;
    color: #fff;
    line-height: 80px;
    margin-right: 10px;
    cursor: pointer;
}

.p-top .olderversion:hover {
    cursor: pointer;
}

.p-top .help {
    width: 19px;
    height: 19px;
    background: url(../images/topnav.png) no-repeat 0 -185px;
    background-size: 20px 238px;
    margin-top: 30px;
    margin-right: 16px;
}

.p-top .help:hover {
    cursor: pointer;
}

.p-nr {
    height: 100%;
}

.p-leftnav {
    position: fixed;
    left: 0;
    top: 80px;
    bottom: 0;
    width: 180px;
    background: #fff;
    overflow-y: scroll;
    padding-top: 20px;
    z-index: 10;
}

.p-leftnav .li {
    width: 100%;
    color: #333;
    height: 46px;
    line-height: 46px;
    padding-left: 30px;
    position: relative;
}

.p-leftnav .li .lefttip {
    display: none;
}

.p-leftnav .li .toggleicon {
    width: 10px;
    height: 10px;
    background: url(../images/toggle.png) no-repeat 0 0;
    background-size: 10px 27px;
    position: absolute;
    right: 15px;
    top: 20px;
}

.p-leftnav .actbg {
    background: #F3F3F8;
}

.p-leftnav .actbg .lefttip {
    width: 7px;
    height: 30px;
    background: #0ABF50;
    position: absolute;
    left: 0;
    top: 8px;
    -webkit-border-top-right-radius: 7px;
    border-top-right-radius: 7px;
    -webkit-border-bottom-right-radius: 7px;
    border-bottom-right-radius: 7px;
    display: block;
}

.p-leftnav .act .toggleicon {
    background: url(../images/toggle.png) no-repeat 0 -20px;
    background-size: 10px 27px;
}

.p-leftnav .son {
    background: #fff;
    display: none;
}

.p-leftnav .son li {
    line-height: 46px;
    padding-left: 40px;
    color: #666;
    position: relative;
}

.p-leftnav .son li:hover {
    cursor: pointer;
    color: #0ABF50;
}

.p-leftnav .li:hover {
    cursor: pointer;
}

.p-leftnav .sonact {
    display: block;
}

.p-leftnav .noson .toggleicon {
    display: none;
}

.p-leftnav .son li .lefttip {
    width: 7px;
    height: 30px;
    background: #0ABF50;
    position: absolute;
    left: 0;
    top: 8px;
    -webkit-border-top-right-radius: 7px;
    border-top-right-radius: 7px;
    -webkit-border-bottom-right-radius: 7px;
    border-bottom-right-radius: 7px;
    display: none;
}

.p-leftnav .son .sonliact {
    background: #F3F3F8;
    box-sizing: border-box;
}

.p-leftnav .son .sonliact .lefttip {
    display: block;
}

.p-leftnav .li:hover {
    color: #0ABF50;
}

/*输入框*/
/*.input{width:330px;height:38px;padding:8px 0;border-bottom:1px solid #D4D4D4;margin:0 auto;margin-top:20px;position:relative;box-sizing: border-box;}
.input .shouji{position:absolute;left:0;top:5px;width:18px;height:25px;background:url(../images/login1.png) 0 0;background-size:21px 201px;}
.input .suo{position:absolute;left:0;top:5px;width:21px;height:26px;background:url(../images/login1.png) 0 -40px;background-size:21px 201px;}
.input label{color:#b3b3b3;font-size:14px;position:absolute;left:25px;top:6px;height:22px;line-height:22px;padding-left:7px;cursor:auto;z-index: 1;letter-spacing: 0.6px;}
.input input{line-height:22px;width:90%;color:#565656;height:22px;font-size:14px;position:absolute;left:25px;top:8px;background:none 0;text-indent:7px;z-index: 3;letter-spacing: 0.6px;}
.input p{color:#ff8901;position:absolute;bottom:-22px;left:0;font-size:12px;}
.input p a{color:#009cff;cursor:pointer;font-style:normal;font-size:12px;font-family: "微软雅黑";padding:0 5px;}
.input p a:hover{text-decoration: underline;}
.readonly{background: #FCFCFC;border: 0;font-size: 16px;color: #3A3A3B;}*/
.edu-inputlabel {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}

.edu-inputlabel label.placelabel {
    color: #b3b3b3;
    font-size: 14px;
    position: absolute !important;
    left: 0px;
    top: 0px;
    height: 34px;
    line-height: 34px;
    padding-left: 10px !important;
    cursor: auto;
    z-index: 1;
    letter-spacing: 0.6px;
}

/******* 弹窗 ******/
.cancel-popup, .appr-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 1000;
    display: none;
}

.cancel-popup .mask, .appr-popup .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    background-color: #000;
    opacity: 0.53;
    filter: alpha(opacity=53);
}

.cancel-popup .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 370px;
    height: 220px;
    margin-left: -185px;
    margin-top: -110px;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    padding: 40px 20px 0;
}

.cancel-popup .inner .pop-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    background: url(../images/apr-close.png) no-repeat center;
    cursor: pointer;
}

.cancel-popup .inner .icon {
    width: 46px;
    height: 46px;
    background: url(../images/apr-popimg.png) no-repeat center;
    margin: 0 auto 15px;
}

.cancel-popup .inner p {
    font-size: 18px;
    color: #585858;
    height: 50px;
    margin-bottom: 5px;
}

.cancel-popup .inner .pop-btns, .appr-popup .inner .pop-btns {
    text-align: center;
}

.cancel-popup .inner .pop-btns button, .appr-popup .inner .pop-btns button {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 100px;
    height: 36px;
    margin: 0 10px;
    font-size: 16px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.cancel-popup .inner .pop-btns .yes, .appr-popup .inner .pop-btns .yes {
    color: #fff;
    background-color: #2ECC71;
}

.cancel-popup .inner .pop-btns .no {
    border: 1px solid #999;
    color: #999;
    background-color: transparent;
}

.cancel-popup .inner .pop-btns .no:hover {
    border: 1px solid #2ECC71;
    color: #2ECC71;
}

/*面包屑导航*/
.location:after {
    content: '';
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.location {
    *zoom: 1;
}

.location span:hover {
    color: #0ABF50;
    cursor: pointer;
}

.location span:last-of-type {
    color: #418F5F;
}

.location .icon {
    width: 7px;
    height: 11px;
    background: url(../images/data.png) no-repeat -15px -129px;
    background-size: 47px 290px;
    margin: 0 8px;
    margin-top: 4px;
}

/*内页左边树状结构*/
.lefttoggle {
    width: 270px;
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 180px;
    z-index: 10;
    padding: 15px 0;
    overflow-y: auto;
    background: #383F4E;
}

.rightnr {
    width: 100%;
    background: #fff;
    min-height: 658px;
    height: 100%;
    overflow-y: auto;
}

.lefttoggle .search {
    background: #2A3140;
    width: 240px;
    height: 28px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    border: none;
}

.lefttoggle .input label {
    color: #AAACBF;
    font-size: 14px;
    position: absolute;
    left: 5px;
    top: 3px;
    height: 22px;
    line-height: 22px;
    padding-left: 7px;
    cursor: auto;
    z-index: 1;
    letter-spacing: 0.6px;
}

.lefttoggle .input input {
    line-height: 22px;
    width: 83%;
    color: #565656;
    height: 22px;
    font-size: 14px;
    position: absolute;
    left: 5px;
    top: 3px;
    background: none 0;
    text-indent: 7px;
    z-index: 3;
    letter-spacing: 0.6px;
    color: #AAACBF;
}

.lefttoggle .input .btn {
    width: 17px;
    height: 17px;
    background: url(../images/data.png) no-repeat -15px -258px;
    background-size: 47px 290px;
    position: absolute;
    top: 6px;
    right: 12px;
    cursor: pointer;
}

.lefttoggle .input .deletebtn {
    width: 15px;
    height: 15px;
    background: url(../images/chacha.png) no-repeat;
    background-size: 15px 15px;
    position: absolute;
    top: 7px;
    right: 11px;
}

.lefttoggle .line {
    background: #444A56;
    height: 2px;
    border-bottom: 1px solid #2A3140;
    margin-top: 15px;
}

.lefttoggle .sousuo {
    color: #AAACBF;
    padding-left: 25px;
    line-height: 18px;
}

.lefttoggle .sousuo i {
    color: #5DD27B;
}

.lefttoggle .switch-btn {
    background: #313745;
    width: 230px;
    height: 26px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    margin: 10px auto;
}

.lefttoggle .switch-btn .fl {
    width: 50%;
    background: #313745;
    text-align: center;
    line-height: 26px;
    color: #AAACBF;
    cursor: pointer;
    position: relative;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-bottom-left-radius: 13px;
    border-radius: 13px;
}

.lefttoggle .switch-btn .fl i {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF5101;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 0;
    right: 0;
}

.lefttoggle .switch-btn .act {
    background: url(../images/switchbg.png) no-repeat center;
    background-size: 115px 26px;
    color: #fff;
}

.lefttoggle .list {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 0;
    position: relative;
}

.lefttoggle .list::-webkit-scrollbar {
    width: 1px;
}

/* 这是针对缺省样式 (必须的) */
.lefttoggle .list::-webkit-scrollbar-track {
    background-color: #5C6880;
    width: 1px;
}

/* 滚动条的滑轨背景颜色 */

.lefttoggle .list::-webkit-scrollbar-thumb {
    background-color: rgba(250, 250, 250, 0.5);
    width: 1px;
}

/* 滑块颜色 */

.lefttoggle .list::-webkit-scrollbar-button {
    background-color: #5C6880;
    width: 1px;
}

/* 滑轨两头的监听按钮颜色 */

.lefttoggle .list::-webkit-scrollbar-corner {
    background-color: #5C6880;
    width: 1px;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */

.lefttoggle .list li {
}

.lefttoggle .list li .boxli {
    position: relative;
    padding-right: 15px;
    height: 30px;
}

.lefttoggle .list .one .boxli {
    z-index: 4;
}

.lefttoggle .list .two li .boxli {
    z-index: 2;
}

.lefttoggle .list .three li .boxli {
    z-index: 1;
}

.lefttoggle .list li .boxli:hover {
    background: #313745;
}

.lefttoggle .list .whiteact * {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.lefttoggle .list .whiteact {
    background: #313745;
    z-index: 5 !important;
}

.lefttoggle .list li .boxli p {
    float: left;
    width: 100%;
    line-height: 30px;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    opacity: 0.5;
    font-weight: 100;
}

.lefttoggle .list li .moredian {
    width: 18px;
    height: 30px;
    background: url(../images/3dian.png) no-repeat center;
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
    z-index: 10;
    display: none;
}

.lefttoggle .list .whiteact .moredian {
    display: block;
}

.lefttoggle .list .nodian .moredian {
    display: none;
}

.lefttoggle .list li .moredian .relative {
    position: relative;
}

.lefttoggle .list li .moredian .relative .addbtn {
    position: absolute;
    width: 97px;
    border: 1px solid #E2E4E9;
    box-shadow: #000000 0 2px 4px 0;
    top: 30px;
    right: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    z-index: 15;
    display: none;
}

.lefttoggle .list li .moredian .relative .addbtn span {
    height: 32px;
    background: #fff;
    color: #4E5D70;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    display: block;
}

.lefttoggle .list li .moredian .relative .addbtn span:hover {
    background: #F3FCF7;
    color: #0ABF50;
}

.lefttoggle .list li .paixu {
    width: 18px;
    height: 30px;
    background: url(../images/paixu.png) no-repeat center;
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
    z-index: 10;
    display: none;
}

.lefttoggle .list li .paixu:hover {
    background: url(../images/paixu2.png) no-repeat center;
}

.lefttoggle .list li p:hover {
    cursor: pointer;
}

.lefttoggle .list li i {
    position: absolute;
    left: 15px;
    top: 1px;
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/youxia2.png) no-repeat center;
    background-size: 8px 12px;
    cursor: pointer;
    opacity: 0.5;
}

.lefttoggle .list li .person {
    width: 30px;
    height: 30px;
    background: url(../images/person.png) no-repeat center !important;
    background-size: 11px 12px;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.lefttoggle .list li .kai {
    position: absolute;
    right: 1px;
    top: 1px;
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/youxia1.png) no-repeat center;
    background-size: 12px 8px;
    cursor: pointer;
}

.lefttoggle .list .two, .lefttoggle .list .three, .lefttoggle .list .four, .lefttoggle .list .five, .lefttoggle .list .six, .lefttoggle .list .seven, .lefttoggle .list .eight, .lefttoggle .list .night, .lefttoggle .list .ten {
    display: none;
}

.lefttoggle .list .two li .boxli p {
    padding-left: 58px;
    padding-right: 20px;
}

.lefttoggle .list .two li .boxli i {
    left: 34px;
}

.lefttoggle .list .three li .boxli p {
    padding-left: 78px;
    padding-right: 20px;
}

.lefttoggle .list .three li .boxli i {
    left: 54px;
}

.lefttoggle .list .four li .boxli p {
    padding-left: 90px;
    padding-right: 20px;
}

.lefttoggle .list .four li .boxli i {
    left: 66px;
}

.lefttoggle .list .five li .boxli p {
    padding-left: 102px;
    padding-right: 20px;
}

.lefttoggle .list .five li .boxli i {
    left: 78px;
}

.lefttoggle .list .six li .boxli p {
    padding-left: 114px;
    padding-right: 20px;
}

.lefttoggle .list .six li .boxli i {
    left: 90px;
}

.lefttoggle .list .seven li .boxli p {
    padding-left: 126px;
    padding-right: 20px;
}

.lefttoggle .list .seven li .boxli i {
    left: 102px;
}

.lefttoggle .list .eight li .boxli p {
    padding-left: 138px;
    padding-right: 20px;
}

.lefttoggle .list .eight li .boxli i {
    left: 114px;
}

.lefttoggle .list .night li .boxli p {
    padding-left: 162px;
    padding-right: 20px;
}

.lefttoggle .list .night li .boxli i {
    left: 138px;
}

.lefttoggle .list .ten li .boxli p {
    padding-left: 186px;
    padding-right: 20px;
}

.lefttoggle .list .ten li .boxli i {
    left: 162px;
}

.lefttoggle .list .block {
    display: block !important;
}

.lefttoggle .list li .boxli:hover p {
    opacity: 1;
    filter: alpha(opacity=100);
}

.lefttoggle .list li .boxli:hover i {
    opacity: 1;
    filter: alpha(opacity=100);
}

.lefttoggle .list li .boxli .caozuoblock {
    display: block;
}

.lefttoggle .list li .boxli .caozuonone {
    display: none;
}

.lefttoggle .list .whiteact .caozuonone {
    display: none;
}

.lefttoggle .list .paixubtn {
    position: absolute;
    right: 15px;
    top: -15px;
    overflow: hidden;
    z-index: 20;
    display: none;
}

.lefttoggle .list .paixubtn span {
    width: 40px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: block;
    float: right;
    cursor: pointer;
    margin-left: 5px;
}

.lefttoggle .list .paixubtn span.sure {
    font-size: 12px;
}

.lefttoggle .list .paixubtn span.cancel {
    font-size: 12px;
    border: 1px solid #606D7B;
    background: #383F4E;
}

.lefttoggle .addbumen {
    margin-top: 10px;
    display: none;
}

.lefttoggle .addbumen .bminput {
    background: #2A3140;
    width: 240px;
    height: 28px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    border: none;
}

.lefttoggle .addbumen .bminput label {
    color: #606D7B;
    font-size: 12px;
    position: absolute;
    left: 5px;
    top: 3px;
    height: 22px;
    line-height: 22px;
    padding-left: 7px;
    cursor: auto;
    z-index: 1;
    letter-spacing: 0.6px;
}

.lefttoggle .addbumen .bminput input {
    line-height: 22px;
    width: 93%;
    color: #606D7B;
    height: 22px;
    font-size: 12px;
    position: absolute;
    left: 5px;
    top: 3px;
    background: none 0;
    text-indent: 7px;
    z-index: 3;
    letter-spacing: 0.6px;
    color: #AAACBF;
}

.lefttoggle .addbumen .btnbox {
    overflow: hidden;
    width: 240px;
    margin: 0 auto;
    margin-top: 10px;
}

.lefttoggle .addbumen .btnbox .sure {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    float: right;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.lefttoggle .addbumen .btnbox .cancel {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #606D7B;
    float: right;
    color: #606D7B;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.lefttoggle .remane {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 230px;
    height: 90px;
    margin-left: -115px;
    margin-top: -45px;
    z-index: 21;
    padding: 15px 0;
    display: none;
}

.lefttoggle .remane .nameinput {
    width: 198px;
    height: 30px;
    border: 1px solid #D4D4D4;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.lefttoggle .remane .nameinput input {
    width: 93%;
    text-indent: 0;
    padding-left: 4px;
    color: #606D7B;
    font-size: 12px;
}

.lefttoggle .remane .nameinput label {
    padding-left: 4px;
    font-size: 12px;
}

.lefttoggle .remane .btnbox {
    overflow: hidden;
    width: 240px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    padding: 0 15px;
}

.lefttoggle .remane .btnbox .sure {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    float: right;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.lefttoggle .remane .btnbox .cancel {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #606D7B;
    float: right;
    color: #606D7B;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.lefttoggle .remane2 {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 230px;
    height: 90px;
    margin-left: -115px;
    margin-top: -45px;
    z-index: 21;
    padding: 15px 0;
    display: none;
}

.lefttoggle .remane2 .xialainput {
    height: 32px;
    border: 1px solid #D4D4D4;
    padding: 1px 5px;
    width: 204px;
    margin: 0 auto;
}

.lefttoggle .remane2 .xialainput .bumen {
    width: 90px;
    height: 28px;
    border-right: 1px solid #D4D4D4;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.lefttoggle .remane2 .xialainput .bumen .sel p {
    color: #AAACBF;
    font-size: 12px;
    line-height: 30px;
}

.lefttoggle .remane2 .xialainput .bumen .sel i {
    width: 28px;
    height: 28px;
    background: url(../images/xialadown.png) no-repeat center;
    position: absolute;
    right: 0;
    top: 0;
}

.lefttoggle .remane2 .xialainput .bumen .list {
    position: absolute;
    top: 29px;
    left: -6px;
    width: 96px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    display: none;
}

.lefttoggle .remane2 .xialainput .bumen .list li p {
    color: #606D7B;
    line-height: 24px;
    font-size: 12px;
    padding-left: 10px;
}

.lefttoggle .remane2 .xialainput .bumen .list li p:hover {
    color: #0ABF50;
}

.lefttoggle .remane2 .nameinput {
    width: 100px;
    height: 28px;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.lefttoggle .remane2 .nameinput input {
    width: 93%;
    text-indent: 0;
    padding-left: 4px;
    color: #606D7B;
    font-size: 12px;
}

.lefttoggle .remane2 .nameinput label {
    padding-left: 4px;
    font-size: 12px;
}

.lefttoggle .remane2 .btnbox {
    overflow: hidden;
    width: 240px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    padding: 0 15px;
}

.lefttoggle .remane2 .btnbox .sure {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    float: right;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.lefttoggle .remane2 .btnbox .cancel {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #606D7B;
    float: right;
    color: #606D7B;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.lefttoggle .remane3 {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 230px;
    height: 90px;
    margin-left: -115px;
    margin-top: -45px;
    z-index: 21;
    padding: 15px 0;
    display: none;
}

.lefttoggle .remane3 .xialainput {
    height: 32px;
    border: 1px solid #D4D4D4;
    padding: 1px 5px;
    width: 204px;
    margin: 0 auto;
}

.lefttoggle .remane3 .xialainput .bumen {
    width: 90px;
    height: 28px;
    border-right: 1px solid #D4D4D4;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.lefttoggle .remane3 .xialainput .bumen .sel p {
    color: #AAACBF;
    font-size: 12px;
    line-height: 30px;
}

.lefttoggle .remane3 .xialainput .bumen .sel i {
    width: 28px;
    height: 28px;
    background: url(../images/xialadown.png) no-repeat center;
    position: absolute;
    right: 0;
    top: 0;
}

.lefttoggle .remane3 .xialainput .bumen .list {
    position: absolute;
    top: 29px;
    left: -6px;
    width: 96px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    display: none;
}

.lefttoggle .remane3 .xialainput .bumen .list li p {
    color: #606D7B;
    line-height: 24px;
    font-size: 12px;
    padding-left: 10px;
}

.lefttoggle .remane3 .xialainput .bumen .list li p:hover {
    color: #0ABF50;
}

.lefttoggle .remane3 .nameinput {
    width: 150px;
    height: 28px;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.lefttoggle .remane3 .nameinput input {
    width: 93%;
    text-indent: 0;
    padding-left: 4px;
    color: #606D7B;
    font-size: 12px;
}

.lefttoggle .remane3 .nameinput label {
    padding-left: 4px;
    font-size: 12px;
}

.lefttoggle .remane3 .btnbox {
    overflow: hidden;
    width: 240px;
    margin: 0 auto;
    margin-top: 10px;
    width: 100%;
    padding: 0 15px;
}

.lefttoggle .remane3 .btnbox .sure {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    float: right;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.lefttoggle .remane3 .btnbox .cancel {
    width: 40px;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #606D7B;
    float: right;
    color: #606D7B;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.lefttoggle::-webkit-scrollbar {
    width: 4px;
}

/* 这是针对缺省样式 (必须的) */
.lefttoggle::-webkit-scrollbar-track {
    background-color: #5C6880;
}

/* 滚动条的滑轨背景颜色 */

.lefttoggle::-webkit-scrollbar-thumb {
    background-color: rgba(250, 250, 250, 0.5);
}

/* 滑块颜色 */

.lefttoggle::-webkit-scrollbar-button {
    background-color: #5C6880;
}

/* 滑轨两头的监听按钮颜色 */

.lefttoggle::-webkit-scrollbar-corner {
    background-color: #5C6880;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */

#mb_btn_ok:hover {
    background-color: #0BA346;
}

/*按钮效果*/
.btn-green {
    background: #0ABF50;
    color: #fff;
    border: 1px solid #0ABF50;
}

.btn-green:hover {
    background: #0BA346;
    cursor: pointer;
}

.btn-white {
    background: #fff;
    color: #999999;
    border: 1px solid #D4D4D4;
}

.btn-white:hover {
    background: #EDEDED;
    cursor: pointer;
}

.btn-black {
    background: #485166;
    color: #fff;
    border: 1px solid #485166;
}

.btn-black:hover {
    background: #313744;
    cursor: pointer;
}

.h-green:hover {
    border: 1px solid #0ABF50 !important;
    color: #0ABF50;
    cursor: pointer;
}

/*分页*/
.pages {
    text-align: center;
    font-size: 12px;
    color: #606D7B;
    margin-top: 30px;
}

.pages .n, .pages button, .pages .pagesnum {
    width: 50px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    border: 1px solid #C7D2DF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    vertical-align: middle;
    margin: 0 4px;
    font-size: 12px;
    color: #606D7B;
    background: transparent;
    outline: none;
}

.pages button {
    cursor: pointer;
}

.pages .pagesnum {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.pages .pagesnum .ar {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 20px;
    height: 20px;
    z-index: 1;
    background: url(../images/sch-page-ar.png) no-repeat center;
    cursor: pointer;
}

.pages .pagesnum .sn {
    font-size: 12px;
    color: #606D7B;
    line-height: 20px;
    display: block;
    width: 100%;
    text-align: center;
    padding-right: 15px;
    padding-left: 5px;
    text-align: left;
}

.pages .pagesnum ul {
    position: absolute;
    background: #fff;
    border: 1px solid #C7D2DF;
    width: 50px;
    left: -1px;
    display: none;
}

.pages .pagesnum ul li {
    cursor: pointer;
    text-align: left;
    padding-left: 5px;
    font-size: 12px;
    line-height: 20px;
}

/* 公共弹窗1 */
.appr-popup .inner {
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    /* width: 645px;
    height: 570px; */
    margin-top: -285px;
    margin-left: -322px;
    z-index: 2;
    padding: 0 30px;
}

.appr-popup .title {
    height: 55px;
    background-color: #fff;
    color: #333;
    margin-bottom: 10px;
    /*overflow: hidden;*/
    border-bottom: 1px solid #E2E4E9;
}

.appr-popup .title span {
    float: left;
    line-height: 49px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.appr-popup .title span.cur {
    color: #2ECC71;
}

.appr-popup .title span.cur:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -15px;
    width: 30px;
    height: 2px;
    background-color: #2ECC71;
    content: '';
}

.appr-popup .pop-box {
    overflow: hidden;
    margin-bottom: 10px;
}

.appr-popup .addedbox {
    width: 300px;
    height: 400px;
    background-color: #FAFAFC;
}

.appr-popup .addedbox ul {
    max-height: 100%;
    padding: 30px 30px;
    overflow-y: auto;
}

.appr-popup .addedbox li {
    position: relative;
    float: left;
    min-width: 70px;
    padding: 0 10px;
    text-align: center;
    border: 1px solid #20BF5D;
    color: #20BF5D;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 0 20px 14px 0;
}

.appr-popup .addedbox li .i-close {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 16px;
    height: 16px;
    background: url(../images/apr-close1.png) no-repeat left center;
    cursor: pointer;
}

.appr-popup .treesbox {
    width: 280px;
    height: 443px;
    background-color: #FAFAFC;
}

.appr-popup .trees-search {
    padding: 7px 14px;
    position: relative;
}

.appr-popup .trees-search label {
    color: #999;
    font-size: 12px;
    position: absolute;
    left: 20px;
    top: 10px;
    height: 22px;
    line-height: 22px;
    padding-left: 7px;
    cursor: auto;
    z-index: 1;
    letter-spacing: 0.6px;
}

.appr-popup .trees-search input {
    width: 100%;
    height: 26px;
    background-color: #fff;
    padding: 0 10px 0 15px;
    line-height: 26px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #999999;
    font-size: 12px;
}

.appr-popup .trees-search .search-btn {
    position: absolute;
    right: 26px;
    top: 10px;
    background: url(../images/h-search.png) no-repeat center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.appr-popup .treesbox .trees-t {
    color: #333;
    margin-bottom: 20px;
}

.appr-popup .plist .sitem {
    line-height: 20px;
    padding: 5px 0;
    cursor: pointer;
}

.appr-popup .pop-trees {
    /* padding: 27px 0px 0 14px; */
    color: #585858;
}

.appr-popup .pbranch {
    line-height: 20px;
    padding: 5px 0;
    padding-left: 24px;
    cursor: pointer;
}

.appr-popup .pbranch:hover, .appr-popup .plist .sitem:hover {
    background-color: #FBF7EA;
}

.appr-popup .pbranch .ar {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 12px;
    height: 14px;
    background: url(../images/apr-trees-ar.png) no-repeat left bottom;
    margin-right: 3px;
    -webkit-transform: rotate(-0deg);
    -moz-transform: rotate(-0deg);
    -ms-transform: rotate(-0deg);
    transform: rotate(-0deg);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -ms-transition: -ms-transform 0.3s;
    transition: transform 0.3s;
}

.appr-popup .pbranch.open .ar {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -ms-transition: -ms-transform 0.3s;
    transition: transform 0.3s;
}

/*.appr-popup .pbranch.open + .plist{
    display: block;
}*/
.appr-popup .plist {
    display: none;
}

.appr-popup .plist .pbranch {
    padding-left: 46px;
}

.appr-popup .plist .plist .pbranch {
    padding-left: 70px;
    word-break: break-all;
}

.appr-popup .whiteact {
    background-color: #FBF7EA;
}

.appr-popup .plist .plist .plist .sitem {
    padding-left: 86px;
}

.appr-popup .treesb {
    height: 340px;
    overflow: auto;
}

.appr-popup .inner .pop-btns button {
    font-size: 14px;
}

.appr-popup .inner .pop-btns .no {
    border: 1px solid #999;
    color: #666;
    background-color: transparent;
}

.appr-popup .inner .pop-btns button:hover {
    background-color: #0BA346;
}

.appr-popup .inner .pop-btns .no:hover {
    color: #0ABF50;
    border-color: #0ABF50;
    background-color: transparent;
}

.appr-popup .treesb::-webkit-scrollbar {
    width: 8px;
}

/* 这是针对缺省样式 (必须的) */
.appr-popup .treesb::-webkit-scrollbar-track {
    background-color: #EDEDED;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/* 滚动条的滑轨背景颜色 */

.appr-popup .treesb::-webkit-scrollbar-thumb {
    background-color: #DDDDDD;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/* 滑块颜色 */

.appr-popup .treesb::-webkit-scrollbar-button {
    background-color: #EDEDED;
}

/* 滑轨两头的监听按钮颜色 */

.appr-popup .treesb::-webkit-scrollbar-corner {
    background-color: #EDEDED;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */

/*添加课程弹窗开始*/
.pop-addClass {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 14;
    display: none;
}

.pop-addClass .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 0;
    background-color: #000;
    opacity: 0.3;
    filter: alpha(opacity=30);
}

.pop-addClass .pop-container {
    /* width: 518px; */
    /*height: 320px;*/
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -259px;
    margin-top: -160px;
    background-color: #fff;
    -webkit-border-radius:4px;
    border-radius:4px;
}

.pop-addClass .title {
    height: 40px;
    position: relative;
    background-color: #ECECEC;
    padding: 0 20px;
    line-height: 40px;
}

.pop-addClass .title .close {
    position: absolute;
    right: 0px;
    top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(../images/apr-close.png) no-repeat center;
}

.pop-addClass .pop-main {
    padding-top: 30px;
}

.pop-addClass .pop-main .row {
    margin-bottom: 20px;
}

.pop-addClass .pop-main .k {
    float: left;
    width: 70px;
    text-align: right;
    line-height: 34px;
    padding-right: 10px;
}

.pop-addClass .pop-main .v {
    position: relative;
    float: left;
}

.pop-addClass .pop-main .acceptb {
    position: relative;
    width: 380px;
    height: 34px;
    line-height: 32px;
    padding-left: 10px;
    border: 1px solid #BFC3CD;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}
.pop-addClass .pop-main .acceptb.on {
    border-color:#0ABF50;
}
.pop-addClass .pop-main .acceptb span {
    font-size: 12px;
    color: #999;
}

.pop-addClass .pop-main .acceptb .ar {
    position: absolute;
    top: 2px;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    background: url(../images/per-ar2.png) no-repeat center;
}
.pop-addClass .pop-main .acceptb.on .ar {
    background-image:url(../images/per-ar2.png);
}
.pop-addClass .pop-main .v.open .acceptb {
    border-color:#0ABF50;
}
.pop-addClass .pop-main .v.open .acceptb .ar{
    background-image:url(../images/per-ar.png);
}

.pop-addClass .pop-main .list {
    position: absolute;
    left: 0;
    top: 34px;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(192, 183, 183, 0.5);
    max-height: 156px;
    overflow-y: auto;
    display: none;
}

.pop-addClass .pop-main .v.open .list {
    display: block !important;
}

.pop-addClass .pop-main .list li {
    padding-left: 10px;
    line-height: 32px;
    font-size: 12px;
    cursor: pointer;
}

.pop-addClass .pop-main .list li:hover, .pop-addClass .pop-main .list li.cur {
    background-color: #F3FCF7;
    color: #03C55C;
}

.pop-addClass .pop-main .btns {
    width: 100%;
    padding:14px;
    text-align: center;
}

.pop-addClass .pop-main .btns button {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 100px;
    height: 36px;
    border: 1px solid #B3B3B3;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: transparent;
    color: #999;
    outline: none;
    cursor: pointer;
}

.pop-addClass .pop-main .btns .ok {
    border-color: #2ECC71;
    background-color: #2ECC71;
    color: #fff;
}
.pop-addClass .pop-main .btns .qr {
    border-color: #2ECC71;
    background-color: #2ECC71;
    color: #fff;
}

.pop-addClass .pop-main .btns .ok:hover {
    background-color: #0BA346;
    border-color: #0BA346;
}
.pop-addClass .pop-main .btns .qr:hover {
    background-color: #0BA346;
}
.pop-addClass .pop-main .btns .cancel {
    margin-right:10px;
}
.pop-addClass .pop-main .btns .cancel:hover {
    border-color: #0BA346;
    color:#0BA346;
}

.pop-addClass .pop-main .v.open .list::-webkit-scrollbar {
    width: 8px;
}

/* 这是针对缺省样式 (必须的) */
.pop-addClass .pop-main .v.open .list::-webkit-scrollbar-track {
    background-color: #EDEDED;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/* 滚动条的滑轨背景颜色 */

.pop-addClass .pop-main .v.open .list::-webkit-scrollbar-thumb {
    background-color: #DDDDDD;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/* 滑块颜色 */

.pop-addClass .pop-main .v.open .list::-webkit-scrollbar-button {
    background-color: #EDEDED;
}

/* 滑轨两头的监听按钮颜色 */

.pop-addClass .pop-main .v.open .list::-webkit-scrollbar-corner {
    background-color: #EDEDED;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
/*添加课程弹窗结束*/

/*分页样式*/
.pages {
    font-size: 12px;
    line-height: 26px;
    color: #666666;
    /*width: 345px;*/
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}

div.zxf_pagediv {
    text-align: center;
    color: #999999;
}

div.zxf_pagediv a {
    text-decoration: none;

}

div.zxf_pagediv span, div.zxf_pagediv a {
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
}

a.disabled {
    height: 26px;
    width: 72px;
    line-height: 26px;
    background: #FFFFFF;
    border: 1px solid #C7D2DF;
    margin: 0 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #f3f3f3;
}

.zxcurrent {
    color: #ffffff;
    background: #0ABF50;
    border: 1px solid #0ABF50;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 33px;
    height: 26px;
    line-height: 26px;
    margin: 0 5px;
}

.zxfPagenum {
    color: #999999;
    background: #FFFFFF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 33px;
    height: 26px;
    line-height: 26px;
    border: 1px solid #C7D2DF;
    margin: 0 5px;
    font-size: 14px;
}

.allnum i {
    color: #0ABF50;
}

/*.nextpage{
	color: #1091FF;
	margin: 0 5px;
	border: 1px solid #1091FF;
}*/
.nextbtn, .prebtn {
    color: #999999;
    background: #FFFFFF;
    height: 26px;
    width: 72px;
    line-height: 26px;
    background: #FFFFFF;
    border: 1px solid #C7D2DF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 5px;
}

.zxfinput {
    width: 33px;
    height: 26px;
    text-align: center;
    box-sizing: border-box;
    color: #999;
    margin: 0 12px;
    background: #FFFFFF;
    border: 1px solid #C7D2DF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px;
    margin-right: 4px;
}

.zxfokbtn {
    line-height: 26px;
    border: 1px solid #C7D2DF;
    width: 40px;
    height: 26px;
    margin: 0 5px;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}

.fxallye {
    font-size: 14px;
}

.zxlastye {
    line-height: 26px;
    border: 1px solid #C7D2DF;
    width: 60px;
    height: 26px;
    margin: 0 5px;
    background: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}

/* 滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* 这是针对缺省样式 (必须的) */
::-webkit-scrollbar-track {
    background-color: #EDEDED;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/* 滚动条的滑轨背景颜色 */

::-webkit-scrollbar-thumb {
    background-color: #DDDDDD;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

/* 滑块颜色 */

::-webkit-scrollbar-button {
    background-color: #EDEDED;
}

/* 滑轨两头的监听按钮颜色 */

::-webkit-scrollbar-corner {
    background-color: #EDEDED;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */

/******* 侧弹窗 ********/
.sidepopup {
    position: fixed;
    right: -400px;
    top: 80px;
    bottom: 0px;
    width: 410px;
    background-color: #fff;
    -webkit-box-shadow: 2px 10px 8px rgba(51, 51, 51, 0.8);
    -moz-box-shadow: 2px 10px 8px rgba(51, 51, 51, 0.8);
    -ms-box-shadow: 2px 10px 8px rgba(51, 51, 51, 0.8);
    box-shadow: 2px 10px 8px rgba(51, 51, 51, 0.8);
    color: #666;
    z-index: 11;
    display: none;/* 根据public2.css里的样式，这个display应该是要注释掉的，但是我现在不确定这个display是否是故意这样的，所以为了解决目前的bug，单独把出现问题的页面的displa设为block */
}

#qse_application_calendar .sidepopup{
    display:block;
}

.sidepopup .mask {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.sidepopup .sidemain {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.sidepopup .pophead {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background-color: #ECECEC;
}

.sidepopup .pophead h2 {
    font-size: 14px;
}

.sidepopup .pophead .close {
    position: absolute;
    top: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url(../images/apr-close.png) no-repeat center;
    cursor: pointer;
}

.sidepopup .popcontent {
    padding-top: 40px;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 40px;
}

.sidepopup .btns {
    padding-left: 35px;
}

.sidepopup .btns button {
    width: 100px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.sidepopup .btns button.save {
    color: #fff;
}

.sidepopup .btns button.cancel {
    margin-left: 10px;
}

/*日历层级*/
.ui-datepicker {
    z-index: 20 !important;
}

/*html,body隐藏*/
.htmlbodyoverf {
    height: 100%;
    overflow: hidden;
}

.edu-tbplaceholder {
    height: 46px;
}

/*电子班牌弹框*/
.wind-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    display: none;
}

.wind-box .bg-opacity {
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.wind-box .color-box {
    width: 754px;
    height: 568px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -377px;
    margin-top: -284px;
}

.wind-box .color-box .toptopic {
    width: 100%;
    height: 40px;
    background: #ECECEC;
    padding: 0 0 0 20px;
}

.wind-box .color-box .toptopic .fl {
    color: #666666;
    font-size: 14px;
    line-height: 40px;
}

.wind-box .color-box .toptopic .fr {
    width: 40px;
    height: 40px;
    background: url(../images/apr-close.png) no-repeat center;
    cursor: pointer;
}

.wind-box .color-box .bottomnr {
    padding: 15px 30px 30px 30px;
}

/* 系统升级 */
.sysupgrade {
    display: table;
    width: 100%;
    background-color: #fff;
    text-align: center;
}

.sysupgrade .sysupinner {
    display: table-cell;
    vertical-align: middle;
}

.sysupgrade .sysupinner .btn {
    display: block;
    width: 100px;
    height: 36px;
    border: 1px solid #B3B3B3;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 26px auto 0;
    border-color: #2ECC71;
    background-color: #2ECC71;
    color: #fff;
    outline: none;
    cursor: pointer;
}

.sysupgrade .sysupinner .btn:hover {
    background-color: #0BA346;
}

.sysupgrade .sysupinner h1 {
    margin-top: 28px;
    color: #333;
    font-size: 18px;
}

.sysupgrade .sysupinner p {
    color: #666;
    font-size: 14px;
}

/* 初始化引导弹窗 2017-08-18 */
.edu-leadpop {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}

.edu-leadpop .mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: #000;
    opacity: .5;
    filter: alpha(opacity=50);
}

.edu-leadpop .leadbox {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 460px;
    margin-left: -300px;
    margin-top: -230px;
    padding: 10px 10px 10px 30px;
    z-index: 1;
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.edu-leadpop .leadbox .pop-tit {
    margin-bottom: 50px;
    font-size: 14px;
    color: #666;
}

.edu-leadpop .leadbox .close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    padding: 5px;
    background: url(../images/apr-close.png) no-repeat center;
    cursor: pointer;
}

.edu-leadpop .leadbox .steprow {
    margin-bottom: 50px;
    position: relative;
}

.edu-leadpop .leadbox .steprow .line {
    position: absolute;
    left: 55px;
    top: 14px;
    width: 440px;
    height: 4px;
    background-color: #F1F1F1;
    z-index: 0;
}

.edu-leadpop .leadbox .steprow ul {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.edu-leadpop .leadbox .steprow li {
    position: relative;
    float: left;
    width: 110px;
    padding-top: 32px;
    text-align: center;
    cursor: pointer;
}

.edu-leadpop .leadbox .steprow li p {
    font-size: 12px;
    color: #666;
}

.edu-leadpop .leadbox .steprow li .dot {
    display: block;
    position: absolute;
    left: 50%;
    top: 4px;
    z-index: 2;
    width: 25px;
    height: 25px;
    margin-left: -12.5px;
    text-indent: -999px;
    font-size: 18px;
    line-height: 25px;
    overflow: hidden;
    background: url(../images/lead-icons.png) no-repeat -5px -5px;
}

.edu-leadpop .leadbox .steprow li.success .dot {
    background-position: -5px -39px;
}

.edu-leadpop .leadbox .steprow li.cur .dot {
    text-indent: 0;
    color: #fff;
    background-position: -10px -112px;
}

.edu-leadpop .leadbox .steprow li.fail .dot {
    background-position: -10px -72px;
}

.edu-leadpop .leadbox .steprow li.cur p, .edu-leadpop .leadbox .steprow li.success:hover p, .edu-leadpop .leadbox .steprow li.fail:hover p {
    color: #43D305;
}

.edu-leadpop .step-cont .lfimg {
    float: left;
    margin: 40px 60px 0 30px;
    width: 130px;
    height: 90px;
}

.edu-leadpop .step-cont .frtxt {
    float: left;
    width: 300px;
}

.edu-leadpop .step-cont.st-one .frtxt {
    width: 320px;
}

.edu-leadpop .step-cont .frtxt.tiponly .txt {
    padding-top: 63px;
}

.edu-leadpop .step-cont .btns {
    overflow: hidden;
}

.edu-leadpop .step-cont .btns button {
    display: block;
    float: left;
    margin: 0;
    text-align: center;
    line-height: 34px;
    height: 36px;
    width: 100px;
    border: 1px solid #BFC3CD;
    font-size: 14px;
    color: #666;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}

.edu-leadpop .step-cont .btns .load {
    margin-right: 16px;
    background-color: #0ABF50;
    border-color: #0ABF50;
    color: #fff;
}

.edu-leadpop .step-cont .btns .load:hover {
    background-color: #0BA346;
    border-color: #0BA346;
}

.edu-leadpop .step-cont .btns .nextbtn:hover {
    border: 1px solid #0ABF50;
    color: #0ABF50;
}

.edu-leadpop .step-cont .btns .greenbtn {
    background-color: #0ABF50;
    color: #fff;
}

.edu-leadpop .step-cont .txt {
    height: 160px;
    margin-bottom: 30px;
}

.edu-leadpop .step-cont .txt .p-tip {
    color: #F6A623;
}

.edu-leadpop .st-one .txt .t {
    padding: 10px 0;
    line-height: 20px;
    font-size: 12px;
    color: #666;
}

.edu-leadpop .st-one .txt .sel-box {
    position: relative;
    float: left;
    width: 155px;
    height: 34px;
    margin-right: 5px;
    z-index: 1;
}

.edu-leadpop .st-one .txt .sel-box .seldiv {
    width: 155px;
    height: 34px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 22px;
    border: 1px solid #BFC3CD;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: url(../images/jiantou-right.png) no-repeat 140px center;
    cursor: pointer;
}

.edu-leadpop .st-one .txt .sel-box .seldiv span {
    font-size: 12px;
    color: #999;
}

.edu-leadpop .st-one .txt .sel-box .sellist {
    display: none;
    position: absolute;
    left: 0;
    top: 33px;
    width: 100%;
    line-height: 26px;
    max-height: 156px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #BFC3CD;
    z-index: 2;
}

.edu-leadpop .st-one .txt .sel-box .sellist li {
    font-size: 12px;
    padding: 0 10px;
    cursor: pointer;
}

.edu-leadpop .st-one .txt .sel-box .sellist li:hover {
    background-color: #F3FCF7;
    color: #03C55C;
}

.edu-leadpop .st-one .txt .numbers {
    width: 160px;
    height: 30px;
    border: 1px solid #BFC3CD;
    overflow: hidden;
}

.edu-leadpop .st-one .txt .numbers span {
    display: block;
    float: left;
    text-align: center;
    line-height: 28px;
}

.edu-leadpop .st-one .txt .numbers span.icn {
    width: 34px;
    height: 28px;
    font-size: 20px;
    background: url(../images/icon-plus.png) no-repeat center 13px;
    cursor: pointer;
}

.edu-leadpop .st-one .txt .numbers span.plus {
    background-position: center -38px;
}

.edu-leadpop .st-one .txt .numbers span input {
    width: 90px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #BFC3CD;
    border-top: 0 none;
    border-bottom: 0 none;
    text-align: center;
    color: #687283;
    font-size: 12px;
}

.edu-leadpop .st-secus {
    text-align: center;
}

.edu-leadpop .st-secus .img {
    width: 130px;
    margin: 0 auto 26px;
}

.edu-leadpop .st-secus p {
    font-size: 18px;
    color: #0ABF50;
    margin-bottom: 40px;
}

.edu-leadpop .st-secus .btns .load {
    float: none;
    margin: 0 auto;
}


/* 日历 */
.rili_box {
	width:270px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid #d4d4d4;
	display: none;
	position:absolute;
	box-shadow: rgba(0,0,0,.2) 0 1px 4px;
    z-index: 12;
    top:20px;
    left:0;
	cursor: default;
}
.rili_box * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.rili_box .header {
	height:36px;
	background:#fff;
	color:#666;
	padding:0 20px;
	border-bottom:1px solid #d3d3d3;
    line-height: 34px;
}
.rili_box .year-prev {
	width:45px;
	height:100%;
	float:left;
}
.rili_box .year-prev .double {
	width:15px;
	height:33px;
	background:url(../images/doubleleft.png) no-repeat center;
	display: inline-block;
	margin-right:10px;
	cursor: pointer;
}
.rili_box .year-prev .single {
	width:15px;
	height:33px;
	background:url(../images/left_day.png) no-repeat center;
	display: inline-block;
	cursor: pointer;
}
.rili_box .year-next {
	width:45px;
	height:100%;
	float:right;
	text-align: right;
}
.rili_box .year-next .double {
	width:15px;
	height:33px;
	background:url(../images/doubleright.png) no-repeat center;
	display: inline-block;
	margin-left:10px;
	cursor: pointer;
}
.rili_box .year-next .single {
	width:15px;
	height:33px;
	background:url(../images/right_day.png) no-repeat center;
	display: inline-block;
	cursor: pointer;
}
.rili_box .head_middle {
	width:230px;
	height:34px;
	margin:0 auto;
	line-height: 34px;
	text-align: center;
	font-size:16px;
}
.rili_box .head_middle .month {
	padding-right:5px;
    cursor: pointer;
    color: #333333;
}
.rili_box .head_middle .month:hover {
    color:#0ABF50;
}
.rili_box .head_middle .year {
    cursor: pointer;
    color: #333333;
}
.rili_box .head_middle .year_month .year {
	margin-right:20px;
}
.rili_box .head_middle .year_month .year:hover {
    color:#0ABF50;
}
.rili_box .section_body {
	font-size:14px;
}
.clear {
	clear:both;
}
.rili_box .riqi_day_kong {
	width:30px;
	height:30px;
	margin:0 auto;
}
.rili_box .riqi_day {
	height:30px;
	width:30px;
	margin:0 auto;
	line-height: 28px;
	cursor: pointer;
	border:1px solid #fff;
	-webkit-border-radius:2px;
	border-radius:2px;
	color:#666;
}
.rili_box .riqi_day:hover {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_box .riqi_day.day-checked {
	background:#0ABF50;
	border-color:#0ABF50;
    color:#fff;
}
.rili_box .day-list {
	float:left;
	width:14.2%;
	text-align: center;
	padding:2px 0;
}
.rili_box .disabled .riqi_day {
	background:#efefef;
	cursor: not-allowed;
    color:#999;
}
.rili_box .disabled .riqi_day:hover {
	border-color:#fff;
	color:#999;
}
.rili_box .disabled .riqi_day.day-checked {
	background:#efefef;
	border-color:#efefef;
	color:#666;
}
.rili_box .is-empty {
	float:left;
	width:14.2%;
	text-align: center;
	padding:2px 0;
}
.rili_box .section_day {
	padding:10px;
	background:#fff;
	border-top:none;
}
.rili_box .weekbox .weekday {
	float:left;
	list-style: none;
	width:14.2%;
	height:30px;
    text-align: center;
    font-weight: bold;
}
.rili_box .section_month {
	padding: 20px;
	background: #fff;
	border-top: none;
	display: none;
}
.rili_box .section_month .section_month_list li {
	list-style: none;
	float:left;
	width:33.333333%;
	text-align: center;
	padding:3px 0 10px;
}
.rili_box .section_month .month-list {
	width:36px;
	height:30px;
	border:1px solid #fff;
	margin:0 auto;
	cursor: pointer;
	line-height: 30px;
	-webkit-border-radius:2px;
	border-radius:2px;
	color:#666;
}
.rili_box .section_month .month-list:hover {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_box .section_month .month-list.cur {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_box .section_year {
	padding: 20px;
	background: #fff;
	border-top: none;
	display: none;
}
.rili_box .section_year .section_year_list li {
	list-style: none;
	float:left;
	width:25%;
	text-align: center;
    padding:3px 0 25px;
}

.rili_box .section_year .year-list {
	height:30px;
	line-height: 30px;
	color:#666;
	border:1px solid #fff;
	width:50px;
	margin:0 auto;
	-webkit-border-radius:2px;
    border-radius:2px;
	cursor: pointer;
    /* border-color:#0ABF50; */
    box-sizing: border-box;
}
.rili_box .section_year .year-list:hover {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_box .header .head_middle .year_list_box .start, .rili_box .header .head_middle .year_list_box .end {
    color: #333333;
    /* font-weight: bold; */
}
.rili_box .header .head_middle .year_head {
    color: #333333;
    /* font-weight: bold; */
}
.rili_box .section_year .year-list .cur {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_region .rili_box {
	display: block;
	border:none;
	box-shadow: none;
	position: static;
	float:left;
}
.rili_region {
	position:absolute;
	width:542px;
	border:1px solid #d4d4d4;
	background:#fff;
	top:-2px;
    left:-2px;
	display: none;
	box-shadow: rgba(0,0,0,.2) 0 1px 4px;
    z-index: 10;
}
.rili_region .to {
	left:340px;
}
.rili_region .first-one {
	height:35px;
	border-bottom:1px solid #d4d4d4;
	line-height: 35px;
	padding-left:10px;
	font-size:12px;
}
.rili_region .first-one span {
	display: inline-block !important;
	margin-right:10px;
	margin-left:10px;
	width:70px;
    float:none !important;
    vertical-align: middle;
}

.rili_two {
    width:250px;
    height:34px;
    line-height: 32px;
    border:1px solid #d4d4d4;
    box-sizing: border-box;
    -webkit-border-radius:3px;
    border-radius:3px;
    padding-right:24px;
    background:url(../images/dateIcon.png) no-repeat right 7px center;
    position:relative;
    cursor: pointer;
    display: inline-block;
}
.rili_two .begin {
    width:100px;
    text-align: center;
    height:22px;
    line-height: 22px;
    font-size: 14px;
    color:#666;
	cursor: pointer;
}
.rili_two .finish {
    width:100px;
    text-align: center;
    height:22px;
    line-height: 22px;
    font-size:14px;
    color:#666;
	cursor: pointer;
}
.rili_two > i.del {
    width:22px;
    height:22px;
    position:absolute;
    background:url(../images/del_nr.png) no-repeat center #fff;
    top:5px;
    right:2px;
    display: none;
}
.rili_two:hover > i.del {
    display: block;
}
.rili_one > i.del {
    width:22px;
    height:22px;
    position:absolute;
    background:url(../images/del_nr.png) no-repeat center #fff;
    top:5px;
    right:2px;
    z-index: 5;
    display: none;
}
.rili_one:hover > i.del {
    display: block;
}


/*日历月*/
.rili_month {
	width:270px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid #d4d4d4;
	display: none;
	position:absolute;
	box-shadow: rgba(0,0,0,.2) 0 1px 4px;
    z-index: 10;
    top:34px;
    left:0;
    cursor: default;
}
.rili_month * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.rili_month .header {
	height:36px;
	background:#fff;
	color:#666;
	padding:0 20px;
	border-bottom:1px solid #d3d3d3;
	line-height: 34px;
}
.rili_month .year-prev {
	width:20px;
	height:100%;
	float:left;
}
.rili_month .year-prev .single {
	width:15px;
	height:33px;
	background:url(../images/left_day.png) no-repeat center;
	display: inline-block;
	cursor: pointer;
}
.rili_month .year-next {
	width:20px;
	height:100%;
	float:right;
	text-align: right;
}
.rili_month .year-next .single {
	width:15px;
	height:33px;
	background:url(../images/right_day.png) no-repeat center;
	display: inline-block;
	cursor: pointer;
}
.rili_month .head_middle {
	width:170px;
	height:34px;
	margin:0 auto;
	line-height: 34px;
	text-align: center;
	font-size:16px;
}
.rili_month .head_middle .year_head:hover {
    color:#0ABF50;
    cursor: pointer;
}

.rili_month .head_middle .month {
	padding-right:5px;
	cursor: pointer;
}
.rili_month .head_middle .year {
	cursor: pointer;
}

.rili_month .head_middle .year_month .year {
	margin-right:20px;
}
.rili_month .section_body {
	font-size:14px;
}
.clear {
	clear:both;
}
.rili_month .section_day {
	padding:10px;
	background:#fff;
	border-top:none;
}
.rili_month .weekbox .weekday {
	float:left;
	list-style: none;
	width:14.2%;
	height:30px;
    text-align: center;
    font-weight: 150;
}
.rili_month .section_month {
	padding: 20px;
	background: #fff;
	border-top: none;
}
.rili_month .section_month .section_month_list li {
	list-style: none;
	float:left;
	width:33.333333%;
	text-align: center;
	padding:3px 0 10px;
}
.rili_month .section_month .month-list {
	width:36px;
	height:30px;
	border:1px solid #fff;
	margin:0 auto;
	cursor: pointer;
	line-height: 30px;
	-webkit-border-radius:2px;
	border-radius:2px;
	color:#666;
}
.rili_month .section_month .month-list .disabled {
    background:#efefef;
    border-color:#efefef;
    color:#666;
}
.rili_month .section_month .month-list .disabled:hover {
    background:#efefef;
    border-color:#efefef;
    color:#666;
}
.rili_month .section_month .month-list:hover {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_month .section_month .month-list.cur {
	border-color:#0ABF50;
    background:#0ABF50;
    color:#fff;
}
.rili_month .section_year {
	padding: 20px;
	background: #fff;
	border-top: none;
    display: none;
}
.rili_month .section_year .section_year_list li {
	list-style: none;
	float:left;
	width:25%;
	text-align: center;
	padding:3px 0 25px;
}
.rili_month .section_year .year-list {
	height:30px;
	line-height: 30px;
	color:#666;
	border:1px solid #fff;
	width:60px;
	margin:0 auto;
	-webkit-border-radius:2px;
	border-radius:2px;
	cursor: pointer;
}
.rili_month .section_year .year-list:hover {
	border-color:#0ABF50;
	color:#0ABF50;
}
.rili_month .section_year .year-list.cur {
	border-color:#0ABF50;
	background-color:#0ABF50;
    color:#fff;
}
.rili_region .rili_month {
    display: block;
    border:none;
    box-shadow: none;
    position: static;
    float:left;
}
.rili > i.del {
    width:22px;
    height:22px;
    position:absolute;
    background:url(../images/del_nr.png) no-repeat center #fff;
    top:5px;
    right:2px;
    z-index: 4;
    display: none;
}
.rili:hover > i.del {
    display: block;
}
.rili > i.del {
    width:22px;
    height:22px;
    position:absolute;
    background:url(../images/del_nr.png) no-repeat center #fff;
    top:5px;
    right:2px;
    z-index: 4;
    display: none;
}
.rili:hover > i.del {
    display: block;
}
.rili_one {
	width:130px;
    margin:0;
    background:url(../images/dateIcon.png) no-repeat no-repeat right 7px center;
    cursor: pointer;
}
.rili_one > input {
    cursor: pointer;
}
.rili {
    padding-left:20px;
    cursor: pointer;
    position:relative;
    margin:0 16px 0 0;
    width:130px;
    background:url(../images/dateIcon.png) no-repeat no-repeat right 7px center;
}
.rili_three {
	padding-left:20px;
    cursor: pointer;
    position:relative;
    margin:0 16px 0 0;
    width:130px;
    background:url(../images/dateIcon.png) no-repeat no-repeat right 7px center;
}
.rili_three > i.del {
    width:22px;
    height:22px;
    position:absolute;
    background:url(../images/del_nr.png) no-repeat center #fff;
    top:5px;
    right:2px;
    z-index: 4;
    display: none;
}
.rili_three:hover > i.del {
    display: block;
}
.rili_three > i.del {
    width:22px;
    height:22px;
    position:absolute;
    background:url(../images/del_nr.png) no-repeat center #fff;
    top:5px;
    right:2px;
    z-index: 4;
    display: none;
}
.rili_three:hover > i.del {
    display: block;
}
.rili_three > input {
	cursor: pointer;
}
.rili_three .rili_box.rili_year .section_year .section_year_list li {
	width:33.3333%;
	padding:5px 0 5px;
}
.rili_three .rili_box.rili_year .section_year .section_year_list li .year-list.cur {
	background:#0ABF50;
	color:#fff;
}
.rili_three .rili_box .rili_year .year_list_box {
    font-size:14px;
    color: #333;
}
/* 提示框按钮 */
#mb_btn_ok:hover{
    background:#00A441;
}
#mb_btn_no:hover {
    border-color:#0ABF50;
    color:#0ABF50;
}