.container {
  width: 1120px;
  margin: auto;
  padding: 40px 0;
  overflow: hidden;
}

a {
  color: inherit;
}

h2 {
  margin-bottom: 12px;
}

.swiper {
  overflow: visible;
}

.swiper.eyechatchSwiper {
  position: relative;
  overflow: hidden;
}

.news_item {
  position: relative;
}

.news_img_container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(85, 85, 85, 0.1) 20%, rgba(40, 40, 40, 0.1) 80%, rgba(0, 0, 0, 1));
}

.news_img_container {
  filter: brightness(100%);
  transition: 0.5s;
}

.news_img_container:hover {
  filter: brightness(80%);
}

.news_img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.news_detail {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0 0 4%;
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.categories_container {
  display: flex;
  gap: 10px;
}

.news_detail a {
  color: #fff;
}

.categories_container li a {
  padding: 6px 12px;
  background: #009cff;
  display: block;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
}

.news_title {
  font-size: 40px;
  font-weight: 700;
}

.news_desc a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  gap: 8px;
}

.author_avatar {
  width: 24px;
  height: auto;
  display: block;
}

.swiper-button-prev:after,
.swiper-button-prev:before,
.swiper-button-next:after,
.swiper-button-next:before {
  content: "";
}

.swiper-button_container img {
  height: 60%;
}

.eyechatchSwiper .swiper-button_container {
  position: absolute;
  width: 100px;
  bottom: 16%;
  right: 10%;
  z-index: 1;
}

.swiper-button-next,
.swiper-button-prev {
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 36px;
  color: #5e5e5e;
  opacity: 0.7;
  transition: 0.4s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

.qaa {
  display: flex;
  gap: 4%;
}

.manga {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.manga a {
  width: 48%;
}

.reportSwiper {
  position: relative;
}

.reportSwiper .swiper-button_container {
  position: absolute;
  width: 100px;
  right: 0;
  top: -26px;
  z-index: 0;
}

.reportSwiper .swiper-button-next,
.reportSwiper .swiper-button-prev {
  background: #e5e5e5;
}

.report_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.report_img:hover img {
  filter: brightness(0.8);
}

.report_item.swiper-slide {
  border: 1px solid rgb(229, 229, 229);
  display: flex;
  flex-direction: column;
  height: auto;
}

.report_detail {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.report_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.report_desc {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgb(195 195 195);
  align-items: center;
}

.report_desc a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(195, 195, 195);
  font-style: italic;
  transition: 0.2s;
}

.report_desc a:hover {
  color: rgb(17, 17, 17);
}

.report_date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.manga_101 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  row-gap: 14px;
  flex-wrap: wrap;
}

.manga_101 a {
  width: 32%;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .qaa {
    flex-direction: column;
    gap: 20px;
  }

  .qaa a img {
    width: 100%;
  }

  .manga a {
    width: 100%;
  }

  .manga_101 a {
    width: 49%;
  }

  .news_detail {
    width: 60%;
  }

  .news_img img {
    height: 400px;
  }
}

@media screen and (max-width: 580px) {
  .news_img_container::after {
    background-image: none;
  }

  .news_img_container {
    filter: brightness(80%);
  }

  .news_detail {
    width: 90%;
  }

  .news_img img {
    height: 300px;
  }

  .news_title {
    font-size: 28px;
  }

  .manga_101 a {
    width: 100%;
  }
}
