body #blog_list .blog_page .prefer .box::after {
    content: '';
    display: block;
    clear: both;
}
body #blog_list .blog_page .prefer .box .blog_link .desc {
    display: none;
}

/* 1280~1920
標題：至多兩行
簡介：至多三行

701~1279
標題：至多一行 (字型可以縮小一點)
簡介：至多兩行 */
@media only screen and (min-width: 701px) {
    body #blog_list .blog_page .prefer .box .blog_link {
        width: 100%;
        margin-right: 0;
        position: relative;
        min-height: 0;
        margin-bottom: 2em;
    }
    body #blog_list .blog_page .prefer .box .blog_link::after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 70%;
        border-bottom: 1px solid #707070;
    }
    body #blog_list .blog_page .prefer .box .blog_link .imgs {
        float: left;
        width: 25%;
        margin-bottom: 0;
    }
    body #blog_list .blog_page .prefer .box .blog_link .txt {
        margin-left: 30%;
        padding-bottom: 1.5em;
    }
    body #blog_list .blog_page .prefer .box .blog_link .title {
        border-bottom: 0;
        padding-bottom: 1.25em;
    }
    body #blog_list .blog_page .prefer .box .blog_link .desc {
        display: block;
        color: #999;
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
@media only screen and (min-width: 1280px) {
    body #blog_list .blog_page .prefer .box .blog_link::after {
        width: 75%;
    }
    body #blog_list .blog_page .prefer .box .blog_link .imgs {
        width: 20%;
    }
    body #blog_list .blog_page .prefer .box .blog_link .txt {
        margin-left: 25%;
    }
    body #blog_list .blog_page .prefer .box .blog_link .title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    body #blog_list .blog_page .prefer .box .blog_link .desc {
        -webkit-line-clamp: 3;
    }
}

.cke_editable ol,
.cke_editable ul,
.backend-editor-body ol,
.backend-editor-body ul,
.editor ol,
.editor ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}
.cke_editable ol > li,
.backend-editor-body ol > li,
.editor ol > li,
.cke_editable ul > li,
.backend-editor-body ul > li,
.editor ul > li {
    list-style-type: unset;
}
.cke_editable ol,
.backend-editor-body ol,
.editor ol {
    list-style: decimal;
}
.cke_editable ol[type="1"],
.backend-editor-body ol[type="1"],
.editor ol[type="1"] {
    list-style: decimal;
}
.cke_editable ol[type="a"],
.backend-editor-body ol[type="a"],
.editor ol[type="a"] {
    list-style: lower-alpha;
}
.cke_editable ol[type="A"],
.backend-editor-body ol[type="A"],
.editor ol[type="A"] {
    list-style: upper-alpha;
}
.cke_editable ol[type="i"],
.backend-editor-body ol[type="i"],
.editor ol[type="i"] {
    list-style: lower-roman;
}
.cke_editable ol[type="I"],
.backend-editor-body ol[type="I"],
.editor ol[type="I"] {
    list-style: upper-roman;
}
.cke_editable ul,
.backend-editor-body ul,
.editor ul {
    list-style-type: disc;
}

.cke_editable .list-unstyled,
.editor .list-unstyled {
    padding-left: 0;
    list-style: none;
}
