@charset "UTF-8";
/* 202309062135 */

.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.3);
}

.modal.hide {
    display: none;
}

.modal > .modal-content {
    margin: 10% auto;
    height: 26rem;
    width: 35rem;
    background-image: url("../images/login-bg.png");
    background-repeat: repeat-x;
    background-size: auto 26rem;
    display: flex;
    padding: 0.6rem;
}

.modal > .modal-content > .content {
    padding: 0 1rem 0 3rem;
    width: 100%;
    margin: 0 auto;
}

.modal > .modal-content > .content > .close {
    margin-right: -0.5rem;
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.modal > .modal-content > .content > .close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.modal > .modal-content > .content > .login-bg-zh {
    height: 3.5rem;
    margin-left: -2rem;
    display: flex;
    align-items: center;
}

.modal > .modal-content > .content > .login-bg-zh > span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: -1rem;
}

.modal > .modal-content > .content > .loginList {
    display: flex;
    width: 60%;
    margin: 0 auto;
    flex-direction: column;
    padding-top: 1.2rem;
    font-size: 0.8rem;
}

.modal > .modal-content > .content > .loginList > div {
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.modal > .modal-content > .content > .loginList > div > span {
    color: #ffffff;
    display: flex;
    padding-right: 0.5rem;
    width: 25%;
    font-size: 1.2rem;
    text-shadow: -0.05rem -0.05rem 0 #000000, 0.05rem -0.05rem 0 #000000, -0.05rem 0.05rem 0 #000000, 0.05rem 0.05rem 0 #000000;
    justify-content: flex-end;
}

.modal > .modal-content > .content > .loginList > div > .name {
    display: flex;
    width: 75%;
    height: 2.2rem;
    border: rgb(255, 227, 75) solid 0.1rem;
    border-radius: 0.3rem;
    padding-left: 0.3rem;
    font-size: 1rem;
}

.modal > .modal-content > .content > .loginList > div > .password {
    display: flex;
    width: 75%;
    height: 2.2rem;
    border: rgb(255, 227, 75) solid 0.1rem;
    border-radius: 0.3rem;
    padding-left: 0.3rem;
    font-size: 1rem;
}

.modal > .modal-content > .content > .loginList > div > .captcha {
    display: flex;
    width: 35%;
    float: right;
    height: 2.2rem;
    border: rgb(255, 227, 75) solid 0.1rem;
    border-radius: 0.3rem;
    padding-left: 0.3rem;
    font-size: 1rem;
}

.modal > .modal-content > .content > .loginList > div > .captchaimg {
    display: flex;
    width: 35%;
    margin-left: auto;
    height: 2.2rem;
    border: rgb(255, 227, 75) solid 0.1rem;
    cursor: pointer;
    font-size: 1rem;
}

.modal > .modal-content > .content > .loginList > .btn {
    height: 3.5rem;
    justify-content: center;
}

.modal > .modal-content > .content > .loginList > .btn > .login {
    background-color: transparent;
    border: 0;
    width: 9.875rem;
    height: 2.6rem;
    margin-left: 3.5rem;
    background-image: url("../images/login-btn.png");
    background-repeat: repeat-x;
    background-size: auto 2.5rem;
    cursor: pointer;
}

.modal > .modal-content > .content > .loginList > .btn > .login:hover {
    transform: scale(1.05);
}

.modal > .modal-content > .content > .loginList > .btn > .login:hover:active {
    transform: scale(0.98);
}

.modal > .modal-content > .content > .loginList > .regProtocol {
    display: flex;
    width: 100%;
    margin-left: 2rem;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
}

.modal > .modal-content > .content > .loginList > .regProtocol > span:first-child {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #ffffff;
    padding: 0;
}

.modal > .modal-content > .content > .loginList > .regProtocol > span > .title {
    font-size: 0.8rem;
    padding-left: 0.5rem;
    align-items: center;
    cursor: pointer;
}

.modal > .modal-content > .content > .loginList > .regProtocol > span:nth-child(2) {
    width: 60%;
    align-items: center;
    font-size: 0.8rem;
    justify-content: left;
}

.modal > .modal-content > .content > .loginList > .regProtocol > span > input[type="checkbox"] {
    appearance: none;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    background-color: #ffffff;
    border: rgb(255, 227, 75) solid 0.01rem;
}

.modal > .modal-content > .content > .loginList > .regProtocol > span > input:checked {
    background-color: rgb(255, 227, 75);
    border: #ffffff solid 0.01rem;
}

.modal > .modal-content > .content > .loginList > .regProtocol > span > a {
    color: rgb(255, 227, 75);
}

.modal > .modal-content > .content > .loginList > .but {
    color: rgb(255, 227, 75);
    width: 140%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0.5rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.modal > .modal-content > .content > .loginList > .but > a {
    color: #ffffff;
    cursor: pointer;
}