.inner_list {  
    padding: 50px 10px;
}

.zaizhijiaoshi_title {
    font-size: 24px;
    font-weight: bold;
    
    margin-bottom: 40px;
    text-align: center;
}
.news_list {
    
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transition: color 0.3s ease; /* 颜色过渡动画：悬停时0.3秒平滑变色 */
    width: 1440px;
    
    border-radius: 8px;
}
.news {
    display: flex;
    flex-direction: column;
    width: 460px;

    background: #fff; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    align-items: flex-start; /* 居左排列 */
}
.news_imgs {
    width: 460px;
    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;
    margin-left: auto; /* 水平居中 */
    margin-right: auto; /* 水平居中 */
    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%);
}