.ss-download-message {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    width: 480px;
    padding: 17px 17px 16px 17px;
    box-sizing: border-box;
    border: 1px solid #ebeef5;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 2px 6px -4px rgba(51, 51, 51, 0.12),
        0 4px 12px 0 rgba(51, 51, 51, 0.08);
    border-radius: 4px;
    transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s,
        bottom 0.3s;
    overflow: hidden;
    z-index: 10000;
    &.right {
        right: 16px;
    }
    &.left {
        left: 16px;
    }
    .ss-download-message-header {
        display: flex;
        justify-content: space-between;
        .header-left {
            display: flex;
            align-items: center;
            font-family: PingFangSC-Medium;
            font-size: 16px;
            color: #333333;
            font-weight: 500;
            svg {
                margin-right: 9px;
            }
        }
        .header-right {
            cursor: pointer;
        }
    }
    .ss-download-message-body {
        padding: 9px 0 16px 31px;
    }
    .ss-download-message-footer {
        .to-download-center {
            cursor: pointer;
            float: right;
            width: 88px;
            height: 32px;
            line-height: 32px;
            text-align: center;
            background: #1472ff;
            border-radius: 4px;
            color: #ffffff;
        }
    }
}

.ss-download-message-fade-enter {
    &.right {
        right: 0;
        transform: translateX(100%);
    }

    &.left {
        left: 0;
        transform: translateX(-100%);
    }
}

.ss-download-message-fade-leave-active {
    opacity: 0;
}