/*css reset--------------------*/
html{color:#333;background:#FFF; font-size: 14px;}body,div,dl,dt,dd,.nav,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
a{text-decoration:none;  }

/*clearfix---------------*/
.clearfix:after,.col:after,.wrapper_col:after  {visibility: hidden;display: block;font-size: 0;content: " ";clear: both;height: 0;}.clearfix,.col,.wrapper_col{*zoom:1;}

/*box-sizing-------------*/
*{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing:border-box;}

/*font--------------*/
body{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;}
input{
    color: #666;
    padding: 0 10px;
    
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
	color:#aaa;
}
a{
    color:#333;
}


/*清除 iPhone Safari 按钮默认样式*/
input[type="submit"],input[type="reset"],input[type="button"],button,select,textarea {-webkit-appearance: none;}

body{
    min-width: 1300px;
    min-height: 100vh;
 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer{
    flex-shrink: 0;
}
.main{
    flex-grow: 1;
}
.li{
    text-align: center;
    background-color: #fff;
    border-radius: 20px;
    width: 300px;
    height: 350px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.wrapper{
    width: 1200px;
    margin:  0 auto;
}

.wrapper_col{
    width: 1230px;
    margin: 0 auto;
}
.col{padding: 15px; float: left;}
.col-1-12{width:8.3333%; }
.col-2-12{width:16.6667%; }
.col-3-12{width:25%; }
.col-4-12{width: 33.3333%;}
.col-5-12{width: 41.6667%;}
.col-6-12{width: 50%;}
.col-7-12{width: 58.3333%;}
.col-8-12{width: 66.6667%;}
.col-9-12{width: 75%;}
.col-10-12{width: 83.3333%;}
.col-11-12{width: 91.6667%;}
.col-12-12{width: 100%;}

.flex,.flex_between,.flex_start,.flex_end,.flex_center{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_start,.flex{justify-content: flex-start;}
.flex_end{justify-content: flex-end;}
.flex_center{justify-content: center;}

.padding_20{padding: 20px;}
.padding_15{padding: 15px;}
.padding_bottom_20{padding-bottom: 20px;}
.padding_left_10{padding-left: 10px;}
.padding_left_15{padding-left: 15px;}
.padding_left_20{padding-left: 20px;}
.padding_left_30{padding-left: 30px;}
.padding_top_10{padding-top: 10px;}
.margin_right_10{margin-right: 10px;}
.margin_bottom_30{
    margin-bottom: 30px;
}

.red_text{
    color: #fc494e !important;
}
.green_text{
    color: #00979c;
}
.orange_text{
    color: #f27636;
}
.blue_text{
    color: #0068b7;
}
.purple_text{
    color: #920783;
}
.grey_text{
    color: #999;
}
.mobile_only{
    display: none;
}

.pc_only{
    display: block;
}
.icon{
    background: url(../img/icon.png);
    background-size: 500px;
    display: block;
} 

input[type='text'],input[type='password']{
    height: 32px;
    border-radius: 5px;
    border: solid #ddd 1px;
    outline: none;
    width: 100%;
    margin: 10px 0;
}
/* 导航条============== */
.header{
    height: 74px;
    background: #fff;
    border-bottom: solid #ddd 1px;
    box-shadow: 0px 7px 12px 0px rgba(0, 151, 156, 0.06);
    padding: 0 20px; 
    /* overflow: hidden;  */
}
.header .logo{
    flex-shrink: 0;
}
.header .nav{
    display: flex;
    align-items: center;
    margin-left: 40px;
}
.header .nav li{
    height: 73px;
}
.header .nav li a{
    display: block;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
}
.header .nav li a span{
    padding-left: 10px;
    
}

.header .nav li a.current {
 background: #e5f4f5;
 border-top: solid #00979c 4px;
 color: #00979c;
}
.header .nav li a:hover{
    background: #f1f8f8;
}

.header_right{
    float: right;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

 .ellipsis{
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow:ellipsis;
    display: block;
 }

.userimg{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: solid #fff 2px;
}
.object_fit{
    object-fit: cover;
    object-position: center;
}
.header_right span{
    color: #666;
    padding-left: 10px;
}
.header_container{
    flex-grow: 1;
    overflow: hidden;
}


/* 导航条-END========== */

.box{
    border: solid #dde6f0 1px;
        box-shadow: 0px 3px 15px 0px rgba(0, 151, 156, 0.1);
      border-radius: 6px;
    background: #fff;  
}

.green_link{
    color: #00979c;
}

.arrow_link{
    padding-right: 12px;
    background: url(../img/arrow_green_right.png) no-repeat right center;
    line-height: 16px;
} 

h2{
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    line-height: 24px;
}

h2 .more{
    font-size: 14px;
    color: #333;
   font-weight: normal;

}

.btn{
    background: #00979c;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    border: none;
    padding: 0 15px;
  
        box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
       
}

.orange_btn{
    background-color: #ee570a;
}
.add_btn{
    background-image: url(../img/icon_add.png);
    background-repeat: no-repeat;
    background-position: 15px center;
}
.home_btn{
    height: 42px;
    border-radius: 21px;
    width: 200px;
}
.btn_light{
    background:#fff;
    color: #333;
    border: solid #ddd 1px;
}

.arrow_right_w{
    padding-right: 15px;
    background: url(../img/arrow_right_w.png) no-repeat right center;
}


.footer{
    background: #0f2728;
    color: #fff;
    padding: 20px 0;
}

.footer .phone{
    font-size: 22px;
    background: url(../img/phone.png) no-repeat left center;
    padding-left: 30px;
    display: block;
    margin-top: 30px;
    
}

.footer .qr_code img{
    margin-left: 10px;
}

.footer .btm_info{
    padding-top: 20px;
}

.login_field a.btn{
    margin-left: 20px;
    padding: 0 20px;
    border-radius: 16px;
     
}

/*弹出页----------*/

.black_back{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 4000;
	display: none;
	text-align: center;
}

.edu_popup{position: fixed; display: none; text-align: left;box-shadow: 0px 3px 18px 2px rgba(0, 0, 0, 0.35);
}


.edu_popup_01{
	padding:20px 30px;
	width:740px;
	background-color:#fff;
 	/*text-align: left;*/
	z-index:5000;
	border-radius:10px;
	overflow: hidden;
	}
.popup_header{
	display:block;
	height:44px;
 
	padding:0 0 30px 0;
	color:#666;
	font-size:16px;
	/* border-bottom:1px solid #dedede; */
	}
.popup_header_01{
	
	}
.edu_sort_outside{
	width:100%;
	display:block;
	margin:6px 0 0;
	overflow:hidden;
	 
	}
.edu_sort_inside{
	/*width:110%;*/
	width: 100%;
	}

.btn_row{
	display:block;
	margin:20px 0 0;
	 
	}
.btn_01{
	border:1px solid #c7c7c7;
	background-color:#e4e4e4;
	color:#666;
	line-height:32px;
	*line-height:30px;
	height:33px;
	padding:0 19px 0 21px;
	*padding:0 10px 0 12px;
	border-radius:6px;
	width:auto;
	text-align: right;
	float: right;
	}
.btn_01:hover{
	cursor:pointer;background: #006bc5;color: #fff;border-color: #006bc5;
	}
.popup_close_btn{
	position:absolute;
	top:20px;
	right:20px;
	background: url(../img/close.png);
	height:15px;
	width:15px;
	z-index:6000;
	}
 
.popup_close_btn:hover{
	text-decoration:none;
	cursor: pointer;
	}

/*弹出页-END------*/
input[type='text'],input[type='password']{
    border: solid #ddd 1px;
    border-radius: 2px;
    height: 32px;
}
select.ui-datepicker-month{padding:0 5px;}
select{
    width: 100%;
    border: solid #ddd 1px;
    border-radius: 2px;
    padding: 0 10px;
    outline: none;
    background: url(../img/select_arrow_down.png) no-repeat right center;
    background-size: 20px;
    height: 32px;
    padding-right: 30px;
}

.list_tab{
    display: flex;
    padding: 0;
    border-bottom: solid #ddd 1px;
    padding-bottom: 12px;
}

.list_tab li{
    padding-right: 30px;
    font-size: 16px;
    
}
.list_tab a{
    color: #666;
}

.list_tab a.current{
    border-bottom: solid #00979c 4px;
    color: #00979c;
    padding-bottom: 10px;
}


/*页码相关css=============================================*/

.edu_pager{
	float:left;
	/*margin:20px 0 0;*/
	width:100%;
	padding: 20px 0;
 
}
.edu_pager p,.edu_pager span,.edu_pager a{
	color: #666;
	font-size: 12px;
	line-height: 30px;
    margin-left: 6px;
    display: block;
    border-radius: 16px;
}	
.edu_pager_bar{
	float:right;
	 
	height:32px;
	line-height:32px;
	border-radius:5px;
	 
	overflow: hidden;
}
.edu_pager_bar a{
	padding:0 11px;
	height:32px;
	border:1px solid #dedede;
	float:left;
}
.edu_pager_bar a.checkd{
	background:#00979c;
	color:#fff;
}
.edu_pager_bar a.checkd:hover{
	background:#00979c;
}
.edu_pager_bar a:hover{
	text-decoration:none;
    background: #e5f4f5;
	/* color:#00979c; */
}
.edu_pager_bar a.pager_btn{
	padding:0 9px;
}
.goto{
	float:left;
	line-height:34px;
	margin:0 0 0 8px;
}
.goto_text{
	float:left;
	border:1px solid #dedede;
	height:32px;
	width:24px;
	padding:0 3px;
}
.goto_link{
	float:left;
	border:1px solid #dedede;
	height:32px;
	line-height:32px;
	border-radius:0 5px 5px 0;
	background:#f9f9f9;
	border-left:none;
	padding:0 8px;
}
.goto_link:hover{
	text-decoration:none;
	color:#26cc64;
}

/*页码相关css-END=============================================*/

.relative{
    position: relative;
}

/* 单选复选框样式====== */


.form_feild input[type='radio'],.form_feild input[type='checkbox']{
	display: none;
}

.form_feild input[type='radio']+label,.form_feild input[type='checkbox']+label{
	
	padding-left: 26px;
	cursor: pointer;
	background: url(../img/checkbtn.png) no-repeat;
	background-size: 16px;
	background-position: 0 1px;
    margin-right: 15px;
}

.form_feild input[type='checkbox']+label{
	background-position: 0 -108px;
}
.form_feild input[type='checkbox']:checked+label{
	background-position: 0 -79px;
}

.form_feild input[type='radio']:checked+label{
	background-position: 0 -26px;
}

.form_feild input[type='radio']:checked+label+.input_other,.form_feild input[type='checkbox']:checked+label+.input_other{
	display: block;
}

.form_feild input[type='radio']:disabled+label{
	background-position: 0 -53px;
}
.form_feild input[type='checkbox']:disabled+label{
	background-position: 0 -135px;
}

/* 单选复选框样式-END==== */

textarea{
    border: solid #ddd 1px;
    border-radius: 2px;
    resize: none;
    outline: none;
    width: 100%;
    padding: 10px;
}

@media only screen and (max-width : 750px){
	/* ≤750宽度的代码 */
    body{
        min-width: 100%;
        display: block;
    }
    .mobile_only{
        display: block;
    }
    
    .pc_only{
        display:none;
    }
    .header{
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        z-index: 999;
    }
 .menu{
        height: 20px;
        width: 20px;
        background: url(../img/menu.png) no-repeat center top;
        background-size: 20px;
       position: absolute;
        right: 15px;
        transition: all .5;
        z-index: 999;
    }
    .menu_close{
        background-position: center -35px;
    }
    .wrapper{
        width: 100%;
        padding:0 15px;
    }


    .header_container{
        position: absolute;
        height: 100vh;
        background: #fff;
        width: 0;
        top: 0;
        right: 0;
        flex-direction: column-reverse;
       z-index: 999;
        transition: all .3s;
        overflow: visible;
    }
    .header_container_show{
        width: 70%;
        box-shadow: -10px 0px 12px 2000px rgba(0, 0, 0, 0.6);
    }
    .header_container.flex_between{
        justify-content: flex-end;
        overflow: hidden;
    }
    .header .nav{
        flex-direction: column;
        width: 100%;
        margin: 0;
    
    }
    .header .nav li,.header .nav li a{
        width: 100%;
        justify-content: flex-start;
    }

    .header .nav li a span{
        position:absolute;
        left: 45px;
    }
    .header .nav li a.current{
        border-left: solid   #00979c 4px;
        border-top: none;
    }
    .header_right{
       justify-content: flex-start;
       align-items: center;
       flex-grow: 0;
       width: 100%;
       height: 64px;
       padding-left: 20px;
    }

    .col-1-12,.col-2-12,.col-3-12,.col-4-12,.col-5-12,.col-6-12,.col-7-12,.col-8-12,.col-9-12,.col-10-12,.col-11-12,.col-12-12{width: 100%;}
    .wrapper_col{
        width: 100%;
    }

    .footer .flex_between{
        flex-direction: column;
        text-align: center;
    }

    .qr_code{
        padding-top: 10px;
        display: none;
    }
    .footer .phone{
        display: inline-block;
        font-size: 18px;
         margin-left: 10px;
    }
    
	/*页码的响应式处理=========*/
	.edu_pager_bar a{display: none;}
    .edu_pager .left{display: none;}
.edu_pager_bar a.pager_btn{display: block;}
.goto_text,.goto_link,.goto,.edu_time{display: none;}

/*======*/
}



label{margin-bottom: 0}