		/**
		 * 登录界面整体样式
		 * @author zhonglz
		 * 时间：2019年6月18日
		 */
		html,
		body {
			position: relative;
			height: 100%;
		}
		
		body {
			background: #FFFFFF url(../img/login_background.jpg) no-repeat left top;
			background-size:100%;
			font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
			font-size: 14px;
			color: #2F4056;
			margin: 0;
			padding: 0;
		}

		/*input表单样式*/
		.form-control {
			display: block;
			height: 34px;
			padding: 6px 12px;
			font-size: 14px;
			line-height: 1.42857143;
			color: #555;
			background-color: #fff;
			background-image: none;
			border: 1px solid #ccc;
			border-radius: 4px;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
			-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow
				ease-in-out .15s;
			-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out
				.15s;
			transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
		}
		.form-control:focus {
			border-color: #66afe9;
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
				rgba(102, 175, 233, .6);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
				rgba(102, 175, 233, .6);
		}
		.form-control[disabled], fieldset[disabled] .form-control {
			cursor: not-allowed;
		}

		/* 设置头部brand*/
		.brand{
			height: 70px;
		}
		.brand_div{
			padding-left: 100px;
			color: #FFFFFF;
			background-color: #2F4056;
			opacity: 0.8;
		}
		.brand .brand_div label{
			line-height: 70px;
			font-size: 23px;
			color: #FFFFFF;
		}
		
		/* 设置内容*/
		.content{
			margin-top: 30px;
		}
		
		/* 设置登录的框框*/
		.divs {
			width: 400px;
			height: 350px;
		    background-color: #FFFFFF;
			border:1px solid #ffffff;
		    border-radius:10px 10px 10px 10px;
		    margin-top: 80px;
		    margin-left: auto;
		    margin-right: auto;
		    opacity: 0.8;
		}
		
		/* 设置登录标题**/
		.divs .span_title{
			color: #2F4056;
			margin-top: 20px;
			font-size: 24px;
		}
		
		/**
		 * 登录表单浮动
		 */
		.div_float{
			float:left;
		}
		
		.div_float input{
			margin-left: 80px;
		}
		.div_float span{
			margin-left: 80px;
		}
		
		/**
		 * 表单手机号码
		 */
		.input_sj{
			margin-top: 30px;
			width: 250px;
		}
		
		/**
		 * 验证码
		 */
		.input_yzm{
			margin-top: 30px;
			width: 145px;
			float:left;
		}
		
		/**
		 * 按钮
		 */
		.lab_btn {
			margin-top: 30px;
			float:left;
			height: 34px;
			border:1px solid #FFFFFF;
			font-size: 12px;
			line-height: 34px;
			background-color: #31B0D5;
			color: #FFFFFF;
			border-radius:5px 5px 5px 5px;
		}
		.lab_btn:hover{
			border:1px solid #0064B6;
		}
		
		/***
		 * 温馨提示
		 */
		.tsmsg{
			color: #999999;
			padding-top: 30px;
		}
		
		/**
		* 底部版权信息
		*/
		.index-footer {
			position: absolute;
			bottom: 0;
			padding-top: 15px;
			padding-bottom: 15px;
			margin-bottom: 0;
			width: 100%;
			background-color: #2F4056;
			opacity: 0.8;
			color: #FFFFFF;
		}
		.index-footer a {
			color: #999;
		}
