/* #region 模块 */
.module {
    margin-top: 40px;
}

.module .content {
    margin-top: 20px;
}

.layout {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.layout>.left {
    overflow: hidden;
    flex: 1;
}

.layout>.right {
    width: 300px;
}

/* #endregion */

/* #region 专题 */
.article {
    margin-top: 0;
}

.article .content {
    margin-top: 10px;
}

.article .nav {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 60px;
}

.article .nav::after,
.article .nav .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
}

.article .nav::after {
    z-index: 1;
    width: 100%;
    content: "";
    background: #eee;
}

.article .nav .underline {
    z-index: 10;
    width: 32px;
    background: #8bbf43;
    transition: all .3s;
}

.article .nav .item,
.article .nav .item a {
    color: #333;
    font-size: 16px;
    line-height: 26px;
    white-space: nowrap;
    transition: none;
    cursor: pointer;
}

.article .nav .item:hover,
.article .nav .item:hover a {
    color: #8bbf43;
}

.article .nav .active,
.article .nav .active a {
    color: #8bbf43;
    font-weight: 700;
}

.article .hide {
    display: none;
}

.article .active {
    display: block;
}

.article .list {
    margin-top: 15px;
}

.article .list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.article .list .img {
    position: relative;
    width: 210px;
    height: 160px;
    border-radius: 8px;
}

.article .list .text {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article .list .text a {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
}

.article .list .text a:hover {
    color: #8bbf43;
}

.article .list .text p {
    margin-top: 16px;
    color: #999;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article .list .tags {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: 30px;
    margin-top: auto;
}

.article .list .tags a {
    box-sizing: border-box;
    height: 24px;
    padding: 0 10px;
    color: #999;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    border: 1px solid #999;
    border-radius: 14px;
}

.article .list .tags a:hover {
    color: #8bbf43;
    border: 1px solid #8bbf43;
}

.article .list .data {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #999;
    font-size: 14px;
}

.article .list .data .views {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: 16px;
}

.article .list .data .views .iconfont {
    font-size: 17px;
}

/* #endregion */