/* 当屏幕宽度小于或等于768像素时 手机端*/
@media screen and (max-width: 768px) {
	.loginCont {
		height: 100%;
	}

	.bodyCont {
		margin-right: 0;
		height: 100%;
	}


}

/* 当屏幕大于等于769宽度小于或等于1366像素时 */
@media screen and (min-width: 769px)  {
	.loginCont {
		margin-right: 7%;
	}

}

* {
	-webkit-user-select: none;
	-ms-touch-select: none;
}

html {
	width: 100%;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: Arial;
	/*font-size: 16px;*/
	color: #6c6c6c;
	background-color: #FFF;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: none;
}

div {

	scrollbar-face-color: transparent;
	scrollbar-arrow-color: transparent;
	scrollbar-track-color: transparent;
	scrollbar-3dlight-color: transparent;
	word-wrap: break-word;
	/*超出部分自动换行*/
}


div::-webkit-scrollbar,
textarea::-webkit-scrollbar {
	display: none;
}


/*内部链接层带标题*/
.inner-link-layer-tbar .layui-layer-content {
	background-color: #f2f2f2;
	padding: 0;
	width: 100%;
	height: calc(100% - 50px);
}

/*!important是因为layui在层最小化及复原时通过style改变高度，其它无效,保持100%*/
.full-layer .layui-layer-content iframe,
.inner-link-layer .layui-layer-content iframe,
.inner-link-layer-tbar .layui-layer-content iframe {
	width: 100% !important;
	height: 100% !important;
}



.cont {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-items: stretch;
	background-color: #f5f5f5;
	height: 100%;
}

.cont>.body {
	flex: 1;
	height: 100%;
	overflow: auto;
	padding: 10px;
	padding-top: 0px;
}

.cont>.bottom {
	width: 100%;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #ffffff;
}



/*以下是flex布局属性*/
.cont {
	background-color: #ffffff;
}

.cont>.body {
	padding: 0px;
	padding-top: 0px;
}

/*以下是内容属性，根据需求设定*/
/*cont背景图*/
.cont>.body .bgDiv {
	z-index: 0;
	height: 100%;
	position: absolute;
	overflow: hidden;

}

.cont>.body .bgDiv img {
	width: 100%;
	height: 100%;
}

/*登录标题*/
.cont>.body .bodyTitle {
	font-size:35px;
	font-weight: bold;
	text-align: center;
}

/*登录操作主体*/
.cont>.body .bodyCont {
	height: 100%;
	z-index: 10;
	display: flex;
	justify-content: right;
	/* 水平居中 */
	align-items: center;
	/* 垂直居中 */

}

.cont>.body .bodyCont .loginCont {
	z-index: 11;
	 background-color: rgba(255, 255, 255, 0.7);
	float: right;
	border-radius: 10px;
	border: 1px solid #ccc;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
	padding-top: 10px;

}

/*表单主体*/
.cont>.body .bodyCont .loginCont .demo-login-container {
	width: 320px;
	margin: 21px auto 0;
}

.cont>.body .bodyCont .loginCont .demo-login-other {
	text-align: center;
	margin-bottom: 10px;
	height: 50px;
	line-height: 50px;
}

.cont>.body .bodyCont .loginCont .demo-login-other .layui-icon {
	position: relative;
	display: inline-block;
	margin: 0 2px;
	top: 2px;
	font-size: 26px;
}


.cont>.body .bodyCont .loginCont .loginFromDiv {
	height: calc(100% - 50px);
}

.cont>.body .bodyCont .loginCont .loginFromDiv .formTitle{
	font-size:25px;
	text-align: center;
}

.cont>.bottom p {
	margin-top: 10px;
}


.cont>.body .bodyCont .loginCont .loginFromDiv #phoneLoginDiv,.cont>.body .bodyCont .loginCont .loginFromDiv #registerDiv{
	display:none;
}