:root {
  --RWDWidth: 1024px;
}

.newsList .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 12px;
  margin-bottom: 30px;
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 1330px) {
  .newsList .listBox {
    max-width: 1062px;
  }
}
.newsList .listBox .item {
  width: calc((100% - 15px * (3 - 1)) / 3);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .newsList .listBox .item {
    width: calc((100% - 15px * (2 - 1)) / 2);
  }
}
@media screen and (max-width: 550px) {
  .newsList .listBox .item {
    width: calc((100% - 15px * (1 - 1)) / 1);
  }
}
.newsList .listBox .tag {
  display: block;
  width: 60px;
  height: 30px;
  background: #b42222;
  color: white;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.newsList .listBox .infoBox {
  padding: 30px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.newsList .listBox .title {
  font-size: 20px;
  line-height: 24px;
  height: 48px;
  color: black;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsList .listBox p {
  font-size: 16px;
  line-height: 22px;
  height: 44px;
  color: black;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.newsDetail .editor {
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 1330px) {
  .newsDetail .editor {
    max-width: 1062px;
  }
}/*# sourceMappingURL=news.css.map */