/* 登录页样式（从 login.html 内联 style 抽离） */
#qrcode {
    text-align: center;
    margin-top: 65px;
}

#qrcode canvas {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #8fb749;
}

/* 覆盖原有样式，调整高度和间距 */
.login-box {
    width: 380px;
    height: auto;
    min-height: 340px;
    padding: 20px 25px 50px 25px;
    background: #fff;
    box-sizing: border-box;
}

.login-box ul {
    height: auto;
}

.login-box li {
    padding-top: 20px;
}

.captcha {
    position: relative;
}

.captcha .input-captcha {
    width: 90px !important;
    padding-right: 10px;
}

.captcha-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 36px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.captcha-image:hover {
    border-color: #8fb749;
}

.copyright {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 0 15px;
    line-height: 1.5;
}

.copyright a {
    color: #666;
    text-decoration: none;
}

.copyright a:hover {
    color: #8fb749;
}
