*{
	padding: 0;
	margin: 0;
}
@font-face {
  font-family: 'PingFangSC-Regular';   /*瀛椾綋鍚嶇О*/
  src: url('../css/PingFangSCRegular.ttf');       /*瀛椾綋婧愭枃浠�*/
}
li{
	list-style: none;
}
.left{
	float:left;
}
.right{
	float:right;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #196FAE;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #196FAE;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #196FAE;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #196FAE;
}
input:focus,button:focus { 
    outline: none;
    border-color: none;
    background-color: none;
 }
input::selection{
    outline: none;
    border-color: none;
    background-color: none;
}
input::-moz-selection{
    outline: none;
    border-color: none;
    background-color: none;
}
.wrapper{
	position:fixed;
	top: 0;
    left: 0;
	width:100%;
	height:100%;
	min-width: 1000px;
	z-index:0;
	zoom: 1;
	background: url(../img/bg.png) no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-position: center 0;
}
.wrapper .container{
    position: relative;
    top: 19.9%;
    width: 425px;
    height: auto;
    margin: 0 auto;
   
}
.title {
	overflow: hidden;
	margin-bottom: 2.5%;
}
.title .logo{
	width:15%;
}
.title .logo img{
    position: relative;
    top: -10px;
    left: -4px;
}
.title .tit{
	width: 85%;
}
.title .tit h2{
	font-family: PingFangSC-Regular;
	font-size: 26px;
	color: #196FAE;
	letter-spacing: 4px;
	font-weight: normal;
}
.title .tit h4{
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #666666;
	font-weight: normal;
}
.loginBox .inputBox li{
	opacity: 0.7;
    background: #FFFFFF;
    border: 1px solid #fff;
    box-shadow: 0 2px 8px 1px rgba(94,94,94,0.50);
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 4%;
}
.loginBox .inputBox li.bg{
	background: #FFFFFF;
	border: 1px solid #0091FF;
	box-shadow: 0 2px 8px 1px rgba(94,94,94,0.50);
}
.loginBox .inputBox li img{
	padding: 2.7% 3% 2.3% 6.5%;
}
.loginBox .inputBox li span{
	font-family: PingFangSC-Regular;
	font-size: 20px;
	color: #5F5F5F;
	letter-spacing: 0;
	position: absolute;
}
.loginBox .inputBox li icon{
    position: relative;
    height: 28px;
    width: 2px;
    background: #5F5F5F;
    display: inline-block;
    left: 60px;
    top: -9px;
}
.loginBox .inputBox li input{
    left: 78px;
    top: -16px;
    height: 22px;
    line-height: 22px;
    position: relative;
    width: 56%;
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #196FAE;
    letter-spacing: 0;
    border: none;
}
.loginBox .inputBox li.special{
	width: 100%;
}
.loginBox .inputBox li.special span{
	padding-left: 26px;
}
.loginBox .inputBox li.special input{
    width: 145px;
    height: 38px;
    line-height: 38px;
    top: -23px;
    left: 145px;
    border: 1px solid rgba(25,111,174,0.2);
    border-radius: 4px;
    text-indent: 8px;
    position: relative;
}
.loginBox .inputBox li.special img{
    position: relative;
    top: -1px;
    width: 90px;
    left: 135px;
}
.btnBox{
	overflow: hidden;
}
.btnBox .top{
	float: left;
    width: 100%;
    margin-bottom: 2%;
    margin-top: 2%;
}
.btnBox .top span{
	cursor: pointer;
}
.btnBox .top .left{
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #C5C5C5;
	letter-spacing: 0;
}
.btnBox .top .right{
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
}
.btnBox .btnB{
	float: left;
	width: 100%;
	height: 65px;
}
.btn{	
    border-radius: 5px;
    width: 100%;
    height: 50px;
    border: none; 
    cursor: pointer;
    background: rgba(25, 111, 174, 0.85);
    position: relative;
    bottom:0px;
    transition: bottom .2s linear 0s;
    
}
.btn:hover{
	bottom:-2px;
	background: rgba(25, 111, 174, 1);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.50);
}
.btn span{
	font-family: PingFangSC-Regular;
	font-size: 28px;
	color: #FFFFFF;
	letter-spacing: 0;
}



/*lodaing*/
#loading{
	background-color: rgba(43,44,45,0.6);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 10;
	margin-top: 0px;
	top: 0px;
}
.loadEffect{
    position: absolute;
	left: 50%;
	top: 50%;
	width: 100px;
    height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	-ms-transform: rotate(-135deg); 
   	-webkit-transform: rotate(-135deg); 
    transform: rotate(-135deg);
}
.loadEffect span{
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #5098ce;
    position: absolute;
    -webkit-animation: load 1.04s ease infinite;
}
@-webkit-keyframes load{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0.2;
    }
}
.loadEffect span:nth-child(1){
    left: 0;
    top: 50%;
    margin-top:-8px;
    -webkit-animation-delay:0.13s;
}
.loadEffect span:nth-child(2){
    left: 14px;
    top: 14px;
    -webkit-animation-delay:0.26s;
}
.loadEffect span:nth-child(3){
    left: 50%;
    top: 0;
    margin-left: -8px;
    -webkit-animation-delay:0.39s;
}
.loadEffect span:nth-child(4){
    top: 14px;
    right:14px;
    -webkit-animation-delay:0.52s;
}
.loadEffect span:nth-child(5){
    right: 0;
    top: 50%;
    margin-top:-8px;
    -webkit-animation-delay:0.65s;
}
.loadEffect span:nth-child(6){
    right: 14px;
    bottom:14px;
    -webkit-animation-delay:0.78s;
}
.loadEffect span:nth-child(7){
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    -webkit-animation-delay:0.91s;
}
.loadEffect span:nth-child(8){
    bottom: 14px;
    left: 14px;
    -webkit-animation-delay:1.04s;
}
