.sn-divider-tips {
    .sn-tips {
        margin-left: 0.2rem;
        margin-right: 0.2rem;
        height: 0.1rem;
        .solid-line {
            border-top: 1px solid #ccc;
        }
        .dashed-line {
            border-top: 1px dashed #ccc;
        }
    }
    .sn-list-item {
        background-color: @body-color;
    }
    .title-align-right {
        & + .sn-list-item-value {
            padding-left: 0.3rem;
        }
    }
    .sn-block {
        font-size: 0.28rem;
        .sn-checkbox {
            margin-right: 0.2rem;
        }
        .default {
            display: flex;
            align-items: center;
            width: 100%;
            text-align: left;
        }
        span {
            display: flex;
            align-items: center;
            // margin-left: 0.1rem;
            color: @text-color-3;
        }
        a {
            margin-left: 0.1rem;
            color: @theme-color;
        }
    }
    .component-download {
        font-size: 14px;
        font-family: MicrosoftYaHei;
        color:@text-color-3;
        cursor: pointer;
        > span {
            color: @theme-color;
            cursor: pointer;
        }
    }

    // 移动端
    @media screen and(max-width:@screen-sm) {
        .sn-list-item {
            .sn-list-item-title {
                flex-basis: 0 !important;
                padding-right: 0;
            }
            .sn-list-item-value {
                padding-left: 0;
                height: auto;
            }
        }
        .no-tips {
            height: 0;
            padding: 0.1rem 0.3rem !important;
        }
    }
    // pc
    @media screen and(min-width:@screen-sm) {
        .sn-list-item {
            .sn-list-item-value {
                height: auto;
            }
        }
        .no-tips {
            display: none !important;
        }
        .sn-block {
            span {
                margin-left: 10px;
            }
            a {
                margin-left: 10px;
            }
        }
    }
}