.banner {
    position: relative;
    display: flex;
}
.banner .content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #fff;
    text-align: center;
}
.banner .content .title {
    font-size: .34rem;
    font-weight: bold;
    margin-bottom: .28rem;
}
.banner .content .desc {
    font-size: .24rem;
}

.article {
    --article_pd: 280px;
    padding: .5rem calc(var(--theme-pd) + var(--article_pd)) .85rem;
    background-color: #fff;
}
.article .title {
    font-size: .28rem;
    /* text-align: center; */
}
.article .box {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: .48rem 0 .6rem;
    display: flex;
    flex-direction: column;
    /* gap: .74rem; */
    margin: .53rem 0 .45rem;
}
.article .detail_title {
    font-size: 20px;
    font-weight: 700;
    margin-top: .3rem;
    margin-bottom: 10px;
    line-height: 1.4;
    background-image: url(/images/articleDetail/h1.svg);
    background-repeat: no-repeat;
    padding-left: 25px;
    background-position: 0 center;
}
.article p {
    font-size: 14px;
    line-height: .40rem;
    margin-bottom: 18px;
}
.article ul {
    padding-left: 26px;
    font-size: 14px;
}
.article ul li {
    list-style: disc;
}
.article ul li p {
    margin-bottom: 10px;
}
.article .learn_more {
    border-color: #737373;
    cursor: pointer;
}



@media only screen and (max-width: 1900px) {
    .article {
        --article_pd: 180px;
    }
}

@media only screen and (max-width: 1535px) {
    .article {
        --article_pd: 120px;
    }
    .article .title {
        font-size: .4rem;
    }
}
@media only screen and (max-width: 1440px) {
    .article .title {
        font-size: 20px;
    }
    .article {
        --article_pd: 80px;
    }
}
@media only screen and (max-width: 1279px) {
    .banner .content .title {
        font-size: 25px;
    }
    .banner .content .desc {
        font-size: 18px;
    }
}
@media only screen and (max-width: 1023px) {
    .banner .content .title {
        font-size: 20px;
    }
    .banner .content .desc {
        font-size: 16px;
    }
    .article .title {
        font-size: 18px;
    }
    .article p {
        line-height: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .article {
        --article_pd: 0px;
    }
}
@media only screen and (max-width: 425px) {
    .article .detail_title {
        font-size: 16px;
        background-position-y: 4px;
    }
    .banner .content {
        display: none;
    }
}
