/*-------------------
*Description:      By www.yiwuku.com
*Website:          https://app.zblogcn.com/?id=2344
*Author:           尔今 erx@qq.com
*update:           2020-01-30(Last:2020-12-11)
-------------------*/
/* 下载功能样式 */
.progress-container {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin: 10px 0;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: #F3AC07;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.result.loading {
    color: #666;
}
.result.success {
    color: #4CAF50;
}
.result.error {
    color: #F44336;
}
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
.modal-content {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.qr-code {
    width: 220px;
    height: 220px;
    margin: 20px 0;
}
.qr-tip {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
}