.pageNewsDetail {
  padding-top: 80px;
  background-color: var(--color-light);
  padding-bottom: 100px;
}
.pageNewsDetail .newsBanner {
  padding-top: 60px;
}
.pageNewsDetail .newsBanner .p-left-section {
  display: flex;
  gap: 52px;
}
.pageNewsDetail .newsBanner .--left {
  flex: 0 0 36%;
}
.pageNewsDetail .newsBanner .--left .title {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-black);
}
.pageNewsDetail .newsBanner .--left .date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.pageNewsDetail .newsBanner .--left .date .name {
  color: var(--color-black);
  position: relative;
}
.pageNewsDetail .newsBanner .--left .date .name::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--color-black);
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.pageNewsDetail .newsBanner .--left .date .time {
  color: var(--color-black);
}
.pageNewsDetail .newsBanner .--left .desc {
  text-align: justify;
  line-height: 1.71;
}
.pageNewsDetail .newsBanner .--right {
  flex: 1;
}
.pageNewsDetail .newsBanner .--right .--img {
  aspect-ratio: 805/480;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
.pageNewsDetail .newsContent {
  padding-top: 62px;
  padding-bottom: 80px;
}
.pageNewsDetail .newsContent .container_frame {
  position: relative;
}
.pageNewsDetail .newsContent article {
  margin: 0 auto;
  position: relative;
  padding: 0 170px 36px 170px;
  text-align: justify;
}
.pageNewsDetail .newsContent article::before {
  content: "";
  width: 140px;
  height: 4px;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
}
.pageNewsDetail .newsContent .list_widget {
  border-top: 1px solid rgb(230, 230, 230);
  display: flex;
  align-items: center;
  height: 72px;
  margin: 0 170px;
  justify-content: space-between;
}
.pageNewsDetail .newsContent .list_widget .btn_back {
  border: none;
  color: var(--color-black);
  height: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--color-white);
  border-radius: 100px;
  padding: 0 12px;
  width: 100px;
  justify-content: center;
}
.pageNewsDetail .newsContent .list_widget .btn_back:hover {
  color: var(--color-secondary);
}
.pageNewsDetail .newsContent .list_widget .--right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.pageNewsDetail .newsContent .list_widget .list_social {
  display: flex;
  gap: 8px;
}
.pageNewsDetail .newsContent .list_widget .list_social .item_social {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 0.84px solid rgb(235, 235, 235);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.pageNewsDetail .newsContent .list_widget .list_social .item_social i {
  color: rgb(90, 176, 238);
}
.pageNewsDetail .newsRelate .--top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.pageNewsDetail .newsRelate .--top .title_news {
  font-weight: 500;
  font-family: var(--font-alegreya);
  color: var(--color-primary);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1.12px;
}
.pageNewsDetail .newsRelate .--top .view_all {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pageNewsDetail .newsRelate .--top .view_all:hover {
  color: var(--color-secondary);
}
.pageNewsDetail .newsRelate .list_news_relate .slick-track {
  display: flex;
}
.pageNewsDetail .newsRelate .list_news_relate .--item {
  padding: 12px;
  background: var(--color-white);
  border-radius: 20px;
  margin: 0 6px;
  height: auto;
}
.pageNewsDetail .newsRelate .list_news_relate .--item .--img {
  aspect-ratio: 390/216;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pageNewsDetail .newsRelate .list_news_relate .--item .content_relate .date_time {
  color: var(--color-black);
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 4px;
  opacity: 0.6;
}
.pageNewsDetail .newsRelate .list_news_relate .--item .content_relate .date_time span {
  font-weight: 700;
}
.pageNewsDetail .newsRelate .list_news_relate .--item .content_relate .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pageNewsDetail .newsRelate .arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pageNewsDetail .newsRelate .arrow .--arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pageNewsDetail .newsRelate .arrow .--arrow:hover {
  transform: scale(0.9);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .pageNewsDetail {
    padding-bottom: 40px;
  }
  .pageNewsDetail .p-left-section {
    flex-flow: column;
    gap: 24px !important;
  }
  .pageNewsDetail .p-left-section .--left {
    flex: unset;
  }
  .pageNewsDetail .p-left-section .--left .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .pageNewsDetail .p-left-section .--left .date {
    margin-bottom: 12px;
  }
  .pageNewsDetail .p-left-section .--right .--img {
    border-radius: 16px;
  }
  .pageNewsDetail .newsBanner {
    padding-top: 40px;
  }
  .pageNewsDetail .newsContent {
    padding: 40px 0;
  }
  .pageNewsDetail .newsContent article {
    padding: 0;
  }
  .pageNewsDetail .newsContent article::before {
    display: none;
  }
  .pageNewsDetail .newsContent .list_widget {
    margin: 0;
  }
  .pageNewsDetail .newsRelate .arrow {
    width: 100%;
  }
  .pageNewsDetail .newsRelate .arrow .--arrow {
    width: 36px;
    height: 36px;
    background: var(--color-white);
  }
  .pageNewsDetail .newsRelate .arrow .--arrow svg {
    width: 16px;
    height: 16px;
  }
  .pageNewsDetail .newsRelate .--top .title_news {
    font-size: 32px;
  }
  .pageNewsDetail .newsRelate .--top .view_all i {
    display: none;
  }
}

.header {
  background: var(--color-light);
}
.header .content_header .right_header .menu_header li a {
  color: var(--color-body);
}
.header .content_header .right_header .menu_header li.active a {
  font-weight: 700;
  color: var(--color-body);
}
.header .content_header .right_header .list_widget_header .list_social {
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}
.header .content_header .right_header .list_widget_header .list_social a {
  color: var(--color-body) !important;
}
.header .content_header .right_header .list_widget_header .list_social i {
  color: var(--color-body) !important;
}
.header .content_header .right_header .list_widget_header .search_header {
  background: rgba(0, 0, 0, 0.1);
}
.header .content_header .right_header .list_widget_header .search_header i {
  color: var(--color-body) !important;
}/*# sourceMappingURL=new_detail.css.map */