#lewechatcopy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
}

.lewechatcopy-popup-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 360px;
    margin: 15vh auto;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lewechatcopy-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.lewechatcopy-qrcode {
    text-align: center;
    margin-bottom: 15px;
}

.lewechatcopy-qrcode img {
    max-width: 200px;
    height: auto;
}

.lewechatcopy-text {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.lewechatcopy-verify {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#lewechatcopy-code {
    width: 160px;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #f5f5f5;
}

#lewechatcopy-submit {
    padding: 8px 20px;
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

#lewechatcopy-submit:hover {
    background-color: #e5e5e5;
}

.lewechatcopy-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.lewechatcopy-subtitle {
    font-size: 13px;
    color: #999;
    margin: 10px 0;
}

.verification-keyword {
    color: #ff0000;
    font-weight: bold;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .lewechatcopy-popup-content {
        width: 85%;
        margin: 10vh auto;
        padding: 15px;
    }

    .lewechatcopy-qrcode img {
        max-width: 180px;
    }

    .lewechatcopy-verify {
        flex-direction: column;
        align-items: center;
    }

    #lewechatcopy-code {
        width: 200px;
        margin-bottom: 10px;
    }

    #lewechatcopy-submit {
        width: 200px;
    }
} 