@charset "utf-8";
/* Global CSS Document */

html {
	height: 100%;
	margin: 0;
}

body {
	height: 100%;
	margin: 0;
	background: url('../images/background-img.jpg');
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    font-family: "Microsoft YaHei", sans-serif;
	font-size: 14px;
	color: #333;
}

ul,ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

img {
	border: none;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

.position-r {
	position: relative;
}

.position-a {
	position: absolute;
}

.position-f {
	position: fixed;
}

a {
	text-decoration: none !important;
}

input:-webkit-autofill {
	background-color: transparent !important;
}

/* -webkit-内核浏览器默认滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    border: 1px  solid #d3d3d3;
    box-shadow: 0 0 3px #dfdfdf inset;
    border-radius: 10px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    border: 1px  solid #808080;
    border-radius: 10px;
    background: #999;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d7d7d;
}

/* logo */
.logo-bg {
	position: absolute;
	left: 50px;
	top: 40px;
	z-index: 999;
	display: inline-block;
	padding: 15px 20px;
	background: rgba(0, 0, 0, .3);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c000000,endColorstr=#4c000000);    /*兼容IE8*/
	border-radius: 4px;
}

/* 手机端样式 */
@media only screen and (max-width: 767px) {
	.logo-bg {
		position: absolute;
		left: 50%;
		top: 20px;
		margin-left: -176px;
	}
}

/* ipad 竖屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
	.logo-bg {
		position: absolute;
		left: 5%;
		top: 30px;
	}
}

/* ipad横屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
	.logo-bg {
		position: absolute;
		left: 5%;
		top: 25px;
	}
}

/* 登录框 */
.login-container {
	position: absolute;
	right: 10%;
	top: 20%;
	z-index: 1000;
	width: 300px;
	padding: 25px 38px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, .9);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#ffffff); /* 兼容IE8 */
}

/* 手机端样式 */
@media only screen and (max-width: 767px) {
	.login-container {
		position: absolute;
		left: 50%;
		top: 15%;
		margin-left: -150px;
	}
}

/* ipad 竖屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
	.login-container {
		position: absolute;
		right: 5%;
		top: 20%;
	}
}

/* ipad横屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
	.login-container {
		position: absolute;
		right: 5%;
		top: 20%;
	}
}

/* 低分辨率屏幕 */
@media only screen 
and (max-width: 1366px)  {
	.login-container {
		position: absolute;
		right: 5%;
		top: 12%;
	}
}

.tabs-list {
	overflow: hidden;
} 

.tabs-list ul li {
	/*float: left;
	width: 50%;*/
	height: 24px;
	box-sizing: border-box;
	margin-bottom: 16px;
	text-align: center;
	font-size: 16px;
	color: #666;
	cursor: pointer;
}

.tabs-list ul li:first-child {
	/*border-right: 1px solid #b6b5b4;*/
}

.tabs-content ul li {
	position: relative;
	padding: 8px 0;
	overflow: hidden;
}

.active {
	color: #007aff !important; 
}

.user-name,
.user-pwd,
.verification-code {
	width: 100%;
	height: 36px;
	line-height: 36px;
	border: 1px solid #eee;
	border-radius: 3px;
	outline: none;
	box-sizing: border-box;
	background-color: #fff;
	text-indent: 38px;
	font-size: 14px;
}

.user-name-icon,
.user-pwd-icon,
.verification-code-icon {
	position: absolute;
	left: 0;
	top: 8px;
	z-index: 999;
	display: block;
	width: 36px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: 12px 9px;
	background-size: 18px 18px;
}

.user-name-icon {
	background-image: url('../images/input-icon-account.png');
}

.user-pwd-icon {
	background-image: url('../images/input-icon-pwd.png');
}

.verification-code-icon {
	background-image: url('../images/input-icon-validation.png');
}

.get-verification-code {
	float: left;
	margin: 1px 0 1px 4px;
	width: 84px;
	height: 34px;
	border: none;
	border-radius: 3px;
	background: #007aff;
	color: #fff;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.sms-login-container .user-pwd {
	float: left;
	width: 136px;
}

.sms-login-container ul li {
	position: relative;
	padding: 8px 0;
	overflow: hidden;
}

.sms-login-container h3{
	height: 24px;
    box-sizing: border-box;
    margin: 0 0 16px;
    text-align: center;
    font-size: 16px;
    color: #007aff;
    cursor: pointer;
}

.get-verification-code:hover {
	background: rgba(0, 122, 255, .8);
}

.get-verification-code:disabled {
	background: #ddd;
}

.verification-code {
	float: left;
	width: 132px;
	border: none;
	border-radius: 3px 0 0 3px;
}

.verification-code-box {
	width: 100%;
	height: 36px;
	border: 1px solid #eee;
	border-radius: 3px;
	box-sizing: border-box;
	background: #fff;
	overflow: hidden;
}

.verification-code-img {
	display: block;
	float: left;
	width: 86px;
	height: 30px;
	padding: 3px 0;
	cursor: pointer;
}

.verification-code-img img {
	display: block;
	cursor: pointer;
}

.remember-pwd {
	width: 16px;
	height: 16px;
	vertical-align: middle;
}

.tabs-content label span {
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	color: #999;
}

.forget-pwd {
	color: #666;
}

.login-button {
	width: 100%;
	height: 40px;
	background: #007aff;
	border: none;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	-webkit-transition: background .3s ease;
	-o-transition: background .3s ease;
	transition: background .3s ease;
}

.login-button:hover {
	background: rgba(0, 122, 255, .8);
}

.other-login {
	padding: 10px 0 0;
}

.other-login-caption {
	overflow: hidden;
	height: 19px;
}

.other-login-caption span {
	display: block;
	float: left;
}

.thin-line {
	width: 62px;
	height: 1px;
	background: #dddddd;
	margin: 9px 0;
}

.other-login-title {
	width: 100px;
	height: 19px;
	line-height: 19px;
	text-align: center;
	color: #666;
}

.other-button {
	padding-top: 10px;
}

.other-button ul {
	overflow: hidden;
	width: 116px;
	margin: 0 auto;

}

.other-button ul li {
	float: left;
	text-align: center;
	cursor: pointer;
}

.other-button ul li img {
	display: inline-block;
	width: 30px;
	height: 30px;
}

.other-button ul li p {
	display: block;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-size: 12px;
	color: #555;
	font-weight: 400;
}

/* 版权信息 */
.copyright-container {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	width: 100%;
	height: 94px;
	padding: 10px 0;
	box-sizing: border-box;
	background: #fff;
}

.copyright-info {
	width: 1024px;
	margin: 0 auto;
}

.copyright-info p {
	text-align: center;
	color: #666;
}

.copyright-info p span:first-child {
	margin-right: 10px;
}

.browser-list {
	width: 214px;
	margin: 0 auto;
	overflow: hidden;
}

.browser-list ul,
.browser-list span {
	float: left;
}

.browser-list ul {
	overflow: hidden;
}

.browser-list ul li {
	float: left;
	width: 16px;
	height: 16px;
	margin: 0 5px;
}

.browser-list ul li img {
	display: block;
	width: 16px;
	height: 16px;
}

/* 手机端样式 */
@media only screen and (max-width: 768px) {
	.copyright-info {
		width: 100%;
	}

	.copyright-info p {
		margin: 0;
		padding: 0 15px;
	}

	.copyright-info p span {
		display: block;
		height: 24px;
		line-height: 24px;
	}

	.browser-list {
		padding: 5px 0;
	}
}

/* ipad 竖屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
	.copyright-info {
		width: 100%;
	}

	.copyright-info p {
		margin: 0;
		padding: 0 15px;
	}

	.copyright-info p span {
		display: block;
		height: 24px;
		line-height: 24px;
	}

	.browser-list {
		padding: 5px 0;
	}
}

/* ipad横屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
	.copyright-info {
		width: 100%;
	}

	.copyright-info p {
		margin: 8px 0;
		padding: 0;
	}

	.copyright-info p span {
		display: inline-block;
		height: 24px;
		line-height: 24px;
	}

	.browser-list {
		padding: 5px 0;
	}
}