html,body{
	font-size: 62.5%;
	width: 100%;
	height: 100%;
	padding: 0; 
	margin: 0;
}
.header{
	width: 100%;
	background: #FFFFFF;
}
.header_img_wrapper{
	width: 100%;
	padding-top: 21.1rem;
	position: relative;
	overflow: hidden;
}
.header_img{
	width: 100%;
	height: 21.1rem;
	position: absolute;
	top: 0;
	left: 0;
}
.header_info,.header_brief,.header_tip{
	width: 90.4%;
	margin: 0 auto;
}
.header_info .info_title{
	font-weight: bold;
	font-size: 1.7rem;
}
.header_info .info-branch{
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	font-size: 1.4rem;
}
.header_info .info-purchased_count{
	
	color: #6ABD00;
}
/*.header_info .info_time{
	font-size: 1.4rem;
	margin-top: 1rem;
}*/

.header_brief{
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	padding:0.5rem 0;
	margin: 0.5rem auto;
	font-size: 1.5rem;
	letter-spacing:0;
	line-height:22.5px;
	white-space:normal;
	word-break:break-all;
	word-wrap:break-word;
}
.header_tip{
	display: flex;
	justify-content:space-between;
	font-size: 1.3rem;
	line-height: 0.5rem;
}
/*.header_tip p{
	position: relative;
	padding-left: 15px;
}*/
 .header_tip_img{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.body{
	width: 90.4%;
	margin: 1rem auto;
	font-size: 1.5rem;	
	padding-bottom: 5.5rem;
	min-height: 50%;

}
.tabbar{
	display: flex;
	line-height: 3rem;
	margin-bottom: 0.5rem;
	
}
.tabbar .tabbarHandel{
	flex:1;
	text-align: center;
}
.tabbar .tabbarActive{
	border-bottom:2px solid #FFBD0D;
	color:#FFBD0D;

}
.body img{
	margin: 0 auto;
	max-width: 100%;
	display: block;
}
.body_title{
	height: 1rem;
	line-height: 1rem;
	font-size: 1.6rem;
	color: #333333;
	padding: 0.9rem 0;
	padding-left: 0.4rem;
	border-bottom:  0.3rem solid #eeeeee;
	border-left: 0.3rem solid #FF9E39;
}
.article_item_title{
	text-align: center;
	font-size: 1.9rem;
	font-weight: 600;
	margin: 2rem 0;
}
.article_item_title:after{
	content: '';
	display: block;
	width: 5rem;
	margin: 0.1rem auto;
	margin-top: 0.3rem;
	border-bottom: 0.3rem solid red;
}

/*¿Î³ÌÁÐ±í*/
.coursesList{
	width: 100%;
	background: #ededed;
	-webkit-tap-highlight-color:rgba(255,255,255,0);
}
.coursesList .coursesItem{
	box-sizing:border-box;
	padding: 2rem;
	height: 10rem;
	margin-top: 0.5rem;
	background: #ffffff;
	display: flex;
	justify-content:space-between;
	border-bottom: 1px solid #ededed;
	cursor:pointer;
}
/*.coursesList .coursesItem:first-child{
	background: rgba(255, 156, 11,0.2);
}*/
.coursesList .coursesItemActive{
	background: rgba(255, 156, 11,0.2);
}
.coursesList .coursesItem .coursesItem-name{
	width: 55%;
	font-size: 1.6rem;
}
.coursesList .coursesItem .coursesItem-banner{
	width: 40%;
	position: relative;
}
.coursesList .coursesItem .coursesItem-banner>img{
	width: 100%;
	height: 100%;
}
.coursesList .coursesItem .coursesItem-banner .coursesItem-banner-icon-wrapper{
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	border-radius: 50%;
	background: #c4c2c2;
}
.coursesList .coursesItem .coursesItem-banner .coursesItem-banner-icon-wrapper .coursesItem-banner-icon{
	width: 60%;
	height:60%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
}

.footer{
	width: 10rem;
	font-size: 2rem;
	margin: 0 auto;
	text-align: center;
	position: fixed;
	bottom: 1rem;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 15px;
	background: #6ABD00;
	padding: 0.5rem 0;
	color: #ffffff;
	z-index: 99;
}
.noPay{
	background: #FFBD0D;
	color: #ffffff;
}
/**/
.dialog_wrapper{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.5);
	display: none;
	z-index: 999999;
}
.dialog_content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	/*height: 100px;*/
	width: 80%;
	background: #ffffff;
	border-radius: 15px;
	padding:20px;
	max-width: 500px;
}
.closeWrapper{
	cursor:pointer;
	position: absolute;
	right: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	background-image: url('../images/close.png');
	background-repeat:no-repeat;
	background-position: center;
	background-size: 90%;
}


.dialog_content .numberWrapper{
	display: flex;
	flex-direction:column;
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.numberWrapper .title{
	margin-right: 1rem;
}
.numberWrapper input{
	width: 60%;
	line-height: 2.5rem;
	font-size: 1.6rem;
	margin-top: 0.5rem;
	border: none;
	border-bottom: 1px solid #999999;
}
.codeWrapper{
	display: flex;
	justify-content:space-between;
}
.getCode{
	background: #FFBD0D;
	color: #ffffff;
	border-radius: 10px;
	padding: 5px;
	border: none;
}
.getCode-disable{
	background: #99999;
	color: #99999;
	border-radius: 10px;
	padding: 5px;
	border: none;
	border: 1px solid #99999;
}
.errTip{
	color: red;
	display: none;
}
.submitWrapper{
	text-align: center;
}
.submit{
	font-size: 1.8rem;
	margin: 3rem auto;
	margin-bottom: 1.5rem;
	width: 15rem;
	text-align: center;
	padding: 0.5rem;
	border: 1px solid #999999;
	border-radius: 15px;
	cursor:pointer;
	background: #FFBD0D;
	color: #ffffff;
}

.sticky {
    /*¹ö¹ý³õÊ¼Î»ÖÃÊ±×Ô¶¯Îü¶¥*/
    position: -webkit-sticky;
    position: sticky;
    /*Îü¶¥Ê±µÄ¶¨Î»*/
    top: 0;
    left: 0;
    /*z±ÈÏÂ·½ËùÓÐz¸ß*/
    z-index: 99;
    background: #ffffff;
}
.fixed-top {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background: #ffffff;
}
/*三方验证码提示框*/
.third_code{
	font-size: 2rem;
	color: #FFBD0D;
	margin: 1rem 0;
	text-align: center;
}
.tip_wrapper div{
	margin-bottom: 0.5rem;
	font-size: 1rem;
}