.news-page {
    min-height: calc(100vh - 440px);
}

.news-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 12px;

}

.news-info {
    color: rgb(var(--text-gray));
    font-size: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.news-info>span:nth-child(1)>span {
    margin-right: 32px;
}

.card {
    margin-bottom: 20px;
}

.tip {
    margin-top: 30px;
    padding: 10px 12px;
    color: rgb(var(--text-gray));
    background-color: rgb(247, 248, 250);
    font-size: 12px;
}


.html-content {
    font-size: 16px;
    line-height: 32px;
    color: rgb(var(--text-black));
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
    overflow: hidden;
}

.html-content>img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.html-content>h1,
.html-content>h2,
.html-content>h3,
.html-content>h4,
.html-content>h5,
.html-content>h6 {
    font-size: 18px;
    font-weight: 400
}

.html-content>p+p {
    margin-top: 20px;
}

.html-content>h1+p,
.html-content>h2+p,
.html-content>h3+p,
.html-content>h4+p,
.html-content>h5+p {
    margin-top: 18px;
}

.html-content>p+h1,
.html-content>p+h2,
.html-content>p+h3,
.html-content>p+h4,
.html-content>p+h5 {
    margin-top: 18px;
}



.card-title {
    font-size: 24px;
    line-height: 33px;
    display: flex;
    align-items: center;
}

.card-title::before {
    content: "";
    display: block;
    width: 6px;
    height: 24px;
    background-color: rgb(var(--shallow-theme));

}

.card-title>span {
    padding-left: 10px;
}

.card-news-list {}

.card-news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgb(var(--border-gray));
}

.card-news-item:last-child {
    border-bottom: none;
}

.card-news-item>div {
    flex: 1;
    min-width: 0;
    margin-right: 40px;
}

.card-news-item img {
    width: 165px;
    height: 124px;
    border-radius: 4px;
    object-fit: cover;
}

.card-news-item .news-title {
    font-size: 20px;
    line-height: 28px;

}

.card-news-item .news-desc {
    margin: 9px 0 20px;
    line-height: 24px;
}

.card-news-item .news-info {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 18px;
    line-height: 25px;
    display: flex;
    align-items: center;
}

.sidebar-title::before {
    content: "";
    display: block;
    width: 4px;
    height: 16px;
    background-color: rgb(var(--shallow-theme));

}

.sidebar-title>span {
    padding-left: 6px;
}

.sidebar-news-item {
    padding-top: 25px;
}

.sidebar-news-item .news-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 22px;
}

.sidebar-news-item .news-info {
    margin-bottom: 0;
}