/* 清空默认样式~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}

/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 14px/1  Arial,Tahoma, Helvetica, "微软雅黑","\5b8b\4f53", sans-serif; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
	color: #262626;outline:none;
}

h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }

address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置文本格式元素 */
a { text-decoration: none;color: #232F32;}
a:hover { text-decoration: none; }

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
border-bottom: 1px dotted;
cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
border-collapse: collapse;
border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}
/* ********清除默认格式结束****** */




/* 遮罩~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
body,html{
	width: 100%;
	height: 100%;
	user-select: none;
	min-height: 720px;
	min-width: 1400px;
	padding: 0;
}

/* 通知——成功/失败 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.notice{
	display: none;
	width: 370px;
	height: 50px;
	position: fixed;
	left: 50%;
	top: 80px;
	transform: translate(-50%);
	z-index: 999;
	border-radius: 4px;
	line-height: 50px;
	text-align: center;
	font-size: 14px;
	color: #FFFFFF;	
	-moz-box-shadow: 0px 0px 20px  #999;
	box-shadow: 0px 0px 20px #999;
}
.notice i{
	font-size: 20px;
	vertical-align: middle;
	margin: 0 10px;
}
.notice_success{
	background-color: #009600;
	z-index: 9999;
}
.notice_failure{
	background-color: #EE0000;
	z-index: 9999;
}
.content{
	width: 100%;
	height: 100%;
	min-width: 1200px;
	background: url(/Content/img/login_home.png) no-repeat fixed 0 0;
	background-size: 1920px 980px ;
	background-color: #0d4680;
	position: relative;
}
    .content .logo {
        position: absolute;
        top: 40px;
        left: 40px;
        width: 80px;
        height: 80px;
        background: url(/Content/img/logo.png) no-repeat center;
        background-size: 100% 100%;
    }
/* 企业标语 */
.content .title{
	position: absolute;
	left: 200px;
	top: 50%;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
}
.content .title h1{
	color: #FFFFFF;
	font-weight: bold;
	font-size: 50px;
	letter-spacing:4px;
}
.content .title h2{
	color: #FFFFFF;
	font-size: 30px;
	margin-top: 8px;
	font-weight: 500;
	letter-spacing:5px;
}




/* 登录/注册窗口~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.content .login_register{
	width: 450px;
	height: 620px;
	position: absolute;
	right: 160px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	/* background-color: #007BA4; */
}
/* 二级窗口~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.login_wrap {
	box-sizing: border-box;
	border-radius: 10px;
	overflow: hidden;
	margin: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
/* 半透明背景 */
.login_wrap .bg {
	background-color: #fff;
	opacity: 0.9;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}
/* 登录信息块 */
.login_wrap .login_info {
	height: 440px;
}
/* 登录提示标题 */
.login_wrap .loginPrompt {
	font-size: 22px;
	font-weight: bold;
	color: #262626;
	line-height: 30px;
}
.login_wrap .loginPrompt span{
	display: inline-block;
	width: 6px;
	height: 6px;
	vertical-align: middle;
	border-radius: 50%;
	background-color: #737373;
	margin: 0 6px;
}
/* 登录输入框 */
.login_wrap .input_box {
	width: 100%;
	height: 40px;
	position: relative;
	margin-top: 30px;
}
/* 输入框图标 */
.login_wrap .input_box>i {
	font-size: 16px;
	position: absolute;
	left: 10px;
	top: 11px;
	color: #999;
}

.login_wrap .input_box input {
	width: 100%;
	height: 100%;
	line-height: 40px;
	border: none;
	padding-left: 40px;
	padding-right: 10px;
	box-sizing: border-box;
	background-color: #fff;
	opacity: 1;
	border-radius: 6px;
}

.login_wrap .input_box input:focus {
	border: 1px solid #7FA4C9;
}
/* 登录提交 */
.login_wrap .login_submit {
	width: 100%;
	height: 40px;
	text-align: center;
	color: #FFFFFF;
	background-color: #0d4680;
	border-radius: 20px;
	border: none;
	margin-top: 30px;
	cursor: pointer;
}
.login_wrap .login_submit i {
	vertical-align: top;
	font-size: 18px;
	margin-right: 6px;
	display: inline-block;
	width: 18px;
	height: 15px;
	-webkit-animation: spin 2s linear 2s 5 alternate;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.login_wrap .login_submit:hover {
	background-color: #2b6299;  /
}

/* 登录窗口 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.login_fixed{
	padding: 50px 50px 10px 50px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* 登录设置 */
.login_wrap .login_set {
	margin-top: 20px;
	text-align: center;
}
.login_wrap .login_set a {
	color: #4d4d4d;
}

/* 版权 */
.login_wrap .copyRight{
	margin-top: 30px;
	font-size: 12px;
	color: #737373;
	text-align: center;
}








/* 登录窗口----短信验证 */
.login_wrap .login_info .chose_areaCode  .select_dropdown{                 

	width: 350px;

}
/* 登录窗口，下拉菜单 */
.login_wrap .login_info .chose_areaCode {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 80px;
	height: 38px;
}

.login_wrap .login_info .chose_areaCode::after {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	display: inline-block;
	height: 20px;
	border-right: 1px solid #e5e5e5;
}
.login_wrap .login_info .chose_areaCode input:focus {
	border: none;
}

.login_wrap .login_info .phone_num {
	float: right;
	width: 100%;
	padding-left: 90px;
}
/* 获取验证码 */
.login_wrap .login_info .verification_code {
	width: calc(100% - 110px);
	padding: 0 10px;
}

.login_wrap .login_info .verification_get {
	float: right;
	width: 100px;
	height: 100%;
	background-color: #fff;
	border-radius: 4px;
	color: #999999;
	border: none;
	text-align: center;
	padding: 0;
}

.login_wrap .login_info .verification_get:hover {
	color: #7FA4C9;
	border: 1px solid #7FA4C9;
}





/* 注册账号 */
.register_window {
	padding: 50px 50px 10px 50px;
	/*display: none;*/
	z-index: 999;
}
.register_window .loginPrompt_tip{
	color: #4D4D4D;
	margin-top: 20px;
}
.register_window .loginPrompt_tip a{
	color: #0D4680;
	margin-left: 4px;
}
.register_window .loginPrompt_tip a:hover{
	text-decoration: underline;
}

.register_window .input_box {
	margin-top: 30px;
}

.register_window .login_agreement {
	margin-top: 10px;
	margin-left: 10px;
	white-space: nowrap;
}

.register_window .login_agreement input[type=checkbox] {
	vertical-align: bottom;
}

.register_window .login_agreement a {
	font-size: 13px;
	color: #497bad;
}



