@charset "UTF-8";
/**
 * @desc 高仕捷_style
 * @author Tven
 * @date 2023-07-21
 */
/**
* $row 一行元素个数
* $gap 元素左右间距
* $bottom 元素上下间距
* $xsNum 小屏幕一行元素个数-可选值
* $xsBottom 小屏幕元素上下间距-可选值
*/
/**
 * grid布局
 * @param {number} $rows   行数
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $rows       行数
    * @param {number} $colGap     行列间隔
*/
@font-face {
  font-family: 'MONTSERRAT-BOLD';
  src: url("../fonts/MONTSERRAT-BOLD.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MONTSERRAT-LIGHT';
  src: url("../fonts/MONTSERRAT-LIGHT.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'D-DINCONDENSED-BOLD';
  src: url("../fonts/D-DINCONDENSED-BOLD.TTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MONTSERRAT-HAIRLINE';
  src: url("../fonts/MONTSERRAT-HAIRLINE.OTF");
  font-weight: normal;
  font-style: normal;
}

/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  z-index: 990;
  transition: all 0.5s ease-out;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header.active {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header > .container {
  height: 100%;
}

.header .xiala {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25rem;
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
  z-index: -10;
  transform: translateY(5%);
  opacity: 0;
  pointer-events: none;
  transition: all .5s ease;
}

.header .xiala::after {
  position: absolute;
  left: 0;
  top: 8%;
  content: '';
  width: 46.125rem;
  height: 17.75rem;
  background: url(../img/xian2.png) left center no-repeat;
  background-size: contain;
}

.header .xiala.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.logo {
  height: 100%;
  margin-right: auto;
}

.logo a {
  height: 100%;
}

.logo a img {
  height: 100%;
}

.pc_nav > ul > li {
  position: relative;
  height: 6.25rem;
  display: flex;
  align-items: center;
}

.pc_nav > ul > li.active > a {
  color: #006bd3;
  font-weight: bold;
}

.pc_nav > ul > li:not(:last-child) {
  margin-right: 3rem;
}

.pc_nav > ul > li > a {
  font-size: 1.125rem;
  color: #000;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.pc_nav > ul > li > a:hover {
  color: #006bd3;
}

.pc_nav > ul > li:hover ul {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pc_nav > ul > li ul {
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(2rem);
  background: #fff;
  padding-top: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pc_nav > ul > li ul.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pc_nav > ul > li ul li {
  margin-bottom: 1rem;
}

.pc_nav > ul > li ul li a {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: lighter;
  color: #000;
  padding: 0 1rem;
  white-space: nowrap;
  transition: all .3s ease;
}

.pc_nav > ul > li ul li a:hover {
  color: #006bd3;
  text-shadow: 0 0 0 #006bd3, 0 0 0 #006bd3, 0 0 0 #006bd3;
}

.head_more {
  color: #006bd3;
}

.head_more .head_lang {
  margin-left: 3rem;
}

.head_more .head_lang a {
  transition: all 0.3s ease;
  font-size: 1.375rem;
  color: #006bd3;
  font-weight: bold;
}

.head_more .head_search {
  cursor: pointer;
  margin-left: 3rem;
}

.head_more .head_search i {
  font-size: 1.375rem;
}

.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 2;
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-items: center;
  height: 7.5rem;
  font-size: 1.125rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search.cur {
  transform: translateY(0);
  opacity: 1;
}

.search input {
  height: 3.125rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  color: #fff;
  outline: none;
  width: 40%;
}

.search button {
  height: 3.125rem;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0 2.5rem;
  outline: none;
}

.search button i {
  font-size: 1.5rem;
  color: #fff;
}

.search .close {
  cursor: pointer;
  margin-left: 2.5rem;
  color: rgba(255, 255, 255, 0.1);
}

.search .close i {
  font-size: 2rem;
}

.xs_bg {
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  transition: all 0.3s ease;
}

.xs_bg.active {
  opacity: 1;
  pointer-events: auto;
}

.dropdown_menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 17%;
  width: 66%;
  pointer-events: none;
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown_menu::after {
  content: '';
  width: 100%;
  height: 3.125rem;
  position: absolute;
  left: 0;
  bottom: 100%;
}

.dropdown_menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.dropdown_menu .items {
  background: #fff;
  border-radius: 1.875rem;
  padding: 1.875rem;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  box-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.dropdown_menu .items::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  font-size: 18.75rem;
  z-index: -1;
  line-height: 1;
  color: #fff;
}

.dropdown_menu .items .item {
  display: none;
}

.dropdown_menu .items .item.active {
  display: flex;
}

.dropdown_menu .items .item .img {
  width: 38%;
}

.dropdown_menu .items .item .img i {
  padding-top: 50%;
  display: block;
  border-radius: 1.25rem;
}

.dropdown_menu .items .item .text {
  width: 62%;
  padding-left: 2.375rem;
}

.dropdown_menu .items .item .text .title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.dropdown_menu .items .item .text .title span {
  font-size: 1.125rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: .3125rem;
  letter-spacing: 1px;
}

.dropdown_menu .items .item .text .title strong {
  font-size: 1.75rem;
  line-height: 1;
}

.dropdown_menu .items .item .text ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.dropdown_menu .items .item .text ul li {
  margin-bottom: 1.5rem;
  width: calc((100% - 5rem)/3);
}

.dropdown_menu .items .item .text ul li:not(:nth-child(3n)) {
  margin-right: 2.5rem;
}

.dropdown_menu .items .item .text ul li a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: .75rem 1.5rem;
  color: #333;
  border-radius: .5rem;
  background: #e8f3f6;
  transition: all 0.3s ease;
  overflow: hidden;
  font-size: 1.125rem;
}

.dropdown_menu .items .item .text ul li a:hover {
  color: #fff;
  background: #006bd3;
}

.dropdown_menu .items .item .text ul li a:hover::after {
  opacity: 1;
}

.dropdown_menu .items .item .text ul li a:hover em::after {
  opacity: 0;
}

.dropdown_menu .items .item .text ul li a:hover em::before {
  opacity: 1;
}

.dropdown_menu .items .item .text ul li a:hover i {
  color: #fff;
}

.dropdown_menu .items .item .text ul li a em {
  margin-right: .5rem;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.dropdown_menu .items .item .text ul li a em::after, .dropdown_menu .items .item .text ul li a em::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/logo_icon2.png) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.dropdown_menu .items .item .text ul li a em::before {
  background: url(../img/nav_ico.png) center no-repeat;
  background-size: contain;
  opacity: 0;
}

.dropdown_menu .items .item .text ul li a strong {
  font-weight: normal;
}

.dropdown_menu .items .item .text ul li a i {
  margin-left: auto;
  color: #006bd3;
  transition: all 0.3s ease;
}

/* banner
---------------------------------------------------------------- */
.banner {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.banner.active {
  opacity: 0;
  pointer-events: none;
}

.banner.s_banner_xs {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.banner .swiper {
  height: 100%;
}

.banner .swiper .swiper-slide {
  height: 100%;
}

.banner .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .swiper .swiper-slide .caption {
  padding-bottom: 5%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(9.0625rem + 15px);
  line-height: 1;
}

.banner .swiper .swiper-slide .caption::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #021b79, #0575e6);
  border-top-right-radius: 40rem;
  border-bottom-right-radius: 40rem;
  opacity: 0.85;
  z-index: -1;
}

.banner .swiper .swiper-slide .caption em {
  display: block;
  font-size: 2.25rem;
  font-family: 'MONTSERRAT-BOLD';
}

.banner .swiper .swiper-slide .caption span {
  display: block;
  font-size: 3.5rem;
  margin: 2.5rem 0;
  margin-top: 2rem;
}

.banner .swiper .swiper-slide .caption p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: lighter;
}

.banner .banner_swiper_more {
  position: absolute;
  left: 0;
  padding-left: calc(9.0625rem + 15px);
  bottom: 5rem;
  z-index: 3;
  display: flex;
  align-content: center;
  color: #fff;
}

.banner .banner_swiper_more .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
}

.banner .banner_swiper_more .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0;
  background: #fff;
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  margin-right: 2rem;
  position: relative;
}

.banner .banner_swiper_more .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}

.banner .banner_swiper_more .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 1rem;
  opacity: 1;
  transform: translateX(-50%) translateY(-1rem);
}

.banner .banner_swiper_more .swiper_autoplay {
  cursor: pointer;
}

.banner .banner_swiper_more .swiper_autoplay.active i:first-child {
  display: block;
}

.banner .banner_swiper_more .swiper_autoplay.active i:last-child {
  display: none;
}

.banner .banner_swiper_more .swiper_autoplay i:first-child {
  display: none;
}

/* banner02
---------------------------------------------------------------- */
.s_banner02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.s_banner02.active {
  background: #fff;
  pointer-events: auto;
}

.s_banner02.active .d_svg {
  opacity: 0;
}

.s_banner02.active .d_logo_bg {
  animation: mylogo 2s linear;
  -webkit-animation: mylogo 2s linear;
  /*Safari and Chrome*/
}

/* .s_banner02.active .d_logo_bg img{ opacity: 1; transition-delay: 0.3s;} */
.s_banner02.active .d_bg {
  opacity: 1;
  transition-delay: 0.5s;
}

.s_banner02.active .d_bg i {
  transform: scale(1);
  transition-delay: 0.5s;
}

.s_banner02.active .d_logo {
  opacity: 1;
  transition-delay: 1.2s;
  transform: scale(1);
}

.d_svg {
  transform: scale(7);
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/logo.svg) center no-repeat;
  background-size: 100% auto;
  transition: all 0.5s ease-out;
}

.d_bg {
  display: none;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  width: 36%;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.d_bg i {
  transform: scale(0.9);
  display: block;
  padding-top: 100%;
  border-radius: 50%;
  background: #000;
  opacity: 0.1;
  transition: all 0.5s ease-out;
}

.d_logo_bg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  width: 26.25rem;
  height: 26.25rem;
  /* background: url(../images/d.png) left top no-repeat; background-size: contain;  */
  opacity: 0;
  transition: all 0.5s ease-out;
}

.d_logo_bg img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.d_logo {
  z-index: 4;
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease-out;
  transform: scale(1.2);
}

.d_logo p {
  margin: 0;
  margin-top: 5%;
  font-size: 2rem;
  letter-spacing: .1875rem;
  color: #54585a;
}

.d_logo img {
  height: 17rem;
}

@keyframes mylogo {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes mylogo /*Safari and Chrome*/ {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* index_news 样式
---------------------------------------------------------------- */
.index_news {
  background: #fff;
  position: relative;
  z-index: 2;
  margin-top: 200vh;
  padding: 2.5rem 0;
}

.index_news .item {
  display: block;
  height: 100%;
  border: 1px solid #dedede;
}

.index_news .item:hover .img img {
  transform: scale(1.05);
}

.index_news .item .img {
  overflow: hidden;
}

.index_news .item .img img {
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
  transition: all .3s;
}

.index_news .item .text {
  padding: 1.5rem 1rem;
}

.index_news .item .text h3 {
  font-size: clamp(14px, 1rem, 0.8334vw);
  color: #004ea2;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.index_news .item .text p {
  margin: 1rem 0;
  font-size: clamp(14px, 0.875rem, 0.73vw);
  color: #333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.index_news .item .text .time {
  font-size: clamp(12px, 0.75rem, 0.625vw);
  color: #999;
}

.index_news ul {
  border: 1px solid #dedede;
  padding: 1rem;
  height: 100%;
}

.index_news ul li {
  border-bottom: 1px solid #eee;
}

.index_news ul li:last-child {
  border: none;
}

.index_news ul li a {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}

.index_news ul li a:hover .time::after {
  height: 80%;
}

.index_news ul li a:hover .text {
  color: #333;
}

.index_news ul li a .time {
  color: #004ea2;
  padding: 0 1rem;
  position: relative;
  text-align: center;
  font-size: clamp(14px, 2rem, 1.667vw);
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: bold;
  line-height: 1.2;
}

.index_news ul li a .time::after {
  content: '';
  width: 2px;
  background: #004ea2;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
  transition: all .3s ease;
}

.index_news ul li a .time span {
  display: block;
  font-size: clamp(12px, 0.75rem, 0.625vw);
  font-weight: normal;
}

.index_news ul li a .text {
  font-size: clamp(14px, 1rem, 0.8334vw);
  color: #454545;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.8;
  transition: all .3s ease;
}

.index_news .mod_more {
  margin-top: 2.5rem;
}

/* index_demonstration
---------------------------------------------------------------- */
.index_demonstration {
  padding: 5rem 0;
}

.index_demonstration .items {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.index_demonstration .items .item {
  width: calc((100% - 4rem)/3);
  margin-bottom: 2.5rem;
}

.index_demonstration .items .item:not(:nth-child(3n)) {
  margin-right: 2rem;
}

.index_demonstration .items .item a {
  display: block;
  width: auto;
  height: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
}

.index_demonstration .items .item a:hover .img i {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.index_demonstration .items .item a:hover .img em {
  transform: scale(1.1);
}

.index_demonstration .items .item a:hover .title {
  color: #fff;
}

.index_demonstration .items .item a:hover .title::after {
  opacity: 1;
}

.index_demonstration .items .item a .img {
  overflow: hidden;
  position: relative;
}

.index_demonstration .items .item a .img i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  z-index: 2;
  transition: all .3s ease;
}

.index_demonstration .items .item a .img em {
  padding-top: 60%;
  display: block;
  transition: all .5s ease;
}

.index_demonstration .items .item a .title {
  position: relative;
  z-index: 2;
  height: 6.25rem;
  padding: 0 1.5rem;
  font-size: 1.125rem;
  color: #474747;
  line-height: 1.6;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_demonstration .items .item a .title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index_demonstration .items .item a .title::after {
  transition: all .3s ease;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  z-index: -1;
  opacity: 0;
}

/* footer 样式
---------------------------------------------------------------- */
.footer {
  color: #fff;
  background: linear-gradient(to right, #004ea2, #008cd6);
}

.footer .left {
  width: 27.5%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  padding-right: 1.875rem;
}

.footer .left img {
  margin-bottom: 3.125rem;
  max-height: 5.25rem;
}

.footer .left ul li {
  font-size: 1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
}

.footer .left ul li:first-child span {
  font-size: 1.5rem;
  font-family: 'D-DINCONDENSED-BOLD';
}

.footer .left ul li i {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.25rem;
  margin-right: .5rem;
}

.footer .left p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 2;
  margin: 0;
  margin-top: 1rem;
}

.footer .left p a {
  color: rgba(255, 255, 255, 0.5);
}

.footer .center {
  width: 72.5%;
  padding-left: 6.875rem;
  padding-right: 3.75rem;
  margin-top: 6.875rem;
}

.footer .center ul li {
  margin-bottom: .75rem;
}

.footer .center ul li:first-child {
  margin-bottom: 2.5rem;
}

.footer .center ul li:first-child a {
  color: #fff;
}

.footer .center ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all .3s ease;
}

.footer .center ul li a:hover {
  color: #fff;
}

.footer .center ul li a strong {
  font-size: 1.125rem;
}

.footer .right {
  width: 11.25%;
  height: 8.375rem;
  margin-top: 6.875rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

.footer .right img {
  height: 6.375rem;
}

.bannerWave {
  overflow: hidden;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 7.5rem;
  z-index: 2;
  pointer-events: none;
}

.bannerWave > svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bannerWave .wave-g > use {
  animation: move-forever 12s linear infinite;
}

.bannerWave .wave-g > use:nth-child(1) {
  animation-delay: -2s;
  opacity: .5;
}

.bannerWave .wave-g > use:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 5s;
  opacity: .7;
}

.bannerWave .wave-g > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/* zl_mod 通用样式
---------------------------------------------------------------- */
.maodian {
  position: absolute;
  left: 0;
  top: -6.25rem;
}

.mod_more.white {
  background: #fff;
}

.mod_more.white a {
  width: 12.5rem;
  height: 3.75rem;
  border-radius: 1.875rem;
  box-shadow: none;
}

.mod_more.bg {
  display: flex;
  justify-content: center;
}

.mod_more.bg a {
  width: 17.5rem;
  height: 4.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.375rem;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  color: #fff;
}

.mod_more a {
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #006bd3;
}

.mod_more a i {
  font-size: 1rem;
  margin-left: .5rem;
  text-shadow: 1px 0 0 #006bd3;
}

.mod_title {
  line-height: 1;
  color: #111;
  margin-bottom: 3.5rem;
}

.mod_title.case_title .en {
  font-size: 3.25rem;
}

.mod_title.case_title > span {
  font-size: 1.875rem;
}

.mod_title.text-center .en {
  justify-content: center;
}

.mod_title .en {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #006bd3;
  margin-bottom: 1.125rem;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .mod_title .en {
    background: linear-gradient(to right, #004ea2 40%, #008cd6 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.mod_title .en span {
  position: relative;
}

.mod_title .en span img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.875rem;
}

.mod_title > span {
  font-weight: lighter;
  font-size: 2rem;
}

.mod_title2 {
  line-height: 1.2;
}

.mod_title2.black span {
  color: #111;
}

.mod_title2 span {
  font-size: 2.5rem;
  font-family: 'D-DINCONDENSED-BOLD';
  color: #006bd3;
  opacity: .2;
  text-transform: uppercase;
}

.mod_title2 strong {
  display: block;
  font-size: 1.875rem;
  margin-top: .5rem;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .mod_title2 strong {
    background: linear-gradient(to right, #004ea2 40%, #008cd6 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.mod_title2 p {
  font-size: 1.25rem;
  color: #666;
  margin: 0;
  margin-top: 1rem;
}

.mod_position {
  color: #777777;
  font-size: 1.125rem;
  font-weight: lighter;
  margin-bottom: 2.5rem;
}

.mod_position a {
  color: #777;
  transition: all .3s ease;
}

.mod_position a i {
  margin-right: .5rem;
}

.mod_position a:hover {
  color: #006bd3;
}

.swiper_fanye .ico_prev, .swiper_fanye .ico_next {
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #888;
  transition: all .3s ease;
}

.swiper_fanye .ico_prev i, .swiper_fanye .ico_next i {
  font-size: 1.25rem;
}

.swiper_fanye .ico_prev.swiper-button-disabled, .swiper_fanye .ico_next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.swiper_fanye .ico_prev:hover, .swiper_fanye .ico_next:hover {
  background: #006bd3;
  color: #fff;
}

.mod_bgc {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mod_banner {
  margin-top: 6.25rem;
  height: 37.5rem;
  display: flex;
  align-items: center;
}

.mod_banner .container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6.25rem;
}

.mod_banner .container span {
  font-size: 1.5rem;
  font-family: 'MONTSERRAT-LIGHT';
  font-weight: lighter;
  text-transform: uppercase;
}

.mod_banner .container strong {
  margin-top: 1rem;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
}

.mod_banner .container p {
  line-height: 2.2;
  width: 40%;
  font-weight: lighter;
  margin: 0;
}

.mod_banner .container p a {
  color: rgba(255, 255, 255, 0.8);
  transition: all .3s;
}

.mod_banner .container p a:hover {
  color: #fff;
}

.mod_nav.white {
  background: #f4f4f4;
}

.mod_nav.white ul {
  background: #fff;
}

.mod_nav ul {
  background: #f4f4f4;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.mod_nav ul.ul_1 li {
  width: 100%;
}

.mod_nav ul.ul_2 li {
  width: 50%;
}

.mod_nav ul.ul_3 li {
  width: 33.33%;
}

.mod_nav ul li {
  width: 25%;
}

.mod_nav ul li:last-child a::before {
  display: none;
}

.mod_nav ul li a {
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #474747;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.mod_nav ul li a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(135deg, #004ea2 30%, #008cd6);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.mod_nav ul li a::before {
  content: '';
  width: 1px;
  height: 1.25rem;
  background: #dedede;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.mod_nav ul li a.active {
  color: #fff;
  font-weight: bold;
}

.mod_nav ul li a.active:hover {
  color: #fff;
}

.mod_nav ul li a.active::after {
  opacity: 1;
}

.mod_nav ul li a.active i {
  font-weight: normal;
}

.mod_nav ul li a:hover {
  color: #006bd3;
}

.mod_nav ul li a i {
  font-size: 1.5rem;
  margin-right: .5rem;
}

.mod_fanye {
  margin-top: 2.5rem;
}

.mod_fanye ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod_fanye ul li.disabled.active span {
  background-color: #006bd3;
  color: #fff;
}

.mod_fanye ul li a, .mod_fanye ul li span {
  font-size: 14px;
  margin: 0 .5rem;
  padding: .625rem 1rem;
  border-radius: 4px;
  color: #333;
  background-color: #f5f5f5;
  border: none;
}

.mod_fanye ul li a.activ:hover {
  color: #fff;
}

.mod_fanye ul li a:hover {
  color: #006bd3;
}

.mod_fanye02 {
  margin-top: 3.75rem;
  border-top: 1px dashed #dedede;
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.mod_fanye02 a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  width: 48%;
  color: #474747;
  transition: all 0.3s;
}

.mod_fanye02 a:last-child {
  justify-content: flex-end;
}

.mod_fanye02 a:hover {
  color: #006bd3;
}

.mod_fanye02 a:hover i {
  color: #006bd3;
}

.mod_fanye02 a span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mod_fanye02 a i {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #999;
  transition: all 0.3s;
}

.about_1 {
  padding-top: 5.625rem;
}

.about_1 .flex {
  align-items: stretch;
}

.about_1 .flex .left {
  width: 50%;
  position: relative;
}

.about_1 .flex .left > div {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.about_1 .flex .right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.about_1 .flex .right .img {
  width: 50%;
}

.about_1 .flex .right .img:first-child {
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  line-height: 1.2;
  position: relative;
}

.about_1 .flex .right .img:first-child::after {
  content: '';
  width: 35%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: rotate(45deg);
  z-index: 2;
}

.about_1 .flex .right .img:first-child::before {
  content: '';
  width: 35%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  transform: rotate(45deg);
  z-index: 2;
}

.about_1 .flex .right .img:first-child span {
  font-size: 1.875rem;
  font-weight: lighter;
  margin-bottom: .5rem;
}

.about_1 .flex .right .img:first-child strong {
  font-size: 3.25rem;
  text-transform: uppercase;
  font-family: 'D-DINCONDENSED-BOLD';
}

.about_1 .flex .right .text {
  height: 50%;
  padding: 3.125rem 3.125rem 0 3.125rem;
  background: url(../img/dian.jpg) left bottom repeat;
  color: #fff;
}

.about_1 .flex .right .text .title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.25rem;
}

.about_1 .flex .right .text p {
  line-height: 2;
  font-weight: normal;
  margin: 0;
}

.about_2 {
  padding-top: 6.875rem;
}

.about_2 .left {
  width: 50%;
}

.about_2 .left .title {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .about_2 .left .title {
    background: linear-gradient(to right, #004ea2 40%, #008cd6 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.about_2 .left p {
  line-height: 2.2;
  color: #474747;
  font-weight: lighter;
}

.about_2 .right {
  padding-left: 3.125rem;
  display: flex;
  justify-content: flex-end;
}

.about_2 .right img {
  width: 100%;
}

.about_2 ul {
  margin-top: 2.5rem;
  margin-bottom: 6.875rem;
  border-top-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  overflow: hidden;
}

.about_2 ul li {
  width: 25%;
}

.about_2 ul li a {
  height: 6.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
}

.about_2 .img {
  width: 28.125%;
}

.about_2 .img img {
  width: 100%;
}

.about_2 .text {
  width: 71.875%;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  color: #fff;
  padding: 0 6.875rem;
  padding-top: 8.125rem;
}

.about_2 .text .title {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about_2 .text p {
  line-height: 2.4;
  margin-bottom: 4.375rem;
}

.about_2 .text span {
  font-size: 2.5rem;
  opacity: .1;
  font-weight: bold;
  text-transform: uppercase;
}

.about_3 {
  padding-top: 5rem;
}

.about_3 .swiper {
  padding: 1rem;
  padding-bottom: 2.5rem;
}

.about_3 .swiper .swiper-slide {
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.about_3 .swiper .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  z-index: -1;
  opacity: 0;
  transition: all .3s ease;
}

.about_3 .swiper .swiper-slide:hover::after {
  opacity: 1;
}

.about_3 .swiper .swiper-slide:hover .title {
  color: #fff;
}

.about_3 .swiper .swiper-slide .img {
  overflow: hidden;
  border-radius: 1.25rem;
}

.about_3 .swiper .swiper-slide .img a {
  padding-top: 70%;
  display: block;
  background-size: contain;
  transition: all .5s ease;
}

.about_3 .swiper .swiper-slide .title {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about_3 .swiper .swiper-pagination {
  position: relative;
  margin-top: 2.5rem;
}

.about_3 .swiper .swiper-pagination::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: #006bd3;
}

.about_3 .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #006bd3;
}

.about_3 .swiper .swiper_fanye {
  margin-top: 2.5rem;
  position: static;
}

.about_3 .swiper .swiper_fanye > div {
  margin: 0 1.5rem;
  background: #eaeff5;
}

.about_3 .swiper .swiper_fanye > div:hover {
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
}

.about_4 {
  padding-top: 5rem;
}

.about_4 .flex {
  height: 50rem;
}

.about_4 .flex .left {
  color: #fff;
  padding: 5.625rem;
  padding-left: calc(9.0625rem + 15px);
  border-top-right-radius: 5.625rem;
  width: 50%;
  background-image: linear-gradient(to right, rgba(0, 78, 162, 0.95), rgba(0, 140, 214, 0.95));
}

.about_4 .flex .left .title {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about_4 .flex .left p {
  line-height: 2.4;
  margin-bottom: 2rem;
}

.about_4 .flex .left span {
  font-size: 2.5rem;
  opacity: .1;
  font-weight: bold;
  text-transform: uppercase;
}

.about_4 .flex .right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 15%;
  padding-right: calc(9.0625rem + 15px);
}

.about_4 .flex .right .box:first-child {
  width: 9.125rem;
  height: 9.125rem;
  background-image: linear-gradient(135deg, #008cd6 50%, #006bd3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.about_4 .flex .right .box:last-child {
  width: 12.5rem;
  height: 12.5rem;
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 9.125rem;
}

.about_4 .flex .right .box strong {
  font-size: 2.625rem;
}

.about_5 {
  padding-top: 70px;
}

.about_5 .swiper_more {
  display: flex;
  align-items: flex-end;
}

.about_5 .swiper_more .swiper_number {
  font-size: 1.5rem;
  color: #474747;
  line-height: 1.2;
}

.about_5 .swiper_more .swiper_number strong {
  font-size: 2.5rem;
  color: #006bd3;
}

.about_5 .swiper_more .swiper-pagination {
  margin-left: 1rem;
  position: static;
  width: 25rem;
  margin-bottom: .5rem;
  border-radius: .25rem;
  overflow: hidden;
}

.about_5 .swiper_more .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #006bd3;
  border-radius: .25rem;
}

.about_5 .swiper {
  margin-top: 3.125rem;
  margin-left: calc(9.0625rem + 15px);
  width: calc(100% - 9.0625rem - 15px);
}

.about_5 .swiper .swiper-slide:hover .img a {
  transform: scale(1.1);
}

.about_5 .swiper .swiper-slide .img {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.about_5 .swiper .swiper-slide .img::after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .65;
  background-image: linear-gradient(to bottom, rgba(0, 52, 114, 0), rgba(0, 52, 114, 0.8));
}

.about_5 .swiper .swiper-slide .img .title {
  position: absolute;
  left: 0;
  bottom: 1.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 100%;
  z-index: 2;
}

.about_5 .swiper .swiper-slide .img a {
  display: block;
  padding-top: 60%;
  transition: all .5s ease;
}

.about_6 {
  padding-top: 5.625rem;
  padding-bottom: 4.75rem;
}

.about_6 .mod_title2 {
  margin-bottom: 2.5rem;
}

.about_6 .left {
  width: 59.375%;
}

.about_6 .right {
  width: 40.625%;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about_6 .right .group {
  max-height: calc((100% - 1rem)/2);
  display: flex;
  background: #cdd5d2;
}

.about_6 .right .group:last-child {
  background: #e6e1d3;
}

.about_6 .right .group:last-child .img {
  order: 2;
}

.about_6 .right .group .img {
  width: 31%;
  flex-shrink: 0;
}

.about_6 .right .group .img img {
  width: 100%;
}

.about_6 .right .group .text {
  padding: 1.875rem 2.125rem;
  padding-bottom: 0;
}

.about_6 .right .group .text .title {
  display: flex;
  align-items: flex-end;
  font-size: 1.125rem;
  margin-bottom: .5rem;
}

.about_6 .right .group .text .title strong {
  font-size: 1.875rem;
  margin-right: .75rem;
}

.about_6 .right .group .text p {
  overflow: auto;
  max-height: 11.25rem;
  font-size: 14px;
  line-height: 1.6;
  color: #052525;
  opacity: .6;
  margin: 0;
}

.about_7 {
  background: #f0f0f0;
  padding: 3.75rem 0;
}

.about_7 .mod_title2 {
  margin-bottom: 2rem;
}

.about_7 .dw .ico_prev, .about_7 .dw .ico_next {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #474747;
  transition: all .3s ease;
}

.about_7 .dw .ico_prev:hover, .about_7 .dw .ico_next:hover {
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
  color: #fff;
}

.about_7 .dw .ico_prev {
  left: 0;
}

.about_7 .dw .ico_next {
  right: 0;
}

.about_7 .swiper {
  margin: 0 6.375rem;
}

.about_7 .swiper .swiper-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3.125rem;
  background: #fff;
  padding-right: 6.375rem;
}

.about_7 .swiper .swiper-slide:hover .img i {
  transform: scale(1.1);
}

.about_7 .swiper .swiper-slide .img {
  overflow: hidden;
  width: 22.22%;
}

.about_7 .swiper .swiper-slide .img img {
  width: 100%;
}

.about_7 .swiper .swiper-slide .img i {
  display: block;
  padding-top: 120%;
  transition: all .5s ease;
}

.about_7 .swiper .swiper-slide .text {
  width: 77.78%;
  padding-left: 6rem;
  padding-top: 1rem;
}

.about_7 .swiper .swiper-slide .text .title {
  color: #333333;
  line-height: 1.2;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.about_7 .swiper .swiper-slide .text .title strong {
  display: block;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.about_7 .swiper .swiper-slide .text p {
  line-height: 2.2;
  color: #474747;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.about_7 .swiper .swiper-slide .text ul {
  display: flex;
}

.about_7 .swiper .swiper-slide .text ul li {
  width: calc((100% - 6.5rem)/4);
}

.about_7 .swiper .swiper-slide .text ul li:not(:first-child) {
  margin-left: 1.625rem;
}

.about_7 .swiper .swiper-slide .text ul li a {
  padding-top: 63%;
}

.about_8 {
  padding: 4rem 0;
}

.about_8 .mod_title2 {
  margin-bottom: 2rem;
}

.about_8 .box {
  background: #f8f7fa;
  padding: 3.5rem;
  border-radius: 2rem;
}

.about_8 .group {
  margin: 1rem 0;
}

.about_8 .group p {
  font-size: 1.125rem;
  margin-bottom: .5rem;
}

.about_8 .group p i {
  color: #777777;
  font-size: 1.125rem;
  margin-right: .5rem;
}

.about_8 .group p strong {
  font-size: 1.875rem;
  font-family: 'MONTSERRAT-BOLD';
}

.about_8 .group .ewm img {
  display: block;
  width: 8.125rem;
}

.about_8 .group .ewm span {
  display: block;
  text-align: center;
}

.about_8 .my-map {
  margin-top: 3.125rem;
  height: 35rem;
  border-radius: 2rem;
  overflow: hidden;
}

.brand_story {
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}

.brand_story .flex {
  align-items: center;
  justify-content: space-between;
  height: 50rem;
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  color: #fff;
  position: relative;
}

.brand_story .flex::after {
  content: '';
  width: 1.5625rem;
  height: 6.3125rem;
  background: url(../img/xiajian.png) center center no-repeat;
  position: absolute;
  left: 5%;
  bottom: -3.1875rem;
  background-size: cover;
}

.brand_story .flex .left {
  line-height: 1.2;
  padding-left: 3.125rem;
}

.brand_story .flex .left strong {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-family: 'D-DINCONDENSED-BOLD';
}

.brand_story .flex .left .story_year {
  line-height: 1;
  font-size: 13.75rem;
  font-family: 'D-DINCONDENSED-BOLD';
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .brand_story .flex .left .story_year span {
    background: linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.brand_story .flex .left .title {
  font-size: 2.75rem;
  font-weight: lighter;
}

.brand_story .flex .right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 5rem;
  width: 35%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 78, 162, 0.95), rgba(0, 140, 214, 0.95));
  border-bottom-right-radius: 5rem;
}

.brand_story .flex .right img {
  height: 2.5rem;
}

.brand_story .flex .right p {
  margin-top: 2.75rem;
  width: 100%;
  line-height: 2.2;
  font-size: 1.25rem;
  font-weight: lighter;
}

.history {
  padding-top: 10rem;
  padding-bottom: 8.125rem;
  background: url(../img/story_2.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.history .left {
  width: 10.5rem;
  padding: 3.75rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: url(../img/dian.png) center repeat;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  position: relative;
}

.history .left::after {
  content: '';
  width: 1px;
  height: 8.125rem;
  position: absolute;
  left: 0;
  bottom: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

.history .left::before {
  content: '';
  width: 1px;
  height: 8.125rem;
  position: absolute;
  right: 0;
  top: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.history .left strong {
  font-size: 1.875rem;
  letter-spacing: 5px;
  font-weight: lighter;
}

.history .left span {
  font-size: 3.25rem;
  text-transform: uppercase;
  font-family: 'MONTSERRAT-BOLD';
}

.history .center {
  width: 12.5rem;
  position: relative;
}

.history .center::after {
  content: '';
  width: 21px;
  height: 18px;
  background: url(../img/shang.png) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 16px;
  transform: translateX(50%);
  bottom: 100%;
}

.history .center ul {
  position: relative;
  width: 100%;
  height: 52.5rem;
  overflow: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  overflow-x: hidden;
  overflow-y: auto;
}

.history .center ul::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

.history .center ul .ul_xian {
  width: 1px;
  height: 2.1875rem;
  position: absolute;
  top: 0;
  right: 16px;
  background: #fff;
  transition: all .3s ease;
  z-index: 2;
}

.history .center ul .ul_xian::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  border-radius: 50%;
}

.history .center ul .ul_xian::before {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 8px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  bottom: 3px;
  right: 0;
  transform: translateX(50%);
}

.history .center ul li {
  scroll-snap-align: start;
  position: relative;
  width: 100%;
  height: 4.375rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: all .3s ease;
}

.history .center ul li.active {
  color: #fff;
}

.history .center ul li:nth-last-child(2)::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.history .center ul li:nth-last-child(2)::before {
  height: 50%;
}

.history .center ul li::after {
  content: '';
  width: 1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.history .center ul li::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 16px;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
}

.history .center ul li span {
  display: inline-block;
  font-size: 2.5rem;
  font-family: 'D-DINCONDENSED-BOLD';
}

.history .right {
  width: 50%;
  color: #fff;
  position: relative;
}

.history .right .swiper .swiper-slide.swiper-slide-active > div {
  opacity: 1;
  transform: translateY(0);
}

.history .right .swiper .swiper-slide > div {
  opacity: 0;
  transform: translateY(20%);
  transition: all .5s ease;
  padding: 3.5rem 4.375rem;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.history .right .swiper .swiper-slide .time {
  font-size: 2.5rem;
  font-family: 'D-DINCONDENSED-BOLD';
}

.history .right .swiper .swiper-slide .text .title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.history .right .swiper .swiper-slide .text p {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: lighter;
}

.culture {
  padding-top: 15%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.culture .box {
  width: 84%;
  padding: 4% 5%;
  margin: 0 auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
}

.culture .box .mod_content {
  position: relative;
  z-index: 2;
  font-size: clamp(14px, 1rem, 0.8334vw);
}

.culture .box .mod_content * {
  line-height: 1.8 !important;
  font-size: inherit !important;
  color: #454545 !important;
}

.culture .caption {
  width: calc((100% - 2.25rem)/4);
  height: 46.875rem;
  color: #fff;
  position: relative;
}

.culture .caption::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 78, 162, 0.8), rgba(0, 140, 214, 0.8));
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .3s;
  z-index: 2;
}

.culture .caption:hover::after {
  opacity: 1;
}

.culture .caption:hover .text {
  top: 35%;
}

.culture .caption:hover .text h4 {
  opacity: 1;
}

.culture .caption .text {
  position: absolute;
  top: 65%;
  width: 100%;
  padding: 0 2.5rem;
  text-align: center;
  transition: all .5s;
  z-index: 3;
}

.culture .caption .text i {
  font-size: 3rem;
}

.culture .caption .text h3 {
  font-size: 2.25rem;
  margin: .5rem 0;
  font-weight: bold;
}

.culture .caption .text h4 {
  opacity: .5;
  font-size: 1.125rem;
  line-height: 1.8;
  transition: all .3s;
}

.culture_box {
  color: #fff;
  min-height: 37.5rem;
  position: relative;
  padding: 20px 0;
}

.culture_box::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}

.culture_box .mod_content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 80%;
}

.culture_box .mod_content * {
  line-height: 1.8 !important;
}

.ppgs_new {
  padding: 5.625rem 0;
  padding-bottom: 5rem;
}

.ppgs_new .box {
  padding: 3.125rem;
  background: #fff;
  border-radius: 2.5rem;
  margin-left: -3.125rem;
  margin-right: -3.125rem;
  margin-bottom: 3.75rem;
  width: calc(100% + 6.25rem);
}

.ppgs_new .box .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4.5rem;
  color: #fff;
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
}

.ppgs_new .box .text .title {
  font-size: 3.125rem;
  margin-bottom: 2.5rem;
}

.ppgs_new .box .text p {
  font-size: 1.125rem;
  line-height: 2.2;
}

.ppgs_new .box .img {
  width: 50%;
  height: 32.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppgs_new .box .img .ico {
  width: 29.5rem;
  height: 29.5rem;
  background: url(../img/fudian.png) center no-repeat;
  background-size: contain;
}

.ppgs_new .box .img .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 29.375rem;
  transform: translate(-50%, -50%);
}

.ppgs_new .box .img .video {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background-image: linear-gradient(to right, #008cd6, #004ea2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: all .3s;
}

.ppgs_new .box .img .video:hover {
  transform: scale(1.1);
}

.ppgs_new .box .img .video i {
  font-size: 1.5rem;
  opacity: 1;
}

.ppgs_new .box .swiper {
  margin-top: 3.125rem;
}

.ppgs_new .box .swiper .swiper-slide .img {
  width: 100%;
  height: auto;
  padding-top: 62%;
}

.ppgs_new .box .swiper .swiper-pagination {
  position: static;
  margin-top: 2rem;
  background: #eaeff5;
  height: 6px;
}

.ppgs_new .box .swiper .swiper-pagination span {
  height: 100%;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
}

.jss_new {
  padding: 5.625rem 0;
  padding-bottom: 5rem;
}

.jss_new .box {
  position: relative;
  margin-bottom: 9.375rem;
}

.jss_new .box:nth-child(2n) .bottom {
  left: 0;
  padding-left: calc(9.0625rem + 15px);
  padding-right: 8.125rem;
  border-top-right-radius: 2.5rem;
}

.jss_new .box:nth-child(2n-1) .text {
  order: 2;
}

.jss_new .box:nth-child(2n-1) .bottom {
  right: 0;
  padding-right: calc(9.0625rem + 15px);
  padding-left: 8.125rem;
  border-top-left-radius: 2.5rem;
}

.jss_new .box:last-child {
  margin-bottom: 2.5rem;
}

.jss_new .box:last-child .text {
  order: 0;
}

.jss_new .box .text {
  width: 50%;
  padding-top: 3.5rem;
}

.jss_new .box .text i {
  font-size: 2.5rem;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .jss_new .box .text i {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.jss_new .box .text h3 {
  font-size: 2.75rem;
  font-weight: lighter;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.jss_new .box .text p {
  font-size: 1.25rem;
  font-weight: lighter;
  display: flex;
  align-items: center;
}

.jss_new .box .text p::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #004ea2;
  margin-right: 1rem;
}

.jss_new .box .img {
  width: 45.6%;
}

.jss_new .box .img img {
  width: 100%;
}

.jss_new .box .bottom {
  position: absolute;
  bottom: 0;
  width: 62%;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  padding: 1.875rem 0;
}

.jss_new .box .bottom .swiper {
  height: calc(10rem + 2px);
}

.jss_new .box .bottom .swiper .swiper-slide ul {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.jss_new .box .bottom .swiper .swiper-slide ul li {
  margin-bottom: 2px;
  height: 5rem;
  width: calc((100% - 8px)/5);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jss_new .box .bottom .swiper .swiper-slide ul li img {
  max-width: 85%;
  max-height: 90%;
}

.jss_new .box .bottom .swiper-button-next, .jss_new .box .bottom .swiper-button-prev {
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: 3.75rem;
  top: auto;
}

.jss_new .box .bottom .swiper-button-next::after, .jss_new .box .bottom .swiper-button-prev::after {
  font-size: .75rem;
  transform: rotate(90deg);
}

.jss_new .box .bottom .swiper-button-next {
  bottom: 1.875rem;
  padding-top: .25rem;
}

.jss_new .box .bottom .swiper-button-prev {
  left: auto;
  bottom: 4.5rem;
  padding-bottom: .25rem;
}

.jss_new .box .bottom .shuzi {
  display: flex;
  justify-content: space-between;
}

.jss_new .box .bottom .shuzi .caption {
  color: #fff;
  font-weight: lighter;
}

.jss_new .box .bottom .shuzi .caption span {
  font-size: 2.625rem;
  font-weight: bold;
}

.jss_new .box .bottom .shuzi .caption small {
  font-size: .9375rem;
}

.jss_new .box .bottom .shuzi .caption p {
  font-size: .9375rem;
}

.jss_new .box .bottom .content {
  display: flex;
  justify-content: space-between;
}

.jss_new .box .bottom .content .caption {
  color: #fff;
  text-align: center;
}

.jss_new .box .bottom .content .caption i {
  color: #fff;
  font-size: 2.5rem;
}

.jss_new .box .bottom .content .caption h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

.jss_new .box .jxs_6 h4 {
  font-size: 1.875rem;
  font-weight: lighter;
  display: flex;
  align-items: center;
  margin: 0;
}

.jss_new .box .jxs_6 h4::before {
  content: '';
  width: 8px;
  height: 2rem;
  margin-right: 1rem;
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
  border-radius: 4px;
}

.jss_new .box .jxs_6 ul {
  margin-top: 3.75rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.jss_new .box .jxs_6 ul li {
  width: calc((100% - 6.25rem)/6);
  padding: 2.5rem 1.875rem;
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}

.jss_new .box .jxs_6 ul li:hover {
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.jss_new .box .jxs_6 ul li i {
  font-size: 2rem;
}

.jss_new .box .jxs_6 ul li strong {
  font-size: 1.5rem;
}

.jss_new .box .jxs_6 ul li p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
}

.jss_form {
  padding-bottom: 5rem;
}

.jss_form .group {
  background: #f4f4f4;
  padding: .5rem 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.875rem;
}

.jss_form .group label {
  color: #666666;
  font-size: 1.125rem;
  min-width: 6.25rem;
  margin: 0;
}

.jss_form .group .form-control {
  background: none;
  border-radius: 0;
  border: none;
  font-size: 1.125rem;
  padding-left: 0;
  padding-right: 0;
  min-height: 3.375rem;
}

.jss_form .group .form-control:focus {
  box-shadow: none;
}

.jss_form p {
  font-size: 1.125rem;
  color: #9f9f9f;
  margin-bottom: 2.5rem;
}

.jss_form button {
  width: 17.5rem;
  height: 4.375rem;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  display: block;
  margin: 0 auto;
}

.ny_news {
  padding-top: 6.25rem;
  padding-bottom: 4.375rem;
}

.ny_news_head {
  align-items: stretch;
}

.ny_news_head .left {
  width: 50%;
  padding-right: .625rem;
}

.ny_news_head .left .item a {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
}

.ny_news_head .left .item a:hover .img {
  transform: scale(1.1);
}

.ny_news_head .left .item a:hover .text h5 i {
  margin-left: .75rem;
}

.ny_news_head .left .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(2, 27, 121, 0.9), rgba(5, 117, 230, 0.9));
  position: absolute;
  left: 0;
  top: 0;
}

.ny_news_head .left .item a .img {
  padding-top: 100%;
  transition: all .5s ease;
}

.ny_news_head .left .item a .text {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 3.75rem;
  z-index: 2;
}

.ny_news_head .left .item a .text .title {
  font-size: 1.625rem;
}

.ny_news_head .left .item a .text .time {
  font-weight: lighter;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'MONTSERRAT-LIGHT';
}

.ny_news_head .left .item a .text p {
  line-height: 2.2;
  opacity: .8;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.ny_news_head .left .item a .text h5 {
  width: 12.5rem;
  height: 3.75rem;
  background: #fff;
  border-radius: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #004ea2;
  margin: 0 auto;
  margin-top: 5rem;
  line-height: 1;
  align-items: center;
}

.ny_news_head .left .item a .text h5 i {
  margin-left: .5rem;
  transition: all 0.3s ease;
}

.ny_news_head .right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

.ny_news_head .right .item {
  width: calc((100% - .625rem)/2);
}

.ny_news_head .right .item:first-child {
  margin-right: .625rem;
}

.ny_news_head .right .item:last-child {
  width: 100%;
  margin-top: .625rem;
}

.ny_news_head .right .item:last-child a .img {
  padding-top: 48%;
}

.ny_news_head .right .item a {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
}

.ny_news_head .right .item a:hover .img {
  transform: scale(1.1);
}

.ny_news_head .right .item a:hover h5 i {
  margin-left: .75rem;
}

.ny_news_head .right .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #008cd6, #004ea2);
  position: absolute;
  left: 0;
  top: 0;
  opacity: .4;
}

.ny_news_head .right .item a .img {
  padding-top: 100%;
  transition: all .5s ease;
}

.ny_news_head .right .item a .title {
  position: absolute;
  left: 0;
  top: 2.5rem;
  padding: 0 2.5rem;
  line-height: 1.2;
  z-index: 2;
}

.ny_news_head .right .item a .title strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: .5rem;
}

.ny_news_head .right .item a .title span {
  font-family: 'MONTSERRAT-LIGHT';
}

.ny_news_head .right .item a h5 {
  position: absolute;
  left: 0;
  z-index: 2;
  bottom: 2.5rem;
  padding: 0 2.5rem;
  width: 100%;
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  display: flex;
  align-items: center;
}

.ny_news_head .right .item a h5 i {
  margin-left: .5rem;
  transition: all 0.3s ease;
}

.ny_news_list {
  margin-top: 4.375rem;
}

.ny_news_list .item {
  margin-bottom: 2.5rem;
}

.ny_news_list .item a {
  padding: 1.25rem 3.125rem;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ny_news_list .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  opacity: 0;
  transition: all .3s ease;
}

.ny_news_list .item a:hover::after {
  opacity: 1;
}

.ny_news_list .item a:hover .img i {
  transform: scale(1.1);
}

.ny_news_list .item a:hover .time, .ny_news_list .item a:hover .text .title, .ny_news_list .item a:hover .text p {
  color: #fff;
}

.ny_news_list .item a .img {
  width: 17.5rem;
  overflow: hidden;
}

.ny_news_list .item a .img i {
  display: block;
  padding-top: 56.4%;
  transition: all .5s ease;
}

.ny_news_list .item a .time {
  width: 11.875rem;
  font-size: 1.25rem;
  font-family: 'MONTSERRAT-LIGHT';
  color: #474747;
  padding-left: 3.75rem;
  border-right: 1px solid #dedede;
  transition: all .3s ease;
}

.ny_news_list .item a .time span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.ny_news_list .item a .text {
  width: calc(100% - 17.5rem - 11.875rem);
  padding-left: 2rem;
}

.ny_news_list .item a .text .title {
  font-size: 1.5rem;
  color: #474747;
  transition: all .3s ease;
  margin-bottom: 1rem;
}

.ny_news_list .item a .text p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: lighter;
  color: #525252;
  transition: all .3s ease;
}

.news_detail {
  padding: 0 12.5%;
}

.news_detail > .title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.6;
}

.news_detail > .time {
  text-align: center;
  color: #474747;
  font-weight: lighter;
  margin: 1.5rem 0;
}

.news_detail .ty_content {
  color: #474747;
  line-height: 2;
}

.news_detail .mod_more {
  margin-top: 2.5rem;
}

.news_detail .mod_more a {
  width: 12.5rem;
  height: 3.75rem;
  border-radius: 1.875rem;
}

.news_detail .news_hot {
  margin-top: 2.5rem;
}

.news_detail .news_hot .hot_title strong {
  font-size: 1.5rem;
  line-height: 1.2;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .news_detail .news_hot .hot_title strong {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.news_detail .news_hot .hot_title a {
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #006bd3;
  display: flex;
  align-items: center;
}

.news_detail .news_hot .hot_title a i {
  margin-left: .5rem;
}

.news_detail .news_hot .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 1.5rem;
}

.news_detail .news_hot .items .item {
  width: calc((100% - 2.5rem)/2);
}

.news_detail .news_hot .items .item:not(:nth-child(2n)) {
  margin-right: 2.5rem;
}

.news_detail .news_hot .items .item a {
  display: flex;
  align-items: center;
  height: 100%;
  background: #f4f4f4;
  color: #474747;
  padding: 2rem 3.125rem;
  position: relative;
  z-index: 2;
}

.news_detail .news_hot .items .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  opacity: 0;
  transition: all .3s ease;
}

.news_detail .news_hot .items .item a:hover::after {
  opacity: 1;
}

.news_detail .news_hot .items .item a:hover .img i {
  transform: scale(1.1);
}

.news_detail .news_hot .items .item a:hover .time, .news_detail .news_hot .items .item a:hover .text .title, .news_detail .news_hot .items .item a:hover .text p {
  color: #fff;
}

.news_detail .news_hot .items .item a .time {
  width: 7.125rem;
  font-size: 1.25rem;
  font-family: 'MONTSERRAT-LIGHT';
  border-right: 1px solid #dedede;
  transition: all .3s ease;
}

.news_detail .news_hot .items .item a .time span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: 1.875rem;
  margin-bottom: .5rem;
  line-height: 1;
  display: block;
}

.news_detail .news_hot .items .item a .text {
  width: calc(100% - 7.125rem);
  padding-left: 1.875rem;
}

.news_detail .news_hot .items .item a .text .title {
  font-size: 1.125rem;
  color: #474747;
  transition: all .3s ease;
  margin-bottom: 1rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_detail .news_hot .items .item a .text p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: lighter;
  color: #525252;
  transition: all .3s ease;
}

.pro_left {
  width: 25%;
}

.pro_left > ul > li {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
}

.pro_left > ul > li.active span a, .pro_left > ul > li.active span i {
  color: #fff;
}

.pro_left > ul > li.show span a {
  color: #fff;
}

.pro_left > ul > li.show span i {
  font-weight: normal;
  color: #fff;
  transform: rotateX(180deg);
}

.pro_left > ul > li:last-child a::after {
  display: none;
}

.pro_left > ul > li span {
  padding: 0 3.125rem;
  padding-right: 2.5rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: lighter;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 2;
  color: #fff;
}

.pro_left > ul > li span a, .pro_left > ul > li span i {
  color: rgba(255, 255, 255, 0.65);
  transition: all .3s ease;
}

.pro_left > ul > li span a {
  padding: 1.5rem 0;
}

.pro_left > ul > li span a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  transition: all .3s ease;
  border-radius: 1.5rem;
  border-bottom-right-radius: 0;
  z-index: -1;
}

.pro_left > ul > li span a::after {
  display: none;
  position: absolute;
  content: '';
  width: calc(100% - 6.25rem);
  left: 3.125rem;
  bottom: 0;
  height: 1px;
  background: #dedede;
  z-index: -2;
}

.pro_left > ul > li span i {
  padding: 1rem .5rem;
  font-size: 1.5rem;
  margin-right: .5rem;
  cursor: pointer;
}

.pro_left > ul > li ul {
  display: none;
  padding: 1rem 0;
}

.pro_left > ul > li ul li.active a {
  color: #004ea2;
  font-weight: bold;
}

.pro_left > ul > li ul li a {
  padding: .5rem 3.125rem;
  font-size: 1.125rem;
  color: #666;
  display: block;
  transition: all 0.3s ease;
}

.pro_left > ul > li ul li a:hover {
  color: #004ea2;
}

.pro_right {
  width: 75%;
  padding-left: 3.75rem;
}

.ny_product {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  background: #f8f8f8;
}

.ny_product.ny_case .pro_list .item a .img {
  padding-top: 55%;
}

.ny_product .pro_right .pro_nav {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
}

.ny_product .pro_right .pro_nav::-webkit-scrollbar {
  display: none;
}

.ny_product .pro_right .pro_nav li:last-child a::after {
  display: none;
}

.ny_product .pro_right .pro_nav li a {
  display: block;
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: lighter;
  color: #474747;
  position: relative;
  padding: 0 2rem;
}

.ny_product .pro_right .pro_nav li a::after {
  content: '';
  width: 1px;
  height: 2.5rem;
  background: #dedede;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ny_product .pro_right .pro_nav li a.active {
  font-weight: bold;
  color: #004ea2;
}

.ny_product .pro_right .pro_nav li a img {
  height: 3.875rem;
  margin-right: 1rem;
}

.pro_list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.pro_list .item {
  margin-bottom: 2.5rem;
  width: calc((100% - 5.625rem)/3);
}

.pro_list .item:not(:nth-child(3n)) {
  margin-right: 2.8125rem;
}

.pro_list .item a {
  display: block;
  height: 100%;
  background: #fff;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  transition: all .3s ease;
}

.pro_list .item a:hover {
  border-radius: 4rem;
  border-bottom-right-radius: 0;
}

.pro_list .item a:hover .text {
  opacity: 1;
  transform: scale(1);
}

.pro_list .item a .img {
  padding-top: 70%;
  position: relative;
}

.pro_list .item a .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 100%;
  max-width: 100%;
  transform: translate(-50%, -50%);
}

.pro_list .item a .title {
  text-align: center;
  font-size: 1.125rem;
  color: #222;
  font-weight: lighter;
  margin: .5rem 0;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pro_list .item a p {
  text-align: center;
  font-weight: lighter;
  color: #777777;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro_list .item a .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.4);
  transition: all .5s ease;
}

.pro_list .item a .text::after {
  content: '';
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: rotate(45deg);
  z-index: 2;
}

.pro_list .item a .text::before {
  content: '';
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  transform: rotate(45deg);
  z-index: 2;
}

.pro_list .item a .text .title {
  font-weight: bold;
  color: #fff;
  max-width: 0 auto;
  width: 90%;
}

.pro_list .item a .text p {
  color: #fff;
}

.pro_list .item a .text h5 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  display: flex;
  align-items: center;
  color: #fff;
}

.pro_list .item a .text h5 i {
  margin-left: .5rem;
}

.product_detail {
  padding-top: 2.5rem;
  padding-bottom: 5.625rem;
}

.product_detail .detail_swiper {
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: url(../img/detail_bg.jpg) center no-repeat;
  background-size: cover;
  margin-bottom: 3.75rem;
}

.product_detail .detail_swiper .left {
  width: 50%;
}

.product_detail .detail_swiper .left .swiper .swiper-slide .img {
  padding-top: 70%;
  position: relative;
}

.product_detail .detail_swiper .left .swiper .swiper-slide .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 90%;
  max-width: 90%;
}

.product_detail .detail_swiper .left .swiper .swiper-pagination {
  bottom: 2.5rem;
}

.product_detail .detail_swiper .left .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1.875rem;
  height: 1.875rem;
  background: transparent;
  border-radius: 50%;
  margin: 0 1rem;
  transition: all .3s ease;
  position: relative;
}

.product_detail .detail_swiper .left .swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #9f9f9f;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
}

.product_detail .detail_swiper .left .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  box-shadow: 2px 0 0 #004ea2;
}

.product_detail .detail_swiper .left .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: #004ea2;
}

.product_detail .detail_swiper .right {
  width: 50%;
  padding: 0 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product_detail .detail_swiper .right .title strong {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .product_detail .detail_swiper .right .title strong {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.product_detail .detail_swiper .right .title span {
  display: inline-block;
  padding: .5rem 2.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: lighter;
  color: #fff;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  border-radius: .5rem;
  border-top-left-radius: 0;
}

.product_detail .detail_swiper .right .title span i {
  margin-right: .5rem;
}

.product_detail .detail_swiper .right h3 {
  font-size: 1.625rem;
  color: #474747;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.2;
}

.product_detail .detail_swiper .right h3 i {
  margin-right: .5rem;
  color: #999;
  font-size: 1.75rem;
  line-height: 1;
}

.product_detail .detail_swiper .right p {
  line-height: 1.8;
  color: #474747;
  font-weight: lighter;
  margin: 0;
}

.product_detail .detail_swiper .right .mod_content {
  max-height: 26.875rem;
  overflow: auto;
}

.product_detail .detail_swiper .right .mod_content * {
  font-size: clamp(14px, 1rem, 0.8334vw) !important;
}

.product_detail .detail_content {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.product_detail .detail_content .group {
  position: relative;
  padding: 2.5rem 3.125rem;
  margin-top: 1.875rem;
  width: calc((100% - 1.875rem)/2);
  min-height: 22.5rem;
  border-radius: 1.5rem;
}

.product_detail .detail_content .group:not(:nth-child(2n)) {
  margin-right: 1.875rem;
}

.product_detail .detail_content .group .title {
  font-size: 1.625rem;
  color: #474747;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product_detail .detail_content .group .title i {
  margin-right: .5rem;
  color: #999;
  font-size: 1.75rem;
  line-height: 1;
}

.product_detail .detail_content .group p {
  line-height: 1.8;
  color: #474747;
  font-weight: lighter;
  margin: 0;
}

.product_detail .detail_content .group .mod_video_btn {
  width: auto;
}

.product_detail .detail_content .group .mod_video_btn i {
  font-size: 2.5rem;
}

.product_detail .mod_more {
  margin-top: 5rem;
}

.product_detail .product_hot {
  margin-top: 4rem;
}

.product_detail .product_hot .hot_title strong {
  font-size: 1.5rem;
  line-height: 1.2;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .product_detail .product_hot .hot_title strong {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.product_detail .product_hot .hot_title a {
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #006bd3;
  display: flex;
  align-items: center;
}

.product_detail .product_hot .hot_title a i {
  margin-left: .5rem;
}

.product_detail .product_hot .items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.product_detail .product_hot .items .item {
  margin-top: 2.5rem;
  width: calc((100% - 12rem)/4);
}

.product_detail .product_hot .items .item:not(:nth-child(4n)) {
  margin-right: 4rem;
}

.product_detail .product_hot .items .item a {
  display: block;
  height: 100%;
  background: #fff;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  position: relative;
  transition: all .3s ease;
  box-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.1);
}

.product_detail .product_hot .items .item a:hover {
  border-radius: 4rem;
  border-bottom-right-radius: 0;
}

.product_detail .product_hot .items .item a:hover .text {
  opacity: 1;
  transform: scale(1);
}

.product_detail .product_hot .items .item a .img {
  padding-top: 80%;
  position: relative;
}

.product_detail .product_hot .items .item a .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 100%;
  max-width: 100%;
  transform: translate(-50%, -50%);
}

.product_detail .product_hot .items .item a .title {
  text-align: center;
  font-size: 1.25rem;
  color: #222;
  font-weight: lighter;
  margin-bottom: .5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_detail .product_hot .items .item a p {
  text-align: center;
  font-weight: lighter;
  color: #777777;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_detail .product_hot .items .item a .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.4);
  transition: all .5s ease;
}

.product_detail .product_hot .items .item a .text::after {
  content: '';
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: rotate(45deg);
  z-index: 2;
}

.product_detail .product_hot .items .item a .text::before {
  content: '';
  width: 40%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  transform: rotate(45deg);
  z-index: 2;
}

.product_detail .product_hot .items .item a .text .title {
  font-weight: bold;
  color: #fff;
}

.product_detail .product_hot .items .item a .text p {
  color: #fff;
}

.product_detail .product_hot .items .item a .text h5 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  display: flex;
  align-items: center;
  color: #fff;
}

.product_detail .product_hot .items .item a .text h5 i {
  margin-left: .5rem;
}

.case_group {
  margin-bottom: 3.125rem;
}

.case_group:nth-child(2) .img .title {
  width: 50%;
  left: 0;
  right: auto;
  top: 5rem;
  bottom: auto;
  height: auto;
  padding: 1rem 0;
  padding-left: 5rem;
  background-image: linear-gradient(to right, #004ea2 70%, rgba(0, 140, 214, 0.3));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top-right-radius: 3.75rem;
}

.case_group:nth-child(2) .img .title span {
  font-size: 3.25rem;
  text-transform: uppercase;
  font-family: 'MONTSERRAT-HAIRLINE';
  line-height: 1.2;
}

.case_group .img {
  position: relative;
}

.case_group .img img {
  width: 100%;
}

.case_group .img .title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 6.25rem;
  padding-right: 3.125rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  width: 60%;
  background-image: linear-gradient(to left, #004ea2 60%, rgba(0, 140, 214, 0));
  font-size: 1.875rem;
}

.case_group .img .title .mod_video_btn {
  width: auto;
  height: auto;
  margin-right: 1rem;
}

.case_group .img .title .mod_video_btn i {
  margin-top: .5rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.case_group .img .text {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 72%;
  background: none;
  background-image: linear-gradient(to right, white, rgba(255, 255, 255, 0.2));
  border-radius: 0;
}

.case_group .img .text p {
  margin: 0;
}

.case_group .text {
  padding: 3.75rem 3.125rem;
  background: #fff;
  line-height: 2.2;
  color: #222;
  font-weight: lighter;
  border-bottom-left-radius: 2.5rem;
}

.case_group .lc_swiper {
  position: relative;
}

.case_group .lc_swiper::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 3.75rem;
  width: .75rem;
  height: 23.125rem;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03), transparent);
}

.case_group .lc_swiper::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 3.75rem;
  width: .75rem;
  height: 23.125rem;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.03), transparent);
}

.case_group .lc_swiper .swiper {
  padding: 3.75rem 0;
}

.case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex {
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
}

.case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex::before {
  background-image: linear-gradient(135deg, #004ea2, #008cd6);
}

.case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex i {
  background: #fff;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex i::before {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex .title {
  color: #fff;
}

.case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex p {
  color: #fff;
}

.case_group .lc_swiper .swiper .swiper-slide:nth-child(2n) .flex span {
  color: #fff;
}

.case_group .lc_swiper .swiper .swiper-slide .flex {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 23.125rem;
  background: #fff;
  padding: 0 1.5rem;
  padding-top: 4.375rem;
  position: relative;
}

.case_group .lc_swiper .swiper .swiper-slide .flex:hover::before {
  top: -3.125rem;
  height: calc(100% + 6.25rem);
  border-top-left-radius: 3.125rem;
  border-bottom-right-radius: 3.125rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

.case_group .lc_swiper .swiper .swiper-slide .flex:hover span {
  opacity: 0;
}

.case_group .lc_swiper .swiper .swiper-slide .flex::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease;
}

.case_group .lc_swiper .swiper .swiper-slide .flex::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.case_group .lc_swiper .swiper .swiper-slide .flex i {
  position: relative;
  z-index: 2;
  width: 3.75rem;
  height: 3.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #004ea2, #008cd6);
}

.case_group .lc_swiper .swiper .swiper-slide .flex .title {
  position: relative;
  z-index: 2;
  margin: 1.25rem 0;
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

.case_group .lc_swiper .swiper .swiper-slide .flex p {
  position: relative;
  z-index: 2;
  font-weight: lighter;
  color: #474747;
  line-height: 2;
}

.case_group .lc_swiper .swiper .swiper-slide .flex span {
  position: relative;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 4.375rem;
  line-height: 1;
  color: #006bd3;
  opacity: .1;
  font-weight: bold;
  transition: all .3s ease;
}

.case_group .swiper-pagination1 {
  position: static;
  width: 100%;
  margin-top: 1rem;
  background: #eaeff5;
  border-radius: .25rem;
  overflow: hidden;
}

.case_group .swiper-pagination1 .swiper-pagination-progressbar-fill {
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  border-radius: .25rem;
}

.case_group .items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 3.75rem;
}

.case_group .items .item {
  width: calc((100% - 5.75rem)/3);
  margin-bottom: 3.125rem;
}

.case_group .items .item:not(:nth-child(3n)) {
  margin-right: 2.875rem;
}

.case_group .items .item:nth-child(2n) a .text {
  order: 0;
}

.case_group .items .item:nth-child(2n) a .img {
  order: 2;
}

.case_group .items .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}

.case_group .items .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all .3s ease;
}

.case_group .items .item a:hover {
  border-top-left-radius: 3.75rem;
  border-bottom-right-radius: 3.75rem;
}

.case_group .items .item a:hover::after {
  opacity: 1;
}

.case_group .items .item a:hover .img i {
  transform: scale(1.1);
}

.case_group .items .item a:hover .text .title, .case_group .items .item a:hover .text p, .case_group .items .item a:hover .text h5 {
  color: #fff;
}

.case_group .items .item a .img {
  overflow: hidden;
}

.case_group .items .item a .img i {
  padding-top: 50%;
  display: block;
  transition: all .5s ease;
}

.case_group .items .item a .text {
  padding: 1.5rem 2rem;
  background: none;
}

.case_group .items .item a .text .title {
  font-size: 1.125rem;
  color: #333;
  transition: all .3s ease;
  line-height: 1;
  font-weight: bold;
  line-height: 1.5;
}

.case_group .items .item a .text p {
  line-height: 1.8;
  font-weight: lighter;
  color: #474747;
  transition: all .3s ease;
  margin: 1rem 0;
}

.case_group .items .item a .text h5 {
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #777777;
  transition: all .3s ease;
}

.case_group .new_items .col-lg-6 {
  margin-top: 1.5rem;
}

.case_group .new_items .item {
  height: 100%;
}

.case_group .new_items .item a {
  height: 100%;
  display: block;
  padding: .875rem 1.5rem;
  border: 1px solid #dedede;
  color: #454545;
  font-size: clamp(14px, 1rem, 0.8334vw);
  transition: all .3s;
  display: flex;
  align-items: center;
}

.case_group .new_items .item a:hover {
  background-color: #006bd3;
  color: #fff;
  border-color: #006bd3;
}

.case_list {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}

.case_list .mod_title {
  margin-bottom: 0;
}

.case_list .items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.case_list .items .item {
  width: calc((100% - 8rem)/3);
  margin-top: 4.375rem;
}

.case_list .items .item:not(:nth-child(3n)) {
  margin-right: 4rem;
}

.case_list .items .item:nth-child(3n - 1) a .text {
  order: 0;
}

.case_list .items .item:nth-child(3n - 1) a .img {
  order: 2;
}

.case_list .items .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.case_list .items .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all .3s ease;
}

.case_list .items .item a:hover {
  border-top-left-radius: 3.75rem;
  border-bottom-right-radius: 3.75rem;
}

.case_list .items .item a:hover::after {
  opacity: 1;
}

.case_list .items .item a:hover .img i {
  transform: scale(1.1);
}

.case_list .items .item a:hover .text .title, .case_list .items .item a:hover .text p, .case_list .items .item a:hover .text h5 {
  color: #fff;
}

.case_list .items .item a .img {
  overflow: hidden;
}

.case_list .items .item a .img i {
  padding-top: 50%;
  display: block;
  transition: all .5s ease;
}

.case_list .items .item a .text {
  padding: 1.5rem 2rem;
  background: none;
}

.case_list .items .item a .text .title {
  font-size: 1.5rem;
  color: #333;
  transition: all .3s ease;
  line-height: 1;
  font-weight: bold;
}

.case_list .items .item a .text p {
  line-height: 1.8;
  font-weight: lighter;
  color: #474747;
  transition: all .3s ease;
  margin: 1rem 0;
}

.case_list .items .item a .text h5 {
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #777777;
  transition: all .3s ease;
}

.fancybox-container {
  backdrop-filter: blur(5px);
}

.case_hot {
  margin-top: 3.125rem;
}

.case_hot.ny_case .pro_list .item a .img {
  padding-top: 55%;
}

.case_hot .hot_title {
  margin-bottom: 2.5rem;
}

.case_hot .hot_title strong {
  font-size: 1.5rem;
  line-height: 1.2;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .case_hot .hot_title strong {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.case_hot .hot_title a {
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #006bd3;
  display: flex;
  align-items: center;
}

.case_hot .hot_title a i {
  margin-left: .5rem;
}

.case_hot .items .item {
  margin-top: 0;
  margin-bottom: 1.875rem;
}

.case_detail {
  display: flex;
  align-items: stretch;
  margin-bottom: 3.75rem;
}

.case_detail .left {
  position: relative;
  z-index: 2;
  width: 50%;
}

.case_detail .left .img {
  padding-top: 70%;
}

.case_detail .right {
  width: 50%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.case_detail .right .group {
  padding: 1.5rem 4.75rem;
  padding-right: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case_detail .right .group .title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .case_detail .right .group .title strong {
    background: linear-gradient(to right, #004ea2, #008cd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.case_detail .right .group .mod_content.h_auto {
  max-height: 20rem;
  overflow: auto;
  padding-right: 1rem;
}

.case_detail .right .group * {
  color: #474747;
  margin: 0;
  line-height: 1.8;
}

.detail_info {
  padding: 0 3.125rem;
}

.detail_info > .title {
  font-size: 2.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.detail_info .mod_content * {
  font-size: clamp(14px, 1rem, 0.8334vw);
}

.video_list {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}

.video_list .items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.video_list .items .item {
  width: calc((100% - 4.5rem)/3);
  margin-bottom: 2.5rem;
}

.video_list .items .item:not(:nth-child(3n)) {
  margin-right: 1.5rem;
}

.video_list .items .item a {
  display: block;
  height: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
}

.video_list .items .item a:hover .img i {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.video_list .items .item a:hover .img em {
  transform: scale(1.1);
}

.video_list .items .item a:hover .title {
  color: #fff;
}

.video_list .items .item a:hover .title::after {
  opacity: 1;
}

.video_list .items .item a .img {
  overflow: hidden;
  position: relative;
}

.video_list .items .item a .img i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  z-index: 2;
  transition: all .3s ease;
}

.video_list .items .item a .img em {
  padding-top: 60%;
  display: block;
  transition: all .5s ease;
}

.video_list .items .item a .title {
  position: relative;
  z-index: 2;
  height: 6.25rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #474747;
  line-height: 1.6;
  transition: all .3s ease;
}

.video_list .items .item a .title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.video_list .items .item a .title::after {
  transition: all .3s ease;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #004ea2, #008cd6);
  z-index: -1;
  opacity: 0;
}

.video_list .mod_fanye {
  margin-top: 0;
}

.jsfw {
  padding: 5rem 0;
}

.jsfw .jsfw_head .item {
  width: 100%;
}

.jsfw .jsfw_head .left {
  width: calc((100% - 2.5rem)/3*2 + 1.25rem);
}

.jsfw .jsfw_head .right {
  width: calc((100% - 2.5rem)/3);
}

.jsfw .jsfw_head .right .item .img {
  padding-top: 60.4%;
}

.jsfw .jsfw_head .right .item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.jsfw .item {
  overflow: hidden;
  position: relative;
  display: block;
}

@media (max-width: 991px) {
  .jsfw .item {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .jsfw .item {
    width: calc((100% - (3 - 1) * 1.25rem)/3);
    margin-bottom: 1.25rem;
  }
  .jsfw .item:not(:nth-child(3n)) {
    margin-right: 1.25rem;
  }
}

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

.jsfw .item .img {
  transition: all .5s;
  padding-top: 61.2%;
}

.jsfw .item h4 {
  color: #fff;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: .625rem;
  z-index: 2;
  font-size: 1.375rem;
  font-weight: bold;
}

.jsfw .mod_more {
  margin-top: 3.125rem;
}

.jsfw .js_peixun .flex-wrap > a {
  display: none;
}

.jsfw .js_peixun .flex-wrap > a:nth-child(-n+3) {
  display: block;
}

.jsfw .js_fuwu {
  margin-top: 6rem;
}

.jsfw .js_fuwu .flex-wrap > a {
  display: none;
}

.jsfw .js_fuwu .flex-wrap > a:nth-child(-n+6) {
  display: block;
}

.jsfw .js_fuwu .ov {
  overflow: hidden;
  border-radius: 1rem;
}

.jsfw .js_fuwu .item:hover h4 {
  color: #004ea2;
}

.jsfw .js_fuwu .item h4 {
  position: static;
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #474747;
  font-weight: lighter;
  transition: all .3s;
}

.ss_section {
  padding: 2.5rem 0;
  padding-bottom: 5rem;
}

.ss_section.ss_2 {
  text-align: center;
}

.ss_section.ss_2 h4 {
  line-height: 1.8;
}

.service_support .imgs img {
  max-width: 100%;
  margin-bottom: 20px;
}

.service_support .items {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 15px 1.25rem;
}

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

@media (max-width: 768px) {
  .service_support .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.service_support .items .item {
  background-image: linear-gradient(to bottom, #008cd6, #004ea2);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 2rem;
}

.service_support .items .item i {
  font-size: 2.5rem;
  display: block;
  text-align: center;
}

.service_support .items .item h4 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}

.service_support .items .item p {
  line-height: 1.8;
}

.fancybox-content {
  min-height: 43.75rem;
}

/* 媒体查询
---------------------------------------------------------------- */
@media (max-width: 991px) {
  .flex {
    flex-wrap: wrap;
  }
  .menu-link {
    display: block;
    transition: all 0.3s ease;
    margin-left: 2rem;
  }
  .menu-link span::before, .menu-link span::after {
    background: #006bd3;
  }
  .menu-link span i {
    background: #006bd3;
  }
  .menu-link.active {
    position: relative;
    z-index: 10;
  }
  .menu-link.active span::before, .menu-link.active span::after {
    background: #006bd3;
  }
  .header.active .pc_nav > ul > li > a {
    color: #fff;
  }
  .header.active .menu-link span::before, .header.active .menu-link span::after {
    background: #006bd3;
  }
  .header.active .menu-link span i {
    background: #006bd3;
  }
  .header.active .menu-link.active span::before, .header.active .menu-link.active span::after {
    background: #fff;
  }
  .header.active .menu-link.active span i {
    background: transparent;
  }
  .head_more .head_search {
    margin-left: 2rem;
  }
  .logo {
    height: 6.25rem;
  }
  .pc_nav {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    position: absolute;
    width: 70%;
    height: 100vh;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 10;
  }
  .pc_nav.active {
    opacity: 1;
    transform: translateX(0);
  }
  .pc_nav > ul {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background: #006bd3;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
  }
  .pc_nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #004ea2;
    border-top: 1px solid #008cd6;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    padding: 1rem 0;
  }
  .pc_nav > ul > li:not(:first-child) {
    margin-left: 0;
  }
  .pc_nav > ul > li:not(:last-child) {
    padding-right: 0;
  }
  .pc_nav > ul > li.active > a {
    color: #fff;
  }
  .pc_nav > ul > li.active::after {
    display: none;
  }
  .pc_nav > ul > li:first-child {
    border-top: none;
  }
  .pc_nav > ul > li:last-child {
    border-bottom: none;
  }
  .pc_nav > ul > li > a {
    color: #fff;
    font-size: 16px;
    padding: 0;
    text-align: center;
    display: block;
  }
  .pc_nav > ul > li ul {
    opacity: 1;
    position: static;
    pointer-events: auto;
    transform: translateY(0) !important;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    background: none;
    box-shadow: none;
  }
  .pc_nav > ul > li ul li {
    margin-right: 1.5rem;
    margin-bottom: .5rem;
  }
  .pc_nav > ul > li ul li a {
    font-size: 14px;
    padding: 0;
    color: #fff !important;
  }
  .pro_list .item a .text {
    display: none !important;
  }
  .head_more .head_search i {
    font-size: 2rem;
  }
  .header .xiala {
    display: none;
  }
  .banner {
    margin-top: 6.25rem;
    height: 32vh;
    position: static;
  }
  .banner .swiper .swiper-slide .caption {
    padding-left: 15px;
  }
  .banner .swiper .swiper-slide .caption span {
    font-size: 2rem;
    margin: 1.5rem 0;
  }
  .banner .swiper .swiper-slide .caption p {
    font-size: 14px;
    line-height: 1.6;
  }
  .banner .banner_swiper_more {
    padding-left: 15px;
    bottom: 1rem;
  }
  .s_banner02 {
    position: static;
    height: auto;
    padding: 2.5rem 0;
    padding-top: 5rem;
    pointer-events: auto;
  }
  .s_banner02 .d_logo {
    opacity: 1;
    position: static;
    transform: scale(1);
  }
  .s_banner02 .d_logo img {
    max-height: 6rem;
    max-width: 90%;
  }
  .s_banner02 .d_logo p {
    font-size: 16px;
    letter-spacing: 0;
  }
  .s_banner02 .d_svg, .s_banner02 .d_logo_bg, .s_banner02 .d_bg {
    display: none;
  }
  .index_news {
    margin-top: 0;
  }
  .mod_title {
    margin-bottom: 3rem;
  }
  .mod_title > span {
    font-size: 2rem;
  }
  .mod_title .en {
    font-size: 2.5rem !important;
  }
  .mod_title .en span img {
    width: 2.375rem;
  }
  .footer .left {
    width: 100%;
    border-right: 0;
    padding: 2.5rem 0;
  }
  .footer .left ul li {
    font-size: 14px;
  }
  .footer .left ul li:first-child span {
    font-size: 2rem;
  }
  .footer .center, .footer .right {
    display: none;
  }
  .index_demonstration .items .item {
    width: 100%;
    margin-right: 0 !important;
  }
  .mod_banner {
    height: 14rem;
  }
  .mod_banner .container {
    margin-bottom: 0;
  }
  .mod_banner .container strong {
    font-size: 2rem;
  }
  .mod_banner .container p {
    display: none;
  }
  .brand_story .flex .left .title {
    font-size: 2rem;
  }
  .brand_story .flex .left .story_year span {
    font-size: 4rem;
  }
  .brand_story .flex .right {
    width: 100%;
    height: auto;
    padding: 0 3.125rem;
    padding-top: 2.5rem;
  }
  .brand_story .flex .right p {
    font-size: 14px;
  }
  .history .left {
    display: none;
    width: 10rem;
  }
  .history .left span {
    font-size: 2.5rem;
  }
  .history .right {
    width: calc(100% - 10rem);
  }
  .history .right .swiper .swiper-slide > div {
    padding: 20px;
  }
  .culture .flex-stretch-between {
    flex-wrap: wrap;
  }
  .culture .flex-stretch-between .caption {
    height: 240px;
    width: 100%;
  }
  .culture .flex-stretch-between .caption:hover::after {
    display: none;
  }
  .culture .flex-stretch-between .caption .text {
    top: 50%;
    transform: translateY(-50%);
  }
  .culture .flex-stretch-between .caption .text h4 {
    opacity: 1;
  }
  .culture .box {
    width: 100%;
  }
  .culture_box .mod_content {
    width: calc(100% - 30px);
    max-width: none;
  }
  .ny_news_head .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: .5rem;
  }
  .ny_news_head .left .item a .text {
    padding: 0 15px;
  }
  .ny_news_head .left .item a .text .title {
    font-size: 16px;
  }
  .ny_news_head .left .item a .text .title strong {
    font-size: 16px;
  }
  .ny_news_head .left .item a .text p {
    font-size: 14px;
  }
  .ny_news_head .right {
    width: 100%;
  }
  .ny_news_head .right .item a .title strong {
    font-size: 16px;
  }
  .ny_news_head .right .item a h5 {
    font-size: 14px;
  }
  .about_5 .swiper_more .swiper-pagination {
    width: 9rem;
  }
  .ny_news_list .item a {
    padding: 15px;
    flex-wrap: wrap;
  }
  .ny_news_list .item a .img, .ny_news_list .item a .time, .ny_news_list .item a .text {
    width: 100%;
  }
  .ny_news_list .item a .time {
    padding-left: 0;
    margin: 1rem 0;
    border: none;
  }
  .ny_news_list .item a .text {
    padding-left: 0;
  }
  .ny_news_list .item a .text .title {
    font-size: 16px;
  }
  .ny_news_list .item a .text p {
    font-size: 14px;
  }
  .news_detail {
    padding: 0;
  }
  .news_detail > .title {
    font-size: 2rem;
  }
  .news_detail .time {
    font-size: 14px;
  }
  .news_detail .mod_more a {
    font-size: 14px;
  }
  .detail_info > .title {
    font-size: 2rem;
  }
  .mod_content {
    font-size: 14px;
  }
  .news_hot {
    display: none;
  }
  .mod_fanye02 {
    flex-wrap: wrap;
  }
  .mod_fanye02 a {
    width: 100%;
    font-size: 14px;
  }
  .mod_fanye02 a:last-child {
    justify-content: start;
    margin-top: 1rem;
  }
  .pro_left {
    width: 70%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transform: translateX(-100%);
    transition: all .3s ease;
  }
  .pro_left.active {
    transform: translateX(0);
  }
  .pro_left.active > ul {
    opacity: 1;
    pointer-events: auto;
  }
  .pro_left > ul {
    transition: all .3s ease;
    pointer-events: none;
    opacity: 0;
  }
  .pro_left > ul > li {
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  }
  .pro_left > ul li a {
    font-size: 14px;
  }
  .pro_left > ul li a i {
    font-size: 16px;
  }
  .pro_left .product_menu {
    position: absolute;
    left: 100%;
    top: 0;
    white-space: nowrap;
    color: #fff;
    font-size: 18px;
  }
  .pro_left .product_menu span {
    padding: .5rem 1rem;
    border-radius: 4px;
    background: #006bd3;
  }
  .pro_right {
    width: 100%;
    padding-left: 0;
  }
  .ny_product .container {
    position: relative;
  }
  .ny_product .container .pro_right .pro_nav {
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .ny_product .container .pro_right .pro_nav li {
    width: auto;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .ny_product .container .pro_right .pro_nav li a {
    font-size: 14px;
    padding: 0 2rem;
  }
  .ny_product .container .pro_right .pro_nav li a img {
    height: 4rem;
  }
  .pro_list .item {
    width: 100%;
  }
  .pro_list .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .pro_list .item a .title {
    font-size: 16px;
  }
  .pro_list .item a p {
    font-size: 14px;
  }
  .mod_position a {
    font-size: 14px;
  }
  .product_detail .detail_swiper {
    flex-wrap: wrap;
  }
  .product_detail .detail_swiper .left {
    width: 100%;
    padding-top: 2.5rem;
  }
  .product_detail .detail_swiper .right {
    width: 100%;
    padding: 1.5rem 15px;
  }
  .product_detail .detail_swiper .right .title span {
    font-size: 14px;
  }
  .product_detail .detail_swiper .right h3 {
    font-size: 16px;
  }
  .product_detail .detail_swiper .right h3 i {
    font-size: 18px;
  }
  .product_detail .detail_swiper .right p {
    font-size: 14px;
  }
  .product_detail .detail_content {
    flex-wrap: wrap;
  }
  .product_detail .detail_content .group {
    width: 100%;
    margin: 0 !important;
  }
  .product_detail .detail_content .group .title {
    font-size: 16px;
  }
  .product_detail .detail_content .group p {
    font-size: 14px;
  }
  .product_detail .product_hot {
    display: none;
  }
  .product_detail .mod_more a {
    font-size: 14px;
  }
  .case_group .img .title {
    font-size: 16px;
    padding-right: 15px;
    width: 80%;
  }
  .case_group .text {
    padding: 1.5rem 15px;
  }
  .case_group .text p {
    font-size: 14px;
  }
  .case_group:nth-child(2) .img .text {
    position: static;
    width: 100%;
  }
  .case_group:nth-child(2) .img .title {
    position: static;
    width: 100%;
    padding-left: 15px;
  }
  .case_group:nth-child(2) .img .title span {
    font-size: 2.5rem;
  }
  .case_group .lc_swiper .swiper {
    padding: 2.5rem 0;
  }
  .case_group .lc_swiper .swiper .swiper-slide .flex i {
    font-size: 18px;
    width: 4rem;
    height: 4rem;
  }
  .case_group .lc_swiper .swiper .swiper-slide .flex .title {
    font-size: 16px;
  }
  .case_group .lc_swiper .swiper .swiper-slide .flex p {
    font-size: 14px;
  }
  .case_group .items {
    flex-wrap: wrap;
  }
  .case_group .items .item {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .case_group .items .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .case_group .items .item:nth-child(2n) a .img {
    order: 0;
  }
  .case_group .items .item a .text .title {
    font-size: 16px;
  }
  .ny_product {
    padding-bottom: 4rem;
  }
  .mod_nav .container {
    padding: 0;
  }
  .mod_nav ul.about_nav {
    overflow: scroll;
    scroll-snap-type: x mandatory;
    justify-content: start;
  }
  .mod_nav ul.about_nav li {
    width: auto;
    flex-shrink: 0;
  }
  .mod_nav ul.about_nav li a {
    padding: 0 1.5rem;
  }
  .mod_nav ul li a {
    font-size: 14px;
  }
  .case_list .items {
    flex-wrap: wrap;
  }
  .case_list .items .item {
    width: 100%;
  }
  .case_list .items .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .case_list .items .item:nth-child(3n - 1) a .img {
    order: 0;
  }
  .case_list .items .item a .text .title {
    font-size: 16px;
  }
  .case_list .items .item a .text p {
    font-size: 14px;
  }
  .case_detail {
    flex-wrap: wrap;
    align-items: start;
  }
  .case_detail .left {
    width: 100%;
  }
  .case_detail .right {
    width: 100%;
  }
  .case_detail .right .group {
    padding: 1.5rem 15px;
    height: auto;
  }
  .case_detail .right .group:last-child .title {
    font-size: 16px;
  }
  .case_detail .right .group .title {
    font-size: 16px;
  }
  .case_detail .right .group p {
    font-size: 14px;
    max-height: 100vh;
  }
  .detail_info {
    padding: 0;
  }
  .case_hot {
    display: none;
  }
  .video_list .items {
    flex-wrap: wrap;
  }
  .video_list .items .item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .video_list .items .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .video_list .items .item a .title {
    font-size: 16px;
  }
  .about_1 .flex {
    flex-wrap: wrap;
    align-items: start;
  }
  .about_1 .flex .left {
    width: 100%;
  }
  .about_1 .flex .right {
    width: 100%;
  }
  .about_1 .flex .right .text {
    padding: 3rem 15px;
  }
  .about_1 .flex .right .text p {
    font-size: 14px;
  }
  .about_2 {
    flex-wrap: wrap;
  }
  .about_2 .left {
    width: 100%;
  }
  .about_2 .left p {
    font-size: 14px;
  }
  .about_2 .right {
    display: none;
  }
  .about_2 div.flex-stretch-between {
    flex-wrap: wrap;
  }
  .about_2 div.flex-stretch-between .img {
    width: 100%;
    height: 30rem;
    overflow: hidden;
  }
  .about_2 div.flex-stretch-between .text {
    width: 100%;
    padding: 2rem 15px;
  }
  .about_2 div.flex-stretch-between .text p {
    font-size: 14px;
  }
  .about_3 .swiper {
    height: 102rem;
    padding: 0;
  }
  .about_3 .swiper .swiper-slide {
    height: calc((100% - 20px - 2.5rem)/3);
  }
  .about_3 .swiper .swiper-slide .title {
    font-size: 16px;
  }
  .about_3 .swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    top: auto;
  }
  .about_4 .flex .left {
    width: 100%;
    padding: 2rem 15px;
  }
  .about_4 .flex .left p {
    font-size: 14px;
    line-height: 1.8;
  }
  .about_4 .flex .right {
    width: 100%;
    align-items: start;
    justify-content: flex-end;
    padding: 0;
  }
  .about_4 .flex .right .box:last-child {
    width: 10rem;
    height: 10rem;
  }
  .about_5 .swiper {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
  .about_6 div.flex-stretch-between {
    flex-wrap: wrap;
  }
  .about_6 div.flex-stretch-between .left {
    width: 100%;
  }
  .about_6 div.flex-stretch-between .right {
    width: 100%;
    padding-left: 0;
  }
  .about_6 div.flex-stretch-between .right .group .text {
    padding: 15px;
  }
  .about_6 div.flex-stretch-between .right .group .text .title {
    font-size: 14px;
  }
  .about_6 div.flex-stretch-between .right .group .text p {
    height: 10rem;
  }
  .about_7 .swiper {
    margin: 0 3rem;
  }
  .about_7 .swiper .swiper-slide {
    padding: 1.5rem 15px;
    flex-wrap: wrap;
  }
  .about_7 .swiper .swiper-slide .img {
    width: 100%;
  }
  .about_7 .swiper .swiper-slide .text {
    width: 100%;
    padding-left: 0;
  }
  .about_7 .swiper .swiper-slide .text .title {
    font-size: 14px;
  }
  .about_7 .swiper .swiper-slide .text p {
    font-size: 14px;
  }
  .about_7 .swiper .swiper-slide .text ul {
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .about_7 .swiper .swiper-slide .text ul li {
    scroll-snap-align: start;
    width: 60%;
    flex-shrink: 0;
  }
  .about_7 .swiper .swiper-slide .text ul li a img {
    width: 100%;
  }
  .mod_title2 p {
    font-size: 14px;
  }
  .about_8 .box {
    padding: 30px 20px;
  }
  .about_8 .group {
    margin-bottom: 15px;
  }
  .about_8 .group:last-child {
    margin-bottom: 15px;
  }
  .about_8 .group .ewm {
    width: 50%;
  }
  .about_8 .group .ewm img {
    width: 100%;
  }
  .mod_position {
    font-weight: initial;
  }
  .history .right .swiper .swiper-slide .text .title::after {
    left: -1.5rem;
  }
  .ppgs_new .box .flex-stretch-between {
    flex-wrap: wrap;
  }
  .ppgs_new .box .text {
    width: 100%;
    padding: 20px 15px;
    order: 2;
  }
  .ppgs_new .box .img {
    width: 100%;
  }
  .jss_new .box {
    margin-bottom: 30px;
  }
  .jss_new .box:nth-child(2n) .bottom {
    padding-left: 15px;
    padding-right: 30px;
  }
  .jss_new .box:nth-child(2n-1) .bottom {
    padding: 15px;
  }
  .jss_new .box .flex-start-between {
    flex-wrap: wrap;
  }
  .jss_new .box .text {
    width: 100%;
  }
  .jss_new .box .text h3 {
    font-size: 20px;
  }
  .jss_new .box .text p {
    font-size: 14px;
  }
  .jss_new .box .img {
    width: 100%;
    order: 2;
  }
  .jss_new .box .bottom {
    width: 90%;
  }
  .jss_new .box .bottom .shuzi .caption span {
    font-size: 16px;
  }
  .jss_new .box .bottom .shuzi .caption p {
    font-size: 12px;
  }
  .jss_new .box .bottom .swiper-button-prev, .jss_new .box .bottom .swiper-button-next {
    right: 5px;
  }
  .jss_new .box .jxs_6 {
    margin-top: 30px;
  }
  .jss_new .box .jxs_6 ul {
    flex-wrap: wrap;
  }
  .jss_new .box .jxs_6 ul li {
    width: 100%;
  }
  .fancybox-content {
    min-height: 300px;
  }
  .mod_fanye ul li a, .mod_fanye ul li span {
    margin: 0 1px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .index_demonstration .items {
    justify-content: space-between;
  }
  .index_demonstration .items .item {
    width: calc(50% - 10px);
    margin-right: 0 !important;
  }
}

@media (min-width: 1201px) {
  .container {
    max-width: calc(100% - 18.125rem);
    width: calc(100% - 18.125rem) !important;
    padding: 0 15px;
  }
}

@media (min-width: 1921px) {
  .container {
    max-width: calc(1920px - 18.125rem);
    width: calc(1920px - 18.125rem) !important;
    padding: 0 15px;
  }
}
