* {
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;
    height: 100%;
    line-height: 1;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", SimSun, sans-serif;
    box-sizing: border-box;
}
.container {
    width: 100%;
    height: 100%;
    min-width: 1140px;
    min-height: 780px;
    background: url(../images/login_bg.png) no-repeat top center;
    background-size: 100% 618px;
    position: relative;
}
.container::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
    bottom: 50px;
}
.main {
    width: 1140px;
    height: 100%;
    margin: 0 auto;
    background: url(../images/login_map.png) no-repeat 430px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main header {
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.main header .logo {
    padding-top: 14px;
    font-size: 28px;
}
.main header .lang {
    padding-top: 20px;
    height: 15px;
    line-height: 15px;
    font-size: 14px;
}
.main header .lang span {
    float: left;
    padding: 0 8px;
    border-right: 1px solid #fff;
    cursor: pointer;
}
.main header .lang span:last-child {
    border-right: none;
}
.main .content {
    padding-top: 160px;
    flex: 1;
}
.main .content .logo-img {
    padding-left: 40px;
    margin-bottom: 39px;
}
.main .content .title {
    padding-left: 40px;
    font-size: 36px;
    color: #ffc000;
}
.main .content .en-title {
    margin: 8px 0;
    padding-left: 40px;
    font-size: 20px;
    color: #fff;
}
.main .content .subtitle {
    margin-left: 40px;
    width: 406px;
    height: 28px;
    background-color: rgba(24, 44, 77, 0.36);
    text-align: center;
    font-size: 13px;
    line-height: 28px;
    color: #fff;
}
.main .content .login-wrap {
    margin: 116px auto 0 auto;
    box-shadow: 0 0 10px #ccc;
    background-color: #fff;
    width: 620px;
    height: 130px;
    border-radius: 65px;
    position: relative;
    display: flex;
    box-sizing: border-box;

}
.main .content .login-wrap  .login,
.main .content .login-wrap  .register {
    flex: 1;
    display: flex;
    justify-content: center;
}
.main .content .login-wrap  .login {
    border-right: 1px solid #d8d8d8;
}
.main .content .login-wrap .or {
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -22px;
    width: 45px;
	height: 30px;
    background-image: linear-gradient(0deg,  #edeef2 0%, #fefefe 100%);
	border-radius: 4px;
	border: solid 1px #d8d8d8;
    font-size: 14px;
    color: #a7a9ab;
    text-align: center;
    line-height: 30px;
}
.login-logo,
.register-logo {
    padding-top: 72px;
    width: 65px;
    height: 84px;
    margin-top: 26px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #666666;
    box-sizing: border-box;
}
.login-logo {
    background: url(../images/login_off.png) no-repeat top center;
}
.login-logo:hover {
    background: url(../images/login_on.png) no-repeat top center;
    color: #0092ff;
}
.register-logo {
    background: url(../images/register_off.png) no-repeat top center;
}
.register-logo:hover {
    background: url(../images/register_on.png) no-repeat top center;
    color: #0092ff;
}
.main footer {
    display: flex;
    justify-content: space-between;
    height: 50px;
}
.main footer address {
    line-height: 50px;
    font-size: 14px;
    color: #53708f;
    font-style: normal;
}
.main footer .about {
    padding-top: 18px;
}
.main footer .about a {
    float: left;
    padding: 0 8px;
    height: 15px;
    line-height: 15px;
    border-right: 1px solid #53708f;
    color: #53708f;
    text-decoration: none;
    font-size: 14px;
}
.main footer .about a:last-child {
    border-right: none;
}
