* {
    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

body {
    background: #08245d;
}

.bg-top {
    background-image: url(../img/up-img.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 60px;
    color: #fff;
    text-align: center;
    position: relative;
    /* padding-top: 15px; */
    margin-top: 30px;
}

.login-body {
    background-image: url(https://wallpaper-1254959005.cos.ap-nanjing.myqcloud.com/static/background-img.jpg);
    background-repeat: no-repeat;
    background-size:  100% auto;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.bg-top h3 {
    /* margin-top: 50%; */
    font-size: 28px;
}

.bg-bottom {
    background-image: url(../img/bot-img.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 60px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: 40px;

}

.bg-bottom p {
    margin-top: 15px;
    font-size: 10px;
    color: #b6bac4;
}

.login-wrap,
.userGo {
    background-image: url(../img/login-wrap.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 400px;
    height: 380px;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    padding: 60px;
    z-index: 10000;
}

.userGo h3 {
    text-align: center;
    color: #0c81cb;
    margin-bottom: 12px;
}

.userGo .user-item-go {
    width: 18px;
    height: 18px;
    background-image: url(../img/go.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.userGo .user-item {
    border: 1px solid #0c81cb;
    background: rgba(7, 153, 216, .3);
    color: #57bbfe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    cursor: pointer;
    margin-bottom: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}

.userGo .user-item:hover {
    filter: contrast(150%);
}

.login-form {
    /* border: 1px solid red; */
    height: 100%;
    text-align: center;
    color: #fff;
    padding-top: 4px
}

.login-form>div {
    margin-bottom: 12px;
    box-sizing: border-box;
}

.form-input {
    border: 1px solid #0c81cb;
    background: rgba(7, 153, 216, .3);
    font-size: 0;
    display: flex;
    align-items: center;
    padding: 4px 12px;
}

.form-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.form-input input {
    padding: 6px;

}

.form-select {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.form-select input {
    width: 5px;
    height: 5px;
    display: inline-block;
}

.form-select-sel {
    border: 1px solid #0c81cb;
    background: rgba(7, 153, 216, .3);
    width: 14px;
    height: 14px;
    margin-right: 6px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.form-select-sel>div {
    width: 8px;
    height: 8px;
    background: #6196e2;
    border-radius: 8px;

}

.form-select .select-font {
    transform: translateY(-1px);
}

.login-form .form-confirm {
    background: #6196e2;
    color: #fff;
    font-size: 12px;
    padding: 12px;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.login-form input {
    display: block;
    width: 80%;
    color: #fff;
    /*去除阴影*/
    box-shadow: none;
    /*去除边框*/
    border: none;
    /*去除聚焦input的蓝色边框*/
    outline: none;
    /*禁止拖拽*/
    resize: none;
    /*去除iOS默认样式*/
    -webkit-appearance: none;
    /*去除点击时背景高亮样式*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset;
}

:-ms-input-placeholder {
    color: #fff;
}

input::placeholder {
    color: #fff;
}

#tips {
    display: none;
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
    border: 1px solid #0c81cb;
    background: rgba(7, 153, 216, .3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: 65%;
    animation: mymove 2s;
}

@keyframes mymove {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateX(0%);
    }

    30% {
        opacity: 1;
        transform: translateX(-50%) translateX(0%);
    }

    99% {
        opacity: 0;
        transform: translateX(-50%) translateX(-10%);
    }

    100% {
        display: none;
        opacity: 0;
    }
}

#tx {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}