@charset "utf-8";
* {
    padding: 0;
    margin: 0;
}

body {
    font-family: helvetica neue, Tahoma, Arial, sans-serif;
    font-size: 16px;
    padding-top: 84px;
    background: linear-gradient(180deg, #dcf0ff 0%, #f5f6fa 100%) no-repeat;
}

ul {
    list-style: none;
    margin-bottom: 0;
}

.header {
    padding: 20px 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    z-index: 99;
}
.header .head_inner{
    width:1200px;
    margin:0 auto;
}

.header .head_inner,
.header .head_inner>div,
.header .head_inner ul,
.change_address {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header .head_inner .logo_area a>img {
    width: 99px;
    height: 44px;
    margin-right: 34px;
}

.change_address img {
    width: 16px;
    margin-right: 5px;
}

.change_address a {
    color: #0092ff;
    display: inline-block;
    margin-left: 5px;
}

.nav {
    margin-left: 80px;
}

.nav>ul>li {
    margin-right: 16px;
}

.nav>ul>li>a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    padding: 0 16px;
    color: rgba(0, 0, 0, .85);
    position: relative;
}

.nav>ul>li>a:hover {
    color: #0092ff;
}

.nav>ul>li>a.active {
    color: #0092ff;
}

.nav>ul>li>a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #0092ff;
}
.login_area{
    cursor: pointer;
}
.login_area span {
    display: inline-block;
    margin-right: 5px;
}

.login_area span:last-child {
    margin-right: 0;
}

.user_info {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user_info img {
    width: 40px;
}

.user_info .name {
    font-size: 16px;
    margin-left: 10px;
}

footer {
    padding: 30px 50px;
    background: #fff;
}
.foot-in{
    width: 1200px;
    margin:0 auto;
}
.foot-in .foot-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.foot-in .foot-top .foot-left img {
    width: 92px;
    margin-bottom: 12px;
}

.foot-in .foot-top .foot-left p {
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: rgba(0, 0, 0, .85);
    font-weight: 400;
    margin-bottom: 12px;
}

.foot-in .foot-top .foot-center .labels {
    width: 490px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.foot-in .foot-top .foot-center .labels a {
    text-decoration: none;
    display: inline-block;
    width: 33%;
    margin-bottom: 28px;
    font-size: 14px;
    color: rgba(0, 0, 0, .85);
    transition: all 0.2s;
}

.foot-in .foot-top .foot-center .labels a:hover {
    color: #0092ff;
}

.foot-in .foot-top .foot-right {
    display: flex;
    justify-content: space-between;
}

.foot-in .foot-top .foot-right>div {
    margin-left: 20px;
}

.foot-in .foot-top .foot-right>div p {
    font-size: 14px;
    color: #6b6b6f;
    text-align: center;
    font-weight: 400;
    margin-top: 8px;
}

.foot-in .foot-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
}

.foot-in .foot-bottom a {
    display: inline-block;
    margin-left: 5px;
}

.foot-right img{
    width:120px;
}
/* 弹出登陆层 */

.head_inner>div.mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .45);
    display: none;
}

.mask .login-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 740px;
    height: 508px;
    padding: 4px 0;
    background-color: #fff;
    border-radius: 8px;
}

.mask .login-inner img {
    width: 254px;
    height: 500px;
    margin-left: 4px;
}

.mask .login-inner .login-wrap {
    flex: 1 1;
    width: 100%;
    height: 100%;
}

.mask .login-inner .login-wrap .close {
    position: absolute;
    top: 16px;
    right: 16px;
    line-height: 0;
    cursor: pointer;
    z-index: 102;
    opacity: 1;
}

.mask .login-inner .login-wrap .close img {
    width: 24px;
    height: 24px;
}

.form-wrap {
    padding: 90px 50px;
}

.form-wrap .title {
    font-weight: 700;
    font-size: 20px;
    color: rgba(0, 0, 0, .85);
    line-height: 28px;
    cursor: pointer;
    margin-bottom: 50px;
    text-align: center;
}

.form-wrap form>div:not(:nth-child(3)) {
    position: relative;
    width: 100%;
    height: 44px;
    margin-bottom: 24px;
    padding: 0 12px;
    color: rgba(0, 0, 0, .25);
    font-weight: 400;
    line-height: 42px;
    border: 1px solid #edeef2;
}

.form-wrap form>div input {
    display: inline-block;
    color: rgba(0, 0, 0, .85);
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border: none;
    outline: none;
}

.form-wrap form>div.code_wrap {
    position: relative;
}

.form-wrap form>div.code_wrap .get_code {
    position: absolute;
    font-size: 14px;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    color: #0092ff;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}

.form-wrap form>div.code_wrap .get_code.seconds {
    color: #ddd;
}

.form-wrap form>div.policy {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0 10px 0;
}

.form-wrap form>div.policy input {
    width: 12px;
    height: 12px;
    border: none;
    outline: none;
    margin-right: 4px;
}

.form-wrap form>div.policy span {
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
    line-height: 17px;
}

.form-wrap form>div.policy a {
    text-decoration: none;
    margin-left: 4px;
    font-size: 12px;
}

.form-wrap form>div.confirm {
    text-align: center;
    background: #0092ff;
    color: #fff;
    cursor: pointer;
    margin-top:0;
}
/* 加载中 */

#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 999;
}