/* ============================== 默认样式 ========================== */

.main-box {
  padding-bottom: 100px;
  background-color: #fff;
  min-width: 1920px;
  position: relative;
  font-family: 宋体, 微软雅黑, "Microsoft YaHei";
}
.header-img {
  position: relative;
  z-index: 1;
}
.header-img img {
  width: 100%;
}
.content-box {
  position: relative;
  z-index: 2;
}

/* ============================== 新闻列表区域样式 ========================== */
.news-section {
  width: 1360px;
  margin: 40px auto 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
}

.news-item {
  display: flex;
  height: 150px;
  border-radius: 4px;
  overflow: hidden;
}

.news-item-left {
  flex: 0 0 200px;
}

.news-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.news-item-image {
  width: 100%;
  height: 100%;
  display: block;
}

.news-item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.news-item-title {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.news-item-title a {
  color: #2b2b2b;
  text-decoration: none;
}

.news-item-title a:hover {
  text-decoration: underline;
}

.news-item-content {
  flex: 1;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
}

.news-item-content p {
  margin: 0;
  color: #666666;
  text-indent: 2em;
}

.news-detail-link {
  color: #cc3300;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.news-detail-link:hover {
  text-decoration: underline;
}
/* ============================== 新闻列表区域样式end ========================== */

/* ============================== 默认样式end ========================== */
