/* 背景 */
.background-box {
    width: 100%;
    height: 5rem;
    background-image: url(../assets/images/sjkth_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* 内容 */
.container-box {
    width: var(--container_width);
    height: 100%;
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.news_list {
    width: 100%;
    background-color: var(--main_body_color);
}
.news-list-content {
    padding: 0.2rem 1rem;
}

.link-box {
    padding: 0.2rem;
}

.news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #CCCCCC;
}

.news-head-left-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.news-head-left-content-icon {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0 0.1rem;
}

.news-head-left-content-title {
    font-size: 0.18rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    color: #ffffff;
    font-weight: bold;
}

.news-head-left-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
    border-bottom: solid 2px var(--news_title_hover_color);
}

.news-head-left-content-title-text {
    color: var(--news_title_hover_color);
    font-size: 0.24rem;
    font-family: 等线;
    font-weight: bold;
}

.link-list-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
}

.link-text {
    color: var(--news_title_color);
    text-decoration: none;
    font-size: 0.16rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 0.2rem;
    padding: 0 0.1rem;
}

.link-text:first-child {
    padding-left: 0;
}

.link-text:last-child {
    padding-right: 0;
}


/* 文章 */
.news_details-top {
    /* width: 65%; */
    margin: 0 auto;
    border-bottom: 1px dashed #CCCCCC;
}

.news_details-title {
    font-size: 0.24rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    color: var(--news_title_color);
    font-weight: bold;
    padding: 0.2rem 0;
    text-align: center;
}

.news_details-date {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.1rem 0;
}

.news_details-text {
    font-size: 0.14rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    text-align: center;
    color: #505050;
    margin: 0 0.1rem;
}

.news_details-content {
    /* width: 65%; */
    margin: 0 auto;
    font-size: 0.18rem;
    padding: 0.4rem 0;
    font-family: "sou_regular" !important;
    border-bottom: 1px dashed #CCCCCC;
}

.news_details-next {
    /* width: 65%; */
    margin: 0 auto;
    font-size: 0.16rem;
    padding: 0.3rem 0;
}

.news_details-next>p {
    margin-bottom: 0.1rem;
}

.news_details-next>p>span {
    font-weight: bold;
    font-size: 0.18rem;
}

.news_details-next>p>a {
    text-decoration: none;
    color: #0A5DC3;
    font-size: 0.18rem;
}

.news_details-content img {
    max-width: 100%;
    vertical-align: middle;
    height: auto !important;
    margin: 0.3rem auto;
    border: 0;
}

.news_details-content span {
    font-size: 0.18rem;
    font-family: "Microsoft YaHei", 微软雅黑;
}