.container-news {
    clear: both;
    width: 100%; /* 宽度随浏览器宽度 */
    height: 600px;
    background-image: url(../images/news_bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 2;
}
.inner-news{
    width: 1440px;
    margin: 0 auto;
    position: relative;
    /* 水平居中 */
    color: black;
    /* 所有文字为白色 */
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    /* 字体为微软雅黑 */
}
.wrapper {
    width: 100%;
    position: relative;
}
.main1 {
    width: 100%;
    position: relative;
}
#container-1 {
    width: 100%;
    position: relative;
}
.mod {
    width: 100%;
    position: relative;
}
.post {
    margin-top: 40px;
    position: relative;
    margin-bottom: 20px;
}
.post1 {
    position: relative;
}
.tt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.tit {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.title {
    font-size: 24px;
    font-weight: bold;
    color: #B80000;
}
.more_btn {
    display: inline-block;
}
.w10_more {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}
.more_text {
    color: #B80000;
    font-size: 14px;
}
.news_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transition: color 0.3s ease; /* 颜色过渡动画：悬停时0.3秒平滑变色 */
}
.news {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.news_imgs {
    width: 100%;
    height: 285px;
    overflow: hidden;
}
.news_imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news_imgs:hover img {
    transform: scale(1.3);
}
.news_wz {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news_meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}
.news_title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    max-width: 18em; /* 限制显示18个汉字宽度 */
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news_title a {
    color: #333;
    text-decoration: none;
}
.news_title a:hover {
    color: hsl(0, 100%, 36%);
}
.news_text {
    font-size: 14px;
    color: #666;
    padding-left: 3px;
  
    overflow: hidden; /* 超出部分隐藏 */
    white-space: normal; /* 允许自动换行 */
    word-wrap: break-word; /* 允许单词内换行 */
    text-overflow: ellipsis;
    line-height: 2; /* 设置 1.5 倍行距 */
    text-indent: 2em;
    
}
.news_text a {
    color: #666;
    text-decoration: none;
}
.news_text a:hover {
    color: hsl(0, 100%, 36%);
}