.news {
  background-color: #FDFDFD;
}

.news-header {
  width: 100%;
  height: 421px;
  position: relative;
}

.news-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  object-fit: cover;
}

.news-title {
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-title__text {
  color: #FFF;
  font-family: "Smiley Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.news-title__sub-text {
  color: #FFF;
  font-family: "DIN-RegularItalic";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3px;
}

.news-list {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 84px;
}

.news-item {
  width: 100%;
  height: 70px;
  margin-bottom: 36px;
  padding-top: 9px;
  border-bottom: 1px solid #D7D9E2;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.news-item__name {
  flex: 1;
  color: #000;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.76px;
  cursor: pointer;
}

.news-item__name:hover {
  color: #EA1980;
}

.news-item__date {
  display: flex;
}

.news-item__date-day {
  color: #989898;
  font-family: "DINCond-Bold";
  font-size: 29.885px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 3.287px;
  margin-right: 6px;
}

.news-item__date-year {
  width: 21px;
  color: #989898;
  font-family: "DINCond-Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 1.578px;
  word-break: break-all;
}

.news-pages {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 80px;
}

.news-pages__prev {
  width: 30px;
  height: 30px;
  display: flex;
  margin-right: 16px;
  cursor: pointer;
}

.news-pages__prev-icon {
  width: 100%;
  height: 100%;
}

.news-pages__prev-icon-actived {
  width: 100%;
  height: 100%;
  display: none;
}

.news-pages__prev:hover .news-pages__prev-icon {
  display: none;
}

.news-pages__prev:hover .news-pages__prev-icon-actived {
  display: block;
}

.news-pages__next {
  width: 30px;
  height: 30px;
  display: flex;
  margin-left: 16px;
  cursor: pointer;
}

.news-pages__next-icon {
  width: 100%;
  height: 100%;
}

.news-pages__next-icon-actived {
  width: 100%;
  height: 100%;
  display: none;
}

.news-pages__next:hover .news-pages__next-icon {
  display: none;
}

.news-pages__next:hover .news-pages__next-icon-actived {
  display: block;
}

.news-pages__item {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(214, 214, 214, 1);
  border-radius: 50%;
  color: #A0A0A0;
  font-family: "Source Han Sans CN";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-pages__item:hover,
.news-pages__item.actived {
  background-color: rgba(234, 25, 128, 1);
  border-color: rgba(234, 25, 128, 1);
  color: #fff;
}

.news-pages__item+.news-pages__item {
  margin-left: 15px;
}