/***====单页用的清空====***/
@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
fieldset,img {border: 0;}
ol,ul {list-style: none;}
h1,h2,h3,h4,h5,h6 {
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
input,button,select,textarea {outline: none;}
textarea {resize: none;}
/*禁用了文本的拖拉，尤其在谷歌下*/
p {text-align: justify; text-justify: distribute; margin: 0 0 10px;}
/*为了使文本段落左右两边对齐*/
a {color: #286fb7; text-decoration: none; background-color: transparent;}
a:active,a:hover {color: #005691; text-decoration: none;}
b,strong {font-weight: bold;}

/***====登录页====***/
body {
    position: relative;
    background: url(../images/body-bg.png) no-repeat;
    background-size: cover;
}
.logo-box {
    margin: auto;
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-box .logo {
    width: auto;
    height: 60px;
    margin-bottom: 24px;
}
.logo-box .title {
    width: auto;
    height: 32px;
}
.container {
    background: url(../images/wenli.png) no-repeat;
    background-size: 100%;
    width: 100%;
    min-height: 448px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}
.footer p {
    font-size: 14px;
    color: #9B9B9B;
    margin-top: 30px;
}
.login_box {
    position: relative;
    width: 556px;
    margin-top: 100px;
}
.login_box::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -44px;
    width: 324px;
    height: 124px;
    background: url(../images/yy-left.png) no-repeat;
    z-index: 0;
}
.login_box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -44px;
    width: 324px;
    height: 124px;
    background: url(../images/yy-right.png) no-repeat;
    z-index: 0;
}
.login {
    background-color: #F6F5FA;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(255,255,255,1);
    padding: 10px;
    min-height: 300px;
    position: relative;
    z-index: 99;
}
.form {
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(14,20,33,.06);
    border-radius: 8px;
    padding: 40px 80px;
}
.form-group {
    margin-bottom: 16px;
    position: relative;
}
.inputtext {
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    color: #2E2D33;
    position: relative;
    width: 100%;
    padding-left: 50px;
}
.inputtext::placeholder {
    font-weight: 300;
    color: #A2ABC6;
}
.form-group .validation_img {
    position: absolute;
    right: 0;
    top: 0;
}
.form-group .icon {
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(../images/icon.svg) no-repeat;
    left: 16px;
    top: 16px;
    z-index: 2;
}
.form-group .ic-user { background-position: -20px -20px;}
.form-group .ic-password { background-position: 0 -20px;}
.form-group .ic-validation { background-position: -40px -20px;}
.form-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
}
.form-button button {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    background-image: linear-gradient(0deg, #cc2a3a 0%, #e6212b 100%);
    border: 0;
    outline: none;
    font-size: 20px;
    color: #fff;
    line-height: 48px;
    cursor: pointer;
    margin-bottom: 16px;
}
.form-button button:hover {
    background-image: linear-gradient(180deg, #cc2a3a 0%, #e6212b 100%);
}
#tipInfoContainer {
	display: block;
	margin: 0;
    height: 22px;
}
#tipInfo {
	color: #dd4b39;
}