.news {
    padding: 48px 32px 0
}

.news .title {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 140%;
    margin-bottom: 8px;
    text-align: center
}

.news .subTitle {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    margin-bottom: 40px;
    text-align: center
}

.news .operation {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 48px auto 12px
}

.news .operation .total {
    color: #666;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px
}

.news .operation .total .num {
    color: #252525;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    line-height: 21px;
    margin: 0 4px
}

.news .articleList {
    grid-gap: 24px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(494px, 1fr));
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 24px
}

.news .pagination-options {
    margin-top: 24px;
    padding-bottom: 24px;
}

.news-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px auto 0;
    max-width: 1200px;
    width: 100%
}

.news-details .breadcrumb ul {
    display: flex;
}

.news-details .breadcrumb li>a {
    padding: 0 4px;
    display: block;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
    border-radius: 4px;
    transition: color .2s;
    font-size: 14px;
}

.news-details .breadcrumb li:hover>a {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.88);
}

.news-details .breadcrumb .separator {
    margin: 0 4px;
    color: rgba(0, 0, 0, 0.45);
}

.news-details .container {
    display: flex;
    flex-direction: row;
    gap: 64px;
    width: 100%
}

.news-details .container .article {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px
}

.news-details .container .article .title {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px
}

.news-details .container .article .meta {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    gap: 4px;
    justify-content: start;
    line-height: 20px;
    margin-bottom: 36px;
}

.news-details .container .text-box {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 20px;
}

.news-details .container .text-box img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.news-details .container .navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 48px 0;
    width: 100%
}

.news-details .container .nextBtn,
.news-details .container .prevBtn {
    font-family: RedHatDisplay;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 140%;
    padding: 10px 28px;
    align-items: center;
    border: 1px solid #000;
    cursor: pointer;
    display: flex;
    flex: 1;
    flex-direction: row;
    height: 44px;
    position: relative;
    color: rgba(0, 0, 0, 0.88);
}
.news-details .container .navigation .btnText{
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-details .container .navigation .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.news-details .container .navigation .prevBtn .icon {
    left: 12px;
}

.news-details .container .navigation .nextBtn .icon {
    right: 12px;
}

.news-details .container .related {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 240px
}

.news-details .container .related .related-title {
    font-size: 12px;
    font-weight: 500;
    height: 16px
}
.news-details .container .related .related-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
}
.news-details .container .related .related-list::-webkit-scrollbar {
    display: none;
}
.news-details .container .related .related-list .item{
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    min-width: 240px;
    transition: all .3s ease;
}
.news-details .container .related .related-list .pic{
    aspect-ratio: 240/96;
    height: auto;
}
.news-details .container .related .related-list .pic img{
    display: block;
    width: 100%;
    border-radius: 8px 8px 0 0;
}
.news-details .container .related .related-list .articleItem-title{
     -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #161718;
    display: -webkit-box;
    font-family: RedHatDisplay;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 24px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis
}
@media (max-width: 768px) {
    .news-details .container .related {
        display: none;
    }

    .news-details .container .article .title {
        font-size: 32px;
        line-height: 45px
    }

    .news-details {
        margin-top: 16px;
        padding: 16px;
    }

    .news {
        padding: 48px 16px 0
    }

    .news .title {
        font-size: 32px
    }
    .news .articleList {
        grid-gap: 24px;
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        justify-content: center;
        margin: 0 auto;
        padding-bottom: 24px
    }
}