/* Chrome, 360极速, 夸克, 360极速X, 360安全浏览器通用样式 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* 基础字体样式 */
    .popup-title,
    .install-process-title,
    .video-title {
        font-family: "中黑体";
        font-size: 16px;
        color: #1D2129;
    }

    .install-steps,
    .service-tip {
        font-family: "中黑体";
        font-size: 14px;
        text-align: left;
    }

    /* 弹窗基础样式 */
    .download-popup {
        display: none;
        position: fixed;
        top: 0;
        right: -800px;
        width: 800px;
        height: 100%;
        min-height: 100vh;
        background: #FFFFFF;
        z-index: 9999;
        transition: right 0.3s ease-in-out;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .popup-content {
        position: relative;
        min-height: 100vh;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    /* 标题行 */
    .popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .popup-title {
        text-align: left;
        white-space: nowrap;
    }

    /* 关闭按钮 */
    .close-popup {
        cursor: pointer;
        width: 16px;
        height: 16px;
        border-radius: 0;
        position: absolute;
        right: 35px;
        top: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        z-index: 10000;
    }

    .close-popup::before,
    .close-popup::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 1px;
        background-color: #333333;
    }

    .close-popup::before {
        transform: rotate(45deg);
    }

    .close-popup::after {
        transform: rotate(-45deg);
    }

    /* 分隔线 */
    .popup-divider {
        width: 100%;
        height: 0;
        border: 1px solid #E5E6EB;
        position: relative;
        left: -20px;
        right: -20px;
        margin: 0;
    }

    /* 内容区域 */
    .install-process-title {
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .install-steps {
        color: #1D2129;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .video-title {
        margin-bottom: 16px;
    }

    .video-container {
        width: 100%;
        height: 418px;
        margin-bottom: 20px;
        overflow: hidden;
        /*background: rgba(0, 0, 0, 0.5);*/ 
        text-align: left;
    }

    .video-container img {
        width: auto;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0;
    }

    .service-tip {
        color: #86909C;
        margin-bottom: 11px;
        white-space: nowrap;
    }

    .qr-code {
        width: 140px;
        height: 140px;
        margin-bottom: 53px;
        overflow: hidden;
    }

    .qr-code img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .download-popup.show {
        right: 0;
    }

    /* 遮罩层 */
    .download-popup::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 800px);
        height: 100%;
        min-height: 100vh;
        background-color: rgba(97, 107, 122, 0.6);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease-in-out;
        z-index: -1;
    }
    /* 无遮罩层状态 */
    .download-popup.no-mask::before {
        display: none;
    }

    .download-popup.show::before {
        opacity: 1;
        visibility: visible;
    }

    /* 响应式样式 */
    @media screen and (max-width: 1000px) {
        .download-popup {
            width: 520px;
            right: -520px;
        }
        
        .download-popup::before {
            width: calc(100% - 520px);
        }

        /* 小屏幕字体大小 */
        .popup-title,
        .install-process-title,
        .video-title {
            font-size: 14px;
        }

        .install-steps,
        .service-tip {
            font-size: 12px;
        }

        /* 视频容器 */
        .video-container {
            width: 100%;
            height: 217px;
            text-align: left;
        }
    }
} 