/* 微信扫码登录样式 */

.wml-login-btn {
    background: #07c160;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.wml-login-btn:hover {
    background: #06ad56;
}

.wml-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wml-modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wml-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.3s;
}

.wml-close:hover {
    color: #333;
}

.wml-modal-content h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
}

#wml-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wml-qrcode {
    width: 200px;
    height: 200px;
    margin: 10px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

#wml-status {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 14px;
}

.wml-logged-in {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wml-logged-in span {
    color: #333;
    font-size: 14px;
}

.wml-logged-in a {
    color: #07c160;
    text-decoration: none;
    font-size: 14px;
}

.wml-logged-in a:hover {
    text-decoration: underline;
}
