:root {
  --font-pri: "Be Vietnam Pro", sans-serif;
  --pi-8: 0.8rem;
  --pi-10: 1rem;
  --pi-12: 1.2rem;
  --pi-14: 1.4rem;
  --pi-16: 1.6rem;
  --pi-18: 1.8rem;
  --pi-20: 2rem;
  --pi-24: 2.4rem;
  --pi-32: 3.2rem;
  --pi-40: 4rem;
}
@media screen and (max-width: 1200px) {
  :root {
    --pi-12: 0.8rem;
    --pi-14: 0.8rem;
    --pi-16: 0.8rem;
    --pi-18: 0.8rem;
    --pi-20: 0.8rem;
    --pi-24: 1.2rem;
    --pi-32: 1.6rem;
    --pi-40: 2rem;
  }
}
:root {
  --h-header: 12rem;
  --h-fixed-header: 4rem;
  --h-hidden-header: 12rem;
  --z-i-header: 100;
  --radius-circle: 50%;
  --radius-max: 999rem;
  --radius-xl: 2.4rem;
  --radius-l: 1.6rem;
  --radius: 1.2rem;
  --radius-m: 0.8rem;
  --radius-s: 0.4rem;
  --box-shadow-1: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.1);
  --box-shadow-2: -1.6rem 0 2.4rem 0 rgba(0, 0, 0, 0.1);
  --box-shadow-3: 0 4rem 4rem 0 rgba(0, 0, 0, 0.05);
  --filter-white: brightness(0) invert(1);
  --filter-black: brightness(0) invert(0);
  --filter-pri: brightness(0) saturate(100%) invert(55%) sepia(83%)
    saturate(947%) hue-rotate(165deg) brightness(91%) contrast(91%);
  --filter-sec: brightness(0) saturate(100%) invert(66%) sepia(41%)
    saturate(1899%) hue-rotate(337deg) brightness(100%) contrast(101%);
  --filter-gray: brightness(0) saturate(100%) invert(68%) sepia(12%)
    saturate(17%) hue-rotate(357deg) brightness(90%) contrast(79%);
}

ul.page-numbers {
  gap: 0.6rem;
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
ul.page-numbers li {
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--radius-max);
}
ul.page-numbers li:has(.current) {
  background-color: #ff912e;
}
ul.page-numbers li:has(.current) a,
ul.page-numbers li:has(.current) span {
  color: white;
}
@media screen and (min-width: 1201px) {
  ul.page-numbers li:not(:has(.disable)):hover {
    background-color: #ff912e;
  }
  ul.page-numbers li:not(:has(.disable)):hover a {
    color: white;
  }
  ul.page-numbers li:not(:has(.disable)):hover img {
    filter: brightness(0) invert(1);
  }
}
ul.page-numbers li .disable {
  pointer-events: none;
}
ul.page-numbers li .prev img {
  transform: rotate(90deg);
}
ul.page-numbers li .next img {
  transform: rotate(-90deg);
}
ul.page-numbers li a,
ul.page-numbers li span {
  width: 100%;
  height: 100%;
  line-height: 150%;
  transition: 0.4s ease-in-out;
  color: #656565;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  ul.page-numbers li a,
  ul.page-numbers li span {
    font-size: 1.4rem;
  }
}

.papper {
  padding: 12rem 0rem 6rem;
}
@media screen and (max-width: 991px) {
  .papper {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .papper {
    padding: 4rem 0rem;
  }
}
.papper-swiper {
  position: relative;
}
.papper-swiper .swiper {
  margin: 0 calc(-1 * var(--pi-16));
}
.papper-swiper .swiper-slide {
  height: auto;
  width: 33.3333333333%;
  padding: 0 var(--pi-16);
}
@media screen and (max-width: 991px) {
  .papper-swiper .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .papper-swiper .swiper-slide {
    width: 83.3333333333%;
  }
}

.article {
  height: 100%;
  position: relative;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .article:hover .img img, .article:focus-visible .img img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.article-img {
  height: 100%;
  position: relative;
}
.article-img .img {
  height: inherit;
  border-radius: var(--radius-m);
  padding-top: 75%;
}
.article-content {
  height: 100%;
}
.article-content:has(.article-logo) .article-cate {
  font-size: 1.2rem;
}
.article-content:has(.article-link) .article-cate {
  font-size: 1.4rem;
}
.article-cate {
  font-weight: 600;
  background: #ff912e;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.article-title {
  font-size: 1.4rem;
  line-height: 140%;
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .article-title:hover, .article-title:focus-visible {
    color: #ff912e;
  }
}
@media screen and (max-width: 576px) {
  .article-title {
    font-size: 1.2rem;
  }
}
.article-logo {
  top: 0;
  right: 1.6rem;
  position: absolute;
  width: fit-content;
  pointer-events: none;
  padding: 1rem 1.6rem;
  background-color: white;
  box-shadow: var(--box-shadow-1);
  border-radius: 0 0 0.4rem 0.4rem;
}
@media screen and (max-width: 576px) {
  .article-logo {
    padding: 0.8rem;
  }
}
.article-logo .logo {
  max-width: 6.2rem;
}
@media screen and (max-width: 576px) {
  .article-logo .logo {
    max-width: 4.8rem;
  }
}
.article-logo .logo img {
  width: 100%;
  object-fit: contain;
}
.article-author {
  margin-top: auto;
  display: flex;
  align-items: center;
}
.article-author .text {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 133%;
  color: #999;
}
.article-author_author {
  gap: 0.4rem;
  position: relative;
  display: flex;
  align-items: center;
}
.article-author_author::after {
  content: "";
  width: 4rem;
  height: 0.1rem;
  pointer-events: none;
  display: inline-block;
  margin: 0 1.2rem 0 0.8rem;
  background-color: #999;
}
@media screen and (max-width: 576px) {
  .article-author_author::after {
    width: 2.4rem;
  }
}
.article-author_author img {
  flex-shrink: 0;
  object-fit: cover;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-circle);
}
@media screen and (max-width: 576px) {
  .article-author_author img {
    width: 2rem;
    height: 2rem;
  }
}
.article-link {
  top: 1.6rem;
  right: 1.6rem;
  overflow: hidden;
  width: 4rem;
  height: 4rem;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: var(--radius-circle);
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .article-link:hover img, .article-link:focus-visible img {
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 576px) {
  .article-link {
    top: 1rem;
    right: 1rem;
  }
}
.article-link img {
  object-fit: contain;
  transition: 0.4s ease-in-out;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .article-link img {
    animation: btnAni 5s ease-in-out infinite;
  }
}

.news {
  --top: 16.8rem;
  position: relative;
  padding: 7.4rem 0rem 12rem;
}
@media screen and (max-width: 991px) {
  .news {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .news {
    padding: 4rem 0rem;
  }
}
.news::before {
  left: 0;
  width: 100%;
  position: absolute;
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, rgba(37, 167, 223, 0.05) 3.69%, rgba(57, 109, 181, 0.05) 96.88%);
  pointer-events: none;
  top: calc(var(--top) * -1);
  height: calc(100% + var(--top));
}
.news-heading form {
  width: 100%;
  margin: 0 auto;
  max-width: 59.2rem;
}
.news-heading form .form-label {
  border-radius: 4rem;
  transition: 0.4s ease-in-out;
  flex-direction: unset;
  border: 0.1rem solid #d9d9d9;
}
.news-heading form .form-label:has(input:focus) {
  border-color: #ff912e;
}
.news-heading form input {
  border: 0;
  height: 100%;
  border-radius: 0;
  background-color: transparent;
}
.news-heading form input::placeholder {
  font-style: italic;
  color: #999;
}
.news-title .text-14 {
  line-height: 140%;
}
.news-list {
  row-gap: calc(2 * var(--pi-16));
  margin: 0 calc(-1 * var(--pi-16));
}
@media screen and (min-width: 992px) {
  .news-list {
    display: grid;
    overflow: hidden;
    grid-template-columns: 58% 42%;
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .news-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.news-item {
  width: 100%;
  padding: 0 var(--pi-16);
}
@media screen and (min-width: 992px) {
  .news-item:first-child {
    grid-row: span 3;
    grid-column: span 1;
  }
}
.news-item:first-child .article-img .img::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
}
.news-item:first-child .article-heading {
  gap: 0.8rem;
}
.news-item:first-child .article-cate {
  color: white;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .news-item:first-child .article-cate {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .news-item:first-child .article-cate {
    font-size: 1.5rem;
  }
}
.news-item:first-child .article-title {
  color: white;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .news-item:first-child .article-title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .news-item:first-child .article-title {
    font-size: 1.7rem;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .news-item:first-child .article-title:hover, .news-item:first-child .article-title:focus-visible {
    color: #ff912e;
  }
}
@media screen and (max-width: 576px) {
  .news-item:first-child .article-title {
    font-size: 1.6rem;
  }
}
.news-item:first-child .article-content {
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 3.2rem;
  position: absolute;
  height: fit-content;
}
@media screen and (max-width: 1200px) {
  .news-item:first-child .article-content {
    padding: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .news-item:first-child .article-content {
    padding: 1.2rem;
  }
}
.news-item:first-child .article-author .text {
  color: white;
}
@media screen and (min-width: 576px) {
  .news-item:first-child .article-author_author img {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  .news-item:not(:first-child) {
    grid-row: span 1;
    grid-column: span 1;
  }
}
.news-item:not(:first-child) .article {
  flex-direction: unset;
}
.news-item:not(:first-child) .article-img {
  width: 100%;
  max-width: 20.8rem;
}
@media screen and (max-width: 576px) {
  .news-item:not(:first-child) .article-img {
    max-width: 10rem;
  }
}
.news-item:not(:first-child) .article-img .img {
  padding-top: 75%;
}
.news-item:not(:first-child) .article-cate {
  font-size: 1.2rem;
}
.news-item:not(:first-child) .article-content {
  justify-content: center;
}
.news-item:not(:first-child) .article-link {
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
}
.news-item:not(:first-child) .article-link img {
  width: 1.2rem;
  height: 1.2rem;
}
.news-item:not(:first-child) .article-author {
  margin-top: 0;
}

.papper {
  padding: 12rem 0rem 6rem;
}
@media screen and (max-width: 991px) {
  .papper {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .papper {
    padding: 4rem 0rem;
  }
}
.papper {
  background-color: white;
}

.nwli {
  position: relative;
  padding: 12rem 0rem 12rem;
}
@media screen and (max-width: 991px) {
  .nwli {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .nwli {
    padding: 4rem 0rem;
  }
}
@media screen and (min-width: 992px) {
  .nwli {
    border-radius: 0 0 12rem 12rem;
    background-color: white;
    box-shadow: var(--box-shadow-3);
  }
}
.nwli .article-cate {
  font-size: 1.4rem;
}
@media screen and (max-width: 576px) {
  .nwli .article-cate {
    font-size: 1.2rem;
  }
}
.nwli-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(2 * var(--pi-16));
  margin: 0 calc(-1 * var(--pi-16));
}
.nwli-item {
  width: 33.3333333333%;
  padding: 0 var(--pi-16);
}
@media screen and (max-width: 991px) {
  .nwli-item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .nwli-item {
    width: 100%;
  }
}
.nwli-inner .view-link {
  margin: 4rem auto 0;
}
@media screen and (max-width: 576px) {
  .nwli-swiper {
    --pi-8: 0.4rem;
  }
}
.nwli-swiper .swiper {
  margin: 0 calc(-1 * var(--pi-8));
}
.nwli-swiper .swiper-slide {
  cursor: pointer;
  width: fit-content;
  padding: 0 var(--pi-8);
}
.nwli-swiper .swiper-slide.active .text-14 {
  border-color: #25a7df;
  background: linear-gradient(135deg, #25a7df 3.69%, #396db5 96.88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nwli-swiper .text-14 {
  border-radius: 4rem;
  padding: 0.8rem 1.6rem;
  border: 0.1rem solid #999;
  background: linear-gradient(135deg, #25a7df 3.69%, #396db5 96.88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #999;
  transition: 0.4s ease-in-out;
  background-size: 220% 100%;
  background-position: 0% center;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .nwli-swiper .text-14:hover, .nwli-swiper .text-14:focus-visible {
    color: transparent;
    background-position: 100% 50%;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .nwli-swiper .text-14:hover, .nwli-swiper .text-14:focus-visible {
    border-color: #25a7df;
  }
}
@media screen and (max-width: 576px) {
  .nwli-swiper .text-14 {
    padding: 0.8rem;
    font-size: 1.2rem;
  }
}

.p-news-list .nwli {
  background-color: transparent;
  padding: 7.2rem 0rem 12rem;
}
@media screen and (max-width: 991px) {
  .p-news-list .nwli {
    padding: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .p-news-list .nwli {
    padding: 4rem 0rem;
  }
}
/*# sourceMappingURL=news.css.map */
