/* 文章列表头部 ------ start */
.articleList__headerItemText__pcShow {
    display: none;
}

.articleList__headerItemText__mobileShow {
    display: block;
}

.articleList__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0.38rem;
}

.articleList__headerItem {
    display: flex;
}

.icon__imgWarp {
    display: none;
}

.articleList__headerItemText {
    font-weight: 400;
    font-size: 0.28rem;
    color: #666666;
}

.articleList__headerItem--active .articleList__headerItemText {
    color: #1479EA;
}

@media screen and (min-width: 750px) {
    .articleList__headerItemText__pcShow {
        display: block;
    }

    .articleList__headerItemText__mobileShow {
        display: none;
    }

    .articleList__header {
        padding: 0.3rem 0.35rem;
        border-radius: 0.08rem;
    }

    .articleList__headerItem {
        display: flex;
        align-items: center;
        gap: 0.04rem;
        cursor: pointer;
        position: relative;
    }

    .icon__imgWarp {
        display: block;
        position: relative;
        width: 0.28rem;
        height: 0.28rem;
    }

    .articleList__headerItemIcon--noHover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .articleList__headerItemIcon--hover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }


    .articleList__headerItem:hover .articleList__headerItemIcon--noHover,
    .articleList__headerItem--active .articleList__headerItemIcon--noHover {
        opacity: 0;
    }


    .articleList__headerItem:hover .articleList__headerItemIcon--hover,
    .articleList__headerItem--active .articleList__headerItemIcon--hover {
        opacity: 1;
    }

    .articleList__headerItem:hover .articleList__headerItemText,
    .articleList__headerItem--active .articleList__headerItemText {
        color: #1479EA;
    }

    .articleList__headerItemIcon {
        width: 0.28rem;
        height: 0.28rem;
    }

    .articleList__headerItemText {
        font-size: 0.2rem;
        transition: color 0.4s ease;
    }
}

/* 文章列表头部 ------ end */



/* 文章路由 ---------- start */
.article__router {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    margin: 0.24rem 0.32rem;

    font-size: 0.22rem;
    color: #A2A2A2;
    font-weight: 400;
}

.article__routerCurrent {
    color: #1479EA;
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .article__router {
        /* display: none; */
        font-size: 0.14rem;
        margin: 0.2rem 0.06rem 0;
    }
}

/* 文章路由 ---------- end */



/* 文章列表 ---------- start */
.articleList__container {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0 0.2rem;
}

.article__itemWarp {
    display: flex;
    flex-direction: column;

    width: 100%;
    background: #fff;
    box-shadow: 0rem 0rem 10px rgba(138, 146, 161, 0.2);
    border-radius: 0.08rem;

    padding: 0.33rem 0.38rem 0.24rem;
}

.article__itemTitleWarp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.14rem;
}

.article__itemTitle {
    font-weight: bold;
    font-size: 0.32rem;
    color: #000000;
}

.article__itemTitle--time {
    display: none;
}

.article__itemDescWarp-1 {
    display: flex;
    align-items: center;
    gap: 0.23rem;
    margin-bottom: 0.25rem;
}

.article__questionNumber {
    padding: 0.08rem 0.14rem;
    background: #EAF4FF;
    border-radius: 0.1rem;

    font-weight: 400;
    font-size: 0.22rem;
    color: #258AFF;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 2rem;
}

.article__questionNumber:nth-child(n+3) {
    display: none;
}

.article__viewNumber {
    font-weight: 400;
    font-size: 0.22rem;
    color: #AAAAAA;
}

.article__viewNumber--count {
    color: #FF3F32;
}

.article__itemDesc {
    font-weight: 400;
    font-size: 0.22rem;
    line-height: 0.32rem;
    color: #666666;
    margin-bottom: 0.29rem;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article__itemDescWarp-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article__itemDescWarp-2 .left-info {
    display: flex;
    gap: 0.12rem;
}

.article__itemText--time {
    font-weight: 400;
    font-size: 0.2rem;
    color: #999999;
}

.article__itemDescWarp-2 .right-btn {
    display: none;
}

.article__itemText--start {
    font-weight: bold;
    font-size: 0.24rem;
    color: #32ABFF;
    margin-right: 0.16rem;
}

.test__itemBtn-2-img {
    width: 0.71rem;
    height: 0.23rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    background-image: url('/styles/images/index/right-lan.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.article__itemWarp .right-btn:hover .test__itemBtn-2-img {
    transform: translateX(10px);
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .articleList__container {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;

        margin-top: 0.2rem;
        padding: 0;
    }

    .article__itemWarp {
        padding: 0.24rem 0.3rem 0.23rem;
    }

    .article__itemTitleWarp {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .article__itemTitle {
        font-size: 0.2rem;
    }

    .article__itemTitle--time {
        display: block;
        font-weight: 400;
        font-size: 0.14rem;
        color: #999999;
    }

    .article__itemDescWarp-1 {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        padding-bottom: 0.14rem;
        margin-bottom: 0.13rem;
        border-bottom: 1px solid #E2EEFF;
    }

    .article__questionNumber:nth-child(n+3) {
        display: flex;
    }

    .article__questionNumber {
        max-width: fit-content;
        padding: 0.04rem 0.12rem;

        font-size: 0.14rem;
    }

    .article__viewNumber {
        font-size: 0.14rem;
    }

    .article__itemDesc {
        font-size: 0.14rem;
        margin-bottom: 0;
        line-height: 0.24rem;
    }

    .article__itemDescWarp-2 {
        display: none;
    }

    .article__itemDescWarp-2 .left-info {
        display: none;
    }

    .article__itemDescWarp-2 .right-btn {
        margin-left: auto;
    }

    .article__itemText--start {
        font-size: 0.18rem;
        margin-right: 0.13rem;
    }

    .test__itemBtn-2-img {
        width: 0.46rem;
        height: 0.16rem;
    }
}


/* 文章列表 ---------- end */


/* 分页 ---------- start */
.articleList__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    flex-wrap: wrap;
    margin: 0.4rem 0.2rem 0;
}

.articleList__pageBtn,
.articleList__pageDots {
    width: 0.64rem;
    height: 0.64rem;
    border-radius: 0.08rem;
    background: #fff;

    font-weight: bold;
    font-size: 0.24rem;
    color: #666666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease, color 0.3s ease;

}

.articleList__pageBtn--active {
    color: #FFFFFF;
    background: #1479EA;
}

.articleList__pageBtn:hover,
.articleList__pageDots:hover {
    color: #FFFFFF;
    background: #1479EA;
}

@media screen and (min-width: 750px) {
    .articleList__pagination {
        gap: 0.1rem;
        margin: 0.31rem 0 0;
    }

    .articleList__pageBtn,
    .articleList__pageDots {
        width: 0.4rem;
        height: 0.4rem;
        border-radius: 0.04rem;
        font-size: 0.14rem;
    }

}

/* 分页 ---------- end */


/* 热门推荐 ------------  start */
.articleList__recommend {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.2rem;
    margin-top: 0.3rem;
    height: fit-content;
    background: #fff;
}

.verticalBar {
    width: 0.09rem;
    height: 0.37rem;
    background: #006DFD;
    border-radius: 0.04rem;
}

.articleList__recommendTitle {
    font-weight: bold;
    font-size: 0.36rem;
    color: #0F1829;
    margin-left: 0.12rem;
}

.articleList__recommendList {
    margin-top: 0.56rem;
    display: flex;
    flex-direction: column;
}

.articleList__recommendItem {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    padding-bottom: 0.2rem;
    border-bottom: 0.01rem solid #dee2eb;
    margin-bottom: 0.2rem;

}

.articleList__recommendItem:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.articleList__recommendTop {
    display: flex;
    align-items: center;
}

.articleList__itemIcon {
    width: 0.15rem;
    height: 0.2rem;
}

.articleList__recommendName {
    margin-left: 0.17rem;
    font-weight: bold;
    font-size: 0.28rem;
    color: #010101;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articleList__recommendBottom {
    font-weight: 400;
    font-size: 0.22rem;
    color: #858585;
    margin-left: 0.3rem;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .articleList__recommend {
        margin-top: 0;
        padding: 0.3rem 0.23rem;
        background: #fff;
        border-radius: 0.08rem;
    }

    .verticalBar {
        width: 0.07rem;
        height: 0.2rem;
    }

    .articleList__recommendTitle {
        font-size: 0.2rem;
        margin-left: 0.13rem;
    }

    .articleList__recommendList {
        margin-top: 0.37rem;
    }

    .articleList__recommendItem {
        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 0.08rem;
        padding-bottom: 0.2rem;
        border-bottom: 0.01rem solid #dee2eb;
        margin-bottom: 0.2rem;

    }

    .articleList__itemIcon {
        width: 0.08rem;
        height: 0.1rem;
    }

    .articleList__recommendName {
        margin-left: 0.13rem;
        font-size: 0.16rem;
    }

    .articleList__recommendBottom {
        font-size: 0.14rem;
        margin-left: 0.2rem;
    }
}

/* 热门推荐 ------------  end */




/* page style  --------------  start */
.articleList__page {
    display: flex;
    flex-direction: column;
    /* padding-top: 0.32rem; */
}

.articleList__left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .articleList__page {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 0.32rem;
    }

    .articleList__left {
        width: 11rem;
        padding: 0;
        flex-direction: column;
    }


    .articleList__recommend {
        width: 3.6rem;
    }
}

/* page style  --------------  end */