@charset "utf-8";
.errorInfo {
	color: #000;
	background: #fff;
	position: fixed;
	top: 11%;
	left: 50%;
	margin-left: -100px;
	height: 50px;
	min-width: 200px;
	box-shadow: 0 0 4px #e7e7e7;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	opacity: 0;
	z-index: 2;
}
.errorInfo img {
	height: 60%;
	margin-right: 10px;
}

.fadeIn {
	animation: fadein 0.5s linear forwards;
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

.fadeOut {
	animation: fadeout 0.5s linear forwards;
}
@keyframes fadeout {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
	}
}
.header{
	z-index: 50;
	width: 100%;
	height: 65px;
	position: fixed;
	top: 0;
	/*background: rgb(51,103,214);*/
	background: #242424;
	border-bottom: 4px solid #c20c0c;
}

.header .title{
	display: flex;
	align-items: center;
	color: #fff;
}

.header .title img{
	height: 40px;
}

.header .other-info{
	font-size: 14px;
}
.header .other-info>a{
	margin-left: 45px;
	cursor: pointer;
	color: #fff;
}
.header .other-info>a:hover{
	text-decoration: none;
}



.content {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: url(../images/low_bg.png) no-repeat;
	background-size: 100% 46%;
	background-color: #fff;
	position: absolute;
	top: 0;
}
.content .cneterContent {
	width: 500px;
	height: 540px;
	/*border:2px solid #e7e7e7;*/
	border-radius:10px;
	box-shadow: 0px 8px 32px 0px rgba(19,166,248,0.1);
	background: url(../images/newbox_bg.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -250px;
	margin-top: -270px;
}
.content .login {
	width: 100%;
	/*display: inline-block;*/
	overflow: hidden;
	position: relative;
}

.content .qr_code_content {
	position: absolute;
	top: 53px;
	left: 0px;
	cursor: pointer;
}

.content .qr_code_content .qr_code_img {
	/*width: 52px;*/
	height: 74px;
	width: 74px;
	float: left;
}

.content .qr_code_content .mobile-info {
	width: 84px;
	height: 30px;
	position: absolute;
	left: 74px;
	top: 17px;
	color:#aaaaaa;
	background: url(../images/newpop.png) no-repeat;
	background-size: 100% 100%;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
}
.content .login .loginTitle{
	width: 160px;
	margin: 90px auto 52px auto;
}
.content .login .loginTitle>p{
	width: 100%;
	text-align: center;
	color: #42A1FF;
	font-size: 20px;
}
.content .login .loginTitle>div{
	height: 3px;
	width: 160px;
	margin: 10px auto 0;
	background: #42A1FF;
}

.border-triangle{
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #eee;
	position: absolute;
	left:-5px;
	top:50%;
	margin-top:-5px;
}
.inner-triangle{
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #fff;
	position: absolute;
	left:-3px;
	top:50%;
	margin-top:-5px;
}
.login-main{
	width: 352px;
	margin-top: 50px;
	margin-left: 74px;
}
.login-main .logincon{
	width: 100%;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	position: relative;
}
.logincon  label{
	font-size: 16px;
	position: absolute;
	left:2px;
	bottom:10px;
	font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,"\5FAE\8F6F\96C5\9ED1",Arial,sans-serif;
	color:#999;
	cursor: text;
}
.logincon input{
	width: 100%;
	height: 23px;
	line-height:23px;
	font-size: 12px;
	border:none;
	outline: none;
	border-bottom: 1px solid #f0f0f0;
	padding: 10px 0;
	z-index: 10;
	background: transparent;
}
.logincon select{
	width: 100%;
	height: 43px;
	/*line-height:23px;*/
	font-size: 12px;
	border:none;
	outline: none;
	border-bottom: 1px solid #f0f0f0;
	padding: 10px 0;
	z-index: 10;
	background: transparent;
}
.logincon .bottom-line{
	position: absolute;
	width: 0;
	height: 1px;
	left: 0;
	bottom: 0;
	z-index: 11;
	background-color: #3f7cfb;
}
.logincon .eyes {
	z-index: 20;
	height: 8px;
	position: absolute;
	right: 2px;
	cursor: pointer;
}
.logincon .checkCode {
	z-index: 20;
	position: absolute;
	right: 0;
	cursor: pointer;
}
.logincon .mobileCode {
	z-index: 20;
	position: absolute;
	right: 0;
	cursor: pointer;
}
/*.content .login-main{
	width: 400px;
	height:100%;
	padding: 60px 0;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	color:#00b38a;
}
.login-main .login-type{
	width: 144px;
	text-align: center;
	border-bottom: 2px solid #00b38a;
	line-height: 24px;
	height: 33px;
	font-size: 16px;
	margin-bottom:35px;
}*/
/*.login-main .pwd-input{
	width: 290px;
	height: 44px;
	border:none;
	border-bottom: 1px solid #ededed;
	outline: none;
}*/
.enroll-live .pwd-input{
	/*width: 240px;*/
	/*margin-left: 18px;*/
}
.enroll-live .display-flex{
	align-items: center;
	color:#999;
}
.enroll-live>form>div{
	margin-bottom: 10px;
}

/* 付费登录 */
.pay-login .login-type{
	margin-bottom: 15px;
}
.pay-login .pay-num{
	color:red;
	font-size: 20px;
	font-weight: bold;
}
.pay-login .pay-tips{
	color:#999;
	font-size: 14px;
	margin-top:10px;
	text-align: center;
}
.pay-login .pay-tips>span{
	color:red;
	cursor: pointer;
	font-size: 15px;
}

.login-main .forget-pwd{
	margin-top:35px;
	/*width: 290px;*/
	color: #999;
	text-align: left;
}
.login-main .forget-pwd>div{
	display: inline;
}
.login-main .forget-pwd>div:first-child{
	/*cursor: pointer;*/
	user-select: none;
	font-size: 13px;
}
.login-main .forget-pwd>div:last-child{
	color:#999;
	font-size: 13px;
}
.login-main .login-btn{
	width: 100%;
	margin:10px auto 0;
}

.div_imgall{
	background: #ccc;
	width: 80px;
	height: 80px;
	position: relative;
}
.input_flie{
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 100;
	position: absolute;
	left: 0;
	top: 0;
}
.div_shuline{
	position: absolute;
	width: 50%;
	height: 3%;
	background-color: #999;
	left: 25%;
	top: 49%;
	z-index: 5;
}
.div_hengline{
	position: absolute;
	width: 3%;
	height: 50%;
	background-color: #999;
	left: 49%;
	top: 25%;
	z-index: 5;
}

.login-btn input.btn {
	width: 100%;
	height: 52px;
	margin-top: 68px;
	color: #fff;
	font-size: 20px;
	background: #42A1FF;
	line-height: 52px;
	text-align: center;
	border-radius: 5px;
	outline: none;
	border: none;
}

.content .live-intro{
	/* 直播介绍 */
	width: 80%;
	margin-top: 100px;
	/*height: 100%;*/
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
/*----自定义滚动条-----*/
::-webkit-scrollbar {
	width: 4px;
}

.live-intro .title{
	/*color:#00b38a;*/
	font-size: 16px;
	margin-bottom: 10px;
}
.live-intro .line{
	width: 100%;
	height: 4px;
	background: #5599ff;
	border-radius: 2px;
}
.live-intro .intro{
	/*width:100%;*/
	/*height: 300px;*/
	/*border-radius: 4px;*/
	/*border:1px solid #d8d8d8;*/
	margin-bottom: 10px;
	/*text-align: center;*/
	/*line-height: 30px;*/
	/*box-sizing: border-box;*/
	/*padding: 15px;*/
	/*font-size: 12px;*/
}


.fl{
	float: left;
}

::-moz-placeholder { color: #bbb; }
::-webkit-input-placeholder { color:#bbb; }
:-ms-input-placeholder { color:#bbb; }
.hide{
	display: none;
}
.active{
	display: flex;
}

.wx-login{
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.wx-login .code_box{
	padding: 20px;
	margin: 170px auto 36px auto;
	background: url(../images/subtract.png) no-repeat;
	background-size: 100% 100%;
}
.wx-login>img{
	width: 160px;
	height: 160px;
	margin-bottom: 20px;
}
.wx-login>div{
	color:#333;
	font-size: 15px;
}

#modal{
	position: fixed;
	width: 100%;
	min-width: 1024px;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 60;
	left:0;
	top:0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#wxScanBox{
	position: fixed;
	width: 100%;
	min-width: 1024px;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 60;
	left:0;
	top:0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#modal iframe body .weui_msg_title {
	color: #fff;
}

#modal .inner-modal{
	min-width: 250px;
	min-height: 250px;
	background: #fff;
	border-radius: 8px;
	flex-direction: column;
	align-items: center;
	display: flex;
	padding: 20px;
}
.inner-modal .title{
	width: 180px;
	line-height: 40px;
	border-bottom: 2px solid #00b38a;
	text-align: center;
	color:#383838;
}
.inner-modal>img{
	width: 170px;
	height: 170px;
	margin:15px 0;
}
.inner-modal .tips1{
	color:#bbb;
	font-size: 12px;
}
.inner-modal .tips2{
	font-size: 14px;
	margin-top:10px;
}
.inner-modal .tips2>span{
	color:#2a82e4;
	cursor: pointer;
}

/*.enroll-live::-webkit-scrollbar {!*滚动条整体样式*!*/
/*width: 5px;     !*高宽分别对应横竖滚动条的尺寸*!*/
/*height: 1px;*/
/*}*/
