.banner {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.banner .swiper-slide {
    width: 100%;
    height: 100%;
}
.banner .swiper-slide a{
    width: 100%;
    height: 100%;
}
.banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article{
    margin-top: 20px;
}
.article:first-child{
    margin-top: 85px;
}
.article:not(:first-child){
    margin-top: 94px;
}
.article-header{
    padding-bottom: 18px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.article-header:after{
    content: " ";
    width: 36.5px;
    height: 2px;
    background: var(--brand-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.article-title{
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 42.19px;
    color: rgba(0, 0, 0, 1);
}
.article-more{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 21.1px;
    color: var(--brand-color);
}
.article-more:hover,.article-more:focus,.article-more:active{
    color: var(--brand-color);
}
.article-list{
    width: 100%;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    padding-top: 11px;
    box-sizing: border-box;
}
.article-list-one{
    margin-top: 33px;
    width: 340px;
    display: inline-block;
    background-color: white;
    /*margin-right: 26px;*/
}
.article-list-one img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.article-list-one-info{
    padding: 17px 12px 22px 12px;
    box-sizing: border-box;
}
.article-list-one-title{
    font-size: 18px;
    font-weight: 400;
    line-height: 21.1px;
    color: rgba(0, 0, 0, 1);
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}
.article-list-one-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(128, 128, 128, 1);
}
.page{
    padding-bottom: 516px;
}