/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 16px;
}

body {
    min-height: 100vh;
    color: #333;
}

/*旋转180度*/
.rotate-180 {
    transform: rotate(180deg);
}

.sm-main {
    margin: 3rem 0;
}

/*超出省略*/
.text-ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}


@media (max-width: 1300px) {
    .sm-hidden {
        display: none !important;
    }

    .sm-w-full {
        width: 100% !important;
    }

    .sm-main {
        margin: 1.5rem 10px !important;
    }
}

@media (min-width: 1300px) {
    .xl-hidden {
        display: none !important;
    }
}

.article-body {
    a {
        color: #3363dc;
        text-decoration: underline;
    }
}