/* #region 基础 */
.main {
    overflow: hidden;
}

.module {
    padding: 0 1rem;
}

/* #endregion */

/* #region 推荐 */
.commend {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 3.5rem;
}

.commend .title {
    color: #808080;
    font-size: .875rem;
}

.commend .scroll {
    overflow: hidden;
    flex: 1;
}

.commend .link {
    overflow-y: auto;
    display: flex;
    gap: .75rem;
}

.commend .link::-webkit-scrollbar {
    height: 0;
}

.commend .link a {
    display: block;
    padding: 0 .75rem;
    height: 1.875rem;
    color: #808080;
    font-size: .875rem;
    line-height: 1.875rem;
    border-radius: 1rem;
    background: #eee;
    white-space: nowrap;
}

.commend .link a:hover,
.commend .link a:active {
    color: #8bbf43;
}

/* #endregion */

/* #region 头版 */
.headline {
    position: relative;
    padding: 0;
    background: var(--background) no-repeat;
    background-position: center center;
    background-size: 100%;
}

.headline .cover {
    box-sizing: border-box;
    height: 5.875rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.headline div {
    color: #fff;
}

.headline .title {
    color: #fff;
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1.25rem;
}

.headline .text {
    margin-top: .5rem;
    color: #fff;
    font-size: .8125rem;
    line-height: 1.125rem;
}

.headline .iconfont {
    position: absolute;
    right: 1rem;
    bottom: .5625rem;
    color: #fff;
}

/* #endregion */

/* #region 文章 */
.tabs-box[article] {
    margin-top: .375rem;
}

.article {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.article .hide {
    display: none;
}

.article .active {
    display: block;
}

.article .list li {
    display: flex;
    gap: .75rem;
}

.article .list li:not(:first-child) {
    margin-top: 1.25rem;
}

.article .list .img {
    width: 6.5rem;
    height: 4.8125rem;
    border-radius: .5rem;
}

.article .list .text {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article .list .text a {
    color: #333;
    font-size: 1rem;
    line-height: 1.5625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article .list .text a:hover,
.article .list .text a:active {
    color: #8bbf43;
}

.article .list .release {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.article .list .release .item {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: #999;
    font-size: .75rem;
    line-height: 1.0625rem;
}

.article .list .release .item .iconfont {
    font-size: .875rem;
    line-height: .875rem;
}

/* #endregion */