@charset "UTF-8";
@layer reset, base, page, custom;
:root {
  --l-H-hero: 580px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --l-h-sec-footer: 150px;
  --c-text: #535173;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #8b8bac;
  --c-primary: #3b1376;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1024px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@scope (.section-news) {
  :scope {
    position: relative;
    padding: 0 30px 100px;
    background: url(../images/news_bg.webp) no-repeat center bottom/cover;
    margin-top: 100px;
  }
  :scope::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 100px;
    bottom: 0;
    right: 30px;
    z-index: 3;
    background: url(../images/ic_tree.webp) no-repeat center bottom/contain;
  }
  :scope::after {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    z-index: 2;
  }
  :scope .sec-title h3 {
    font-size: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding-bottom: 35px;
  }
  :scope .sec-title h3::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/ic_star.webp) no-repeat center center/contain;
  }
  :scope .sec-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(83, 81, 115, 0.25);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    transform: translateY(-55px);
    border: 3px solid rgba(83, 81, 115, 0.07);
    position: relative;
    z-index: 3;
  }
  :scope .section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }
  @media only screen and (max-width: 551px) {
    :scope .section-footer {
      justify-content: flex-start;
    }
  }
  .news-item__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    gap: 25px 50px;
    z-index: 3;
  }
  @media only screen and (max-width: 860px) {
    .news-item__wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .news-item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(83, 81, 115, 0.15);
    padding-bottom: 15px;
    gap: 10px;
  }
  .news-item > a {
    display: inline-flex;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(83, 81, 115, 0.25);
    background: url(../images/default_cover.png) no-repeat center/cover;
  }
  @media only screen and (max-width: 678px) {
    .news-item {
      flex-direction: column;
      gap: 15px;
    }
  }
  .news-item__image {
    width: min(240px, 100%);
    height: auto;
    aspect-ratio: 3/2;
    transition: box-shadow 300ms, transform 300ms;
  }
  .news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news-item__image:hover {
    box-shadow: 0 5px 15px rgba(83, 81, 115, 0.3);
    transform: translateY(-2px);
  }
  .news-item__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
  }
  .news-item__date {
    color: #535173;
    font-size: 14px;
  }
  .news-item__date span {
    padding-right: 5px;
  }
  .news-item__tags .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    list-style-type: none;
  }
  .news-item__tags .tags .list-inline-item a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 13px;
    color: #fff;
    background-color: #2a2a2a;
    text-shadow: 0 1px 3px rgba(83, 81, 115, 0.35);
  }
  .news-item__tags .tags .list-inline-item.tag-23 a {
    background-color: #638ee3;
  }
  .news-item__tags .tags .list-inline-item.tag-24 a {
    background-color: #9278df;
  }
  .news-item__tags .tags .list-inline-item.tag-25 a {
    background-color: #f4c700;
  }
  .news-item__tags .tags .list-inline-item.tag-26 a {
    background-color: #39d59e;
  }
  .news-item__tags .tags .list-inline-item.tag-27 a {
    background-color: #d77a3b;
  }
  .news-item__title {
    color: #535173;
    font-size: 18px;
    line-height: 26px;
    transition: color 300ms;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制最多 2 行 */
    overflow: hidden;
  }
  .news-item__title:hover {
    color: #5d50ce;
  }
}
.p-news {
  position: relative;
}
.p-news::before {
  content: "";
  position: absolute;
  height: 350px;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../images/news_bg.webp) no-repeat center/cover;
}
.p-news::after {
  content: "";
  position: absolute;
  height: 350px;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.p-news .s-wrapper {
  min-height: 550px;
}
.p-news .s-wrapper .section-news {
  background: rgba(255, 255, 255, 0);
  padding-bottom: 20px;
}
.p-news .s-wrapper .section-news::after {
  display: none;
}
.p-news .s-wrapper .section-news::before {
  display: none;
}
.p-news .s-wrapper .section-news .sec-inner {
  transform: translateY(0);
}
.p-news .s-wrapper .section-news .sec-title {
  max-width: 1200px;
  margin: 0 auto;
}
.p-news .s-wrapper .section-news .sec-title h3 {
  font-size: 35px;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination {
  grid-column: 1/-1;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .counter {
  font-size: 13px;
  color: rgba(83, 81, 115, 0.5);
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper {
  display: flex;
  justify-content: center;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination {
  display: flex;
  margin: 0 auto;
  gap: 10px;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 7px;
  border: 1px solid rgba(83, 81, 115, 0.25);
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li:hover {
  background-color: rgba(83, 81, 115, 0.05);
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: rgba(83, 81, 115, 0.7);
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li span {
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li span.icon-angle-right {
  background: url(../images/ic_p_next.png) no-repeat center/70%;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li span.icon-angle-left {
  background: url(../images/ic_p_prev.png) no-repeat center/70%;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li span.icon-angle-double-right {
  background: url(../images/ic_p_last.png) no-repeat center/70%;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li span.icon-angle-double-left {
  background: url(../images/ic_p_first.png) no-repeat center/70%;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li.active {
  border-color: #6d3fe0;
  background: #6d3fe0;
  box-shadow: 0 3px 15px rgba(109, 63, 224, 0.25);
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li.active a {
  color: #fff;
}
.p-news .s-wrapper .section-news .news-item__wrapper .articlesanywhere_pagination .pagination__wrapper .pagination li.disabled {
  opacity: 0.35;
}

/*# sourceMappingURL=news-center.css.map */
