@charset "UTF-8";
/* 公共 */
* {
  font-size: var(--font16);
  font-family: Roboto-Regular;
}

@font-face {
  font-family: Roboto-Regular;
  src: url(../fonts/ROBOTO-REGULAR.TTF);
}

@font-face {
  font-family: Roboto-Bold;
  src: url(../fonts/ROBOTO-BOLD.TTF);
}

/**
 * grid布局
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $colGap     行列间隔
*/
i::before {
  position: relative;
  z-index: 5;
}

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

.swiper-button-clear {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
  margin-top: 0;
}

.swiper-button-clear::after {
  content: none;
}

.swiper-button-style {
  width: 4.375rem;
  height: 4.375rem;
  background: #dee3e6;
  border-radius: 50%;
}

.swiper-button-style i {
  color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.swiper-button-style:hover i {
  color: #fff;
}

.swiper-button-style::after {
  content: none;
}

.rotateSvg-180 svg {
  transform: rotate(180deg);
}

svg path {
  transition: fill var(--hover-time) var(--hover-ease);
}

.swiper-button-prev, .swiper-button-next {
  width: 65px;
  height: auto;
  transition: all;
}

.swiper-button-prev i, .swiper-button-next i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #fff;
  z-index: 25;
}

.swiper-button-prev i::after, .swiper-button-next i::after {
  position: absolute;
  top: 50%;
  font-size: 18px;
  opacity: 0;
  transition: all var(--hover-time) var(--hover-ease);
}

.swiper-button-prev i::before, .swiper-button-next i::before {
  transition: all var(--hover-time) var(--hover-ease);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  transform: scale(var(--hover-scale));
  transition: transform var(--hover-time) var(--hover-ease);
}

.swiper-button-prev:hover svg path, .swiper-button-next:hover svg path {
  fill: var(--main-color-hover);
}

.swiper-button-prev i {
  left: 45%;
}

.swiper-button-prev i::after {
  content: "\eb8e";
  right: -100%;
  transform: translate(50%, -50%);
}

.swiper-button-prev:hover i::after {
  opacity: 1;
  right: 50%;
}

.swiper-button-prev:hover i::before {
  opacity: 0;
}

.swiper-button-next i {
  left: 55%;
}

.swiper-button-next i::after {
  left: -100%;
  transform: translate(-50%, -50%);
  content: "\e76c";
}

.swiper-button-next:hover i::after {
  opacity: 1;
  left: 50%;
}

.swiper-button-next:hover i::before {
  opacity: 0;
}

.page-title {
  font-size: var(--font50);
  color: var(--main-color);
}

.page-title.white {
  color: #fff;
}

.page-title.black {
  color: #000;
}

.page-title.small {
  font-size: var(--font40);
}

.page-title.bold {
  font-family: Roboto-Bold;
}

.page-title.solTitle {
  position: relative;
  display: flex;
  align-items: center;
}

.page-title.solTitle::before {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  background: var(--main-color);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  margin: 0 1rem;
}

.page-desc {
  line-height: 1.68;
  color: var(--black-78);
}

.morePageLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 3.125rem;
  border: 1px solid var(--main-color-hover);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.morePageLink p {
  color: var(--black-78);
  font-family: Roboto-Bold;
  position: relative;
  z-index: 5;
  margin-right: 20px;
}

.morePageLink i {
  position: relative;
  color: #fff;
  font-size: 10px;
  transition: all var(--hover-time) var(--hover-ease);
}

.morePageLink i::after {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  transition: all var(--hover-time) var(--hover-ease);
}

.morePageLink:hover p {
  color: #fff;
  opacity: 0;
}

.morePageLink:hover i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.morePageLink:hover i::after {
  transform: scale(20);
}

.long-btn {
  display: flex;
  align-items: center;
}

.long-btn-label {
  background: var(--main-color-hover);
  height: 48px;
  font-size: 16px;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 10px 0 0 10px;
  padding: 0 16px 0 32px;
  transition: background-color var(--hover-time) var(--hover-ease);
}

.long-btn-label .label-corner {
  background: transparent;
  display: block;
  top: 0;
  right: -16px;
  bottom: 0;
  position: absolute;
  width: 18px;
  height: 100%;
}

.long-btn-label .label-corner svg path {
  fill: var(--main-color-hover);
}

.long-btn-icon {
  position: relative;
  height: 48px;
  width: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  transition: background-color var(--hover-time) var(--hover-ease);
}

.long-btn-icon i {
  color: #fff;
  font-size: 16px;
}

.long-btn-icon svg {
  position: absolute;
}

.long-btn-icon svg path {
  fill: var(--main-color);
}

.long-btn:hover .long-btn-label {
  background: var(--main-color);
}

.long-btn:hover .long-btn-label .label-corner svg path {
  fill: var(--main-color);
}

.long-btn:hover .long-btn-icon {
  transform: scale(var(--hover-scale));
}

.long-btn:hover .long-btn-icon svg path {
  fill: var(--main-color-hover);
}

main {
  margin-top: var(--header-height);
}

.breadCrumbs {
  display: flex;
  align-items: center;
}

.breadCrumbs a {
  color: rgba(0, 0, 0, 0.53);
  display: flex;
  align-items: center;
}

.breadCrumbs a i {
  font-size: var(--font18);
}

.breadCrumbs.white a,
.breadCrumbs.white span {
  color: rgba(255, 255, 255, 0.53);
}

.mode-content * {
  line-height: 1.75;
  font-size: var(--font20);
}

.mode-content ul,
.mode-content ol,
.mode-content li {
  list-style: inherit;
}

.banner {
  height: 42.8125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner .left-triangle {
  width: 8.4375rem;
  height: 20rem;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #016cde;
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  transition: all 1.5s var(--hover-ease);
}

.banner .left-triangle.active {
  transform: rotate(0deg);
}

.banner .right-triangle {
  width: 17.5rem;
  height: 100%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: #016cde;
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(180deg);
  transform-origin: 100% 100%;
  transition: all 1.5s var(--hover-ease);
}

.banner .right-triangle.active {
  transform: rotate(0deg);
}

.banner .breadCrumbs {
  justify-content: center;
  margin-top: 0.9375rem;
}

.banner .page-nav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.banner .page-nav .container {
  height: 8.125rem;
  border-radius: 20px 20px 0px 0px;
  box-shadow: -1px 4px 43px 0px rgba(7, 7, 7, 0.07);
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
}

.banner .page-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner .page-nav-item a {
  color: #000;
}

.banner .page-nav-item i {
  font-size: var(--font35);
}

.banner .page-nav-item p {
  font-size: var(--font20);
}

.banner .page-nav-item:hover a {
  color: var(--main-color);
}

.banner .page-nav-item:hover a p {
  font-family: Roboto-Bold;
}

.banner .page-nav-item.active a {
  color: var(--main-color);
}

.banner .page-nav-item.active a p {
  font-family: Roboto-Bold;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  z-index: 1;
  background-image: linear-gradient(0deg, #2c61c7 0%, rgba(44, 97, 199, 0) 100%);
  opacity: 0.82;
}

input:-internal-autofill-selected {
  background-color: inherit;
}

/* end 公共 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9999;
}

header .logo {
  width: 17.25rem;
  display: block;
}

header .logo img {
  filter: brightness(0) invert(1);
}

header nav {
  margin-left: 5.3125rem;
}

header nav .nav-list .one-title {
  height: var(--header-height);
  position: relative;
  padding: 0 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav .nav-list .one-title > a {
  font-size: var(--font18);
  line-height: 1.3;
  color: #fff;
  font-family: Roboto-Bold;
}

header nav .nav-list .one-title:not(:last-child) {
  margin-right: 1.875rem;
}

header nav .nav-list .one-title:last-child {
  padding-right: 0;
}

header nav .nav-list .one-title:last-child::after {
  left: calc(50% + 0.9375rem);
}

header nav .nav-list .one-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transform: translateX(-50%);
  transition: all 0.3s var(--hover-ease);
}

header nav .nav-list .one-title.active > a {
  color: var(--main-color);
}

header nav .nav-list .one-title.active::after {
  width: 5.625rem;
}

header nav .nav-list .one-title:hover > a {
  color: var(--main-color);
}

header nav .nav-list .one-title:hover::after {
  width: 5.625rem;
}

header nav .nav-list .subListBox {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  z-index: -100;
  pointer-events: none;
  transition: opacity var(--hover-time) var(--hover-ease);
}

header nav .nav-list .subListBox.active {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}

header nav .nav-list .subList {
  display: flex;
  justify-content: center;
  height: 10.9375rem;
  text-align: center;
  gap: 0;
}

header nav .nav-list .subList li {
  width: 16%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header nav .nav-list .subList li a {
  color: #000;
  transition: all 0.3s ease-in-out;
}

header nav .nav-list .subList li i {
  font-size: var(--font35);
}

header nav .nav-list .subList li p {
  font-size: var(--font18);
  font-family: Roboto-Bold;
  margin-top: 1.125rem;
}

header nav .nav-list .subList li:hover a {
  color: var(--main-color);
}

header .headSearch {
  position: relative;
}

header .headSearch input {
  display: block;
  width: 14.375rem;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #fff;
  box-sizing: border-box;
  background: transparent;
  padding: 0 1.875rem 0 1.25rem;
  font-size: var(--font18);
  color: #fff;
}

header .headSearch input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -1px;
}

header .headSearch i {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  color: #fff;
}

header .line {
  width: 1px;
  height: 13px;
  background: #eeeeee;
  margin: 0 1.5625rem;
}

header .langBtn {
  font-size: var(--font18);
  color: #fff;
  cursor: pointer;
  position: relative;
}

header .langBtn i.icon-xiala {
  font-size: var(--font14);
}

header .langBtn p {
  margin: 0 5px;
}

header .langBtn .subLang {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  box-shadow: 0px 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s var(--hover-ease);
}

header .langBtn .subLang a {
  font-size: var(--font16);
  color: #000;
  line-height: 1.8;
}

header .langBtn .subLang a:hover {
  color: var(--main-color);
}

header .langBtn:hover .subLang {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}

header.fixed {
  background: #fff;
  box-shadow: 1px 1px 24px 0px rgba(0, 0, 0, 0.07);
}

header.fixed .logo img {
  filter: none;
}

header.fixed nav .nav-list .one-title > a {
  color: #000;
}

header.fixed nav .nav-list .one-title:hover > a {
  color: var(--main-color);
}

header.fixed .headSearch input {
  border-color: #000;
  color: #000;
}

header.fixed .headSearch input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

header.fixed .headSearch i {
  color: #000;
}

header.fixed .line {
  background: rgba(0, 0, 0, 0.4);
}

header.fixed .langBtn {
  color: #000;
}

header.navActive {
  background: #fff;
  box-shadow: 1px 1px 24px 0px rgba(0, 0, 0, 0.07);
}

header.navActive .logo img {
  filter: none;
}

header.navActive nav .nav-list .one-title > a {
  color: #000;
}

header.navActive nav .nav-list .one-title:hover > a {
  color: var(--main-color);
}

header.navActive .headSearch input {
  border-color: #000;
  color: #000;
}

header.navActive .headSearch input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

header.navActive .headSearch i {
  color: #000;
}

header.navActive .line {
  background: rgba(0, 0, 0, 0.4);
}

header.navActive .langBtn {
  color: #000;
}

.index {
  margin-top: 0;
}

.index .page-title {
  font-size: var(--font70);
}

.index .i-banner {
  height: 100vh;
}

.index .i-banner .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-banner .swiper-slide .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.index .i-banner .swiper-slide .text p {
  font-family: Roboto-Bold;
  font-size: var(--font45);
  color: #fff;
}

.index .i-banner .swiper-pagination {
  bottom: 8vh;
  width: auto;
  left: var(--page-aside-width);
}

.index .i-banner .swiper-pagination-bullet {
  width: 65px;
  height: 3px;
  background: rgba(255, 255, 255, 0.46);
  border-radius: 0;
  margin: 0;
  position: relative;
}

.index .i-banner .swiper-pagination-bullet:not(:last-child) {
  margin-right: 32px;
}

.index .i-banner .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.index .i-banner .swiper-pagination-bullet-active::after {
  animation: aniWidth 5.75s ease-in-out forwards;
}

.index .i-banner .swiper-button-box {
  position: absolute;
  right: var(--page-aside-width);
  bottom: 10vh;
}

.index .i-banner .swiper-button-box svg path {
  fill: var(--main-color);
}

.index .i-about {
  background: var(--sectiong-bg);
  overflow: hidden;
  padding: 5rem 0 9.375rem;
}

.index .i-about-1 .left {
  width: 40%;
}

.index .i-about-1 .left .page-desc {
  margin: 3.75rem 0 2.5rem;
}

.index .i-about-1 .right {
  width: 47%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 2.1875rem 10rem;
}

@media (max-width: 992px) {
  .index .i-about-1 .right {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .index .i-about-1 .right {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.index .i-about-1 .right li {
  color: var(--main-color);
}

.index .i-about-1 .right li i {
  font-size: var(--font40);
}

.index .i-about-1 .right li .li-title {
  display: flex;
  align-items: flex-end;
  margin: 1.875rem 0 1.125rem;
}

.index .i-about-1 .right li .li-title .number {
  font-size: var(--font60);
  line-height: 0.8;
}

.index .i-about-1 .right li .li-title span {
  font-size: var(--font20);
  font-family: Roboto-Bold;
}

.index .i-about-1 .right li .li-desc {
  color: var(--black-78);
}

.index .i-about-2 {
  margin-top: 6.25rem;
}

.index .i-about-2 .swiper {
  margin-left: var(--page-aside-width);
  height: 22.1875rem;
}

.index .i-about-2 .swiper .swiper-slide {
  border-radius: 20px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.index .i-about-2 .swiper .swiper-slide .text {
  padding: 2.8125rem 1.875rem;
  width: 26.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.index .i-about-2 .swiper .swiper-slide i {
  font-size: var(--font35);
  color: var(--main-color);
}

.index .i-about-2 .swiper .swiper-slide .slide-title {
  font-size: var(--font30);
  line-height: 1.1;
}

.index .i-about-2 .swiper .swiper-slide .slide-desc {
  color: var(--black-64);
  line-height: 1.3;
}

.index .i-about-2 .swiper .swiper-slide a {
  color: var(--black-88);
  text-decoration: underline;
}

.index .i-about-2 .swiper-button-box {
  margin-top: 2.1875rem;
}

.index .i-about-2 .swiper-button-box svg path {
  fill: var(--main-color);
}

.index .i-global {
  height: 60.625rem;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.index .i-global .left {
  width: 56.25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index .i-global .right {
  width: 43.75%;
}

.index .i-global .right #earth-container {
  width: 100%;
  height: 100%;
}

.index .i-global-desc {
  width: 87%;
  font-weight: 100;
  font-size: var(--font24);
  color: var(--white-60);
  margin-top: 1.5rem;
}

.index .i-global-desc * {
  font-size: var(--font24);
  color: var(--white-60);
}

.index .i-global-list {
  gap: 1.25rem;
  margin-top: 4.6875rem;
}

.index .i-global-list li {
  flex: 1;
  height: 7.5rem;
  background: rgba(244, 244, 244, 0.63);
  border-radius: 1.25rem;
  padding: 0 1.5625rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}

.index .i-global-list li img {
  display: block;
  width: 40px;
  margin-right: 1.5625rem;
}

.index .i-global-list li p {
  font-family: Roboto-Bold;
  color: #225383;
}

.index .i-global-countryList {
  margin-top: 4.0625rem;
}

.index .i-global-countryList .row {
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5625rem 0;
}

.index .i-global-countryList .row .item {
  flex: 1;
  font-size: var(--font20);
  color: #fff;
  font-family: Roboto-Bold;
  cursor: pointer;
}

.index .i-news {
  background: #eee;
  padding: 5.625rem 0;
  overflow: hidden;
}

.index .i-news-top .page-title {
  color: #000;
}

.index .i-news-box {
  margin-top: 3.125rem;
}

.index .i-news-box .news-firstItem {
  margin-bottom: 1.875rem;
}

@keyframes aniWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.newsStyle .news-type {
  display: inline-flex;
  align-items: center;
  background: #f7f7f5;
  border-radius: 7px;
  padding: 8px;
}

.newsStyle .news-type .sqr {
  width: 10px;
  height: 10px;
  background: var(--main-color);
  margin-right: 6px;
}

.newsStyle .news-title {
  font-size: var(--font24);
  line-height: 1.75;
}

.newsStyle .news-desc {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.newsStyle .news-link {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.8);
}

.newsStyle .news-time {
  font-size: var(--font14);
  color: rgba(0, 0, 0, 0.7);
}

.newsStyle .news-firstItem {
  position: relative;
}

.newsStyle .news-firstItem .news-box {
  width: 100%;
  color: #000;
  padding: 1.5625rem;
  position: relative;
  z-index: 2;
}

.newsStyle .news-firstItem .news-box svg path {
  fill: #fff;
}

.newsStyle .news-firstItem .news-box .img-box {
  width: 45%;
  padding-top: 30.3125%;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-right: 4.6875%;
}

.newsStyle .news-firstItem .news-box .img-box .imgPos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}

.newsStyle .news-firstItem .news-box .img-box i {
  color: #fff;
  font-size: var(--font70);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.newsStyle .news-firstItem .news-box .text-box {
  width: 41.25%;
}

.newsStyle .news-firstItem .news-box .text-box .news-title {
  margin: 2.8125rem 0 2rem;
}

.newsStyle .news-firstItem .news-box .text-box .news-link {
  margin-top: 5rem;
}

.newsStyle .news-firstItem .bgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px 20px 0 20px;
  clip-path: polygon(100% 0, 100% calc(100% - 102px), calc(100% - 100px) calc(100% - 107px), calc(100% - 105px) 100%, 0 100%, 0 0);
  background: #fff;
}

.newsStyle .news-firstItem .firstItem-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='87' height='90' fill='none' viewBox='0 0 87 90'%3E%3Cpath fill='%23fff' d='M35.43 45.104 23.71 81.57A12.146 12.146 0 0 1 12.145 90C5.438 90 0 84.562 0 77.854V16C0 7.163 7.163 0 16 0h55c8.837 0 16 7.163 16 16v2c0 8.837-7.163 16-16 16H50.663a16 16 0 0 0-15.232 11.104Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 117px;
  height: 122px;
}

.newsStyle .news-firstItem .firstItem-btn .btn-el {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 65px;
  height: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--hover-time) var(--hover-ease);
}

.newsStyle .news-firstItem .firstItem-btn .btn-el i {
  font-size: 16px;
  color: #fff;
}

.newsStyle .news-firstItem .firstItem-btn .btn-el svg {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.newsStyle .news-firstItem .firstItem-btn .btn-el svg path {
  fill: var(--main-color);
}

.newsStyle .news-firstItem:hover .imgPos {
  transform: scale(1.1);
}

.newsStyle .news-firstItem:hover .btn-el {
  transform: scale(var(--hover-scale));
}

.newsStyle .news-firstItem:hover svg path {
  fill: var(--main-color-hover) !important;
}

.newsStyle .news-item {
  position: relative;
}

.newsStyle .news-item .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.1875rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--hover-time) var(--hover-ease);
}

.newsStyle .news-item .btn i {
  color: #fff;
}

.newsStyle .news-item .btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.newsStyle .news-item .btn svg path {
  fill: var(--main-color);
}

.newsStyle .news-item:hover .bg-box {
  opacity: 1;
}

.newsStyle .news-item:hover .bg-box::after {
  opacity: 1;
}

.newsStyle .news-item:hover .text-box {
  color: #fff;
}

.newsStyle .news-item:hover .text-box .news-type {
  background: rgba(247, 247, 245, 0.26);
}

.newsStyle .news-item:hover .text-box .news-time {
  color: rgba(255, 255, 255, 0.7);
}

.newsStyle .news-item:hover .text-box .news-link {
  color: rgba(255, 255, 255, 0.8);
}

.newsStyle .news-item:hover .btn {
  transform: scale(var(--hover-scale));
}

.newsStyle .news-item:hover .btn svg path {
  fill: var(--main-color-hover);
}

.newsStyle .news-content {
  width: 100%;
  height: 20rem;
  clip-path: url(#news-clip-path);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background: #fff;
  padding: 2.1875rem;
  padding-left: 2.8125rem;
  box-sizing: border-box;
}

.newsStyle .news-content .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity var(--hover-time) var(--hover-ease);
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsStyle .news-content .bg-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 97, 199, 0.5);
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0;
}

.newsStyle .news-content .text-box {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
}

.newsStyle .newsListBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3rem 1.875rem;
}

@media (max-width: 992px) {
  .newsStyle .newsListBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .newsStyle .newsListBox {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.newsStyle .videoList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3.125rem 2.1875rem;
}

@media (max-width: 992px) {
  .newsStyle .videoList {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .newsStyle .videoList {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.newsStyle .videoList .item {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 62.35%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 20px;
}

.newsStyle .videoList .item .imgBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform var(--hover-time) var(--hover-ease);
}

.newsStyle .videoList .item .imgBg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
}

.newsStyle .videoList .item i {
  font-size: var(--font70);
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.newsStyle .videoList .item .news-type {
  position: absolute;
  top: 2.1875rem;
  left: 1.5625rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.66);
  color: #000;
}

.newsStyle .videoList .item:hover .imgBg {
  transform: scale(1.1);
}

footer {
  padding-top: 5.9375rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .footer-msg {
  background: rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  padding: 3.125rem 7.5rem 1.875rem 3.4375rem;
}

footer .footer-msg .left .msg-title {
  font-size: var(--font83);
  color: #163a75;
  letter-spacing: -4px;
  line-height: 0.8;
  font-family: Roboto-bold;
}

footer .footer-msg .left .msg-desc {
  margin-top: 3.125rem;
  width: 21.25rem;
  font-size: var(--font22);
}

footer .footer-msg .right {
  width: 54.6875%;
  margin-left: 1.875%;
}

footer .footer-msg .right .msg-row {
  gap: 1.125rem;
  margin-bottom: 20px;
}

footer .footer-msg .right .msg-row .msg-input {
  flex: 1;
}

footer .footer-msg .right .msg-row input,
footer .footer-msg .right .msg-row textarea {
  display: block;
  width: 100%;
  height: 2.8125rem;
  line-height: 2.8125rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #6f8fb3;
  border-radius: 22px;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

footer .footer-msg .right .msg-row input::placeholder,
footer .footer-msg .right .msg-row textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

footer .footer-msg .right .msg-row .msg-search {
  position: relative;
}

footer .footer-msg .right .msg-row .msg-search input {
  cursor: pointer;
}

footer .footer-msg .right .msg-row .msg-search i {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
}

footer .footer-msg .right .msg-row .msg-search .subList {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #6f8fb3;
  border-top: none;
  --item-height: 2.8125rem;
}

footer .footer-msg .right .msg-row .msg-search .subList-item {
  height: var(--item-height);
  line-height: var(--item-height);
  padding: 0 1.25rem;
  font-size: var(--font14);
  cursor: pointer;
}

footer .footer-msg .right .msg-row .msg-search .subList-item:not(:last-child) {
  border-bottom: 1px solid #6f8fb3;
}

footer .footer-msg .right .msg-row .msg-search .subList-item:hover {
  background: #6f8fb3;
  color: #fff;
}

footer .footer-msg .right .msg-row textarea {
  resize: none;
  height: 7.875rem;
  line-height: 1.6;
  padding: 1.25rem;
}

footer .footer-msg .right .submit {
  width: 7.8125rem;
  height: 2.8125rem;
  background: var(--main-color);
  border-radius: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -1px;
  color: #fff;
  cursor: pointer;
}

footer .footer-content {
  padding: 3.125rem 0 1.875rem;
}

footer .footer-content .sec1 .footer-logo {
  width: 12.8125rem;
}

footer .footer-content .sec1 .footer-emailSubmit {
  width: 29.6875rem;
  border: 2px solid rgba(255, 255, 255, 0.39);
  border-radius: 25px;
}

footer .footer-content .sec1 .footer-emailSubmit input {
  flex: 1;
  background: transparent;
  padding: 0 1.875rem;
  color: #fff;
  position: relative;
}

footer .footer-content .sec1 .footer-emailSubmit input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

footer .footer-content .sec1 .footer-emailSubmit .submit {
  flex-shrink: 0;
  width: 7.375rem;
  padding: 1.25rem 0;
  color: #fff;
  position: relative;
  text-align: center;
}

footer .footer-content .sec1 .footer-emailSubmit .submit::after {
  content: "";
  width: 1px;
  height: 2.375rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.53);
}

footer .footer-content .sec2 {
  color: #fff;
  margin-top: 3.125rem;
}

footer .footer-content .sec2 .text {
  font-family: Roboto-Bold;
  margin-bottom: 1.875rem;
}

footer .footer-content .sec2 .list i {
  margin-right: 0.9375rem;
}

footer .footer-content .sec2 .list li:not(:last-child) {
  margin-bottom: 20px;
}

footer .footer-content .sec2 .iconList {
  margin: 1.25rem 0;
}

footer .footer-content .sec2 .iconList a:not(:last-child) {
  margin-right: 1.5625rem;
}

footer .footer-content .sec2 .iconList i {
  font-size: var(--font20);
  color: #fff;
}

footer .footer-content .sec2 .footer_nav li {
  max-width: 11.5625rem;
}

footer .footer-content .sec2 .footer_nav li:not(:last-child) {
  margin-right: 3.125rem;
}

footer .footer-content .sec2 .footer_nav h2 {
  margin-bottom: 1.875rem;
}

footer .footer-content .sec2 .footer_nav a {
  color: #fff;
  font-weight: normal;
}

footer .footer-content .sec2 .footer_nav h3:not(:last-child) {
  margin-bottom: 0.9375rem;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.9375rem 0;
}

footer .footer-bottom p,
footer .footer-bottom a {
  color: #fff;
}

footer .footer-bottom a:hover {
  color: var(--main-color);
}

.news {
  overflow: hidden;
}

.news-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0 5.625rem;
}

.news-1 .page-title {
  margin: 5rem 0 3.125rem;
}

.news-1 .swiper-box .container {
  position: relative;
}

.news-1 .swiper-box .text-box {
  position: relative;
  padding-top: 4.375rem;
}

.news-1 .swiper-box .text-box .news-link {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
}

.news-1 .swiper-box .swiper-button-next, .news-1 .swiper-box .swiper-button-prev {
  width: 3.125rem;
  height: 3.125rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.news-1 .swiper-box .swiper-button-next:hover, .news-1 .swiper-box .swiper-button-prev:hover {
  background: var(--main-color);
}

.news-1 .swiper-box .swiper-button-prev {
  left: -6.25rem;
}

.news-1 .swiper-box .swiper-button-next {
  right: -6.25rem;
}

.news-2 {
  background: #f4f4f4;
  padding: 6.5625rem 0 4.375rem;
}

.news-2-top {
  margin-bottom: 4.375rem;
}

.news-2 .news-class {
  gap: 1.25rem;
}

.news-2 .news-class a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10.625rem;
  height: 3.4375rem;
  border-radius: 15px;
  background: #fff;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.news-2 .news-class a:hover {
  background: var(--main-color);
  color: #fff;
}

.news-2 .news-class a.active {
  background: var(--main-color);
  color: #fff;
}

.newsXq {
  background: #f4f4f4;
  padding: 2rem 0 5rem;
}

.newsXq-box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 6.25rem 4.375rem;
  margin-top: 3.75rem;
}

.newsXq-box .title {
  font-family: Roboto-Bold;
  font-size: var(--font40);
  line-height: 1.4;
}

.newsXq-box .news-tool {
  margin-top: 3.125rem;
}

.newsXq-box .news-tool .item:not(:last-child) {
  margin-right: 5rem;
}

.newsXq-box .news-tool i {
  font-size: var(--font24);
  color: #0656cf;
}

.newsXq-box .news-tool .text {
  color: rgba(0, 0, 0, 0.48);
  margin-left: 15px;
  margin-bottom: 3px;
}

.newsXq-box .mode-content {
  margin-top: 5rem;
  line-height: 1.65;
}

.newsXq-box .mode-content img {
  max-width: 100%;
}

.newsXq-box .page-btn {
  margin-top: 8.4375rem;
}

.newsXq-box .page-btn a {
  width: 35rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 0 1.25rem;
  color: #000000;
}

.newsXq-box .page-btn a:first-child {
  margin-right: 10rem;
}

.newsXq-box .page-btn a i {
  font-size: var(--font22);
  color: var(--main-color);
  flex-shrink: 0;
  margin-right: 1.5625rem;
}

.newsXq-box .page-btn a .btn-title {
  font-size: var(--font18);
  margin-top: 0.9375rem;
}

.newsXq .page-title {
  font-size: var(--font40);
  margin: 8.75rem 0 3.75rem;
}

.team-box {
  padding: 6.875rem 0 5.625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-1-desc {
  width: 62%;
  color: #101b30;
  opacity: 0.74;
  line-height: 1.75;
}

.team-2 {
  margin-top: 3.75rem;
}

.team-2 .item {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
}

.team-2 .item .num-box {
  display: flex;
  align-items: flex-end;
  font-size: var(--font20);
  color: var(--main-color);
}

.team-2 .item .num-box .number {
  font-family: Roboto-Bold;
  font-size: var(--font70);
  line-height: 1;
  margin-right: 0.9375rem;
  letter-spacing: -5px;
}

.team-2 .item p {
  margin-top: 0.9375rem;
  color: var(--black-78);
}

.team-3 {
  margin-top: 4.6875rem;
  border-radius: 2.5rem;
  display: block;
  width: 100%;
}

.equipment-box {
  padding: 6.875rem 0 5.625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.equipment-box .page-desc {
  margin: 2.25rem 0 5rem;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3.125rem 2rem;
}

.equipment-item {
  flex: 1;
  overflow: hidden;
  background: #f1f1f1;
  border-radius: 15px;
}

.equipment-item:hover .equipment-img {
  transform: scale(1.1);
}

.equipment-item:hover .equipment-name {
  background: var(--main-color);
  color: #fff;
}

.equipment-imgBox {
  overflow: hidden;
  padding-top: 57%;
  position: relative;
}

.equipment-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all var(--hover-time) var(--hover-ease);
}

.equipment-name {
  min-height: 5.3125rem;
  font-size: var(--font20);
  padding: 1rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: all var(--hover-time) var(--hover-ease);
  font-family: Roboto-Bold;
}

.globalLayout {
  margin-top: var(--header-height);
}

.vr-box {
  padding: 7.1875rem 0 3.125rem;
  position: relative;
}

.vr-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.31) 100%);
  z-index: -1;
}

.vr .numberList .item:not(:last-child) {
  margin-right: 8.125rem;
}

.vr .numberList .num-box {
  display: flex;
  align-items: flex-end;
  font-size: var(--font30);
  color: var(--main-color);
}

.vr .numberList .num-box .number {
  font-family: Roboto-Bold;
  font-size: var(--font50);
  line-height: 1;
  margin-right: 0.625rem;
}

.vr .numberList p {
  margin-top: 0.9375rem;
  color: var(--black-78);
}

.vr-iframe {
  padding-top: 34.56%;
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
  margin-top: 4.375rem;
}

.vr-iframe .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all var(--hover-time) var(--hover-ease);
}

.vr-iframe .btn-box {
  transition: all var(--hover-time) var(--hover-ease);
}

.vr-iframe .btn-box i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: var(--main-color);
  font-size: var(--font40);
  color: #fff;
  margin: 0 auto 0.9375rem;
}

.vr-iframe .btn-box p {
  font-size: var(--font30);
  color: #fff;
}

.vr-iframe:hover .btn-box {
  transform: scale(1.05);
}

.about-box {
  position: relative;
  padding: 7.5rem 0 4.6875rem;
}

.about-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/about-bg.jpg") center bottom no-repeat;
  background-size: cover;
  z-index: -1;
}

.about-box .leftImg {
  max-width: 60rem;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about-box .text {
  width: 50%;
  margin-left: auto;
}

.about-box .text .line {
  width: 4.375rem;
  height: 3px;
  background: var(--main-color);
  margin: 1.875rem 0;
}

.about-box .text .numberList {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 3.125rem 6.25rem;
}

@media (max-width: 992px) {
  .about-box .text .numberList {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-box .text .numberList {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.about-box .text .numberList .item {
  box-sizing: border-box;
  padding-left: 2.1875rem;
}

.about-box .text .numberList .num-box {
  display: flex;
  align-items: flex-end;
  font-size: var(--font30);
  color: var(--main-color);
}

.about-box .text .numberList .num-box .number {
  font-family: Roboto-bold;
  font-size: var(--font50);
  line-height: 1;
  margin-right: 0.625rem;
}

.about-box .text .numberList p {
  margin-top: 0.9375rem;
  color: var(--black-78);
}

.culture-1 {
  padding: 6.25rem 0;
}

.culture-1 .page-desc {
  margin: 1.875rem 0 3.125rem;
}

.culture-1 .list {
  height: 45.9375rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.culture-1 .list .item {
  position: relative;
  height: 100%;
  flex: 1;
}

.culture-1 .list .item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.43);
}

.culture-1 .list .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, #225383 100%);
  opacity: 0;
  z-index: 1;
  transition: all var(--hover-time) var(--hover-ease);
}

.culture-1 .list .item.active::after {
  opacity: 1;
}

.culture-1 .list .item.active .item-desc {
  opacity: 1;
}

.culture-1 .list .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.culture-1 .list .icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  background: var(--main-color);
  font-size: var(--font50);
  color: #fff;
}

.culture-1 .list .icon p {
  font-size: var(--font30);
  font-family: Roboto-Bold;
  margin-top: 1.25rem;
}

.culture-1 .list .item-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 3.125rem;
  padding-top: 0;
  z-index: 2;
  font-size: var(--font20);
  color: #fff;
  line-height: 1.45;
  text-align: center;
  font-family: Roboto-Bold;
  transition: all var(--hover-time) var(--hover-ease);
  opacity: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.culture-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 47.5rem;
}

.culture-2 .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.culture-2 .container .text * {
  line-height: 1.8;
  font-size: var(--font40);
  font-family: Roboto-bold;
  color: #fff;
}

.culture-3 {
  padding: 6.25rem 0;
}

.culture-3 .list {
  gap: 2.5rem;
  width: 100%;
}

.culture-3 .list .item {
  flex: 1;
  background: #f2f2f2;
  border-radius: 1.25rem;
  height: 20rem;
  text-align: center;
  padding-top: 3.125rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.culture-3 .list .item i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--main-color);
  font-size: var(--font40);
  color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.culture-3 .list .item .item-title {
  font-size: var(--font24);
  font-family: Roboto-Bold;
  margin: 2.1875rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.culture-3 .list .item .item-desc {
  padding: 0 1.25rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.culture-3 .list .item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  transition: all var(--hover-time) var(--hover-ease);
  opacity: 0;
}

.culture-3 .list .item:hover i {
  background: #fff;
  color: var(--main-color);
}

.culture-3 .list .item:hover .item-bg {
  opacity: 1;
}

.culture-3 .list .item:hover .item-title {
  color: #fff;
}

.culture-3 .list .item:hover .item-desc {
  color: rgba(255, 255, 255, 0.72);
}

.culture-4 {
  padding: 5.9375rem 0 3.4375rem;
  background: #f1f1f1;
}

.culture-4 .box {
  box-sizing: border-box;
  padding-left: var(--page-aside-width);
  overflow: hidden;
}

.culture-4 .box .swiper {
  margin: 3.125rem 0;
}

.culture-4 .box .swiper-slide {
  cursor: pointer;
}

.culture-4 .box .swiper-slide .img-box {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--main-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem;
}

.culture-4 .box .swiper-tool {
  padding-right: var(--page-aside-width);
}

.culture-4 .box .swiper-tool .swiper-button-prev i,
.culture-4 .box .swiper-tool .swiper-button-next i {
  color: #225383;
}

.culture-4 .box .swiper-tool .swiper-button-prev i::after,
.culture-4 .box .swiper-tool .swiper-button-next i::after {
  color: #fff;
}

.culture-4 .box .swiper-tool .top {
  align-items: flex-end;
}

.culture-4 .box .swiper-tool .left span {
  font-size: var(--font30);
  font-family: Roboto-Bold;
}

.culture-4 .box .swiper-tool .left .swiper-pagination-current {
  font-size: var(--font40);
}

.culture-4 .box .swiper-tool .swiper-pagination {
  position: relative;
  margin-top: 0.9375rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.16);
}

.culture-4 .box .swiper-tool .swiper-pagination .swiper-pagination-progressbar-fill {
  height: 4px;
  border-radius: 2px;
  background: var(--main-color);
  top: -4px;
}

.social-box {
  padding: 5.9375rem 0 4.6875rem;
}

.social-box .list .item:nth-child(even) {
  flex-direction: row-reverse;
}

.social-box .list .item:not(:last-child) {
  margin-bottom: 6.25rem;
}

.social-box .img-box {
  width: 44.75%;
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
}

.social-box .img-box .imgPos {
  padding-top: 86.6%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.social-box .text {
  width: 47.5%;
}

.social-box .text i {
  color: #2c61c7;
  font-size: var(--font70);
}

.social-box .text .item-title {
  font-size: var(--font40);
  font-family: Roboto-Bold;
  margin: 4.375rem 0 3.4375rem;
}

.social-box .text .item-desc {
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.8);
}

.social-box .text .long-btn {
  margin-top: 3.75rem;
}

.social-box .text .long-btn i {
  color: #fff;
  font-size: var(--font16);
}

.social-box .text .long-btn .long-btn-icon svg path {
  fill: #2c61c7;
}

.partner-box {
  padding: 5.625rem 0 8.75rem;
  background: #f2f2f2;
}

.partner-box .swiper-box {
  margin-top: 5rem;
}

.partner-box .swiper-box .swiper-wrapper {
  transition-timing-function: linear;
}

.partner-box .swiper-box .swiper-slide {
  height: 5.3125rem;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-box .swiper-box .swiper-slide img {
  display: block;
  max-width: 70%;
  max-height: 60%;
}

.partner-box .swiper:not(:last-child) {
  margin-bottom: 4.375rem;
}

.contact-1 {
  padding-top: 5.625rem;
}

.contact-1 .container {
  gap: 10px;
}

.contact-1 .box {
  flex: 1;
  height: 33.125rem;
  background: #f1f1f1;
  border-radius: 1.875rem;
  box-sizing: border-box;
  padding: 0 6.25rem 0 3.125rem;
}

.contact-1 .box .list {
  margin-top: 4.0625rem;
}

.contact-1 .box .list i {
  font-size: var(--font20);
  color: var(--main-color);
  margin-right: 1.25rem;
}

.contact-1 .box .list p {
  font-size: var(--font16);
  font-family: Roboto-Bold;
  line-height: 1.5;
}

.contact-1 .box .list .item:not(:last-child) {
  margin-bottom: 3.125rem;
}

.contact-1 .box .code {
  text-align: center;
}

.contact-1 .box .code img {
  display: block;
  width: 10.625rem;
}

.contact-1 .box .code p {
  font-size: var(--font16);
  margin-top: 1.25rem;
}

.contact-1 .map {
  flex: 1;
  width: 100%;
  height: 33.125rem;
  border-radius: 1.875rem;
}

.contact-1 .contactImg {
  display: block;
  width: 100%;
}

.join-1 {
  padding: 7.8125rem 0 5.625rem 0;
}

.join-1 .box {
  height: 32.5rem;
  background: #f5f5f5;
  border-radius: 1.25rem;
  overflow: hidden;
}

.join-1 .text {
  width: 50%;
  box-sizing: border-box;
  padding: 4.6875rem 2.1875rem 0 4.375rem;
}

.join-1 .text i {
  color: var(--main-color);
  font-size: var(--font50);
}

.join-1 .text .page-title {
  margin: 3.125rem 0 3.75rem;
}

.join-1 .text .mode-content {
  font-size: var(--font20);
}

.join-1 .text .mode-content p {
  box-sizing: border-box;
  position: relative;
}

.join-1 .text .mode-content p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--main-color);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 50%);
  margin: 0 0.625rem;
}

.join-1 .imgBox {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.join-1 .imgBox .imgPos {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.join-2 {
  padding: 11.5625rem 0 7.8125rem;
  background: #f1f1f1;
}

.join-2 .top ul {
  text-align: center;
}

.join-2 .top ul li:not(:last-child) {
  margin-right: 3.125rem;
}

.join-2 .top ul i {
  font-size: var(--font40);
  color: var(--main-color);
}

.join-2 .top ul p {
  font-family: Roboto-Bold;
  margin-top: 1.25rem;
}

.join-2 .swiper-box {
  margin-top: 6.25rem;
  padding-left: var(--page-aside-width);
  overflow: hidden;
}

.join-2 .swiper-box .swiper-slide {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.8125rem 1.875rem;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.join-2 .swiper-box .swiper-slide:hover {
  background: var(--main-color);
}

.join-2 .swiper-box .swiper-slide:hover .title-box .item-title,
.join-2 .swiper-box .swiper-slide:hover .title-box .icon p,
.join-2 .swiper-box .swiper-slide:hover .edu span,
.join-2 .swiper-box .swiper-slide:hover .mode-content * {
  color: #fff;
}

.join-2 .swiper-box .swiper-slide:hover .title-box i,
.join-2 .swiper-box .swiper-slide:hover .mode-content p::before {
  background: #fff;
}

.join-2 .swiper-box .swiper-slide:hover .title-box i {
  transform: rotate(0);
  color: var(--main-color);
}

.join-2 .swiper-box .title-box .item-title {
  font-size: var(--font26);
  color: #050505;
  font-family: Roboto-Bold;
  padding-right: 0.625rem;
  flex: 2;
}

.join-2 .swiper-box .title-box .icon {
  flex-shrink: 0;
}

.join-2 .swiper-box .title-box .icon i {
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}

.join-2 .swiper-box .title-box .icon p {
  font-size: var(--font14);
  color: #050505;
}

.join-2 .swiper-box .line {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.13;
  margin: 0.9375rem 0;
}

.join-2 .swiper-box .edu span {
  font-family: Roboto-Bold;
  color: #050505;
}

.join-2 .swiper-box .edu span:not(:last-child) {
  margin-right: 0.9375rem;
}

.join-2 .swiper-box .mode-content {
  margin-top: 2.5rem;
}

.join-2 .swiper-box .mode-content * {
  color: #050505;
  font-size: var(--font16);
  line-height: 1.56;
}

.join-2 .swiper-box .mode-content p {
  vertical-align: middle;
}

.join-2 .swiper-box .mode-content p::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--main-color);
  display: inline-block;
  margin-right: 0.625rem;
  vertical-align: middle;
}

.join-2 .swiper-button-box {
  margin-top: 1.875rem;
}

.join-2 .swiper-button-box .swiper-button-next,
.join-2 .swiper-button-box .swiper-button-prev {
  width: 45px;
}

.join-2 .swiper-button-box i {
  color: var(--main-color);
  font-size: var(--font16);
}

.join-2 .swiper-button-box i::after {
  color: #fff;
  font-size: var(--font16);
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}

.mask .box {
  width: 85.625rem;
  height: 45.9375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1.875rem;
}

.mask .closeBtn {
  margin: 1.5625rem 1.5625rem 1.5625rem auto;
  display: block;
  width: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.mask .closeBtn:hover {
  transform: rotate(90deg);
}

.mask .jobXq {
  width: 86%;
  margin: 0 auto;
}

.mask .jobXq .titleBox {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.27);
  position: relative;
}

.mask .jobXq .titleBox .title {
  color: var(--main-color);
  font-family: Roboto-Bold;
  position: relative;
  font-size: var(--font30);
}

.mask .jobXq .titleBox .email {
  color: #050505;
}

.mask .jobXq .titleBox .email span {
  color: var(--main-color);
  font-family: Roboto-Bold;
}

.mask .jobXq .titleBox::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 11.25rem;
  height: 2px;
  background: var(--main-color);
}

.mask .jobXq .jobXqBox {
  margin-top: 3.125rem;
  height: 31.25rem;
}

.mask .jobXq .jobXqBox .xq-title {
  font-size: var(--font20);
  color: var(--main-color);
  margin-bottom: 1.5625rem;
  font-family: Roboto-Bold;
}

.mask .jobXq .jobXqBox .xq-content {
  margin-bottom: 2.5rem;
  color: #646464;
  line-height: 2;
}

.mask .jobBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10.625rem;
  height: 3.125rem;
  background: var(--main-color);
  border-radius: 1.625rem;
  position: absolute;
  right: 3.75rem;
  bottom: 0;
}

.mask .jobBtn .cir {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.mask .jobBtn .cir .iconfont {
  margin: auto;
  font-size: 12px;
  color: var(--main-color);
}

.mask .jobBtn span {
  color: #fff;
  margin-left: 0.375rem;
}

.mask .jobBtn:hover .cir {
  transform: rotate(45deg);
}

.download-box {
  padding: 5rem 0;
}

.download .list {
  margin-top: 3.4375rem;
}

.download .list li {
  transition: all var(--hover-time) var(--hover-ease);
}

.download .list li .container {
  height: 6.5625rem;
  border-bottom: 1px solid #d2d2d2;
}

.download .list li:first-child .container {
  border-top: 1px solid #d2d2d2;
}

.download .list li .left {
  flex: 2;
}

.download .list li .icon-pdf {
  font-size: var(--font40);
  color: var(--main-color);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

.download .list li p {
  font-size: var(--font20);
  color: #101b30;
}

.download .list li .btn {
  position: relative;
  flex-shrink: 0;
  display: block;
}

.download .list li .btn svg path {
  fill: var(--main-color);
}

.download .list li .btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.download .list li:hover {
  background: var(--main-color);
}

.download .list li:hover .icon-pdf,
.download .list li:hover p {
  color: #fff !important;
}

.download .list li:hover .btn svg path {
  fill: #fff !important;
}

.download .list li:hover .btn i {
  color: var(--main-color);
}

@media screen and (max-width: 1600px) {
  .download .list li .btn svg {
    width: 45px;
  }
}

.honor-box {
  position: relative;
  padding: 7.8125rem 0 3.4375rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.honor-box .container {
  position: relative;
  z-index: 5;
}

.honor-class .item {
  padding: 0 2.5rem;
  position: relative;
}

.honor-class .item .title {
  font-size: var(--font20);
  color: #000;
  position: relative;
  cursor: pointer;
}

.honor-class .item .title::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 1.0625rem;
  background: #2c61c7;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
  margin-right: 3px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 1px;
}

.honor-class .item:last-child {
  padding-right: 0;
}

.honor-class .item:first-child {
  padding-left: 0;
}

.honor-class .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #000;
  opacity: 0.37;
}

.honor-class .item:hover .title {
  color: #2c61c7;
}

.honor-class .item:hover .title::before {
  opacity: 1;
}

.honor-class .item.active .title {
  color: #2c61c7;
  font-family: Roboto-Bold;
}

.honor-class .item.active .title::before {
  opacity: 1;
}

.honor .swiper-table {
  position: relative;
  margin-top: 6.875rem;
}

.honor .swiper-box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

.honor .swiper-box.active {
  z-index: 1;
  opacity: 1;
  position: relative;
}

.honor .swiper {
  width: 65.9375rem;
  margin: 0 auto;
  padding: 3.125rem;
}

.honor .swiper .swiper-slide img {
  display: block;
  width: 100%;
  transition: all 0.2s;
}

.honor .swiper .swiper-slide img {
  transform: rotateY(20deg) scale(1.08);
}

.honor .swiper .swiper-slide-next img {
  transform: rotateY(-20deg) scale(1.08);
  mask-image: linear-gradient(90deg, black, transparent);
}

@media screen and (max-width: 768px) {
  .honor .swiper .swiper-slide-next img {
    transform: rotateY(-30deg) scale(1.08);
  }
}

.honor .swiper .swiper-slide-prev img {
  mask-image: linear-gradient(-90deg, black, transparent);
}

.honor .swiper .swiper-slide-next + .swiper-slide img {
  transform: rotateY(20deg) scale(1.08);
}

@media screen and (max-width: 768px) {
  .honor .swiper .swiper-slide-next + .swiper-slide img {
    transform: rotateY(30deg) scale(1.08);
  }
}

.honor .swiper .swiper-slide-active img {
  transform: rotateY(0deg) scale(1);
}

.honor .swiper-button-box i {
  color: var(--main-color);
  font-size: var(--font16);
}

.honor .swiper-button-box i::after {
  color: #fff;
  font-size: var(--font16);
}

.honor #canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.honor .honor-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6.25rem;
  z-index: 2;
}

.history-box {
  padding-top: 6.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.history-box .swiper-box {
  margin: 100px 0;
  overflow: hidden;
  position: relative;
}

.history-box .swiper-box .swiper {
  overflow: visible;
  height: 36.25rem;
}

.history-box .swiper-box .swiper .swiper-wrapper {
  align-items: flex-end;
}

.history-box .swiper-box .swiper .swiper-slide {
  display: flex;
  align-items: flex-end;
}

.history-box .swiper-box .swiper .swiper-slide-active .box {
  height: 24.375rem;
}

.history-box .swiper-box .swiper .swiper-slide-next + .swiper-slide .box {
  height: 30rem;
}

.history-box .swiper-box .swiper .swiper-slide-next + .swiper-slide + .swiper-slide .box {
  height: 24rem;
}

.history-box .swiper-box .swiper .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide .box {
  height: 24rem;
}

.history-box .swiper-box .swiper .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide .leftLine,
.history-box .swiper-box .swiper .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide .text {
  opacity: 0;
}

.history-box .swiper-box .swiper .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide .lines .line:first-child {
  background: linear-gradient(0deg, rgba(44, 97, 199, 0) 0%, var(--main-color) 100%);
}

.history-box .swiper-box .swiper .swiper-slide-prev .leftLine,
.history-box .swiper-box .swiper .swiper-slide-prev .text {
  opacity: 0;
}

.history-box .swiper-box .box {
  align-items: flex-end;
  height: 36.25rem;
}

.history-box .swiper-box .box .leftLine {
  flex-shrink: 0;
  position: relative;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(44, 97, 199, 0) 0%, var(--main-color) 80%, rgba(44, 97, 199, 0) 100%);
  margin-right: 1.25rem;
}

.history-box .swiper-box .box .leftLine .cir {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-color);
  background-clip: padding-box;
  border: 8px solid rgba(34, 83, 131, 0.32);
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.history-box .swiper-box .box .lines {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.history-box .swiper-box .box .lines .line {
  background: linear-gradient(0deg, rgba(44, 97, 199, 0) 0%, var(--main-color) 100%);
  width: 2px;
  min-height: 4px;
}

.history-box .swiper-box .box .lines .line:first-child {
  background: transparent;
}

.history-box .swiper-box .box .text {
  flex: 1;
  height: 100%;
  padding-top: 2.5rem;
}

.history-box .swiper-box .box .text .year {
  font-family: Roboto-Bold;
  font-size: var(--font35);
  color: var(--main-color);
}

.history-box .swiper-box .box .text .content {
  margin-top: 1.25rem;
  width: 75%;
  color: rgba(0, 0, 0, 0.86);
  height: calc(100% - 10rem);
}

.history-box .swiper-box .swiper-button-prev,
.history-box .swiper-box .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.history-box .swiper-box .swiper-button-prev svg path,
.history-box .swiper-box .swiper-button-next svg path {
  fill: transparent;
}

.history-box .swiper-box .swiper-button-prev i,
.history-box .swiper-box .swiper-button-next i {
  color: var(--main-color);
}

.history-box .swiper-box .swiper-button-prev i::after,
.history-box .swiper-box .swiper-button-next i::after {
  color: #fff;
}

.history-box .swiper-box .swiper-button-prev:hover svg path,
.history-box .swiper-box .swiper-button-next:hover svg path {
  fill: var(--main-color);
}

.history-box .swiper-box .swiper-button-next {
  right: 4.6875rem;
}

.history-box .swiper-box .swiper-button-prev {
  left: 4.6875rem;
}

.history-box .full-line {
  margin-top: 3.75rem;
  height: 16.25rem;
  overflow: hidden;
}

.history-box .full-line canvas {
  width: 100%;
  height: 100%;
}

.solution1-1 {
  padding-top: 3.75rem;
}

.solution1-1 .container {
  min-height: 33.125rem;
  background: rgba(214, 218, 224, 0.37);
  border-radius: 1.25rem;
  overflow: hidden;
}

.solution1-1 .text-box {
  width: 41%;
  padding: 0 1.875rem 0 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution1-1 .text-box .desc {
  font-family: Roboto-Bold;
  font-size: var(--font24);
  margin: 1.25rem 0 3.75rem;
}

.solution1-1 .text-box .content {
  color: rgba(0, 0, 0, 0.83);
  line-height: 1.6;
}

.solution1-1 .img-box {
  width: 59%;
  border-radius: 1.25rem 0 0 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution1-2 {
  margin-top: 6.25rem;
}

.solution1-2 .table-btn {
  margin-top: 4.0625rem;
  gap: 3.75rem;
}

.solution1-2 .table-btn li {
  flex: 1;
  height: 13.125rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  text-align: center;
  padding: 3.125rem 1.25rem 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

.solution1-2 .table-btn li .number {
  font-size: var(--font55);
  letter-spacing: -4px;
  color: var(--main-color);
  font-family: Roboto-Bold;
}

.solution1-2 .table-btn li p {
  font-size: var(--font24);
  color: #101b30;
}

.solution1-2 .table-btn li::after {
  content: "";
  width: 2.1875rem;
  height: 0.9375rem;
  background: var(--main-color);
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0;
}

.solution1-2 .table-btn li:hover {
  background: var(--main-color);
}

.solution1-2 .table-btn li:hover .number,
.solution1-2 .table-btn li:hover p {
  color: #fff;
}

.solution1-2 .table-btn li:hover::after {
  opacity: 1;
}

.solution1-2 .table-btn li.active {
  background: var(--main-color);
}

.solution1-2 .table-btn li.active .number,
.solution1-2 .table-btn li.active p {
  color: #fff;
}

.solution1-2 .table-btn li.active::after {
  opacity: 1;
}

.solution1-2 .table-box {
  margin-top: 2.1875rem;
}

.solution1-2 .table-box .table-item {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: none;
}

.solution1-2 .table-box .table-item table {
  width: 100% !important;
}

.solution1-2 .table-box .table-item .firstRow {
  background: var(--main-color);
  color: #f2f2f2;
  text-align: center;
}

.solution1-2 .table-box .table-item .firstRow td {
  font-size: var(--font18);
  font-family: Roboto-Bold;
}

.solution1-2 .table-box .table-item tr {
  background: #f2f2f2;
}

.solution1-2 .table-box .table-item tr td {
  height: 3.75rem;
  text-align: center;
}

.solution1-2 .table-box .table-item.active {
  display: block;
}

.solution1-2 .table-box .table-item1 tr:nth-child(2) td:first-child,
.solution1-2 .table-box .table-item2 tr:nth-child(2) td:first-child {
  font-family: Roboto-Bold;
}

.solution1-2 .table-box .table-item1 tr:nth-child(2) td:last-child,
.solution1-2 .table-box .table-item2 tr:nth-child(2) td:last-child {
  line-height: 1.75;
  padding: 0 0.625rem;
}

.solution1-2 .table-box .table-item1 .firstRow td:first-child,
.solution1-2 .table-box .table-item2 .firstRow td:first-child {
  width: 14.37%;
}

.solution1-2 .table-box .table-item1 .firstRow td:last-child,
.solution1-2 .table-box .table-item2 .firstRow td:last-child {
  width: 20%;
}

.solution1-2 .table-box .table-item3 tr td {
  width: 16%;
}

.solution1-2 .table-box .table-item3 tr:nth-child(2) td:first-child {
  font-family: Roboto-Bold;
}

.solution1-2 .table-box .table-item3 img {
  max-width: 90%;
  display: block;
  margin: auto;
}

.solution1-2 .table-box .table-item3 p {
  margin-top: 5px;
}

.solution1-3 {
  margin-top: 4.0625rem;
  margin-bottom: 5.9375rem;
}

.solution1-3 .table-box {
  margin-top: 2.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.solution1-3 table {
  width: 100% !important;
}

.solution1-3 table tr td {
  background: #f2f2f2;
  height: 5.625rem;
  text-align: center;
}

.solution1-3 table tr:first-child td {
  height: 3.125rem;
}

.solution1-3 table tr:nth-child(2) td {
  height: 2.5rem;
}

.solution1-3 table tr:not(:nth-child(2)) td:first-child {
  background: var(--main-color);
  color: #fff;
  width: 14.75%;
  font-family: Roboto-Bold;
}

.solution1-4 {
  height: 52.1875rem;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6.25rem;
}

.solution1-4 .page-title {
  line-height: 1.6;
}

.solution1-4 .swiper-button-box {
  margin-top: 4.6875rem;
}

.solution1-4 .swiper-button-box svg path {
  fill: rgba(255, 255, 255, 0.45);
}

.solution1-4 .swiper-button-box .swiper-button-prev i::after,
.solution1-4 .swiper-button-box .swiper-button-next i::after {
  color: var(--main-color);
}

.solution1-4 .swiper-button-box .swiper-button-prev:hover svg path,
.solution1-4 .swiper-button-box .swiper-button-next:hover svg path {
  fill: #fff;
}

.solution1-4 .swiper-box {
  padding-left: var(--page-aside-width);
  overflow: hidden;
}

.solution1-4 .swiper-box .swiper {
  margin-top: 2.1875rem;
}

.solution1-4 .swiper-box .swiper-slide {
  background: rgba(255, 255, 255, 0.7);
  height: 9.0625rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.solution1-4 .swiper-box .swiper-slide .icon-box {
  width: 40%;
  text-align: center;
}

.solution1-4 .swiper-box .swiper-slide i {
  font-size: var(--font40);
}

.solution1-4 .swiper-box .swiper-slide p {
  width: 60%;
}

.solution1-4 .swiper-box .swiper-slide:hover {
  background: var(--main-color);
  color: #fff;
}

.solution1-5 {
  background: #f1f1f1;
  padding: 6.875rem 0;
}

.solution1-5 .line {
  width: 8.4375rem;
  height: 4px;
  background: var(--main-color);
  margin-top: 0.9375rem;
}

.solution1-5 .list {
  margin-top: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2.1875rem 2.1875rem;
}

@media (max-width: 992px) {
  .solution1-5 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .solution1-5 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.solution1-5 .list li {
  padding-top: 70%;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}

.solution1-5 .list li .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all var(--hover-time) var(--hover-ease);
}

.solution1-5 .list li p {
  position: absolute;
  bottom: 0.9375rem;
  left: 0;
  width: 100%;
  padding: 0 2rem;
  font-size: var(--font24);
  color: #fff;
  font-family: Roboto-Bold;
}

.solution1-5 .list li:hover .imgBox {
  transform: scale(1.1);
}

.solution2-1 {
  padding: 5.625rem 0;
}

.solution2-1 .left {
  width: 36%;
}

.solution2-1 .left .left-box {
  margin-top: 2.8125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem 1.875rem;
}

.solution2-1 .left .left-box .item {
  background: #f2f2f2;
  border-radius: 1.25rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution2-1 .left .left-box .item:last-child {
  grid-column: span 2;
}

.solution2-1 .left .left-box .item i {
  font-size: var(--font35);
  margin-right: 0.9375rem;
  color: var(--main-color);
}

.solution2-1 .left .left-box .item .text p {
  font-size: var(--font20);
  font-family: Roboto-Bold;
}

.solution2-1 .right {
  width: 52.2%;
}

.solution2-1 .right * {
  color: rgba(0, 0, 0, 0.77);
  line-height: 1.875;
}

.solution2-2 .container {
  position: relative;
}

.solution2-2 .imgBox {
  padding-top: 38.25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 1.875rem;
}

.solution2-2 .text {
  width: 43.75%;
  color: #fff;
  position: absolute;
  left: 4.0625rem;
  bottom: 3.125rem;
}

.solution2-2 .text * {
  font-size: var(--font20);
  font-family: Roboto-Bold;
  line-height: 1.95;
}

.solution2-3 {
  margin: 4.6875rem 0 6.875rem;
  position: relative;
}

.solution2-3 .swiper-slide {
  background: #f2f2f2;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all var(--hover-time) var(--hover-ease);
  cursor: pointer;
}

.solution2-3 .swiper-slide .img-box {
  height: 18.75rem;
  border-radius: 0 0 1.25rem 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution2-3 .swiper-slide .text-box {
  font-family: Roboto-Bold;
  font-size: var(--font20);
  height: 6.875rem;
  display: flex;
  align-items: center;
  padding: 0 1.5625rem;
  box-sizing: border-box;
}

.solution2-3 .swiper-slide:hover {
  background: var(--main-color);
}

.solution2-3 .swiper-slide:hover .text-box {
  color: #fff;
}

.solution2-3 .swiper-button-prev,
.solution2-3 .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.solution2-3 .swiper-button-prev svg path,
.solution2-3 .swiper-button-next svg path {
  fill: var(--main-color);
}

.solution2-3 .swiper-button-next {
  right: calc(var(--page-aside-width) / 2);
}

.solution2-3 .swiper-button-prev {
  left: calc(var(--page-aside-width) / 2);
}

.productListStyle .productItem {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #f1f1f1;
  transition: all var(--hover-time) var(--hover-ease);
}

.productListStyle .productItem .img-box {
  padding-top: 76.31%;
  position: relative;
}

.productListStyle .productItem .img-box .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.productListStyle .productItem .text-box {
  height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.875rem;
  box-sizing: border-box;
}

.productListStyle .productItem .text-box .title {
  color: #000;
  font-size: var(--font18);
  font-family: Roboto-Bold;
}

.productListStyle .productItem .text-box .btn-el {
  position: relative;
  width: 59px;
}

.productListStyle .productItem .text-box .btn-el i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.productListStyle .productItem .text-box .btn-el svg path {
  fill: var(--main-color);
}

.productListStyle .productItem:hover {
  box-shadow: 0px 26px 39px 1px rgba(10, 2, 5, 0.25);
}

.solution3-1 {
  padding: 5rem 0;
}

.solution3-1 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 3.75rem 1.875rem;
}

@media (max-width: 992px) {
  .solution3-1 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .solution3-1 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.solution3-1 .loadBtn {
  width: 15.625rem;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font20);
  background: var(--main-color);
  border-radius: 1.25rem;
  margin: 6.25rem auto 0;
  cursor: pointer;
}

.solution4 {
  overflow: hidden;
}

.solution4-1 {
  padding-top: 2.5rem;
  padding-bottom: 9.375rem;
  background: linear-gradient(180deg, #f4f4f5, #dddee0);
}

.solution4-1 .sec2 {
  margin-top: 4.0625rem;
}

.solution4-1 .sec2 .left {
  width: 165px;
}

.solution4-1 .sec2 .left .thumbsSwiper {
  height: 458px;
  width: 100%;
}

.solution4-1 .sec2 .left .thumbsSwiper .swiper-slide {
  width: 165px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 0.625rem;
}

.solution4-1 .sec2 .left .thumbsSwiper .swiper-slide-thumb-active {
  border-color: var(--main-color);
}

.solution4-1 .sec2 .left .thumbsSwiper img {
  display: block;
  max-width: 80%;
  max-height: 90%;
}

.solution4-1 .sec2 .left .swiper-button-box {
  margin-top: 3.75rem;
}

.solution4-1 .sec2 .left .swiper-button-box .swiper-button-prev,
.solution4-1 .sec2 .left .swiper-button-box .swiper-button-next {
  width: 45px;
}

.solution4-1 .sec2 .left .swiper-button-box i {
  color: var(--main-color);
  font-size: var(--font16);
}

.solution4-1 .sec2 .left .swiper-button-box i::after {
  color: #fff;
  font-size: var(--font16);
}

.solution4-1 .sec2 .center {
  width: 42%;
}

.solution4-1 .sec2 .center .gallerySwiper {
  margin-left: auto;
  margin-right: auto;
}

.solution4-1 .sec2 .center .gallerySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution4-1 .sec2 .center .gallerySwiper img {
  display: block;
  max-width: 90%;
}

.solution4-1 .sec2 .right .line {
  width: 90%;
  height: 1px;
  position: relative;
  background: rgba(0, 0, 0, 0.42);
  margin: 2.5rem 0;
}

.solution4-1 .sec2 .right .line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--main-color);
  width: 10px;
  height: 10px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.solution4-1 .sec2 .right .mode-desc {
  line-height: 1.6875;
  color: #000;
}

.solution4-1 .sec2 .right .long-btn {
  margin-top: 4.375rem;
}

.solution4-1 .sec2 .right .long-btn-label {
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.66);
}

.solution4-1 .sec2 .right .long-btn-label svg path {
  fill: rgba(255, 255, 255, 0.66);
}

.solution4-1 .sec2 .right .long-btn-label .label-corner {
  right: -18px;
}

.solution4-1 .sec3 {
  margin-top: 6.25rem;
}

.solution4-1 .sec3-box {
  margin-top: 1.25rem;
  display: flex;
  gap: 10px;
}

.solution4-1 .sec3-box .item {
  background: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.875rem;
  box-sizing: border-box;
  flex: 1;
}

.solution4-1 .sec3-box .item .number {
  font-size: var(--font60);
  color: var(--main-color);
  letter-spacing: -5px;
  font-family: Roboto-Bold;
}

.solution4-1 .sec3-box .item .title {
  font-size: var(--font24);
  font-family: Roboto-Bold;
  color: #000;
  margin: 1.25rem 0 0.9375rem;
}

.solution4-1 .sec3-box .item .desc {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.74);
}

@media screen and (max-width: 992px) {
  .solution4-1 .sec3-box {
    flex-direction: column;
  }
}

.solution4-2 {
  margin-top: -5rem;
  position: relative;
  background-image: linear-gradient(180deg, #ededed 0%, #fefefe 50%, #fff 100%);
  padding-top: 8.75rem;
  border-top-left-radius: 5rem;
  overflow: hidden;
}

.solution4-2 .sec1 .table-box {
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  margin-top: 1.875rem;
}

.solution4-2 .sec1 .table-box table {
  width: 100% !important;
  border-collapse: collapse;
  border-bottom: 1px solid #dedede;
}

.solution4-2 .sec1 .table-box table tr {
  background: #fff;
}

.solution4-2 .sec1 .table-box table tr td {
  height: 4.0625rem;
  text-align: center;
}

.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(1),
.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(1) ~ td {
  width: 100% !important;
}

.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(2),
.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(2) ~ td {
  width: 50% !important;
}

.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(3),
.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(3) ~ td {
  width: 33% !important;
}

.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(4),
.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(4) ~ td {
  width: 25% !important;
}

.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(5),
.solution4-2 .sec1 .table-box table tr td:first-child:nth-last-child(5) ~ td {
  width: 20% !important;
}

.solution4-2 .sec1 .table-box table tr td:not(:last-child) {
  border-right: 1px solid #dedede;
}

.solution4-2 .sec1 .table-box table tr:nth-child(odd) {
  background: #eee;
}

.solution4-2 .sec1 .table-box table .firstRow {
  background: var(--main-color) !important;
  color: #fff;
}

.solution4-2 .sec1 .table-box table .firstRow td {
  font-size: var(--font20);
  font-family: Roboto-Bold;
}

.solution4-2 .sec2 {
  margin-top: 7.5rem;
}

.solution4-2 .sec2 .formBox {
  margin-top: 3.125rem;
  background: linear-gradient(180deg, #fff 70%, transparent);
  border-radius: 1.875rem;
  padding: 6.875rem 5.625rem;
  position: relative;
}

.solution4-2 .sec2 .formBox .form-row {
  margin-bottom: 1.5625rem;
}

.solution4-2 .sec2 .formBox .form-row.textareaRow {
  margin-bottom: 2.5rem;
}

.solution4-2 .sec2 .formBox .form-row.textareaRow .item {
  width: 100%;
}

.solution4-2 .sec2 .formBox .item {
  width: 44.5%;
}

.solution4-2 .sec2 .formBox .item .tip {
  font-size: var(--font20);
  font-family: Roboto-Bold;
}

.solution4-2 .sec2 .formBox .item .tip sup {
  color: #ff0000;
  margin-right: 3px;
}

.solution4-2 .sec2 .formBox .item input {
  display: block;
  width: 100%;
  background: #f4f5f9;
  height: 3.75rem;
  margin-top: 0.9375rem;
  padding: 0 1.5625rem;
  box-sizing: border-box;
  border-radius: 5px;
}

.solution4-2 .sec2 .formBox .item input::placeholder {
  color: rgba(0, 0, 0, 0.34);
}

.solution4-2 .sec2 .formBox .item textarea {
  display: block;
  width: 100%;
  resize: none;
  background: #f4f5f9;
  height: 15.625rem;
  margin-top: 0.9375rem;
  padding: 1.5625rem;
  border-radius: 5px;
  box-sizing: border-box;
}

.solution4-2 .sec2 .formBox .submit button {
  padding: 1.25rem 4.0625rem;
  background: var(--main-color);
  color: #fff;
  font-size: var(--font20);
  font-family: Roboto-Bold;
  border-radius: 10px;
}

.solution4-2 .sec3 {
  margin-top: 1.5625rem;
}

.solution4-2 .sec3 .swiper-box {
  padding: 0 0 3.4375rem;
}

.solution4-2 .sec3 .relatedProducts {
  margin-top: 6.25rem;
  overflow: visible;
}

.solution4-2 .sec3 .relatedProducts .swiper-slide {
  opacity: 0;
}

.solution4-2 .sec3 .relatedProducts .swiper-slide-active,
.solution4-2 .sec3 .relatedProducts .swiper-slide-next,
.solution4-2 .sec3 .relatedProducts .swiper-slide-next + .swiper-slide,
.solution4-2 .sec3 .relatedProducts .swiper-slide-next + .swiper-slide + .swiper-slide {
  opacity: 1;
}

.solution4-2 .sec3 .swiper-button-box .swiper-button-prev,
.solution4-2 .sec3 .swiper-button-box .swiper-button-next {
  width: 45px;
}

.solution4-2 .sec3 .swiper-button-box i {
  color: var(--main-color);
  font-size: var(--font16);
}

.solution4-2 .sec3 .swiper-button-box i::after {
  color: #fff;
  font-size: var(--font16);
}

.backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.9375rem;
  height: 3.4375rem;
  border: 1px solid #000;
  border-radius: 27px;
  transition: all 0.3s ease-in-out;
}

.backBtn i {
  font-size: var(--font22);
  color: var(--main-color);
  margin-right: 0.75rem;
}

.backBtn span {
  color: #000;
  font-size: var(--font20);
  transition: all 0.3s ease-in-out;
}

.backBtn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.backBtn:hover span {
  color: #fff;
  display: none;
}

.backBtn:hover i {
  color: #fff;
}

.solution5-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 48.125rem;
  background-position: center bottom;
  padding-top: 7.8125rem;
  box-sizing: border-box;
}

.solution5-1 .page-title {
  flex-shrink: 0;
}

.solution5-1 .text {
  color: rgba(0, 0, 0, 0.83);
  line-height: 1.875;
  width: 64%;
}

.solution5-2 .row {
  padding: 5rem 0;
}

.solution5-2 .row-1 .img-box {
  width: 53.125%;
  padding-top: 30.375%;
  position: relative;
  background: var(--main-color);
  border-radius: 30px;
  overflow: hidden;
}

.solution5-2 .row-1 .img-box .imgPos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution5-2 .row-1 .text-box {
  width: 42.2%;
}

.solution5-2 .row-1 .text-box .page-title {
  line-height: 1.45;
}

.solution5-2 .row-1 .text-box .desc {
  margin-top: 2.5rem;
  line-height: 1.875;
}

.solution5-2 .row .swiper-box {
  margin-top: 2.8125rem;
  padding: 0 4.125rem;
  position: relative;
}

.solution5-2 .row .swiper-box .swiper-slide {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution5-2 .row .swiper-box .swiper-slide .imgBox {
  padding-top: 56.14%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution5-2 .row .swiper-box .swiper-slide .title {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: var(--font20);
  padding: 0 1rem;
}

.solution5-2 .row .swiper-box .swiper-button-prev,
.solution5-2 .row .swiper-box .swiper-button-next {
  width: 45px;
  position: absolute;
  top: 50%;
}

.solution5-2 .row .swiper-box .swiper-button-prev i,
.solution5-2 .row .swiper-box .swiper-button-next i {
  color: var(--main-color);
}

.solution5-2 .row .swiper-box .swiper-button-prev i::after,
.solution5-2 .row .swiper-box .swiper-button-next i::after {
  color: #fff;
}

.solution5-2 .row .swiper-box .swiper-button-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.solution5-2 .row .swiper-box .swiper-button-next {
  right: 0;
  transform: translate(50%, -50%);
}

.solution5-2 .row:nth-child(2) {
  background: linear-gradient(90deg, var(--main-color) 0%, #fff 75%);
}

.solution5-2 .row:nth-child(2) .swiper-button-prev i {
  color: #fff;
}

.solution5-2 .row:nth-child(2) .swiper-button-prev i::after {
  color: var(--main-color);
}

.solution5-2 .row:nth-child(2) .swiper-button-prev svg path {
  stroke: #fff;
}

.solution5-2 .row:nth-child(2) .swiper-button-prev:hover svg path {
  fill: #fff;
}

.solution6-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5.625rem 0;
}

.solution6-1 .desc {
  line-height: 1.875;
  margin-top: 1.5rem;
  color: rgba(0, 0, 0, 0.83);
}

.solution6-1 .list {
  margin-top: 3.75rem;
  height: 37.5rem;
  gap: 12px;
  align-items: flex-end;
}

.solution6-1 .list .item {
  flex: 1;
  height: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.25rem;
  transition: height var(--hover-ease) var(--hover-time);
  position: relative;
  overflow: hidden;
}

.solution6-1 .list .item .icon-box {
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  transition: top var(--hover-ease) var(--hover-time);
  z-index: 2;
}

.solution6-1 .list .item .icon-box i {
  font-size: var(--font50);
}

.solution6-1 .list .item .icon-box .title {
  margin-top: 1.875rem;
  font-size: var(--font26);
  font-family: Roboto-bold;
}

.solution6-1 .list .item .text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  color: #fff;
  transition: transform var(--hover-ease) var(--hover-time);
  padding: 0 1.125rem;
  box-sizing: border-box;
  z-index: 2;
}

.solution6-1 .list .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--main-color) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.solution6-1 .list .item:hover {
  height: 100%;
}

.solution6-1 .list .item:hover .icon-box {
  top: 30%;
}

.solution6-1 .list .item:hover .text-box {
  transform: translateY(-20px);
}

.solution6-1 .list .item:hover::after {
  opacity: 1;
}

.solution6-1 .list .item.active {
  height: 100%;
}

.solution6-1 .list .item.active .icon-box {
  top: 30%;
}

.solution6-1 .list .item.active .text-box {
  transform: translateY(-20px);
}

.solution6-1 .list .item.active::after {
  opacity: 1;
}

.solution6-2 {
  height: 49.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding-top: 9.75rem;
}

.solution6-2 .text {
  text-align: center;
}

.solution6-2 .text * {
  font-size: var(--font40);
  color: #fff;
  font-family: Roboto-Bold;
}

.page {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  --itemBorder: 40px;
}

.page .page-item .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--itemBorder);
  height: var(--itemBorder);
  font-size: 16px;
  color: #000;
  transition: all 0.5s ease-in-out;
  padding: 0;
  background: #fff;
  border-radius: 5px;
}

.page .page-item.active .page-link {
  background: var(--main-color);
  color: #fff;
}

.page .page-item:hover .page-link {
  background: var(--main-color);
  color: #fff;
}

.page .page-item:not(:last-child) {
  margin-right: 20px;
}

.webMap-box {
  background: #f2f2f2;
  padding: 5rem 0;
}

.webMap-box .list {
  margin-top: 2.5rem;
}

.webMap-box .list a {
  color: #000;
}

.webMap-box .list .one-title {
  width: 33%;
  margin-bottom: 40px;
}

.webMap-box .list .one-title h2 {
  margin-bottom: 30px;
}

.webMap-box .list .one-title h2 a {
  font-size: 24px;
}

.webMap-box .list .two-title i {
  font-size: 20px;
  margin-right: 5px;
}

.webMap-box .list .two-title:not(:last-child) {
  margin-bottom: 20px;
}

.webMap-box .list .subList2 {
  margin-top: 10px;
}

.webMap-box .list .subList2 h4 a {
  font-weight: 100;
  opacity: 0.4;
  font-size: 16px;
  text-indent: 2em;
}

.webMap-box .list .subList2 h4:not(:last-child) {
  margin-bottom: 10px;
}

.webMap-box .list h3 a {
  font-size: 20px;
  opacity: 0.8;
  font-weight: normal;
}

aside {
  position: fixed;
  bottom: 5vh;
  right: 30px;
}

aside .item {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

aside .item i {
  font-size: 20px;
  color: #fff;
}

aside .item:hover {
  background: #2c61c7;
}

aside .mod_backTop {
  opacity: 0;
}

aside .mod_backTop.active {
  opacity: 1;
}
