/* 公众号关注弹窗样式 */
.wechat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.wechat-modal.active {
    display: flex;
}
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
    position: relative;
}
.modal-content img {
    width: 200px;
    height: 200px;
    margin: 15px 0;
}
.modal-content input {
    width: 200px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
.modal-content button {
    padding: 10px 30px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.modal-content button:hover {
    background: #06ad56;
}
.modal-content .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.modal-content .close:hover {
    color: #333;
}
.modal-content h3 {
    margin: 0 0 10px 0;
    color: #333;
}
.modal-content .tips {
    color: #666;
    font-size: 13px;
    margin: 10px 0;
    line-height: 1.6;
}
.modal-content .error-msg {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}