.download-dialog {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100vw;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;

}
.download-dialog-main {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.download-dialog-content {
    padding: 20px;
    background-color: #fff;
    text-align: center;
    min-width: 300px;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.download-dialog-content li + li {
    margin-top: 10px;
}

.download-dialog-content .btn {
    border: .02rem solid #ff865a;
    color: #ff865a;
}
.btn {
    cursor: pointer;
}

.download-channel-tip {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1f4f7a;
    background-color: #eaf5ff;
    border: 1px solid #9bc8ec;
    border-radius: 16px;
}

.download-dialog-content .download-channel {
    flex-direction: column;
    height: auto;
    min-height: 64px;
    line-height: 1.3;
    padding: 8px 12px;
}

.download-channel-name {
    display: block;
}

.download-channel-tried {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1;
    color: #999;
}

.download-verify {
    display: none;
    margin-top: 18px;
}

.download-verify-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.download-verify-track {
    position: relative;
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    border: .02rem solid #ff865a;
    border-radius: 24px;
    background-color: #f7f7f7;
    background-image: linear-gradient(#ff865a, #ff865a);
    background-repeat: no-repeat;
    background-size: 0 100%;
    color: #ff865a;
    overflow: hidden;
    user-select: none;
}

.download-verify-track.active {
    color: #ff865a;
}

.download-verify.passed .download-verify-track {
    color: #ff865a;
}

.download-verify-text {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.download-verify-btn {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.download-verify-btn:after {
    content: ">>";
    color: #ff865a;
    font-size: 14px;
}

.download-verify-tip {
    margin-top: 10px;
    font-size: 13px;
    color: #999;
}

.download-dialog-close {
    display: block;
    font-size: 20px;
    margin: 40px auto 0;
    border: .02rem solid #ff865a;
    color: #ff865a;
    padding: 5px 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .download-dialog-content .btn {
        font-size: .15rem;
        border-radius: .2rem;
        height: .4rem;

    }

    .download-dialog-content .download-channel {
        height: auto;
        min-height: .56rem;
        padding: .07rem .12rem;
    }

    .download-dialog-close {
        font-size: 14px;
    }

    .download-verify-title {
        font-size: .15rem;
    }

    .download-verify-tip {
        font-size: .12rem;
    }
}
