.loginbox {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 999;
}

.loginbox_area {
    position: fixed;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
}

.loginbox_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.form_item {
    margin-bottom: 15px;
}

.form_item input {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
}

.code_item {
    display: flex;
    gap: 10px;
}

.code_item input {
    flex: 1;
}

#send_code_btn {
    width: 100px;
    height: 42px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

#send_code_btn:disabled {
    background: #ccc;
}

#login_btn {
    width: 100%;
    height: 44px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.login_close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.login_close img {
    width: 100%;
    height: 100%;
}

/* 微信登录样式 */
.login_wx_form {
    text-align: center;
}

.loginbox_code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.loginbox_code img {
    width: 100%;
    height: 100%;
}
