/* 文章路由 ---------------------- start */
.article__router {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    margin: 0.2rem 0.32rem 0.28rem;

    font-size: 0.22rem;
    color: #A2A2A2;
    font-weight: 400;
}

.article__routerCurrent {
    flex: 1;
    color: #1479EA;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .article__router {
        /* display: none; */
        font-size: 0.14rem;
        margin: 0.24rem 0.06rem 0.16rem;
    }
}

/* 文章路由 ---------------------- end */




/* 文章内容 ---------------------- start */
.article__contentWarp {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 0.36rem 0.32rem 0.36rem;
}

.article__title {
    font-weight: bold;
    font-size: 0.4rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0.17rem;
}

.article__time {
    font-weight: 400;
    font-size: 0.24rem;
    color: #999999;
    text-align: center;
}

.partLine {
    width: 100%;
    height: 1px;
    background: #E2EEFF;
    margin: 0.3rem 0;
}

/* .article__content {} */

.article__info {
    margin-top: 0.57rem;
    display: flex;
    align-items: center;
    gap: 0.29rem;
}

.article__pre,
.article__next {
    flex: 1;
    display: inline-block;
    padding: 0.16rem 0.17rem;
    background: #FAFAFA;
    border-radius: 0.06rem;

    font-weight: 400;
    font-size: 0.22rem;
    color: #666;

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.article__content p {
    font-size: 16px;
    color: #404040;
    margin-bottom: 10px;
    line-height: 30px;
}

.article__content img {
    margin: 0 auto;
}

/* pc 端样式（>750px 时） */
@media screen and (max-width: 749px) {
    .article__content img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }
}

.article__content h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #1479EA;
    display: flex;
    align-items: center;
}

.article__content h3::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #1479EA;
    margin-right: 8px;
}

.article__content--collapsed {
    max-height: 150vh;
    overflow: hidden;
    position: relative;
}

.article__content--collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.article__contentToggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    width: 100%;
    margin-top: 0.24rem;
    height: 0.8rem;
    border: 0;
    border-radius: 0.08rem;
    background: #f5f8ff;
    color: #1479EA;
    font-size: 0.26rem;
}

.article__contentToggle.is-visible {
    display: flex;
}

.article__contentToggleIcon {
    width: 0.28rem;
    height: 0.28rem;
    line-height: 1;
}

.article__contentToggleSvg {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(0deg);
    transition: transform .2s ease;
}

.article__contentToggle.is-expanded .article__contentToggleSvg {
    transform: rotate(180deg);
}

.article__content a {
    text-decoration: underline !important;
    color: #1479EA;
}


/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .article__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .article__time {
        font-size: 14px;
        text-align: right;
    }

    .partLine {
        margin: 0.14rem 0 0.28rem;
    }

    .article__contentWarp {
        padding: 0.48rem 0.3rem 0.34rem;
        border-radius: 0.08rem;
    }

    .article__info {
        margin-top: 0.64rem;
        gap: 0.32rem;
    }

    .article__pre,
    .article__next {
        padding: 0.12rem 0.18rem;
        font-size: 0.14rem;
    }

    .article__content--collapsed {
        max-height: none;
        overflow: visible;
    }

    .article__content--collapsed::after {
        display: none;
    }

    .article__contentToggle,
    .article__contentToggle.is-visible {
        display: none;
    }
}

/* 文章内容 ---------------------- end */




/* 相关推荐 ---------------------- start */
.article__relatedRead {
    margin-top: 0.19rem;
    background: #fff;
    padding: 0.40rem 0.2rem 0.36rem;
}

.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;
    padding: 0 0.07rem;
    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;
    justify-content: space-between;
    gap: 0.12rem;
}

.articleList__recommendName {
    font-weight: bold;
    font-size: 0.28rem;
    color: #010101;
    cursor: pointer;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articleList__recommendDate {
    font-weight: 400;
    font-size: 0.22rem;
    color: #999999;
}

.articleList__recommendBottom {
    font-weight: 400;
    font-size: 0.24rem;
    color: #666666;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media screen and (min-width: 750px) {
    .article__relatedRead {
        border-radius: 0.08rem;
        margin-top: 0.3rem;
        padding: 0.33rem 0.3rem 0.51rem;
    }

    .verticalBar {
        width: 0.07rem;
        height: 0.2rem;
    }

    .articleList__recommendTitle {
        font-size: 0.2rem;
        margin-left: 0.13rem;
    }

    .articleList__recommendList {
        margin-top: 0.48rem;
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 0.7rem;
    }

    .articleList__recommendItem {
        width: 4.81rem;

        display: flex;
        flex-direction: column;
        gap: 0.08rem;
        padding-bottom: 0.3rem;
        border-bottom: 0.01rem solid #dee2eb;
        margin-bottom: 0.3rem;

    }

    .articleList__recommendItem:nth-last-child(-n+2) {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }


    .articleList__recommendName {
        font-size: 0.18rem;
    }

    .articleList__recommendDate,
    .articleList__recommendBottom {
        font-size: 0.14rem;
    }

}

/* 相关推荐 ---------------------- end */


/* 相关测试 ---------------------- start */
.article__relatedText {
    margin-top: 0.19rem;
    background: #fff;
    padding: 0.40rem 0.2rem 0.36rem;
}

/* 蓝色 */
.color_lan .test__container-bg {
    background-image: url('/styles/images/index/bg-lan.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.color_lan .test__itemText {
    color: #258AFF;
    border-color: #32ABFF;
}

.color_lan .test__itemDesc span {
    color: #258AFF;
}

.color_lan .test__itemBtn-2-text {
    color: #32ABFF;
}

.color_lan .test__itemBtn-2-img {
    background-image: url('/styles/images/index/right-lan.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.color_lan .test__ranking .verticalBar {
    background: #1472FF;
}

.color_lan .test__more {
    background: rgba(2, 104, 239, 0.46);
    border-radius: 0.2rem;
    border: 0.01px solid #FFFFFF;
    color: #FFFFFF;
}

.color_lan .test__more:hover {
    background: rgba(2, 104, 239, 1);
    border-radius: 0.2rem;
    border: 0.01px solid #FFFFFF;
    color: #FFFFFF;
}

/* .test__list {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0.18rem;
    margin-top: 0.33rem;
}

.test__itemWrap {
    width: 3.36rem;
    height: 4.01rem;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 0.08rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.test__itemImg {
    width: 100%;
    height: 1.76rem;
    border-radius: 0.08rem 0.08rem 0rem 0rem;
    overflow: hidden;
}

.test__itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.test__itemInfo {
    flex: 1;
}

.test__itemTitle {
    font-weight: 400;
    font-size: 0.3rem;
    color: #333333;
    text-align: center;
    margin-top: 0.17rem;
    padding: 0 0.24rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.test__itemDesc {
    padding: 0 0.24rem;
    font-weight: 400;
    font-size: 0.22rem;
    color: #999999;
    text-align: center;
    margin-top: 0.08rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.test__itemTextWrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.23rem;
    gap: 0.23rem;
}

.test__itemText {
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 0.22rem;
    color: #A73EFF;
    line-height: 0.09rem;

    width: 2.12rem;
    height: 0.39rem;
    border-radius: 0.1rem;
    border: 1px solid #C366FF;
}

.test__itemBtn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.14rem;
}

.test__itemBtn-2:hover .test__itemBtn-2-img {
    transform: translateX(10px);
}

.test__itemBtn-2-text {
    font-weight: bold;
    font-size: 0.26rem;
    color: #A73EFF;
    line-height: 0.14rem;
}

.test__itemBtn-2-img {
    width: 0.71rem;
    height: 0.23rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
} */


.test__list {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    margin-top: 0.3rem;
}

.test__itemWrap {
    display: flex;
    align-items: center;
    gap: 0.43rem;
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 0.08rem;
    box-shadow: 0px 0px 20px rgba(138, 146, 161, 0.21);
    padding: 0.16rem 0.14rem;
}

.test__itemImg {
    width: 3.06rem;
    height: 1.61rem;
    border-radius: 0.08rem;
    overflow: hidden;
}

.test__itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.test__itemInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.test__itemTitle {
    width: 3rem;
    font-size: 0.3rem;
    font-weight: bold;
    color: #000000;
    margin-top: 0.18rem;
    margin-bottom: 0.2rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.test__itemDesc {
    width: 3rem;
    font-weight: 400;
    font-size: 0.22rem;
    color: #666666;
    margin-bottom: 0.18rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.test__itemTextWrap {
    display: none;
}

.test__itemText {}

.test__itemBtn-2 {}

.test__itemBtn-2:hover .test__itemBtn-2-img {
    transform: translateX(10px);
}

.test__itemBtn-2-text {}

.test__itemBtn-2-img {}

.recommend__itemFooter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.recommend__itemLabel--mobile {
    background: #FFF1E4;
    border-radius: 0.1rem;
    padding: 0.08rem 0.18rem;
    width: fit-content;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FF8E2A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend__itemBtn-2 {
    width: 1.85rem;
    height: 0.61rem;
    background: linear-gradient(90deg, #2DBFFF, #2486FF);
    border-radius: 0.3rem;
    border: 0.04px solid #E2F1FF;
    font-weight: bold;
    font-size: 0.3rem;
    color: #FFFFFF;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .article__relatedText {
        border-radius: 0.08rem;
        margin-top: 0;
        padding: 0.3rem 0.2rem;
    }

    /* .test__list {
        margin-top: 0.3rem;
        gap: 0.2rem;
    }

    .article__wrap .test__list {
        row-gap: 0.27rem;
    }


    .test__itemWrap {
        width: 3.6rem;
        height: 3.28rem;
        box-shadow: none;
        border-radius: 0;
        border-bottom: 2px solid #F5F5F5;
    }

    .test__itemImg {
        height: 1.9rem;
    }

    .test__itemTitle {
        font-weight: 400;
        font-size: 0.18rem;
        color: #333333;
        padding: 0;
        text-align: left;

        margin-top: 0.24rem;
    }

    .test__itemDesc {
        padding: 0;
        font-weight: 400;
        font-size: 0.14rem;
        color: #999999;
        text-align: left;
    }

    .test__itemTextWrap {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 0.2rem;
        gap: 0.19rem;
    }

    .test__itemText {
        width: 1.18rem;
        height: 0.23rem;
        border-radius: 0.1rem;
        border: 0.01px solid #C366FF;
        font-weight: 400;
        font-size: 0.12rem;
        color: #A73EFF;
    }

    .test__itemBtn-2-text {
        font-weight: bold;
        font-size: 0.18rem;
        color: #A73EFF;
    }

    .test__itemBtn-2-img {
        width: 0.46rem;
        height: 0.16rem;
    }

    .test__itemBtn-2 {
        margin-left: 0.2rem;
    } */

    /* --------------------------- end */


    .test__list {
        margin-top: 0.3rem;
        gap: 0;
    }

    .test__itemWrap {
        flex-direction: column;
        align-items: normal;
        gap: 0;
        border-radius: 0.08rem;
        padding: 0;
        box-shadow: none;

        border-bottom: 2px solid #F5F5F5;
        padding-bottom: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .test__itemWrap:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .recommend__itemFooter {
        display: none;
    }

    .test__itemImg {
        width: 100%;
        height: 1.7rem;
        border-radius: 0.08rem 0.08rem 0 0;
    }


    .test__itemTitle {
        font-weight: 400;
        font-size: 0.18rem;
        color: #333333;
        padding: 0;
        text-align: left;

        margin-top: 0.22rem;
        margin-bottom: 0.12rem;
    }

    .test__itemDesc {
        padding: 0;
        font-weight: 400;
        font-size: 0.14rem;
        color: #999999;
        text-align: left;
        margin-bottom: 0;
    }

    .test__itemTextWrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-top: 0.2rem;
        gap: 0.19rem;
    }

    .test__itemText {
        padding: 0.05rem 0.15rem;
        background: rgba(255, 241, 228, 0);
        border-radius: 0.1rem;
        border: 0.01px solid #1472FF;

        font-weight: 400;
        font-size: 0.12rem;
        color: #1472FF;

    }

    .test__itemBtn-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.14rem;
        margin-left: 0.4rem;
    }

    .test__itemBtn-2:hover .test__itemBtn-2-img {
        transform: translateX(10px);
    }


    .test__itemBtn-2-text {
        font-weight: bold;
        font-size: 0.18rem;
        color: #A73EFF;
        line-height: 0.14rem;
    }

    .test__itemBtn-2-img {
        width: 0.46rem;
        height: 0.16rem;
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

}

/* 相关测试 ---------------------- end */



/* 相关文章 ---------------------- start */
.article__relatedArticle {
    margin-top: 0.2rem;
    background: #fff;
    padding: 0.40rem 0.2rem 0.36rem;
}

.allTest__list {
    width: 100%;
    margin-top: 0.61rem;
    display: flex;
    flex-direction: column;
}

.allTest__item {
    display: flex;
    align-items: center;
    padding-left: 0.19rem;
    padding-right: 0.3rem;
    padding-bottom: 0.29rem;
    margin-bottom: 0.29rem;
    border-bottom: 0.02rem solid #dee2eb;
}

.allTest__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.allTest__itemIcon {
    width: 0.15rem;
    height: 0.2rem;
}

.allTest__itemName {
    margin-left: 0.15rem;
    font-weight: 400;
    font-size: 0.28rem;
    color: #010101;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .article__relatedArticle {
        margin-top: 0.28rem;
        padding: 0.3rem 0.23rem;
    }

    .allTest__list {
        margin-top: 0.3rem;
    }

    .allTest__item {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0.2rem;
        margin-bottom: 0.2rem;
        border-bottom: 0.02rem solid #dee2eb;
    }

    .allTest__itemIcon {
        width: 0.05rem;
        height: 0.1rem;
    }

    .allTest__itemName {
        margin-left: 0.15rem;
        font-weight: 400;
        font-size: 0.16rem;
    }

}

/* 相关文章 ---------------------- end */



/* page style  --------------  start */
.zixun__page {
    display: flex;
    flex-direction: column;
}

.zixun__left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.zixun__right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.more__btn {
    background: rgba(0, 0, 0, 0);
    border-radius: 0.4rem;
    border: 0.01px solid #A6A6A6;

    font-weight: 400;
    font-size: 0.2rem;
    color: #6E747E;

    margin-left: auto;
    padding: 0.05rem 0.18rem;
}

.more__btn:hover {
    border-color: #006DFD;
    color: #006DFD;
}

/* pc 端样式（>750px 时） */
@media screen and (min-width: 750px) {
    .zixun__page {
        flex-direction: row;
        justify-content: space-between;
        /* padding-top: 0.32rem; */
    }

    .zixun__left {
        width: 11rem;
        padding: 0;
        flex-direction: column;
    }


    .zixun__right {
        width: 3.6rem;
    }


    .more__btn {
        font-size: 0.12rem;
    }

}

/* page style  --------------  end */