/******************************************
*@content:index.css
*@author:xiongjianqiao@fangpinhui.com
*@date:2015-08-21
******************************************/
@charset "utf-8";
/*reset*/
html,body,header,section,div,input,form,h1,h2,h3,h4,p,span,a,img{margin: 0;padding: 0;}
img,input{outline: none;}
input{border: none;}
img{vertical-align: middle;}
li{list-style: none;}
a{text-decoration: none;}
html,body{height: 100%;font-size: 16px;font-family: "微软雅黑";width: 100%;}
/*reset end*/

/*header*/
header{
	width: 100%;
	height: 240px;
	background-color: #6cbb52;
	text-align: center;
	position: relative;
}
header h1{
	width: 100%;
	height: 117px;
	padding-top: 60px;
}
header img{
	/*width: 38%;*/
	width: 240px;
}
/*header end*/
/*form*/
.form{
	width: 90%;
	height: 26%;
	max-width: 768px;
	min-height: 150px;
	margin: 10% auto 0;
}
.form-group{
	width: 100%;
	height: 25%;
	max-height: 44px;
	min-height: 40px;
	height:40px\9; /*ie6-8*/
	border: 1px solid #6cbb52;
	border-radius: 5px;
	margin-bottom: 5%;
}
.form-group{
	border:none;
	position: relative;
}
.form-group .group-bg{
	position: absolute;
	display: block;
	width: 64px;
	height:30px;
	top:8px;
	left:0;
	border-right: 1px solid #6cbb52;
	background: url("../../img/input_sprite.png") no-repeat;
	/*background-size:27px 30px;*/
}
.form-group .group-bg.bg-user{
	background-position:50% 0;
}
.form-group .group-bg.bg-pwd{
	background-position:50% 100%;
}
.form-group input{
	padding-left:10%;
	border: 1px solid #6cbb52;
	border-radius: 5px;
	width: 90%;
/*	height: 100%;*/
	height: 42px;
	line-height: 42px;
	color: #999999;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-appearance: none;
}
#smt{
	width: 100%;
	height: 40px;
	border-radius: 5px;
	border: none;
	background-color: #6cbb52;
	color: #fff;
	font-size: 1em;
	font-family: "微软雅黑";
	text-indent: 1em;
	letter-spacing: 1em;
	box-shadow: 0px 1px 1px #000;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
#smt.active{
	background-color: #247d07;
}
/*form end*/

/*media query*/
/*Pad*/
@media screen and (max-width: 790px){
	.form-group input{
		padding-left: 12%;
		width: 88%;
	}
}
@media screen and (max-width: 620px){
	header{
		height: 200px;
	}
	header img{
		width: 38%;
	}
	.form-group input{
		padding-left:18%;
		width: 82%;
	}
}
@media screen and (max-width: 430px){
	.form-group input{
		padding-left:22%;
		width: 78%;
	}
	header h1{
		height: 50%;
		padding-top:15%;
	}
}
@media screen and (max-width: 340px){
	header{
		height: 150px;
	}
	.form-group input{
		padding-left:24%;
		width: 76%;
	}
}
/*media IPad (768* ?)*/
@media screen  and (max-width:1024px) and (min-width: 768px){
	.form-group input{
		padding-left:10%;
		width: 90%;
	}
}