/* news.css */
.news-section {
    background-color: black; /* 新闻专线背景颜色改为黑色 */
    color: white; /* 文字颜色 */
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.news-title {
    font-size: 60px;
    margin-left: -10px; /* 距离左侧页边的距离 */
}

/* CSS (news.css) */
.news-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}


.news-box {
    width: 400px; /* 固定宽度 */
    height: 600px; /* 固定高度 */
    box-sizing: border-box; /* 包括边框和内边距在内的盒子尺寸 */
    background-color: black;
    border: 0.1px solid white;
    border-radius: 10px;
    padding: 10px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.news-box img {
    width: 100%;
    height: 75%; /* 图片占盒子高度的75% */
    border-radius: 10px 10px 0 0;
}

.news-small-title {
    font-size: 16px;
    margin: 10px 0;
}

.news-date {
    font-size: 14px;
    color: #999;
}

.news-big-title a {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
}

.button-container {
    text-align: center;
    margin-top: 20px; /* 调整按钮与上方内容的间距 */
  }
  
  .more-button {
    display: inline-block;
    padding: 10px 20px; /* 调整按钮的内边距 */
    background-color: black;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    transition: background-color 0.3s, color 0.3s;
    font-size: 30px;
    font-family: 黑体;
  }
  
  .more-button:hover {
    background-color: rgb(53, 242, 255);
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-family: 黑体;
  }
  
