input {
    /* border: 1px solid; */
    height: 50px;
    line-height: 50px;
    /* border-radius: 4px; */
}

#wxQrCodeBgBox {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
}

#wxQrCodeBox {
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 690px;
    /* 调整宽度以适应两列布局 */
    height: 400px;
    padding: 20px 10px;
    margin: auto;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    /* 改为space-between以分隔两列 */
    align-items: center;
    flex-direction: row;
    /* 改为行方向布局 */
}

.qrCodeSide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.formSide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wx-qr-code-img {
    width: 190px;
    height: 190px;
}

.close-box {
    position: absolute;
    top: 4px;
    right: 4px;
    border: 1px solid #414141;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-box .close-img {
    width: 50%;
    height: 50%;
}


.headInfo {
    font-size: 24px;
    color: #333;
    margin-top: 0;
}

.footInfo {
    font-size: 12px;
    color: #666;
}

.loginForm {
    display: flex;
    flex-direction: column;
}

.loginForm input {
    margin-bottom: 10px;
    padding: 5px;
}

#loginBtn {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.show-register {
    text-align: center;
    font-size: 12px;
    color: #666;
    padding-top: 10px;
    /* 改变鼠标形状为手指形状 */
    cursor: pointer;
    /* 文本装饰添加下划线，但默认下划线可能会与文本距离较近，可以调整text-decoration-color和text-underline-offset来优化显示效果 */
    text-decoration: underline;
    text-decoration-color: currentColor;
    /* 确保下划线颜色与文字颜色相同 */
    text-underline-offset: 2px;
    /* 调整下划线与文本的垂直距离，可根据实际需求调整 */
    transition: text-decoration-color 0.3s;
    /* 添加过渡效果，使变化更平滑 */
}

.show-register:hover {
    text-decoration-color: #666;
}

/* 注册弹窗样式 */
#h5RegisterBgBox {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
}

#h5RegisterBox {
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 690px;
    /* 调整宽度以适应两列布局 */
    height: 540px;
    padding: 20px 10px;
    margin: auto;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row; */
    /* 改为行方向布局 */
}

.close-register-box {
    position: absolute;
    top: 4px;
    right: 4px;
    border: 1px solid #414141;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-register-box .close-img {
    width: 50%;
    height: 50%;
}


#registerBtn {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.registerForm {
    display: flex;
    flex-direction: column;
}

.registerForm input {
    margin-bottom: 10px;
    padding: 5px;
}

.click-label {
    height: 50px;
    line-height: 50px;
}

.clickable {
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}

/* 用户协议弹窗 */
#userAgreementBgBox {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 9999;
    position: fixed;
}

#userAgreementBox {
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 690px;
    height: 470px;
    padding: 20px 10px;
    margin: auto;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-user-box {
    position: absolute;
    top: 4px;
    right: 4px;
    border: 1px solid #414141;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-user-box .close-img {
    width: 50%;
    height: 50%;
}