/* 顶部 */

.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 5;
}

.head .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.head .top img {
    height: 30px;
}

.head .top .btns {
    display: flex;
    align-items: center;
}

.head .top .btns .login {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.head .top .btns .register {
    width: auto;
    height: 42px;
    font-size: 18px;
    border-radius: 20px;
    margin-left: 30px;
    color: rgb(244, 244, 244);
    background-color: rgb(117, 209, 198);
    cursor: pointer;
    padding: 0 10px;
}

.head .top .btnss {
    display: flex;
    align-items: center;
}

.head .top .btnss .user {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.head .top .btnss .user img {
    width: 30px;
    margin-right: 5px;
}

.head .top .btnss .user span {
    color: #75d1c6;
    font-size: 18px;
}

.head .top .btnss .ul {
    display: none;
    position: absolute;
    top: 35px;
    left: 11px;
    width: 100px;
    padding: 6px 0;
    background-color: #fff;
    border: 1px solid #e6ebf5;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
}

.head .top .btnss .ul img {
    width: 30px;
    margin-right: 10px;
}

.head .top .btnss .ul a {
    display: flex;
    align-items: center;
    color: #606266;
    font-size: 14px;
    line-height: 30px;
    padding: 0 17px;
}

.head .top .btnss .ul a:hover {
    background-color: #f1faf9;
    color: #91dad1;
}

.head .top .btnss .ul::before {
    position: absolute;
    top: -6px;
    left: 20%;
    content: " ";
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px;
    border-top-width: 0;
    border-bottom-color: #fff;
}

.head .top .btnss .user:hover .ul {
    display: block;
}

.head .top .btnss .logout {
    width: 80px;
    height: 42px;
    font-size: 18px;
    border-radius: 20px;
    margin-left: 30px;
    color: rgb(244, 244, 244);
    background-color: rgb(117, 209, 198);
    cursor: pointer;
}

.head .nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.head .nav a {
    display: block;
    height: 56px;
    line-height: 56px;
    color: #bbafca;
    font-size: 18px;
    margin: 0 30px;
    padding-bottom: 20px;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
}

.head .nav a.on,
.head .nav a:hover {
    color: #fff;
    border-color: #1B8BCC;
}

.kong {
    width: 100%;
    height: 160px;
}


/* 底部 */

.foot {
    width: 100%;
    padding: 23px 0 36px;
    box-sizing: border-box;
    background-color: rgba(14, 4, 27, .5);
}

.foot .w {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.foot .w1 {
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.foot .pay,
.foot .notice {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.foot .pay {
    color: #fff;
    font-size: 20px;
}

.foot .notice p {
    color: #fff;
    font-size: 20px;
}


.foot .notice .smallP p {
    color: #fff;
    font-size: 0.6rem;
}

.foot .pay img {
    width: 55px;
    margin-left: 10px;
}

.foot .notice img {
    width: 35px;
    margin-right: 9px;
}

.foot .logo img {
    height: 30px;
}

.foot .nav .in {
    display: flex;
}

.foot .nav .in a {
    display: block;
    color: #8e819e;
    font-size: 18px;
    margin: 0 12px;
}

.foot .nav .in a:hover {
    color: #fff;
}

.foot .link {
    display: flex;
    align-items: center;
}

.foot .link a {
    display: block;
    margin-left: 25px;
}

.foot .link img {
    width: 30px;
}


/* 服务条款 */

.fw {
    width: 100%;
    padding: 15px 0;
    background-color: rgba(14, 4, 27, .5);
}

.fw p {
    color: #fff;
    font-size: 14px;
    text-align: center;
}


/* 登录 */

#login,
#register {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 15;
}

#login h3,
#register h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

#login input,
#register input {
    width: 100%;
    height: 46px;
    color: #606266;
    padding: 0 15px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #dcdfe6;
}

#login i,
#register i {
    display: none;
    color: #ff4949;
    font-size: 12px;
}

#login .item,
#register .item {
    margin-bottom: 20px;
}

#login .yanz span,
#register .yanz span {
    color: #75d1c6;
    font-size: 14px;
    cursor: pointer;
}

#login .yanz p,
#register .yanz p {
    color: #ff4949;
    font-size: 12px;
}

#login .yanzs,
#register .yanzs {
    display: none;
}

#login .yanzs img,
#register .yanzs img {
    width: 14px;
    vertical-align: middle;
}

#login .yanzs span,
#register .yanzs span {
    color: #75d1c6;
    font-size: 14px;
}

#login .select,
#register .select {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    margin: 30px 0 50px;
}

#login .select input,
#register .select input {
    position: relative;
    width: 18px;
}

#login .select input[type="checkbox"]:checked {
    background-color: #75d1c6 !important;
}

#login .select label,
#register .select label {
    display: inline-block;
    color: #75d1c6;
    font-size: 14px;
    padding-left: 5px;
    cursor: pointer;
}

#login .btns,
#register .btns {
    display: flex;
    justify-content: center;
    width: 100%;
}

#login .btns .close,
#register .btns .close {
    width: 100px;
    height: 40px;
    color: #606266;
    font-size: 18px;
    border: 1px solid #dcdfe6;
    margin: 0 10px;
    cursor: pointer;
}

#login .btns .que,
#register .btns .que {
    width: 100px;
    height: 40px;
    color: #fff;
    font-size: 18px;
    background-color: #75d1c6;
    margin: 0 10px;
    cursor: pointer;
}

#login .btns .register {
    width: auto;
    height: 40px;
    color: #fff;
    font-size: 18px;
    background-color: #75d1c6;
    margin: 0 10px;
    cursor: pointer;
    padding: 0 10px;
}

#login .on input,
#register .on input {
    border: 1px solid #ff4949;
}

#login .on i,
#register .on i {
    display: block;
}

#login .quxiao,
#register .quxiao {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

#login .quxiao img,
#register .quxiao img {
    width: 20px;
    height: 20px;
}


/* 注册 */

#register select {
    width: 30%;
    height: 46px;
    color: #606266;
    padding: 0 15px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #dcdfe6;
    background-color: #fff;
    outline: none;
}


/* 遮盖层 */

.cover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 10;
}


/* 提示弹窗 */

.popup {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    width: 325px;
    height: 45px;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #FFF8E6;
    z-index: 100;
    transition: all .3s;
}

.popup img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.popup span {
    color: #FFCA3E;
}


/* 验证码 */

.slidercaptcha {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 314px;
    height: 234px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
    background-color: #fff;
    z-index: 20;
}

.slidercaptcha .card-body {
    padding: 1rem;
}

.slidercaptcha canvas:first-child {
    border-radius: 4px;
    border: 1px solid #e6e8eb;
}

.slidercaptcha.card .card-header {
    padding: 30px 0;
    background-image: none;
    background-color: rgba(0, 0, 0, 0.03);
}

.refreshIcon {
    top: 3px;
    color: #fff;
}

.cover1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 15;
}

@media screen and (max-width: 992px) {
    .head .nav a {
        font-size: 12px;
        margin: 0 10px;
    }
    .foot .w {
        display: block;
    }
    .foot .pay,
    .foot .notice {
        width: 100%;
        margin: 0 auto;
    }
    .foot .pay {
        font-size: 14px;
    }
    .foot .notice p {
        color: #fff;
        font-size: 10px;
    }
    .foot .nav {
        margin: 20px 0;
    }
    .foot .nav .in a {
        font-size: 16px;
        margin-left: 0;
        margin-right: 20px;
    }
    .foot .link a:first-child {
        margin-left: 0;
    }
    #login,
    #register {
        width: 85%;
        margin: 0 auto;
        padding: 15px;
    }
    #login .btns button {
        width: auto!important;
        height: 40px!important;
        color: #fff;
        font-size: 18px;
        background-color: #75d1c6;
        margin: 0 5px!important;
        cursor: pointer;
        padding: 0 10px!important;
    }
    .head .top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 0;
        box-sizing: border-box;
    }
    .foot .notice img {
        width: 20px;
        margin-right: 10px;
    }
}
