.article-main {
    height: 100vh;
    background: url('https://cdn.xu5g.com/tsp/web/article-bg.png') no-repeat 50% / cover;
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
}
.article-container {
    width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}
.article-item {
    width: 280px;
    height: 245px;
    background-color: hsla(0, 0%, 100%, .6);
    box-shadow: inset 0 1px 2px #fff;
    border-radius: 4px;
    float: left;
    margin-top: 0;
    margin-right: 20px;
    transition: transform .3s ease-out;
    position: relative;
}
.article-item:nth-child(4n) {
    margin-right: 0;
}
.article-item:nth-child(n+5) {
    margin-top: 20px;
}
.article-item:hover {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .05);
    cursor: pointer;
    transform: translateY(-12px);
}
.article-item-img img {
    width: calc(100% - 2px);
    height: 158px;
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 4px;
    object-fit: cover;
}
.article-desc-wrapper {
    position: absolute;
    top: 158px;
    padding: 0 15px;
    box-sizing: border-box;
}
.article-title {
    font: 500 18px / 28px PingFangSC-Medium;
    color: #222;
    margin-top: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: center;
}

/* 分页 */
.globe-pager {
    display: flex;
    justify-content: center;
    padding: 45px 0;
}

.globe-pagers {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 15px;
}

/* 上下分页以及未选中的页码 */
.globe-pagers-a {
    background-color: #ccc;
    color: #fff;
}

.globe-pagers-a:hover {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #2468f2;
}

/* 当前页按钮 */
.globe-pagers-span {
    background-color: #2468f2 !important;
    color: #fff !important;
    pointer-events: none;
}

.globe-pagers-span:hover {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #2468f2;
}

#page a {
    cursor: pointer;
}

@media screen and (min-width: 1544px) {
    .article-container {
        width: 1444px;
        margin: 0 auto;
    }
    .article-item {
        width: 346px;
        height: 280px;
    }
    .article-item-img img {
        height: 194px;
    }
    .article-desc-wrapper {
        top: 194px;
    }

}

@media screen and (max-width: 768px) {
    .article-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .article-item {
        width: 36%;
        height: 210px;
        margin-right: 10px;
    }
    .article-desc-wrapper {
        top: 120px;
        margin-top: 15px;
    }
    .article-item:nth-child(2n) {
        margin-right: 0;
    }
    .article-item:nth-child(n+5) {
        margin-top: 0
    }
    .article-item:nth-child(n) {
        margin-top: 20px
    }
    .article-item-img img {
        height: 120px;
    }
}