@charset "UTF-8";
/* login */
.login-warp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align:center;
    width: 100%;
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

html,
body {
    color: #333;
    font-size: 16px;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
    background-color: #fff;
}


li {
    list-style: none;
}

a {
    text-decoration: none;
    display: block;
}

img,
input {
    border: 0;
    outline: none;
}

body .clear {
    clear: both;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}



/* login */
.login-page{
    width: 100%;
    height: 100vh;
    position: relative;
    background: url(../images/login-bj.jpg) no-repeat center center;
    background-size: cover;
}

.login-box{
    width: 484px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 54px 60px;
    font-size: 0;
    margin:0 auto;
    margin-top:50px;
}
.login-box h3{
    text-align: center;
    margin-bottom: 40px;
}
.login-box h3 b:first-child{
    margin-right: 0px;
}
.login-box h3 b{
	font-size: 24px;
	color: #333333;
    cursor: pointer;
}
.login-box h3 b.on{
    font-size: 36px;
}

.form-box input{
    width: 100%;
	height: 40px;
	background-color: #ffffff;
	border-radius: 5px;
	border: solid 1px #eeeeee;
    padding: 0 20px;
    margin-bottom: 23px;
    font-size: 16px;
    color: #333;
}

.form-box input::placeholder{
    font-size: 16px;
	color: #999999;
}

.form-box button{
    width: 100%;
	line-height: 40px;
	background-color: #19448e;
	border-radius: 5px;
    font-size: 16px;
	color: #ffffff;
    text-align: center;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}


@media screen and (max-width:540px) {
   .login-box{
    width: 95%;
    padding: 60px 40px;
   }
   .login-box h3 b{
    font-size: 20px;
   }
   .login-box h3 b.on{
    font-size: 26px;
   }
}
















