@charset "UTF-8";
/**
 * @desc mod_style
 * @author Tven
 * @date 2023-12-7
 */
body {
  font-size: 14px;
}

/**
* $row 一行元素个数
* $gap 元素左右间距
* $bottom 元素上下间距
* $xsNum 小屏幕一行元素个数-可选值
* $xsBottom 小屏幕元素上下间距-可选值
*/
.fz_36 {
  font-size: 36px;
}

.fz_34 {
  font-size: 34px;
}

.fz_32 {
  font-size: 32px;
}

.fz_30 {
  font-size: 30px;
}

.fz_28 {
  font-size: 28px;
}

.fz_26 {
  font-size: 26px;
}

.fz_24 {
  font-size: 24px;
}

.fz_22 {
  font-size: 22px;
}

.fz_20 {
  font-size: 20px;
}

.fz_18 {
  font-size: 18px;
}

.fz_16 {
  font-size: 16px;
}

.fz_14 {
  font-size: 14px;
}

.fz_12 {
  font-size: 12px;
}

p {
  font-size: 16px;
}

@font-face {
  font-family: 'AVANTGARDEGOTHICC-DEMI';
  src: url("../fonts/AVANTGARDEGOTHICC-DEMI.OTF");
}

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

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

@font-face {
  font-family: 'Helvetica-Condensed-Black-Se';
  src: url("../fonts/Helvetica-Condensed-Black-Se.woff2") format("woff2"), url("../fonts/Helvetica-Condensed-Black-Se.woff") format("woff");
}

.swiper {
  --swiper-theme-color: #09509b;
  /* 设置Swiper风格 */
  --swiper-preloader-color: #008bd6;
  /* 单独设置预加载圆圈的颜色 */
}

.mod_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all .5s ease;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.mod_header .header {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 77px;
}

.mod_header .header .header_center {
  position: relative;
  z-index: 2;
}

.mod_header .header .header_center .logo {
  display: flex;
  align-items: center;
}

.mod_header .header .header_center .logo a {
  display: inline-block;
  position: relative;
}

.mod_header .header .header_center .logo a img {
  height: 36px;
  transition: all .3s ease;
}

.mod_header .header .header_center nav {
  margin-left: auto;
}

.mod_header .header .header_center nav > ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.mod_header .header .header_center nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.mod_header .header .header_center nav > ul > li.active > a {
  color: #fff;
}

.mod_header .header .header_center nav > ul > li.active > a::after {
  opacity: 1;
}

.mod_header .header .header_center nav > ul > li:hover > a {
  color: #fff;
}

.mod_header .header .header_center nav > ul > li:hover > a::after {
  opacity: 1;
}

.mod_header .header .header_center nav > ul > li:hover ul {
  opacity: 1;
  pointer-events: auto;
}

.mod_header .header .header_center nav > ul > li > a {
  display: flex;
  align-items: center;
  font-size: 18px;
  height: 77px;
  color: #060606;
  padding: 0 15px;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}

.mod_header .header .header_center nav > ul > li > a::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  transform: skewX(-20deg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all .3s;
}

.mod_header .header .header_center nav > ul > li > i {
  display: none;
  font-size: 1.125rem;
  margin-left: .5rem;
  transition: all .5s ease;
  color: rgba(255, 255, 255, 0.85);
}

.mod_header .header .header_center nav > ul > li ul {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.mod_header .header .header_center nav > ul > li ul::after {
  content: '';
  width: 500%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
  transform: skewX(-20deg) translateX(-0.375rem);
  z-index: -1;
}

.mod_header .header .header_center nav > ul > li ul li {
  position: relative;
  margin-right: 1.5rem;
}

.mod_header .header .header_center nav > ul > li ul li:last-child {
  margin-right: 0;
}

.mod_header .header .header_center nav > ul > li ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  padding: 1rem;
  transition: all .5s ease;
  white-space: nowrap;
}

.mod_header .header .header_center nav > ul > li ul li a:hover i {
  transform: scale(1.2);
}

.mod_header .header .header_center nav > ul > li ul li a i {
  margin-right: .5rem;
  font-size: 1.25rem;
  transition: all .3s;
}

.mod_header .header .header_center .head_ico {
  margin-left: 1.5rem;
  position: relative;
}

.mod_header .header .header_center .head_ico:hover ul {
  opacity: 1;
  pointer-events: auto;
}

.mod_header .header .header_center .head_ico span, .mod_header .header .header_center .head_ico a {
  display: flex;
  align-items: center;
  transition: all .3s ease;
  color: #333;
  cursor: pointer;
}

.mod_header .header .header_center .head_ico span i, .mod_header .header .header_center .head_ico a i {
  font-size: 1.5rem;
  margin: 0 .25rem;
}

.mod_header .header .header_center .head_ico span i:last-child, .mod_header .header .header_center .head_ico a i:last-child {
  font-size: 14px;
}

.mod_header .header .header_center .head_ico span:hover, .mod_header .header .header_center .head_ico a:hover {
  color: #09509b;
}

.mod_header .header .header_center .head_ico ul {
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
  padding: 0 1rem;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  opacity: 0;
  border-radius: 4px;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: all .3s ease;
}

.mod_header .header .header_center .head_ico ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: .5rem 0;
}

.mod_header .header .header_center .head_ico ul li:last-child {
  border: none;
}

.mod_header .header .header_center .head_ico ul li a {
  color: #fff;
}

.mod_header .header .header_center .head_ico ul li a:hover {
  color: #Fff;
  transform: scale(1.1);
}

.mod_header .header .head_search_module {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: all .5s ease;
  display: flex;
  align-items: center;
  padding: 0 34px;
}

.mod_header .header .head_search_module form {
  width: 100%;
}

.mod_header .header .head_search_module form input {
  width: 100%;
  font-size: 2rem;
  background: none;
  border: none;
  outline: none;
  color: #fff;
}

.mod_header .header .head_search_module form input::placeholder {
  color: #fff;
}

.mod_header .header .head_search_module form span {
  cursor: pointer;
}

.mod_header .header .head_search_module form span i {
  color: #fff;
  font-size: 1.5rem;
}

.mod_header .header .head_search_module.active {
  opacity: 1;
  pointer-events: auto;
}

.index_banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.index_banner.index_banner_en .swiper .swiper-wrapper .swiper-slide span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: 3.5625rem;
}

.index_banner .index_banner_scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  text-align: center;
  z-index: 2;
}

.index_banner .index_banner_scroll i {
  display: block;
  font-size: 2rem;
  animation: banner_down 3s ease infinite;
}

.index_banner .swiper {
  height: 100%;
}

.index_banner .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  color: #fff;
  padding-right: 40%;
}

.index_banner .swiper .swiper-wrapper .swiper-slide strong {
  font-size: 3.125rem;
  display: block;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.index_banner .swiper .swiper-wrapper .swiper-slide span {
  display: block;
  font-size: 2.625rem;
  font-family: 'Helvetica-Condensed-Black-Se';
  line-height: 1.2;
}

.index_banner .swiper .swiper-pagination1 {
  bottom: 15px;
}

.index_banner .swiper .swiper-pagination1 span {
  opacity: 1;
  width: 16px;
  height: 16px;
  border: 6px solid #131313;
  background: #fff;
  transition: all .3s ease;
}

.index_banner .swiper .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #131313;
  border-color: #fff;
}

.index_banner .swiper .swiper-button-prev::after, .index_banner .swiper .swiper-button-next::after {
  color: #fff;
  font-size: 2.5rem;
}

.index_banner .swiper .swiper-button-prev {
  left: 4%;
}

.index_banner .swiper .swiper-button-next {
  right: 4%;
}

.index_banner .swiper .ico_next, .index_banner .swiper .ico_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s .3s ease;
  opacity: 0;
}

.index_banner .swiper .ico_next.active, .index_banner .swiper .ico_prev.active {
  opacity: 1;
}

.index_banner .swiper .ico_next {
  right: 3.5%;
}

.index_banner .swiper .ico_prev {
  left: 3.5%;
}

.index_banner .swiper .index_banner_scroll_right {
  position: absolute;
  left: calc(9.0625rem + 15px);
  bottom: 5rem;
  z-index: 2;
  font-size: 1.875rem;
  color: #fff;
  font-family: 'MONTSERRAT-BOLD';
}

.index_banner .swiper .index_banner_scroll_right b {
  font-size: 2.875rem;
  margin-right: .5rem;
}

.index_banner .index_banner_down {
  position: absolute;
  bottom: 0;
  z-index: 10;
  right: 0;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
  border-top-left-radius: 3rem;
  padding: 0 1rem;
}

.index_banner .index_banner_down li {
  margin: 0 .5rem;
}

.index_banner .index_banner_down li a {
  padding: 2.5rem 1rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'MONTSERRAT-HAIRLINE';
}

.index_banner .index_banner_down li a:hover i {
  transform: scale(1.2);
}

.index_banner .index_banner_down li a i {
  margin-right: 4px;
  font-size: 2rem;
  transition: all .3s;
}

.mod_oh {
  overflow: hidden;
}

.mod_oh.dib {
  display: inline-block;
}

@keyframes banner_down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30%);
  }
}

@keyframes xuanzhuan {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.index_about {
  position: relative;
  padding-bottom: 74px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.index_about .left {
  width: 39%;
  flex-shrink: 0;
  padding-top: 11.25rem;
  padding-bottom: 4.375rem;
}

.index_about .left .mod_content {
  margin: 3.75rem 0;
  color: #151515;
  letter-spacing: 1px;
}

.index_about .left .mod_content h1 {
  line-height: 1.8;
}

.index_about .left ul {
  margin-top: 5rem;
}

.index_about .left ul li {
  width: 26%;
}

.index_about .left ul li a {
  display: block;
  padding: 1.5rem 0;
  border: 1px solid #e2e2e2;
  border-radius: 1.5rem;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.index_about .left ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .3s ease;
  background-image: linear-gradient(125deg, #09509b, #008bd6);
}

.index_about .left ul li a::before {
  content: 'FAMOU';
  color: rgba(255, 255, 255, 0.05);
  font-size: 12.5rem;
  font-weight: 'Impact';
  line-height: 1;
  position: absolute;
  left: -1rem;
  top: -3rem;
  font-weight: bold;
  letter-spacing: 20px;
}

.index_about .left ul li a:hover {
  color: #fff;
}

.index_about .left ul li a:hover::after {
  opacity: 1;
}

.index_about .left ul li a i {
  font-size: 2.5rem;
  line-height: 1.1;
  display: block;
  margin-bottom: .5rem;
}

.index_about .right {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 4.625rem);
}

.index_case {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.index_case > ul {
  width: 100%;
  height: 100%;
}

.index_case > ul > li {
  width: 17%;
  height: 100%;
  transition: all .5s ease;
  overflow: hidden;
}

.index_case > ul > li.active {
  width: 49%;
}

.index_case > ul > li.active a::after {
  background: transparent;
}

.index_case > ul > li.active .pro_top {
  opacity: 0;
  transform: translateY(-100%);
}

.index_case > ul > li.active .pro_bottom {
  opacity: 1;
}

.index_case > ul > li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.index_case > ul > li a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all .5s ease;
}

.index_case > ul > li a .pro_top {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
  transition: all .5s ease;
}

.index_case > ul > li a .pro_top i {
  font-size: 2.875rem;
}

.index_case > ul > li a .pro_top strong {
  display: block;
}

.index_case > ul > li a .pro_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 2rem;
  padding-bottom: 3rem;
  opacity: 0;
  transition: all .5s ease;
}

.index_case > ul > li a .pro_bottom > i {
  font-size: 2.875rem;
  width: 5rem;
  height: 5rem;
  background-image: linear-gradient(to right, #09509b, #008bd6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index_case > ul > li a .pro_bottom h3 {
  font-weight: bold;
  padding-bottom: 1.5rem;
  position: relative;
  margin: 1.5rem 0;
}

.index_case > ul > li a .pro_bottom h3::before {
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
}

.index_case > ul > li a .pro_bottom h3::after {
  content: '';
  width: 5rem;
  height: 4px;
  background-image: linear-gradient(to right, #008bd6, #09509b);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.index_case > ul > li a .pro_bottom ul li {
  margin-right: 2.5rem;
  white-space: nowrap;
  text-align: center;
}

.index_case > ul > li a .pro_bottom ul li:last-child {
  margin-right: 0;
}

.index_case > ul > li a .pro_bottom ul li i {
  display: block;
  margin: 0 auto;
  width: 38px;
  height: 38px;
}

.index_case > ul > li a .pro_bottom ul li i.mod_bgc {
  background-size: contain;
}

.index_business {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.index_business .swiper {
  margin-top: 5rem;
}

.index_business .swiper .swiper-slide a {
  display: block;
  padding: 2.25rem 1.25rem;
  background-image: linear-gradient(to bottom, #09509b, #008bd6 50%, #008bd6);
  color: #fff;
}

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

.index_business .swiper .swiper-slide a .img {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.index_business .swiper .swiper-slide a ul {
  margin-top: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.index_business .swiper .swiper-slide a ul li {
  display: flex;
  align-items: center;
}

.index_business .swiper .swiper-slide a ul li .ico {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.index_business .swiper .swiper-slide a ul li .ico::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.index_business .swiper .swiper-slide a ul li .ico em {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background: conic-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), #fff);
  z-index: -1;
  transform: rotate(30deg);
  animation: xuanzhuan2 5s linear infinite;
}

.index_business .swiper .swiper-slide a ul li .ico em::after {
  content: '';
  background: #008bd6;
  width: calc(100% - .125rem);
  height: calc(100% - .125rem);
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  border-radius: 50%;
}

.index_business .swiper .swiper-slide a ul li .ico em::before {
  content: '';
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.index_business .swiper .swiper-slide a ul li .ico i {
  font-size: 2rem;
}

.index_business .swiper .swiper-slide a ul li .text {
  margin-left: .5rem;
}

.index_business .swiper .swiper-slide a ul li .text span {
  display: block;
  font-size: 14px;
  opacity: .6;
}

.index_business .right ol {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-left: 10%;
}

.index_business .right ol li span {
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  font-size: 1.375rem;
  color: transparent;
  display: inline-block;
}

.index_business .right ol li span strong {
  font-size: 4rem;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
  line-height: 1.1;
  font-weight: normal;
}

.index_business .right ol li p {
  color: #333;
}

.index_business .right .map {
  transform: translateX(3.125rem);
}

.index_business .right .map svg {
  width: 100% !important;
  height: auto !important;
}

.index_business .right .map svg image {
  width: 100% !important;
  height: auto !important;
}

.index_business .right .map svg path {
  pointer-events: none;
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: map_path 30s linear infinite;
}

.index_business .right .map svg g circle {
  animation: map_circle 2s linear infinite;
}

@keyframes map_circle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}

@keyframes map_path {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes xuanzhuan2 {
  0% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(390deg);
  }
}

.index_news {
  padding: 5rem 0;
  padding-bottom: 0;
}

.index_news .left {
  width: 40%;
}

.index_news .left .swiper .swiper-slide a {
  display: block;
  color: #151515;
  background: #f7f7f7;
}

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

.index_news .left .swiper .swiper-slide a .img {
  overflow: hidden;
}

.index_news .left .swiper .swiper-slide a .img i {
  padding-top: 52%;
  display: block;
  transition: all .5s ease;
}

.index_news .left .swiper .swiper-slide a .text {
  padding: 1.5rem;
}

.index_news .left .swiper .swiper-slide a .text P {
  margin-bottom: .5rem;
  min-height: 3.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index_news .left .swiper .swiper-slide a .text p, .index_news .left .swiper .swiper-slide a .text .time {
  opacity: .75;
  line-height: 1.8;
  font-size: 14px;
}

.index_news .left .swiper .swiper-pagination {
  position: absolute;
  top: 60%;
  bottom: auto;
  text-align: right;
  padding-right: 1.5rem;
}

.index_news .left .swiper .swiper-pagination span {
  opacity: 1;
  background: #fff;
}

.index_news .left .swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background: #008bd6;
}

.index_news .right {
  width: calc(60% - 2.625rem);
}

.index_news .right .item {
  margin-bottom: 1.125rem;
}

.index_news .right .item a {
  display: block;
  padding: 1.5rem 1.875rem;
  color: #151515;
  transition: all .3s ease;
  background: #f7f7f7;
  position: relative;
  z-index: 2;
}

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

.index_news .right .item a:hover {
  color: #fff;
}

.index_news .right .item a:hover::after {
  opacity: 1;
}

.index_news .right .item a p {
  font-size: 14px;
  opacity: .85;
  min-height: 3.125rem;
  line-height: 1.8;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index_news .right .item a .time {
  opacity: .5;
}

.index_partner {
  padding-top: 4.5rem;
  padding-bottom: 6.25rem;
  width: 100%;
  overflow: hidden;
}

.index_partner.mod_bgc {
  background-position: top center;
}

.index_partner .swiper {
  width: calc(100% + 15px + 6.5625rem);
}

.index_partner .swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.index_partner .swiper .swiper-slide {
  width: auto;
}

.index_partner .swiper .swiper-slide .img {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  overflow: hidden;
}

.index_partner .swiper .swiper-slide .img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to right, #008bd6, #09509b);
  opacity: 0;
  transition: all .3s ease;
}

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

.index_partner .swiper .swiper-slide .img:hover img {
  filter: grayscale(100%) brightness(800%);
}

.index_partner .swiper .swiper-slide .img img {
  max-width: 80%;
  max-height: 90%;
}

.footer {
  background-image: linear-gradient(to right, #09509b, #008bd6);
  color: #fff;
}

.footer .foot_top {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .foot_top img {
  filter: grayscale(100%) brightness(800%);
}

.footer .foot_top > a {
  color: #fff;
  font-size: 2rem;
  font-family: 'Helvetica-Condensed-Black-Se';
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.footer .foot_top > a i {
  font-size: 1.75rem;
  margin-right: .75rem;
}

.footer .foot_top ul li {
  margin-left: 1.25rem;
}

.footer .foot_top ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  transition: all .3s ease;
}

.footer .foot_top ul li a:hover {
  background: #fff;
  color: #008bd6;
}

.footer .foot_top ul li a i {
  font-size: 1.25rem;
}

.footer .foot_center {
  padding: 2.5rem 0;
}

.footer .foot_center ul li {
  margin-bottom: .5rem;
  letter-spacing: 1px;
}

.footer .foot_center ul li:last-child {
  margin-bottom: 0;
}

.footer .foot_center ul li:first-child {
  margin-bottom: 1.5rem;
}

.footer .foot_center ul li:first-child a {
  font-weight: bold;
}

.footer .foot_center ul li:first-child a:hover {
  letter-spacing: 1px;
}

.footer .foot_center ul li a {
  color: #fff;
  display: inline-block;
  transition: all .3s ease;
}

.footer .foot_center ul li a:hover {
  letter-spacing: 3px;
}

.footer .foot_bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
}

.footer .foot_bottom span:first-child a {
  margin-left: .5rem;
}

.footer .foot_bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: all .3s ease;
}

.footer .foot_bottom a:hover {
  color: #fff;
}

.search_tab {
  margin-bottom: 2.5rem;
}

.search_tab ul {
  font-size: 1.125rem;
  color: #999;
}

.search_tab ul li a {
  font-size: 1.125rem;
  padding: .5rem 1.5rem;
  border-radius: .5rem;
  border: 1px solid #dedede;
  color: #333;
  transition: all .3s ease;
  margin-left: 1.5rem;
}

.search_tab ul li a:hover {
  border-color: #09509b;
  color: #09509b;
}

.search_tab ul li a.active {
  background: #09509b;
  color: #fff;
  border-color: #09509b;
}

.mod_title_en {
  color: #5A5A5A;
  margin-bottom: 3.75rem;
}

.mod_title_en strong {
  font-size: 3.75rem;
  font-family: 'MONTSERRAT-BOLD';
  text-transform: uppercase;
  line-height: 1.2;
}

.mod_title_en p {
  margin: 0 7%;
  line-height: 1.6;
  margin-top: 1rem;
  font-family: 'MONTSERRAT-HAIRLINE';
}

.index_solution_en {
  padding: 3.75rem 0;
  padding-bottom: 5rem;
}

.index_solution_en .items {
  display: grid;
  grid-template: repeat(2, 20.875rem)/30% 40% 30%;
  grid-gap: .75rem;
}

.index_solution_en .items .item {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.index_solution_en .items .item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.index_solution_en .items .item:nth-child(1)::after {
  height: 50%;
}

.index_solution_en .items .item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.index_solution_en .items .item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.index_solution_en .items .item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.index_solution_en .items .item:nth-child(4)::after {
  height: 50%;
}

.index_solution_en .items .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0, 81, 163, 0), rgba(0, 81, 163, 0.1), #09509b);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%);
  transition: all .5s;
  opacity: 0;
}

.index_solution_en .items .item:hover::after {
  opacity: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.index_solution_en .items .item h2 {
  margin: 0 1.5rem;
  margin-bottom: 2.5rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #fff;
  position: relative;
  z-index: 2;
}

.index_product_en {
  width: 100%;
  overflow: hidden;
  padding: 4.375rem 0;
  background-position: center bottom;
}

.index_product_en ul {
  margin-bottom: 2.5rem;
}

.index_product_en ul li {
  margin: .5rem 1.25rem;
}

.index_product_en ul li a {
  font-size: inherit;
  font-family: 'MONTSERRAT-BOLD';
  color: rgba(0, 0, 0, 0.65);
  padding: .75rem 1.5rem;
  border-radius: 1.75rem;
  background: #fff;
  display: block;
  text-transform: uppercase;
  transition: all .3s;
}

.index_product_en ul li a.active {
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  color: #fff;
  opacity: 1;
}

.index_product_en .swiper .swiper-slide .item {
  display: block;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
}

.index_product_en .swiper .swiper-slide .item:hover .img i {
  transform: scale(1.05);
}

.index_product_en .swiper .swiper-slide .item .img {
  overflow: hidden;
}

.index_product_en .swiper .swiper-slide .item .img i {
  padding-top: 90%;
  display: block;
  transition: all .5s;
}

.index_product_en .swiper .swiper-slide .item .img i.mod_bgc {
  background-size: contain;
}

.index_product_en .swiper .swiper-slide .item .text {
  padding: 1rem 1.5rem;
  font-family: 'MONTSERRAT-HAIRLINE';
  text-align: center;
}

.index_product_en .swiper .swiper-slide .item .text h3 {
  color: rgba(0, 0, 0, 0.76);
  text-transform: uppercase;
}

.index_product_en .swiper .swiper-slide .item .text h4 {
  color: rgba(0, 0, 0, 0.68);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
}

.index_product_en .swiper .swiper-slide .item .text .mod_content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index_product_en .swiper .swiper-slide .item .text .mod_content * {
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(0, 0, 0, 0.68) !important;
  font-size: inherit !important;
}

.index_product_en .swiper .swiper_fan {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.index_product_en .swiper .swiper_fan div {
  position: static;
  margin: 0 1.5rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #bfbfbf;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.index_product_en .swiper .swiper_fan div::after {
  display: none;
}

.index_product_en .swiper .swiper_fan div i {
  font-size: 1.75rem;
  transition: all .3s;
}

.index_product_en .swiper .swiper_fan div.swiper-button-prev i {
  transform: rotateY(180deg);
}

.index_product_en .swiper .swiper_fan div:hover {
  border-color: #09509b;
  background: #09509b;
}

.index_product_en .swiper .swiper_fan div:hover i {
  color: #fff;
}

.index_about_en {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.index_about_en .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 53.125%;
  padding-left: calc(6.5625rem + 15px);
  padding-right: 2.5rem;
}

.index_about_en .left .mod_content * {
  font-family: 'Montserrat' !important;
  font-size: inherit !important;
  line-height: 1.6 !important;
  color: rgba(0, 0, 0, 0.6) !important;
}

.index_about_en .left .mod_more_en {
  margin-top: 5rem;
}

.index_about_en .left ul {
  display: flex;
  align-items: center;
  margin-top: 7rem;
}

.index_about_en .left ul li {
  margin-right: 10%;
  font-size: 14px;
  color: #09509b;
}

.index_about_en .left ul li:last-child {
  margin-right: 0;
}

.index_about_en .left ul li b {
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 4rem;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
  line-height: 1.1;
  font-weight: normal;
}

.index_about_en .left ul li span {
  display: block;
  color: rgba(0, 0, 0, 0.6);
}

.index_about_en .right {
  width: 46.875%;
  height: 60rem;
}

.index_about_en .right a {
  color: #fff;
  font-size: 6rem;
  cursor: pointer;
  transition: all .3s ease;
}

.index_about_en .right a:hover {
  transform: scale(1.1);
}

.index_development_en {
  padding: 7.5rem 0;
}

.index_development_en .mod_title_en {
  color: rgba(255, 255, 255, 0.75);
}

.index_development_en .flex {
  margin-top: 8.75rem;
  align-items: stretch;
  justify-content: space-evenly;
}

.index_development_en .flex .caption {
  padding: 3.375rem;
  background: rgba(255, 255, 255, 0.27);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  width: 40%;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.index_development_en .flex .caption:hover {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);
}

.index_development_en .flex .caption:hover::after {
  width: 100%;
}

.index_development_en .flex .caption::after {
  content: '';
  width: 0;
  height: 6px;
  background: #de0012;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .3s;
}

.index_development_en .flex .caption i {
  font-size: 3rem;
  line-height: 1.2;
}

.index_development_en .flex .caption h3 {
  font-size: 2.25rem;
  text-transform: uppercase;
}

.index_development_en .flex .caption p {
  margin: 1.5rem 0;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.index_development_en .flex .caption .mod_more_en a {
  color: rgba(255, 255, 255, 0.85);
  font-size: inherit;
}

.index_news_en {
  padding: 5rem 0;
  background: #f0f2f3;
  width: 100%;
  overflow: hidden;
}

.index_news_en .left {
  width: 50%;
}

.index_news_en .left .swiper .swiper-slide a {
  background: none;
  font-family: 'MONTSERRAT-HAIRLINE';
}

.index_news_en .left .swiper .swiper-slide a .text {
  padding: 1.5rem 0;
}

.index_news_en .left .swiper .swiper-slide a .text h4 {
  font-size: 1.625rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index_news_en .left .swiper .swiper-slide a .text .time {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.53);
  margin-bottom: 1rem;
}

.index_news_en .left .swiper .swiper-slide a .text p {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.6;
}

.index_news_en .left .swiper .swiper-pagination {
  top: 57%;
}

.index_news_en .right {
  width: 50%;
  padding-left: 7rem;
}

.index_news_en .right .item:first-child a {
  padding-top: 0;
}

.index_news_en .right .item a {
  font-family: 'MONTSERRAT-HAIRLINE';
  background: none;
  padding: 1.625rem 0;
  border-bottom: 1px solid #bec0c0;
  color: #1a1a1a;
  transition: all .3s;
}

.index_news_en .right .item a::after {
  display: none;
}

.index_news_en .right .item a:hover {
  color: #09509b;
}

.index_news_en .right .item a:hover .time {
  color: #09509b;
}

.index_news_en .right .item a h4 {
  font-size: 1.625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index_news_en .right .item a .time {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.53);
  margin-bottom: 1rem;
  font-style: italic;
  transition: all .3s;
}

.index_news_en .right .mod_more_en {
  margin-top: 2.5rem;
}

.mod_more_en a {
  color: #de0012;
  font-size: 1.25rem;
  font-family: 'MONTSERRAT-HAIRLINE';
  text-decoration: underline !important;
  text-transform: uppercase;
  font-style: italic;
  transition: all .3s;
  padding: .5rem 0;
}

.mod_more_en a:hover {
  letter-spacing: 1px;
}

.footer_en {
  background: #fff;
}

.footer_en .foot_top {
  padding: 3.75rem 0;
  border-color: rgba(0, 0, 0, 0.1);
}

.footer_en .foot_top img {
  filter: none;
}

.footer_en .foot_top > a {
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  color: transparent;
  font-family: 'MONTSERRAT-BOLD';
  font-size: 1.5rem;
}

.footer_en .foot_top ul li:last-child {
  margin-left: 4.375rem;
}

.footer_en .foot_top ul li a {
  background: rgba(0, 81, 163, 0.1);
  color: #09509b;
}

.footer_en .foot_top ul li a:hover {
  background: #0051a3;
  color: #fff;
}

.footer_en .foot_top ul li a.btn {
  width: auto;
  height: auto;
  padding: .75rem 2.5rem;
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  border-radius: .5rem;
  color: #fff;
  border: none;
}

.footer_en .foot_top ul li a.btn:hover {
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
}

.footer_en .foot_center {
  padding-bottom: 5rem;
}

.footer_en .foot_center ul li {
  letter-spacing: 0;
}

.footer_en .foot_center ul li:first-child a {
  text-transform: uppercase;
  font-family: 'MONTSERRAT-HAIRLINE';
}

.footer_en .foot_center ul li:first-child a:hover {
  letter-spacing: 0;
}

.footer_en .foot_center ul li a {
  color: #1a1a1a;
}

.footer_en .foot_center ul li a:hover {
  letter-spacing: 0;
  color: #09509b;
}

.footer_en .foot_bottom {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}

.footer_en .foot_bottom a {
  color: inherit;
}

.footer_en .foot_bottom a:hover {
  color: #09509b;
}

.case_list {
  padding: 7.25rem 0;
}

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

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

.case_list .item a {
  display: block;
  padding: 2.25rem 1.25rem;
  background: #f2f2f2;
  color: #3d3d3d;
  transition: all .3s ease;
  position: relative;
}

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

.case_list .item a:hover {
  color: #fff;
}

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

.case_list .item a:hover h4 {
  color: #fff;
  background: transparent;
}

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

.case_list .item a:hover ul {
  border-top-color: #fff;
}

.case_list .item a:hover ul li .ico em {
  animation: xuanzhuan2 5s linear;
  background: conic-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), #fff);
}

.case_list .item a:hover ul li .ico em::after {
  background: #008bd6;
}

.case_list .item a:hover ul li .ico em::before {
  background: #fff;
}

.case_list .item a:hover ul li .ico i {
  color: #fff;
}

.case_list .item a h4 {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}

.case_list .item a .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.case_list .item a ul {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
}

.case_list .item a ul li {
  display: flex;
  align-items: center;
}

.case_list .item a ul li .ico {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.case_list .item a ul li .ico::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.case_list .item a ul li .ico em {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background: conic-gradient(rgba(0, 139, 214, 0), rgba(0, 139, 214, 0), rgba(0, 139, 214, 0.5), #008bd6);
  z-index: -1;
  transform: rotate(30deg);
}

.case_list .item a ul li .ico em::after {
  content: '';
  background: #f2f2f2;
  width: calc(100% - .125rem);
  height: calc(100% - .125rem);
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  border-radius: 50%;
  transition: all .3s ease;
}

.case_list .item a ul li .ico em::before {
  content: '';
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: #008bd6;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
}

.case_list .item a ul li .ico i {
  font-size: 2rem;
  color: #008bd6;
  transition: all .3s ease;
}

.case_list .item a ul li .text {
  margin-left: .5rem;
}

.case_list .item a ul li .text span {
  display: block;
  font-size: 14px;
  opacity: .6;
}

.case_detail .left {
  padding-top: 6.25rem;
  padding-bottom: 2.5rem;
  width: 61%;
}

.case_detail .left > h1 {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.case_detail .left > h3 {
  margin-top: 2.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.case_detail .left > ul {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
  padding-right: 30%;
}

.case_detail .left > ul li {
  display: flex;
  align-items: center;
}

.case_detail .left > ul li .ico {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.case_detail .left > ul li .ico::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.case_detail .left > ul li .ico em {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background: conic-gradient(rgba(0, 139, 214, 0.2), rgba(0, 139, 214, 0.2), rgba(0, 139, 214, 0.5), #008bd6);
  z-index: -1;
  transform: rotate(30deg);
  animation: xuanzhuan2 5s linear infinite;
}

.case_detail .left > ul li .ico em::after {
  content: '';
  background: #fff;
  width: calc(100% - .125rem);
  height: calc(100% - .125rem);
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  border-radius: 50%;
  transition: all .3s ease;
}

.case_detail .left > ul li .ico em::before {
  content: '';
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: #008bd6;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
}

.case_detail .left > ul li .ico i {
  font-size: 2rem;
  color: #008bd6;
  transition: all .3s ease;
}

.case_detail .left > ul li .text {
  margin-left: .5rem;
}

.case_detail .left > ul li .text span {
  display: block;
  font-size: 14px;
  opacity: .6;
}

.case_detail .left .mod_content {
  margin-top: 1rem;
}

.case_detail .left .mod_content:nth-last-child(2) {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #dedede;
}

.case_detail .right {
  width: calc(39% - 3.75rem);
  margin-left: 3.75rem;
  border-left: 1px solid #dedede;
  padding: 2.5rem;
  padding-right: 0;
}

.case_detail .right > h2 {
  color: #3d3d3d;
  margin-bottom: 1.5rem;
}

.case_detail .right .item {
  margin-bottom: 2.5rem;
}

.case_detail .right .item a {
  display: block;
  padding: 2.25rem 1.25rem;
  background: #f2f2f2;
  color: #3d3d3d;
  transition: all .3s ease;
  position: relative;
}

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

.case_detail .right .item a:hover {
  color: #fff;
}

.case_detail .right .item a:hover::after {
  opacity: 1;
}

.case_detail .right .item a:hover h4 {
  color: #fff;
  background: transparent;
}

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

.case_detail .right .item a:hover ul {
  border-top-color: #fff;
}

.case_detail .right .item a:hover ul li .ico em {
  animation: xuanzhuan2 5s linear;
  background: conic-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), #fff);
}

.case_detail .right .item a:hover ul li .ico em::after {
  background: #008bd6;
}

.case_detail .right .item a:hover ul li .ico em::before {
  background: #fff;
}

.case_detail .right .item a:hover ul li .ico i {
  color: #fff;
}

.case_detail .right .item a h4 {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}

.case_detail .right .item a .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.case_detail .right .item a ul {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
}

.case_detail .right .item a ul li {
  display: flex;
  align-items: center;
}

.case_detail .right .item a ul li .ico {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.case_detail .right .item a ul li .ico::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.case_detail .right .item a ul li .ico em {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background: conic-gradient(rgba(0, 139, 214, 0), rgba(0, 139, 214, 0), rgba(0, 139, 214, 0.5), #008bd6);
  z-index: -1;
  transform: rotate(30deg);
}

.case_detail .right .item a ul li .ico em::after {
  content: '';
  background: #f2f2f2;
  width: calc(100% - .125rem);
  height: calc(100% - .125rem);
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 2;
  border-radius: 50%;
  transition: all .3s ease;
}

.case_detail .right .item a ul li .ico em::before {
  content: '';
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: #008bd6;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
}

.case_detail .right .item a ul li .ico i {
  font-size: 2rem;
  color: #008bd6;
  transition: all .3s ease;
}

.case_detail .right .item a ul li .text {
  margin-left: .5rem;
}

.case_detail .right .item a ul li .text span {
  display: block;
  font-size: 14px;
  opacity: .6;
}

.correlation {
  margin-top: 2.5rem;
  text-align: center;
}

.correlation a {
  display: inline-block;
  padding: 1.25rem 5rem;
  border: 1px solid #dedede;
  color: #666;
  transition: all .3s ease;
  border-radius: 2.5rem;
}

.correlation a:hover {
  border-color: #008bd6;
  background: #008bd6;
  color: #fff;
}

.partner_list {
  padding-top: 5rem;
  background: #f0f3fe;
  width: 100%;
  overflow: hidden;
}

.partner_list .title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  transform: translateY(-50%);
}

.partner_list .title span {
  font-size: 26px;
  color: #222;
}

.partner_list .title span strong {
  font-size: 2.25rem;
  display: flex;
  align-items: center;
  font-family: 'Helvetica-Condensed-Black-Se';
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.partner_list .title span strong em {
  font-size: 3.125rem;
  font-style: normal;
  line-height: 1.2;
}

.partner_list .title img {
  max-height: 9.875rem;
}

.partner_list .title img:last-child {
  transform: rotateY(180deg);
}

.partner_list .over_hide {
  height: 32.5rem;
  overflow: hidden;
  position: relative;
}

.partner_list .flex-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: perspective(1000px) rotateX(45deg);
  transform-origin: 50% 80%;
}

.partner_list .flex-wrap .item {
  height: 10rem;
  position: relative;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 991px) {
  .partner_list .flex-wrap .item {
    width: calc((100% - (3 - 1) * 15px) / 3);
    margin-bottom: 10px;
  }
  .partner_list .flex-wrap .item:not(:nth-child(3n)) {
    margin-right: 10px;
  }
}

@media (min-width: 992px) {
  .partner_list .flex-wrap .item {
    width: calc((100% - (6 - 1) * 2.5rem)/6);
    margin-bottom: 2.5rem;
  }
  .partner_list .flex-wrap .item:not(:nth-child(6n)) {
    margin-right: 2.5rem;
  }
}

.partner_list .flex-wrap .item:nth-child(-n+18) {
  opacity: .8;
}

.partner_list .flex-wrap .item:nth-child(-n+12) {
  opacity: .55;
}

.partner_list .flex-wrap .item:nth-child(-n+6) {
  opacity: .3;
}

.partner_list .flex-wrap .item:nth-last-of-type(-n+6) {
  margin-bottom: 0;
}

.partner_list .flex-wrap .item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 90%;
  max-width: 90%;
}

.news_list {
  background: #f6f6f6;
  padding: 5rem 0;
}

.news_list .news_head {
  display: flex;
  align-items: center;
  background: #fff;
  color: #666;
  margin-bottom: 1.5rem;
  position: relative;
}

.news_list .news_head::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #008bd6, #09509b);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .3s ease;
}

.news_list .news_head:hover {
  color: #fff;
}

.news_list .news_head:hover::before {
  opacity: 1;
}

.news_list .news_head:hover .img a {
  transform: scale(1.1);
}

.news_list .news_head:hover .text .time {
  color: #fff;
}

.news_list .news_head:hover .mod_more a {
  color: #fff;
}

.news_list .news_head:hover .mod_more a:hover {
  color: #09509b;
}

.news_list .news_head:hover .mod_more a:hover svg path {
  fill: #fff;
  stroke-dasharray: 20, 0;
  stroke: #fff;
}

.news_list .news_head:hover .mod_more a svg path {
  fill: transparent;
  stroke-dasharray: 6, 2;
  stroke: #fff;
}

.news_list .news_head .img {
  width: 56%;
}

.news_list .news_head .text {
  width: 44%;
}

.news_list .news_head .mod_more a svg path {
  fill: transparent;
  stroke-dasharray: 6, 2;
  stroke: #09509b;
}

.news_list .item {
  margin-bottom: 1.5rem;
  padding: 1.5rem 1rem;
  background: #fff;
  display: flex;
  align-items: center;
  color: #666;
  position: relative;
}

.news_list .item::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #008bd6, #09509b);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .3s ease;
}

.news_list .item:hover {
  color: #fff;
}

.news_list .item:hover::before {
  opacity: 1;
}

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

.news_list .item:hover .text .time {
  color: #fff;
}

.news_list .item:hover .mod_more a {
  color: #fff;
}

.news_list .item:hover .mod_more a:hover {
  color: #09509b;
}

.news_list .item:hover .mod_more a:hover svg path {
  fill: #fff;
  stroke-dasharray: 20, 0;
  stroke: #fff;
}

.news_list .item:hover .mod_more a svg path {
  fill: transparent;
  stroke-dasharray: 6, 2;
  stroke: #fff;
}

.news_list .img {
  width: 35%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.news_list .img a {
  display: block;
  padding-top: 52%;
  transition: all .3s ease;
}

.news_list .text {
  position: relative;
  z-index: 2;
  width: 65%;
  padding: 0 3.125rem;
}

.news_list .text .time {
  font-size: 14px;
  color: #999;
  transition: all .3s ease;
}

.news_list .text h4 {
  padding-bottom: 1rem;
  border-bottom: 1px solid #dedede;
  margin: 1rem 0;
  transition: all .3s ease;
}

.news_list .text p {
  line-height: 2;
  transition: all .3s ease;
}

.news_list .text .mod_more {
  margin-top: 2.5rem;
}

.news_detail {
  padding: 3.75rem 0;
  background: #f7f7f7;
}

.news_detail .box {
  background: #fff;
  padding: 3.75rem 2.5rem;
  position: relative;
}

.news_detail .box::after {
  content: '';
  height: .5rem;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #008bd6 60%, #09509b);
}

.news_detail .box > .title h1 {
  background: linear-gradient(to right, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.news_detail .box > .title a {
  padding: .5rem 2.5rem;
  border-radius: 1.5rem;
  border: 1px dashed #dedede;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news_detail .box > .title a:hover {
  color: #008bd6;
}

.news_detail .box > .title a i {
  margin-left: .5rem;
  color: #008bd6;
  font-size: 1.5rem;
}

.news_detail .box .time {
  color: #999;
  margin-top: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #dedede;
  margin-bottom: 1.5rem;
}

.honor {
  padding-top: 5rem;
  height: 60.125rem;
}

.honor ul {
  width: 30%;
  display: flex;
  justify-content: space-between;
}

.honor ul li {
  margin-left: 5rem;
  color: #666;
}

.honor ul li:first-child {
  margin-left: 0;
}

.honor ul li span {
  font-size: 1.375rem;
  display: block;
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.honor ul li span b {
  font-size: 4rem;
  line-height: 1.2;
}

.honor p {
  width: 68%;
  color: #666;
  line-height: 2;
}

.patent {
  padding: 5rem 0;
}

.patent p {
  color: #fff;
  line-height: 2;
}

.patent .swiper {
  height: 31.25rem;
}

.patent .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all .3s ease;
}

.patent .swiper .swiper-slide.swiper-slide-prev {
  transform: scale(0.8) translateX(-5%);
}

.patent .swiper .swiper-slide.swiper-slide-next {
  transform: scale(0.8) translateX(5%);
}

.patent .swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.patent .swiper .swiper-slide .img {
  width: 100%;
  display: inline-block;
  border-width: 2.875rem 2.9375rem 2.875rem 2.9375rem;
  border-style: solid;
  border-image: url(../img/kuang3.png) 46 47 46 47 round repeat;
}

.patent .swiper .swiper-slide .img img {
  display: block;
  width: 100%;
}

.patent .swiper1_fan > div {
  position: static;
  margin: 0 2.5rem;
  width: 2.625rem;
  height: 2.625rem;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
}

.patent .swiper1_fan > div::after {
  font-size: 1.25rem;
}

.culture {
  padding: 8rem 0;
  height: 60rem;
  position: relative;
}

.culture.mod_bgc {
  background-position: center bottom;
}

.culture .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.culture .container ul li {
  width: 30%;
  padding: 2rem 4rem;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  line-height: 2;
  background: rgba(255, 255, 255, 0.78);
  position: relative;
  cursor: pointer;
}

.culture .container ul li.active {
  color: #fff;
}

.culture .container ul li.active::after {
  opacity: 1;
}

.culture .container ul li.active i::after {
  opacity: 0;
}

.culture .container ul li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #008bd6, #09509b);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: all .3s ease;
}

.culture .container ul li .text, .culture .container ul li i {
  position: relative;
  z-index: 2;
}

.culture .container ul li p {
  margin: 0;
}

.culture .container ul li i {
  flex-shrink: 0;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.34);
  color: #fff;
  transition: all .3s ease;
  position: relative;
}

.culture .container ul li i::before {
  position: relative;
  z-index: 2;
}

.culture .container ul li i::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #008bd6, #09509b);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all .3s ease;
}

.culture .swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.profile {
  padding-top: 6.25rem;
  min-height: 60rem;
  position: relative;
  color: #3e3e3e;
}

.profile::after {
  content: '';
  width: 100%;
  height: 40%;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.profile p {
  line-height: 2;
  color: #3e3e3e;
}

.profile ul {
  font-size: 14px;
  margin-top: 2.5rem;
}

.profile ul li span {
  display: block;
  color: #09509b;
  line-height: 1.2;
}

.profile ul li span em {
  font-size: 2.625rem;
  font-weight: bold;
  font-style: normal;
}

.profile ul li span b {
  font-size: 2.625rem;
  font-family: 'Helvetica-Condensed-Black-Se';
}

.profile ul li i {
  font-style: normal;
  display: inline-block;
  background: #09509b;
  padding: 2px 5px;
  color: #fff;
}

.base {
  padding: 7.5rem 0;
  overflow: hidden;
}

.base .left {
  width: 52.5%;
  min-height: 45rem;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  overflow: hidden;
}

.base .left .swiper {
  width: 100%;
  height: 100%;
}

.base .right {
  width: 47.5%;
  background-image: linear-gradient(to right, #008bd6 40%, #09509b);
  padding: 6.875rem 2.5rem;
  padding-right: 5rem;
  padding-bottom: 0;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  overflow: hidden;
}

.base .right .mod_title {
  margin-bottom: 3rem;
}

.base .right .mod_content {
  color: #fff;
}

.base .right .mod_content h3, .base .right .mod_content h4 {
  line-height: 1.6;
}

.base .right .mod_content h3 strong, .base .right .mod_content h4 strong {
  cursor: pointer;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)) right bottom no-repeat;
  background-size: 0 1px;
  transition: background-size 1s;
}

.base .right .mod_content h3.cur strong, .base .right .mod_content h4.cur strong {
  background-position: left bottom;
  background-size: 100% 1px;
}

.base .right .mod_content p {
  margin: 2rem 0;
  margin-top: 1rem;
  line-height: 2;
}

.youshi {
  padding: 3.75rem 0;
  color: #fff;
}

.youshi .flex-wrap {
  width: 100%;
  overflow: hidden;
  padding: 3rem 1rem;
}

.youshi .flex-wrap .caption {
  min-height: 31.25rem;
  padding: 0 2.5rem;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  .youshi .flex-wrap .caption {
    width: calc((100% - (2 - 1) * 15px) / 2);
    margin-bottom: 10px;
  }
  .youshi .flex-wrap .caption:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}

@media (min-width: 992px) {
  .youshi .flex-wrap .caption {
    width: calc((100% - (5 - 1) * 0.625rem)/5);
    margin-bottom: 0;
  }
  .youshi .flex-wrap .caption:not(:nth-child(5n)) {
    margin-right: 0.625rem;
  }
}

.youshi .flex-wrap .caption:hover::after {
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
}

.youshi .flex-wrap .caption::after {
  content: '';
  background: rgba(255, 255, 255, 0.35);
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

.youshi .flex-wrap .caption:nth-child(1)::after {
  transform: scale(1.05) perspective(1000px) rotateY(20deg);
}

.youshi .flex-wrap .caption:nth-child(5)::after {
  transform: scale(1.05) perspective(1000px) rotateY(-20deg);
}

.youshi .flex-wrap .caption:nth-child(2)::after {
  transform: scale(0.92) perspective(1000px) rotateY(10deg);
}

.youshi .flex-wrap .caption:nth-child(4)::after {
  transform: scale(0.92) perspective(1000px) rotateY(-10deg);
}

.youshi .flex-wrap .caption:nth-child(3)::after {
  transform: scale(0.9);
}

.youshi .flex-wrap .caption > * {
  position: relative;
  z-index: 2;
}

.youshi .flex-wrap .caption i {
  font-size: 3.75rem;
  line-height: 1.2;
}

.youshi .flex-wrap .caption h3 {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.youshi .flex-wrap .caption p {
  font-size: 14px;
  line-height: 1.6;
}

.history {
  padding-top: 5rem;
  min-height: 55.625rem;
  color: #fff;
}

.history .swiper {
  margin-top: 5rem;
}

.history .swiper .swiper-slide {
  display: flex;
  height: 21.25rem;
  transition: all .5s ease;
}

.history .swiper .swiper-slide.swiper-slide-next, .history .swiper .swiper-slide.swiper-slide-prev {
  padding-top: 5%;
}

.history .swiper .swiper-slide .line {
  width: 2px;
  height: 100%;
  margin: 0 1rem;
  margin-top: 1.5rem;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

.history .swiper .swiper-slide .line::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.history .swiper .swiper-slide .text .time {
  font-size: 2.375rem;
  font-weight: bold;
  line-height: 1.4;
}

.history .swiper .swiper-slide .text p {
  line-height: 1.6;
}

.history .swiper-button-prev, .history .swiper-button-next {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
}

.history .swiper-button-prev::after, .history .swiper-button-next::after {
  font-size: 1.5rem;
}

.history .dw {
  position: relative;
}

.history .dw .swiper-button-prev {
  left: -3rem;
}

.history .dw .swiper-button-next {
  right: -3rem;
}

.future {
  background: #eaf8fd;
  padding: 4.375rem 0;
}

.future p {
  color: #454545;
  margin-bottom: 2.5rem;
}

.future ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 40%;
}

.future ul li span {
  display: block;
  line-height: 1.2;
  background: linear-gradient(to right, #09509b, #008bd6 20%);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.future ul li span b {
  font-size: 4rem;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
}

.future .map {
  transform: translateX(3.125rem);
}

.future .map svg {
  width: 100% !important;
  height: auto !important;
}

.future .map svg image {
  width: 100% !important;
  height: auto !important;
}

.future .map svg path {
  stroke-dasharray: 8;
  stroke-dashoffset: 8;
  animation: map_path 30s linear infinite;
}

.future .map svg g circle {
  animation: map_circle 2s linear infinite;
}

.development {
  padding: 5rem 0;
}

.development ul {
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  width: 100%;
  position: relative;
  margin-top: 3.75rem;
}

.development ul::after {
  position: absolute;
  left: 0;
  top: 2.5rem;
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #09509b;
  z-index: -1;
}

.development ul li {
  padding: 0 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.development ul li.active i {
  color: #fff;
  border-color: transparent;
  background-image: linear-gradient(to right, #09509b, #008bd6);
}

.development ul li i {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px dashed #09509b;
  background: #fff;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #09509b;
}

.development ul li span {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #454545;
}

.development .swiper {
  margin-top: 3rem;
}

.development .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.development .swiper .swiper-slide .left {
  width: 50%;
}

.development .swiper .swiper-slide .left .img {
  padding-top: 57%;
}

.development .swiper .swiper-slide .right {
  width: 50%;
  padding-left: 5rem;
}

.development .swiper .swiper-slide .right h3 {
  font-size: 2.125rem;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
  margin-bottom: 1.5rem;
}

.development .swiper .swiper-slide .right p {
  line-height: 2;
}

.company_ys {
  padding: 6rem 0;
  padding-bottom: 14.375rem;
}

.company_ys .yuan {
  width: 40.625rem;
  height: 40.625rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  position: relative;
}

.company_ys .yuan::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 86%;
  height: 86%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.company_ys .yuan .img {
  width: 70%;
  height: 70%;
  position: absolute;
  left: 15%;
  top: 15%;
}

.company_ys .yuan .title {
  width: 50%;
  height: 50%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.375rem;
}

.company_ys .yuan .title strong {
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.company_ys .yuan ul {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.company_ys .yuan ul li {
  position: absolute;
  z-index: 2;
  color: #fff;
  width: 0;
  height: 0;
}

.company_ys .yuan ul li:hover .text p {
  opacity: 1;
}

.company_ys .yuan ul li:nth-child(1) {
  left: 80%;
  top: 10%;
}

.company_ys .yuan ul li:nth-child(2) {
  top: 60%;
  right: 1%;
}

.company_ys .yuan ul li:nth-child(3) {
  top: 100%;
  left: 50%;
}

.company_ys .yuan ul li:nth-child(3) .text {
  top: 3.5rem;
  left: 50%;
  transform: translateX(-30%);
  margin-top: 0;
}

.company_ys .yuan ul li:nth-child(4) {
  top: 60%;
  left: 1%;
}

.company_ys .yuan ul li:nth-child(4) .text {
  left: auto;
  right: 4.5rem;
  text-align: right;
}

.company_ys .yuan ul li:nth-child(4) .text span::after {
  transform: skewX(-20deg);
  background-image: linear-gradient(to right, rgba(0, 139, 214, 0), #09509b);
}

.company_ys .yuan ul li:nth-child(5) {
  left: 20%;
  top: 10%;
}

.company_ys .yuan ul li:nth-child(5) .text {
  left: auto;
  right: 4.5rem;
  text-align: right;
}

.company_ys .yuan ul li:nth-child(5) .text span::after {
  transform: skewX(-20deg);
  background-image: linear-gradient(to right, rgba(0, 139, 214, 0), #09509b);
}

.company_ys .yuan ul li i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background-image: linear-gradient(to right, #008bd6, #09509b);
  color: #fff;
}

.company_ys .yuan ul li .text {
  position: absolute;
  margin-top: -1.5rem;
  left: 4.5rem;
}

.company_ys .yuan ul li .text span {
  min-width: 22.5rem;
  padding: .5rem 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.company_ys .yuan ul li .text span::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 4px;
  transform: skewX(20deg);
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #09509b, rgba(0, 139, 214, 0));
  z-index: -1;
}

.company_ys .yuan ul li .text p {
  line-height: 1.6;
  padding: .5rem 1rem;
  height: 0;
  overflow: visible;
  opacity: 0;
  transition: all .3s ease;
}

.advantage {
  height: 60rem;
  position: relative;
}

.advantage .mod_title {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 2.5rem;
}

.advantage .mod_title span {
  font-size: 1.25rem;
}

.advantage .mod_title strong {
  font-size: 2.625rem;
}

.advantage ul {
  width: 100%;
  height: 100%;
  position: relative;
}

.advantage ul li {
  font-size: 20px;
  color: #fff;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.advantage ul li:hover i {
  transform: translateY(-0.5rem);
}

.advantage ul li:nth-child(1) {
  left: 22.5%;
  top: 27%;
}

.advantage ul li:nth-child(2) {
  left: 22.5%;
  top: 52%;
}

.advantage ul li:nth-child(3) {
  left: 33.5%;
  top: 15%;
}

.advantage ul li:nth-child(4) {
  left: 33.5%;
  top: 39%;
}

.advantage ul li:nth-child(5) {
  left: 55.5%;
  top: 14%;
}

.advantage ul li:nth-child(6) {
  left: 55.5%;
  top: 40%;
}

.advantage ul li:nth-child(7) {
  left: 55.5%;
  top: 64%;
}

.advantage ul li:nth-child(8) {
  left: 66.5%;
  top: 27%;
}

.advantage ul li:nth-child(9) {
  left: 66.5%;
  top: 52%;
}

.advantage ul li i {
  font-size: 2.5rem;
  transition: all .3s ease;
}

.recruitment {
  padding: 7.5rem 0;
  padding-top: 11.875rem;
}

.recruitment .swiper_fan .swiper-button-next, .recruitment .swiper_fan .swiper-button-prev {
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  border: 3px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  color: #fff;
  font-weight: bold;
}

.recruitment .swiper_fan .swiper-button-next::after, .recruitment .swiper_fan .swiper-button-prev::after {
  font-size: 2rem;
}

.recruitment .swiper_fan .swiper-button-next {
  margin-left: 2.5rem;
}

.recruitment .swiper {
  margin-top: 6.25rem;
  padding-left: calc(6.5625rem + 15px);
}

.recruitment .swiper .swiper-slide a {
  display: block;
  height: 25rem;
  background: linear-gradient(to bottom, #008bd6, #09509b);
  padding: 3.625rem 1.25rem;
  padding-bottom: 1.5rem;
  color: #454545;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.recruitment .swiper .swiper-slide a::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease;
}

.recruitment .swiper .swiper-slide a:hover {
  color: #fff;
}

.recruitment .swiper .swiper-slide a:hover::after {
  opacity: 0;
}

.recruitment .swiper .swiper-slide a:hover h3 {
  border-color: #fff;
}

.recruitment .swiper .swiper-slide a:hover .mod_content * {
  color: #fff;
}

.recruitment .swiper .swiper-slide a:hover .more i {
  color: #fff;
}

.recruitment .swiper .swiper-slide a > * {
  position: relative;
  z-index: 2;
}

.recruitment .swiper .swiper-slide a h3 {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.recruitment .swiper .swiper-slide a .mod_content {
  overflow: auto;
  height: 11.25rem;
  padding-right: 1rem;
}

.recruitment .swiper .swiper-slide a .mod_content * {
  font-size: inherit;
  margin-bottom: .5rem;
  line-height: 1.6;
  color: #333;
  transition: all .3s ease;
}

.recruitment .swiper .swiper-slide a .more i {
  display: block;
  font-size: 2.5rem;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.contact {
  color: #fff;
  height: 100vh;
}

.contact #mapContainer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.contact .box {
  position: relative;
  z-index: 2;
  width: 60%;
  background-image: linear-gradient(to right, #025faf, rgba(2, 95, 175, 0));
  padding: 3.75rem 0;
  padding-left: calc(6.5625rem + 15px);
}

.contact .box ul {
  margin: 1.5rem 0;
}

.contact .box ul li {
  display: flex;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact .box ul li span {
  font-weight: normal;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.contact .box ul li span i {
  margin-right: 6px;
  font-weight: normal;
  font-size: 1.25rem;
}

.contact .box .link {
  display: flex;
}

.contact .box .link a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}

.contact .box .link a i {
  font-size: 1.25rem;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.contact .box .more {
  margin-top: 1.5rem;
}

.contact .box .more a {
  border-radius: .5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  display: inline-block;
}

.contact .box .more a span {
  display: flex;
  align-items: center;
  padding: .5rem 2rem;
}

.contact .box .more a span i {
  margin-right: 1rem;
  font-size: 1.5rem;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.jobDetail {
  display: none;
  width: 1400px;
  background: url(../img/job_bg.jpg) center no-repeat;
  background-size: cover;
  padding: 3.5rem;
  border-radius: 1.5rem;
}

.jobDetail h3 {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.jobDetail h3 strong {
  background: linear-gradient(to bottom, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.jobDetail .mod_content {
  margin: 2.5rem 0;
  color: #454545;
}

.jobDetail .mod_content * {
  font-size: inherit !important;
}

.jobDetail .link {
  color: #008bd6;
  font-weight: bold;
}

.jobDetail .link a {
  color: inherit;
}

.jobDetail .more {
  margin-top: 2.5rem;
}

.jobDetail .more a {
  color: #fff;
  padding: 1rem 5rem;
  font-weight: bold;
  border-radius: .5rem;
  background-image: linear-gradient(to right, #09509b, #008bd6);
}

.jobDetail .fancybox-close-small {
  top: 1.5rem;
  right: 1.5rem;
  width: 2.625rem;
  height: 2.625rem;
  border: 2px solid #fff;
  border-radius: 50%;
}

.jobDetail .fancybox-close-small::after {
  color: #fff;
  font-size: 2rem;
  background: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.jobDetail .fancybox-close-small:focus::after {
  outline: none;
}

.jobDetail .fancybox-close-small:hover::after {
  color: #fff;
  background: none;
  outline: none;
}

.epc_1 {
  height: 100vh;
}

.epc_1 .mod_title {
  margin-bottom: 5rem;
}

.epc_1 p {
  line-height: 2;
}

.epc_2 {
  padding-top: 6.875rem;
}

.epc_2 ul {
  margin: 0 auto;
  margin-top: 5rem;
  width: 84.875rem;
  height: 41.625rem;
  position: relative;
  color: #fff;
}

.epc_2 ul li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.epc_2 ul li.mod_bgc {
  background-size: contain;
}

.epc_2 ul li i {
  position: absolute;
  z-index: 2;
  font-size: 3.5rem;
}

.epc_2 ul li span {
  position: absolute;
  z-index: 2;
  font-size: 1.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.47);
  width: 20rem;
  line-height: 1.2;
}

.epc_2 ul li span strong {
  font-size: 2rem;
  display: block;
  color: #fff;
  line-height: 1.8;
}

.epc_2 ul li:nth-child(1) i {
  left: 31%;
  bottom: 4%;
}

.epc_2 ul li:nth-child(1) span {
  text-align: right;
  right: 75%;
  bottom: 12%;
}

.epc_2 ul li:nth-child(2) i {
  left: 41%;
  bottom: 24%;
}

.epc_2 ul li:nth-child(2) span {
  text-align: right;
  right: 57%;
  bottom: 58%;
}

.epc_2 ul li:nth-child(3) i {
  left: 55%;
  bottom: 24%;
}

.epc_2 ul li:nth-child(3) span {
  left: 55%;
  bottom: 58%;
}

.epc_2 ul li:nth-child(4) i {
  left: 64%;
  bottom: 4%;
}

.epc_2 ul li:nth-child(4) span {
  left: 74%;
  bottom: 12%;
}

.epc_3 {
  padding: 10rem 0;
}

.epc_3 .img {
  height: 35rem;
  width: 36%;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  transform: translateX(4.375rem);
  position: relative;
  z-index: 2;
  padding-left: 9%;
  padding-top: 4%;
}

.epc_3 .group {
  width: 64%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-4.375rem);
}

.epc_3 .group .caption {
  background: #fff;
  height: calc((100% - 1.75rem)/3);
  padding-left: 10rem;
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #333;
  overflow: hidden;
}

.epc_3 .group .caption::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .3s;
  background: linear-gradient(to bottom, #008bd6, #09509b);
}

.epc_3 .group .caption > * {
  position: relative;
  z-index: 2;
}

.epc_3 .group .caption:hover {
  color: #fff;
}

.epc_3 .group .caption:hover::after {
  opacity: 1;
}

.epc_3 .group .caption:hover ul li i {
  color: #fff;
}

.epc_3 .group .caption:hover h4 span {
  background: rgba(255, 255, 255, 0.47);
}

.epc_3 .group .caption h4 {
  margin-bottom: 1.5rem;
}

.epc_3 .group .caption h4 span {
  font-weight: bold;
  display: inline-block;
  padding: 8px 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(to right, #008bd6, #09509b);
  color: #fff;
}

.epc_3 .group .caption ul {
  display: flex;
}

.epc_3 .group .caption ul li {
  display: flex;
  align-items: center;
  margin-right: 5rem;
}

.epc_3 .group .caption ul li i {
  font-size: 1.25rem;
  margin-right: 6px;
  background: linear-gradient(to right, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
  transition: all .3s;
}

.epc_4 {
  height: 52.875rem;
  position: relative;
}

.epc_4 .img {
  position: absolute;
  right: 0;
  height: 100%;
  width: 63.5%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
}

.epc_4 p {
  line-height: 2;
  margin: 0;
  margin-top: 5rem;
}

.products {
  padding: 3.75rem 0;
}

.ny_left {
  padding-right: 3.75rem;
}

.ny_left.fixed {
  position: fixed;
  top: 0;
  z-index: 99;
}

.ny_left.fixed2 {
  position: fixed;
  bottom: 0;
  z-index: 99;
}

@media (max-width: 991px) {
  .col-lg-9 .product_list .items .item {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .col-lg-9 .product_list .items .item {
    width: calc((100% - (3 - 1) * 2.5rem)/3);
    margin-bottom: 3.75rem;
  }
  .col-lg-9 .product_list .items .item:not(:nth-child(3n)) {
    margin-right: 2.5rem;
  }
}

@media (max-width: 991px) {
  .col-lg-12 .product_list .items .item {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .col-lg-12 .product_list .items .item {
    width: calc((100% - (4 - 1) * 2.5rem)/4);
    margin-bottom: 3.75rem;
  }
  .col-lg-12 .product_list .items .item:not(:nth-child(4n)) {
    margin-right: 2.5rem;
  }
}

.product_list .items .item a {
  display: block;
}

.product_list .items .item a:hover .name {
  color: #fff;
}

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

.product_list .items .item a .img {
  padding-top: 71%;
  border: 1px solid #ddd;
  position: relative;
}

.product_list .items .item a .img span {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 5px 1rem;
  border-radius: 1rem;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  z-index: 2;
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
}

.product_list .items .item a .name {
  background: #ededed;
  color: #333;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: all .3s;
  z-index: 2;
}

.product_list .items .item a .name::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .3s;
}

.product_detail_0 {
  position: relative;
  padding: 5rem 0;
}

.product_detail_0 .img {
  padding-top: 71%;
}

.product_detail_0 .right {
  padding-left: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product_detail_0 h1 {
  margin-top: 1rem;
}

.product_detail_0 h1 strong {
  display: inline-block;
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.product_detail_0 .mod_content {
  background: #f6f6f6;
  border-top: 3px solid #008bd6;
  padding: 2.5rem 2rem;
  height: 30rem;
  overflow: auto;
}

.product_detail_0 .mod_content h3 {
  font-size: 1.875rem !important;
  color: #454545 !important;
  margin-bottom: 1.5rem;
}

.product_detail_0 .mod_content h3::before {
  transform: rotate(0);
  height: 2.25rem;
  margin-top: .25rem;
}

.product_detail_0 .mod_content > * {
  font-size: inherit !important;
  color: #333 !important;
  position: relative !important;
  text-indent: 0 !important;
  display: flex;
  align-items: center;
}

.product_detail_0 .mod_content > *::before {
  content: '';
  width: .375rem;
  height: .375rem;
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  transform: rotate(45deg);
  margin-right: 1rem;
}

.product_detail_1 {
  position: relative;
  padding: 5rem 0;
  padding-bottom: 2.5rem;
}

.product_detail_1 .swiper {
  padding: 6.25rem 0;
}

.product_detail_1 .swiper .swiper-slide .img {
  padding-top: 64%;
}

.product_detail_1 .swiper_fan .swiper-button-next1, .product_detail_1 .swiper_fan .swiper-button-prev1 {
  margin: 0 5%;
  position: static;
  width: auto;
  height: auto;
}

.product_detail_1 .swiper_fan .swiper-button-next1::after, .product_detail_1 .swiper_fan .swiper-button-prev1::after {
  display: none;
}

.product_detail_1 .swiper_fan .swiper-button-next1 i, .product_detail_1 .swiper_fan .swiper-button-prev1 i {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.product_detail_2 {
  position: relative;
  padding: 5rem 0;
  min-height: 55rem;
}

.product_detail_2 .mod_title {
  margin-bottom: 5rem;
}

.product_detail_2 .mod_content2 {
  margin: 0 12%;
  padding: 3.75rem;
  background: rgba(255, 255, 255, 0.79);
  position: relative;
}

.product_detail_2 .mod_content2::after {
  content: '';
  width: 100%;
  height: 6px;
  background-image: linear-gradient(to right, #09509b 50%, #008bd6 51%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.product_detail_2 .mod_content2 > * {
  font-size: inherit !important;
  color: #008bd6 !important;
  position: relative !important;
  text-indent: 0 !important;
  display: flex;
  align-items: center;
  font-weight: bold !important;
}

.product_detail_2 .mod_content2 > *::before {
  content: '';
  width: .5rem;
  height: .5rem;
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  transform: rotate(45deg);
  margin-right: 1rem;
}

.product_detail_3 {
  position: relative;
  padding: 5rem 0;
}

.product_detail_3 .mod_title {
  margin-bottom: 5rem;
}

.product_detail_3 .flex-wrap {
  justify-content: space-between;
}

.product_detail_3 .flex-wrap .item {
  width: 32%;
}

.product_detail_3 .flex-wrap .item .img {
  padding-top: 63%;
  border: 1px solid #dedede;
}

.product_detail_3 .flex-wrap .item .img.mod_bgc {
  background-size: contain;
}

.product_detail_3 .flex-wrap .item:only-child {
  width: 100%;
}

.product_detail_3 .flex-wrap .item:only-child .img {
  padding-top: 40%;
  border: none;
}

.product_detail_3 .flex-wrap .item:first-child:nth-last-child(2),
.product_detail_3 .flex-wrap .item:first-child:nth-last-child(2) ~ .item {
  width: 48% !important;
}

.main_menu {
  position: fixed;
  z-index: 99;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

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

.main_menu.white ul li a span {
  color: #fff;
}

.main_menu ul li {
  margin-bottom: 4.5rem;
  position: relative;
}

.main_menu ul li::after {
  content: '';
  width: 1px;
  height: 4.5rem;
  border-left: 1px dashed #c1c5c7;
  position: absolute;
  left: .875rem;
  top: 100%;
}

.main_menu ul li:last-child {
  margin-bottom: 0;
}

.main_menu ul li:last-child::after {
  display: none;
}

.main_menu ul li.active a {
  color: #008bd6;
  font-weight: bold;
}

.main_menu ul li a {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
}

.main_menu ul li a i {
  font-size: 1.75rem;
  color: #008bd6;
  margin-right: 1rem;
  font-weight: normal;
}

.main_menu ul li a span {
  color: #09509b;
  padding: 2px 5px;
}

.xiangmu_1 {
  padding: 8.75rem 0;
}

.xiangmu_1 ul {
  margin: 0 auto;
  width: 41.25rem;
  height: 41.25rem;
  position: relative;
  z-index: 2;
}

.xiangmu_1 ul::after {
  content: '';
  width: calc(100% + 7.75rem);
  height: calc(100% + 7.75rem);
  border-radius: 50%;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.xiangmu_1 ul li {
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
}

.xiangmu_1 ul li:nth-child(1) {
  left: 50%;
  top: 0;
}

.xiangmu_1 ul li:nth-child(1) span {
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.xiangmu_1 ul li:nth-child(2) {
  right: 7%;
  top: 26%;
}

.xiangmu_1 ul li:nth-child(2) span {
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.xiangmu_1 ul li:nth-child(3) {
  right: 7%;
  top: 74%;
}

.xiangmu_1 ul li:nth-child(3) span {
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.xiangmu_1 ul li:nth-child(4) {
  left: 50%;
  top: 100%;
}

.xiangmu_1 ul li:nth-child(4) span {
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.xiangmu_1 ul li:nth-child(5) {
  left: 7%;
  top: 74%;
}

.xiangmu_1 ul li:nth-child(5) span {
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.xiangmu_1 ul li:nth-child(6) {
  left: 7%;
  top: 26%;
}

.xiangmu_1 ul li:nth-child(6) span {
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.xiangmu_1 ul li:hover i {
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
}

.xiangmu_1 ul li:hover i::before {
  color: #fff;
}

.xiangmu_1 ul li i {
  width: 4rem;
  height: 4rem;
  border: 2px solid #008bd6;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

.xiangmu_1 ul li i::before {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.xiangmu_1 ul li span {
  position: absolute;
  white-space: nowrap;
  font-size: 1.5rem;
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
  font-weight: bold;
}

.xiangmu_1 ul .mod_title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.xiangmu_1 ul .mod_title span {
  font-size: 2.5rem;
}

.xiangmu_1 ul img {
  display: block;
  width: 100%;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  animation: i-strength2 6s linear infinite;
}

.xiangmu_1 ul svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  animation: svg_fuwu 6s linear infinite;
}

.xiangmu_1 ul svg circle {
  stroke-width: 1px;
  stroke-dasharray: 8, 4;
  stroke: #144f9d;
}

@keyframes i-strength2 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes svg_fuwu {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-180deg);
  }
}

.xiangmu_2 {
  padding: 5rem 0;
  padding-bottom: 8rem;
}

.xiangmu_2 .mod_title {
  margin-bottom: 5rem;
}

.xiangmu_2 .caption {
  align-items: stretch;
}

.xiangmu_2 .caption > ul:nth-child(-n+2) {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):first-child {
  justify-content: center;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):first-child li::after {
  content: '';
  width: 2.375rem;
  height: 1px;
  border-bottom: 1px dashed #fff;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2)::before {
  content: '';
  width: 2.375rem;
  height: calc(100% - 3.75rem);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px dashed #fff;
  border-right: none;
  border-radius: 1.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li {
  margin-bottom: 5rem;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li:first-child::before {
  border-color: transparent;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li:last-child {
  margin: 0;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li:last-child::before {
  border-color: transparent;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li::before {
  content: '';
  width: 2.375rem;
  height: 1px;
  border-bottom: 1px dashed #fff;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li span {
  margin-left: .5rem;
}

.xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li span::before {
  content: '';
  width: .75rem;
  height: .75rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: calc(100% + .5rem);
  top: 50%;
  transform: translateY(-50%);
}

.xiangmu_2 .caption > ul:nth-child(-n+2) li span {
  white-space: nowrap;
}

.xiangmu_2 .caption > ul:nth-child(-n+2) li span::after {
  content: '';
  width: .75rem;
  height: .75rem;
  border: 1px solid #008bd6;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: calc(100% + .5rem);
  top: 50%;
  transform: translateY(-50%);
}

.xiangmu_2 .caption ul li {
  display: flex;
  align-items: center;
}

.xiangmu_2 .caption ul li span {
  display: inline-block;
  width: 9.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 .5rem;
  border-radius: 2rem;
  line-height: 1.2;
  background-image: linear-gradient(to right, #008bd6, #09509b);
  position: relative;
  margin-right: .5rem;
  font-size: 1rem;
  color: #fff;
}

.xiangmu_2 .caption .group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-left: .375rem;
}

.xiangmu_2 .caption .group::before {
  content: '';
  width: 2.375rem;
  height: calc(100% - 3.75rem);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px dashed #fff;
  border-right: none;
}

.xiangmu_2 .caption .group ul {
  display: flex;
  align-items: center;
}

.xiangmu_2 .caption .group ul:first-child li:first-child::before, .xiangmu_2 .caption .group ul:last-child li:first-child::before {
  border-color: transparent;
}

.xiangmu_2 .caption .group ul li {
  margin-right: 1rem;
}

.xiangmu_2 .caption .group ul li:first-child::before {
  content: '';
  width: 2.375rem;
  height: 1px;
  border-bottom: 1px dashed #fff;
}

.xiangmu_2 .caption .group ul li:first-child span {
  white-space: nowrap;
  margin-left: 1rem;
}

.xiangmu_2 .caption .group ul li:last-child::after {
  display: none;
}

.xiangmu_2 .caption .group ul li span {
  background: #fff;
  color: #454545;
}

.xiangmu_2 .caption .group ul li i {
  width: 2.375rem;
  height: .875rem;
  background: url(../img/gif.gif) center no-repeat;
  background-size: cover;
}

.xiangmu_3 {
  height: 53.125rem;
}

.xiangmu_3 .mod_title {
  margin-bottom: 5rem;
}

.xiangmu_3 p {
  line-height: 2;
}

.service_1 {
  padding: 5rem 0;
  padding-bottom: 10rem;
}

.service_1 .mod_title {
  margin-bottom: 5rem;
}

.service_1 ul {
  display: flex;
  justify-content: space-around;
}

.service_1 ul li .ico {
  width: 13.75rem;
  height: 19.5rem;
  margin: 0 auto;
  margin-bottom: 1rem;
  background: url(../img/dian.png) center no-repeat;
  background-size: contain;
  position: relative;
}

.service_1 ul li .ico .text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.service_1 ul li .ico .text i {
  font-size: 2.75rem;
  line-height: 1.2;
}

.service_1 ul li .ico .text span {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
}

.service_1 ul li p {
  padding: 4px 1rem;
  border: 1px solid #09509b;
  color: #333;
  transition: all .3s;
  border-radius: 1.5rem;
  text-align: center;
  font-size: inherit;
  width: 17rem;
  font-size: 1.125rem;
}

.service_1 ul li p:hover {
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  color: #fff;
}

.service_2 {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
}

.service_2 .mod_title {
  margin: 0;
}

.service_2 ul li {
  margin-left: 3.75rem;
}

.service_2 ul li a {
  padding: 1rem 3.75rem;
  border-radius: .75rem;
  border: 1px solid #ccc;
  color: #333;
  display: inline-block;
  transition: all .3s;
}

.service_2 ul li a:hover {
  border-color: #008bd6;
  color: #008bd6;
}

.service_2 ul li a.active {
  background-image: linear-gradient(to right, #008bd6, #09509b);
  color: #fff;
  border-color: transparent;
}

.service_2 ul li a.active:hover {
  color: #fff;
  border-color: transparent;
}

.service_2 .items {
  margin-top: 3.75rem;
}

.service_2 .items .item {
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.62);
  border-radius: .75rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service_2 .items .item:not(:nth-child(-n + 6)) {
  display: none;
}

.service_2 .items .item h4 {
  margin: 0;
  display: flex;
  align-items: center;
}

.service_2 .items .item h4::before {
  content: '';
  width: 2.75rem;
  height: 2.75rem;
  background: url(../img/pdf.png) center no-repeat;
  background-size: contain;
  margin-right: 1rem;
}

.service_2 .items .item a {
  padding: .5rem 1.5rem;
  border-radius: .5rem;
  color: #fff;
  background: linear-gradient(to bottom, #09509b, #008bd6);
  margin-left: 2.5rem;
  display: flex;
  align-items: center;
}

.service_2 .items .item a:nth-last-child(2) {
  margin-left: auto;
  color: #333;
  background: rgba(0, 139, 214, 0.1);
}

.service_2 .items .item a:nth-last-child(2) i {
  background: linear-gradient(to right, #008bd6, #09509b);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.service_2 .items .item a i {
  margin-right: .5rem;
  font-size: 1.5rem;
  color: #fff;
}

.download_more, .question_more {
  margin-top: 3.75rem;
}

.download_more a, .question_more a {
  display: inline-block;
  padding: 1rem 5rem;
  border: 1px solid #adcbe3;
  color: #008bd6;
  border-radius: .5rem;
  font-size: 1.25rem;
  transition: all .3s;
}

.download_more a:hover, .question_more a:hover {
  border-color: #008bd6;
}

.service_3 {
  padding: 5rem 0;
}

.service_3 ul {
  margin-bottom: 2.5rem;
}

.service_3 ul li {
  margin-left: 3.75rem;
}

.service_3 ul li a {
  padding: 1rem 1.5rem;
  border-radius: .75rem;
  border: 1px solid #ccc;
  color: #333;
  display: inline-block;
  transition: all .3s;
}

.service_3 ul li a:hover {
  border-color: #008bd6;
  color: #008bd6;
}

.service_3 ul li a.active {
  background-image: linear-gradient(to right, #008bd6, #09509b);
  color: #fff;
  border-color: transparent;
}

.service_3 ul li a.active:hover {
  color: #fff;
  border-color: transparent;
}

.service_3 .tab-content > .tab-pane > h3 {
  background-image: linear-gradient(to right, #008bd6, #09509b);
  color: #fff;
  padding: 1.25rem 1rem;
  text-align: center;
  margin: 0;
}

.service_3 .tab-content > .tab-pane .accordion .card {
  background: none;
  border: none;
  border-bottom: 1px solid #dedede;
}

.service_3 .tab-content > .tab-pane .accordion .card:not(:nth-child(-n + 4)) {
  display: none;
}

.service_3 .tab-content > .tab-pane .accordion .card-header {
  padding: 1rem 2.375rem;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  color: #008bd6;
  transition: all .3s;
}

.service_3 .tab-content > .tab-pane .accordion .card-header.collapsed {
  color: #333;
}

.service_3 .tab-content > .tab-pane .accordion .card-body {
  background-image: linear-gradient(135deg, #008bd6, #09509b);
  padding: 1.5rem 2.375rem;
}

.service_3 .tab-content > .tab-pane .accordion .card-body * {
  color: #fff !important;
}

.service_3 .tab-content > .tab-pane .accordion .card-body h4 {
  margin-bottom: 1.5rem;
}

/* zl_mod 通用样式
---------------------------------------------------------------- */
.mod_banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mod_banner .mod_title {
  margin-bottom: 1rem;
}

.mod_banner nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  padding: 2rem 3.75rem;
  z-index: 2;
}

.mod_banner nav::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  background-image: linear-gradient(to right, #008bd6 0%, #09509b 45%);
  transform: skewX(-15deg);
  z-index: -1;
}

.mod_banner nav ul {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.mod_banner nav ul li.active a {
  font-weight: bold;
}

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

.mod_banner nav ul li.spot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cbbdd;
}

.mod_banner nav ul li a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mod_banner nav ul li a:hover i {
  animation: bounce2 1s ease-out;
}

.mod_banner nav ul li a i {
  font-size: 2.5rem;
}

@keyframes bounce2 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0%);
  }
}

.mod_title {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  color: #09509b;
  line-height: 1.1;
}

.mod_title.white {
  color: #fff;
}

.mod_title.white strong {
  color: #fff;
  background: none;
}

.mod_title.white2 {
  color: #fff;
}

.mod_title.white2 span {
  opacity: 1;
  font-size: 2.625rem;
}

.mod_title.white2 strong {
  color: #fff;
  background: none;
  font-size: 2.875rem;
}

.mod_title span {
  font-size: 3.375rem;
  font-family: 'Helvetica-Condensed-Black-Se';
  font-weight: bold;
  line-height: 1.1;
  opacity: .11;
  display: block;
}

.mod_title span:nth-child(2) {
  font-size: 2.5rem;
  font-family: Arial;
  text-transform: uppercase;
  opacity: 1;
  margin-top: 1rem;
}

.mod_title strong {
  font-weight: bold;
  font-size: 3.375rem;
  background: linear-gradient(to right, #09509b, #008bd6);
  -webkit-background-clip: text;
  letter-spacing: 2px;
  color: transparent;
}

.mod_position {
  color: #fff;
  white-space: nowrap;
}

.mod_position a {
  color: #fff;
}

.mod_position a i {
  margin-right: 6px;
}

.mod_menu {
  width: 100%;
  padding-bottom: 4rem;
  background: #f5f5f5;
  border-radius: .75rem;
  border-top-right-radius: 2rem;
  overflow: hidden;
}

.mod_menu > h1 {
  padding: 2rem .5rem;
  text-align: center;
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
  color: #fff;
  margin: 0;
}

.mod_menu > ul {
  padding: .5rem;
}

.mod_menu > ul > li {
  position: relative;
  color: #333;
}

.mod_menu > ul > li:has(ul li.active) > ul {
  display: block;
}

.mod_menu > ul > li:has(ul li.active) > span a {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  color: transparent;
}

.mod_menu > ul > li.active > span a {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  color: transparent;
}

.mod_menu > ul > li.active > span strong {
  font-weight: bold;
}

.mod_menu > ul > li.active > ul {
  display: block;
}

.mod_menu > ul > li.show > span i {
  transform: rotate(45deg);
}

.mod_menu > ul > li > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s ease;
  border-bottom: 1px solid #cfcfcf;
}

.mod_menu > ul > li > span a {
  color: #333;
  padding: 1rem;
}

.mod_menu > ul > li > span:hover a {
  background: linear-gradient(to bottom, #008bd6, #09509b);
  -webkit-background-clip: text;
  color: transparent;
}

.mod_menu > ul > li > span strong {
  font-weight: normal;
}

.mod_menu > ul > li > span i {
  font-size: 1.5rem;
  color: #999;
  transition: all .3s;
}

.mod_menu > ul > li > ul {
  width: 100%;
  padding: 1rem 1.5rem;
  display: none;
}

.mod_menu > ul > li > ul > li {
  padding: 0;
}

.mod_menu > ul > li > ul > li.active a {
  color: #008bd6;
}

.mod_menu > ul > li > ul > li:hover a {
  color: #008bd6;
}

.mod_menu > ul > li > ul > li a {
  padding: .75rem 0;
  color: #666;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}

.mod_menu > ul > li > ul > li a::before {
  content: '';
  width: .375rem;
  height: .375rem;
  background: #008bd6;
  transform: rotate(45deg);
  margin-right: 1rem;
}

.mod_menu > ul > li > ul > li:last-child {
  margin-bottom: 0;
}

.mod_more span, .mod_more a, .mod_more button {
  width: 210px;
  height: 52px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008bd6;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}

.mod_more span:hover, .mod_more a:hover, .mod_more button:hover {
  color: #fff;
}

.mod_more span:hover svg path, .mod_more a:hover svg path, .mod_more button:hover svg path {
  fill: #008bd6;
  stroke-dasharray: 20, 0;
}

.mod_more span svg, .mod_more a svg, .mod_more button svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.mod_more span svg path, .mod_more a svg path, .mod_more button svg path {
  fill: rgba(0, 136, 211, 0);
  stroke: #008bd6;
  stroke-dasharray: 6, 2;
  transition: all .3s ease;
}

.mod_more span i, .mod_more a i, .mod_more button i {
  margin-left: .5rem;
  font-size: 1.5rem;
}

.mod_social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 999;
}

.mod_social ul li {
  margin-bottom: 1px;
  position: relative;
  z-index: 2;
}

.mod_social ul li.active a {
  background: transparent;
}

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

.mod_social ul li.active .tip3 {
  opacity: 1;
  transform: translateX(-62px);
  pointer-events: auto;
}

.mod_social ul li:hover .tip {
  opacity: 1;
  pointer-events: auto;
}

.mod_social ul li:hover .tip2 {
  opacity: 1;
  transform: translateX(-62px);
  transition-delay: .3s;
  pointer-events: auto;
}

.mod_social ul li:hover a {
  background: transparent;
}

.mod_social ul li:hover a::after {
  opacity: 1;
}

.mod_social ul li a {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  font-size: 16px;
  transition: all .3s ease;
}

.mod_social ul li a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  opacity: 0;
  transition: all .3s ease;
}

.mod_social ul li a i {
  font-size: 26px;
}

.mod_social ul li .tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.mod_social ul li .tip span {
  display: inline-block;
  background: #323232;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
}

.mod_social ul li .tip span:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #323232;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.mod_social ul li .tip2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #fff;
  transition: all .3s ease;
  opacity: 0;
  pointer-events: none;
}

.mod_social ul li .tip2 input {
  height: 40px;
  width: 180px;
  border: none;
  padding: 0;
  padding-left: 10px;
  outline: none;
}

.mod_social ul li .tip3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  background-image: linear-gradient(to bottom, #09509b, #008bd6);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #fff;
  transition: all .3s ease;
  opacity: 0;
  pointer-events: none;
}

.mod_social ul li .tip3.active {
  opacity: 1;
  transform: translateX(-62px);
}

.mod_social ul li .tip3 input {
  height: 40px;
  width: 180px;
  border: none;
  padding: 0;
  padding-left: 10px;
  outline: none;
}

.mod_backTop {
  position: fixed;
  right: 10px;
  bottom: 4%;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09509b;
  color: #fff;
  cursor: pointer;
  transition: opacity .3s ease;
  opacity: 0;
  pointer-events: none;
}

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

.mod_backTop:hover {
  background: #3a3a3a;
}

.mod_backTop i {
  font-size: 18px;
}

.mod_fanye {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

.mod_fanye li.active span {
  background-color: #09509b;
  color: #fff;
}

.mod_fanye li.disabled span {
  opacity: .5;
}

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

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

.mod_fanye li a:hover {
  color: #09509b;
}

.mod_fanye02 {
  margin-top: 2.5rem;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1.5rem;
  transition: all .3s ease;
}

.mod_fanye02 i {
  color: #b7b7b7;
  font-size: 2.25rem;
  transition: all .3s ease;
}

.mod_fanye02 .nav-next {
  text-align: right;
}

.mod_fanye02 a {
  line-height: 1.6;
  color: #666;
}

.mod_fanye02 a:hover {
  color: #09509b;
}

.mod_fanye02 a:hover i {
  color: #09509b;
}

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

.maodian {
  position: absolute;
  left: 0;
  top: -5rem;
}

.mod_content b {
  font-weight: normal;
}

.mod_content table {
  border: none;
}

.mod_content table thead {
  background-image: linear-gradient(to bottom, #008bd6, #09509b);
  color: #fff;
}

.mod_content table thead tr td {
  border: none !important;
  border-right: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45) !important;
  font-size: 1.5rem !important;
}

.mod_content table tr {
  height: auto !important;
}

.mod_content table tr td {
  border: none;
  font-size: 1.25rem;
}

.mod_content table tr td * {
  font-size: inherit !important;
}

.mod_content table tbody tr {
  background: rgba(255, 255, 255, 0.41);
}

.mod_content table tbody tr:nth-child(2n-1) {
  background: #fff;
}

.mod_video {
  width: 800px;
  height: 450px;
  display: none;
}

.mod_form {
  width: 50rem;
  border-radius: 1.5rem;
  display: none;
}

.mod_form.mod_form_en .form-group label {
  width: 9rem;
  padding-right: 1rem;
  text-align: right;
}

.mod_form#seekDom2 {
  background: url(../img/message.jpg) center bottom no-repeat;
  background-size: cover;
}

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

.mod_form .mod_title strong {
  font-size: 2rem;
}

.mod_form .mod_title p {
  color: #454545;
  margin-top: 1rem;
  line-height: 1.6;
}

.mod_form .form-group {
  display: flex;
  align-items: flex-start;
  color: #454545;
  font-size: inherit;
  margin-bottom: 2.25rem;
}

.mod_form .form-group label {
  white-space: nowrap;
  margin: 0;
  margin-top: .875rem;
}

.mod_form .form-group label span {
  color: red;
  margin-left: 4px;
}

.mod_form .form-group input {
  width: 100%;
  padding: .75rem 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: none;
  outline: none;
  border-radius: 4px;
  font-size: inherit;
}

.mod_form .form-group textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: none;
  outline: none;
}

.mod_form .form-group button {
  margin: 0 auto;
  border: none;
  padding: .875rem 5rem;
  border-radius: 4px;
  background-image: linear-gradient(to right, #008bd6, #09509b);
  color: #fff;
}

.mod_form img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.mod_form .fancybox-close-small {
  box-sizing: border-box;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.625rem;
  height: 2.625rem;
  border: 2px solid #09509b;
  border-radius: 50%;
}

.mod_form .fancybox-close-small::after {
  color: #09509b;
  font-size: 2rem;
  background: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mod_form .fancybox-close-small:focus::after {
  outline: none;
}

.mod_form .fancybox-close-small:hover::after {
  color: #09509b;
  background: none;
  outline: none;
}

/* 媒体查询
---------------------------------------------------------------- */
@media (max-width: 991px) {
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .fz_36 {
    font-size: 18px;
  }
  .fz_34 {
    font-size: 18px;
  }
  .fz_32 {
    font-size: 18px;
  }
  .fz_30 {
    font-size: 18px;
  }
  .fz_28 {
    font-size: 16px;
  }
  .fz_26 {
    font-size: 16px;
  }
  .fz_24 {
    font-size: 16px;
  }
  .fz_22 {
    font-size: 16px;
  }
  .fz_20 {
    font-size: 16px;
  }
  .fz_18 {
    font-size: 14px;
  }
  .fz_16 {
    font-size: 14px;
  }
  .fz_14 {
    font-size: 14px;
  }
  .fz_12 {
    font-size: 12px;
  }
  .mod_header {
    height: 60px;
    position: static;
    background: #fff;
  }
  .mod_header .header {
    padding: 0 15px;
    height: 100%;
  }
  .mod_header .header .head_top {
    display: none;
  }
  .mod_header .header .header_center {
    height: 60px;
  }
  .mod_header .header .header_center::after {
    display: none;
  }
  .mod_header .header .header_center .logo {
    position: static;
  }
  .mod_header .header .header_center .logo a img {
    max-height: 26px;
  }
  .mod_header .header .header_center .logo a img:first-child {
    opacity: 0;
  }
  .mod_header .header .header_center .logo a img:last-child {
    opacity: 1;
  }
  .mod_header .header .header_center nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    transition: opacity .25s ease-out;
    background: rgba(0, 0, 0, 0.5);
  }
  .mod_header .header .header_center nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  .mod_header .header .header_center nav.active .nav_close, .mod_header .header .header_center nav.active ul {
    transform: translateX(0);
  }
  .mod_header .header .header_center nav > ul {
    width: 90%;
    height: calc(100% - 52px);
    overflow: auto;
    display: block;
    background: #fff;
    transform: translateX(-100%);
    transition: all .2s ease-in;
  }
  .mod_header .header .header_center nav > ul > li {
    position: relative;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0;
  }
  .mod_header .header .header_center nav > ul > li.cur > a, .mod_header .header .header_center nav > ul > li:nth-child(3) > a {
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li.cur > a::after, .mod_header .header .header_center nav > ul > li:nth-child(3) > a::after {
    display: none;
  }
  .mod_header .header .header_center nav > ul > li.active > a {
    color: #09509b;
  }
  .mod_header .header .header_center nav > ul > li.active > a::after {
    display: none;
  }
  .mod_header .header .header_center nav > ul > li:hover a, .mod_header .header .header_center nav > ul > li:hover i {
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li a {
    height: auto;
    width: calc(100% - 58px);
    font-size: 14px;
    padding: 12px 0;
    padding-left: 20px;
    color: #3a3a3a;
    text-transform: capitalize;
  }
  .mod_header .header .header_center nav > ul > li a::after {
    display: none;
  }
  .mod_header .header .header_center nav > ul > li i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    width: 38px;
    font-size: 18px;
    flex-shrink: 0;
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li i.active::before {
    transform: rotateX(180deg);
  }
  .mod_header .header .header_center nav > ul > li ul {
    width: 100%;
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border-top: 1px solid #eee;
    margin-top: 0;
    transition: none;
    border-radius: 0;
  }
  .mod_header .header .header_center nav > ul > li ul::after {
    display: none;
  }
  .mod_header .header .header_center nav > ul > li ul li {
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
  }
  .mod_header .header .header_center nav > ul > li ul li:hover a, .mod_header .header .header_center nav > ul > li ul li:hover i {
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li ul li:last-child {
    border: none;
  }
  .mod_header .header .header_center nav > ul > li ul li a {
    font-size: 14px;
    padding: 10px 0;
    padding-left: 30px;
    color: #3a3a3a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: capitalize;
  }
  .mod_header .header .header_center nav > ul > li ul li a::before {
    content: '>';
    line-height: 1;
    display: block;
    transform: scale(1, 1.6) translateY(-2px);
    margin-right: 8px;
    font-size: 12px;
  }
  .mod_header .header .header_center nav > ul > li ul li i::before {
    transform: rotate(0);
    font-size: 18px;
  }
  .mod_header .header .header_center nav > ul > li ul li ul {
    box-shadow: none;
    border-radius: 0;
  }
  .mod_header .header .header_center nav > ul > li ul li ul li a {
    padding-left: 46px;
  }
  .mod_header .header .header_center .nav_open {
    transition: opacity .3s ease;
    color: #333;
    margin-left: auto;
  }
  .mod_header .header .header_center .nav_open.active {
    opacity: 0;
  }
  .mod_header .header .header_center .nav_open i {
    font-size: 24px;
  }
  .mod_header .header .header_center .nav_close {
    background: #fff;
    display: flex;
    width: 90%;
    height: 52px;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
    transform: translateX(-100%);
    transition: all .2s ease-in;
  }
  .mod_header .header .header_center .nav_close i {
    height: 100%;
    padding: 0 12px;
    font-size: 30px;
    color: #3a3a3a;
  }
  .index_banner {
    height: 240px;
  }
  .index_banner.index_banner_en .swiper .swiper-wrapper .swiper-slide span {
    font-size: 16px;
  }
  .index_banner .swiper .swiper-wrapper .swiper-slide {
    padding-right: 20%;
  }
  .index_banner .swiper .swiper-wrapper .swiper-slide strong {
    font-size: 20px;
  }
  .index_banner .swiper .swiper-wrapper .swiper-slide span {
    font-size: 16px;
  }
  .index_banner .index_banner_scroll {
    display: none;
  }
  .index_banner .index_banner_down {
    display: none;
    flex-wrap: wrap;
    width: 70%;
  }
  .index_banner .index_banner_down li {
    margin: 0;
  }
  .index_banner .index_banner_down li a {
    padding: 0;
  }
  .index_about {
    padding-bottom: 40px;
  }
  .index_about .right {
    display: none;
  }
  .index_about .left {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .index_about .left .mod_content {
    margin: 20px 0;
  }
  .index_about .left ul {
    margin-top: 30px;
  }
  .index_case {
    height: auto;
  }
  .index_case > ul {
    flex-wrap: wrap;
  }
  .index_case > ul > li {
    width: 50% !important;
    height: 260px;
    flex-shrink: 0;
  }
  .index_case > ul > li a .pro_bottom {
    padding: 15px;
  }
  .index_case > ul > li a .pro_bottom ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .index_case > ul > li a .pro_bottom ul li {
    margin-bottom: 10px;
    width: 33.33%;
    margin-right: 0;
  }
  .index_case > ul > li a .pro_bottom p {
    display: none;
  }
  .index_business .right .map {
    transform: translateX(0);
  }
  .index_business .right ol {
    padding-left: 0;
  }
  .index_business .right ol li span strong {
    font-size: 24px;
  }
  .index_business .swiper {
    margin-top: 30px;
  }
  .index_news .flex-start-between {
    flex-wrap: wrap;
  }
  .index_news .left {
    width: 100%;
    margin-bottom: 15px;
  }
  .index_news .right {
    width: 100%;
  }
  .index_partner .swiper .swiper-slide .img {
    height: 60px;
  }
  .footer .foot_top {
    flex-direction: column;
  }
  .footer .foot_top img {
    height: 24px;
    margin-bottom: 15px;
  }
  .footer .foot_top ul {
    display: none;
  }
  .footer .foot_center {
    display: none;
  }
  .footer .foot_bottom {
    flex-direction: column;
    text-align: center;
  }
  .mod_title_en {
    margin-bottom: 30px;
  }
  .mod_title_en strong {
    font-size: 24px;
  }
  .mod_title_en p {
    margin: 0;
    margin-top: 10px;
  }
  .index_solution_en .items {
    grid-template: repeat(4, 20.875rem)/100%;
    grid-gap: 10px;
  }
  .index_solution_en .items .item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .index_solution_en .items .item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .index_solution_en .items .item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .index_solution_en .items .item:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
  .index_product_en ul li {
    margin: 4px 2px;
  }
  .index_about_en {
    flex-direction: column;
  }
  .index_about_en .left {
    width: 100%;
    padding: 40px 15px;
  }
  .index_about_en .left .mod_more_en {
    margin-top: 15px;
  }
  .index_about_en .left ul {
    margin-top: 25px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .index_about_en .left ul li {
    margin: 0;
  }
  .index_about_en .left ul li:nth-child(1) {
    width: 40%;
  }
  .index_about_en .left ul li:nth-child(2) {
    width: 25%;
  }
  .index_about_en .left ul li:nth-child(3) {
    width: 20%;
  }
  .index_about_en .left ul li b {
    font-size: 24px;
  }
  .index_about_en .right {
    width: 100%;
    height: 300px;
  }
  .index_development_en .flex {
    flex-direction: column;
    margin-top: 30px;
  }
  .index_development_en .flex .caption {
    width: 100%;
  }
  .index_development_en .flex .caption:first-child {
    margin-bottom: 15px;
  }
  .index_news_en .right {
    padding-left: 0;
  }
  .index_news_en .right .item a {
    padding: 10px 0;
  }
  .footer_en .foot_top {
    padding: 20px 0;
  }
  .mod_banner {
    height: 250px;
    padding-bottom: 60px;
  }
  .mod_banner nav {
    padding: 10px 20px;
    width: 90%;
  }
  .mod_banner nav ul {
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .mod_banner nav ul li {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .profile {
    padding-top: 40px;
  }
  .base {
    padding: 40px 0;
  }
  .base .flex-stretch-between {
    flex-wrap: wrap;
  }
  .base .left {
    width: 100%;
    min-height: 300px;
    border-radius: 0;
  }
  .base .right {
    width: 100%;
    padding: 20px 15px;
    border-radius: 0;
  }
  .youshi .flex-wrap .caption {
    width: 100%;
    margin-right: 0 !important;
    padding-top: 20px;
    min-height: 250px;
  }
  .youshi .flex-wrap .caption::after {
    transform: scale(1) perspective(0) rotateY(0) !important;
  }
  .culture {
    height: auto;
    padding: 40px 0;
  }
  .culture .container ul {
    flex-wrap: wrap;
  }
  .culture .container ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  .honor {
    padding-bottom: 200px;
    background-position: center bottom;
    background-size: 100% auto;
  }
  .honor .flex-end-between {
    align-items: flex-start;
    flex-direction: column;
  }
  .honor .flex-end-between ul {
    width: 100%;
  }
  .honor p {
    width: 100%;
    margin-top: 20px;
  }
  .patent .swiper {
    height: auto;
  }
  .future ul {
    margin-left: 0;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .future ul li span b {
    font-size: 24px;
  }
  .future .map {
    transform: translateX(0);
  }
  .development .swiper .swiper-slide {
    flex-direction: column;
  }
  .development .swiper .swiper-slide .left, .development .swiper .swiper-slide .right {
    width: 100%;
  }
  .development .swiper .swiper-slide .right {
    padding: 15px 0;
  }
  .development ul li {
    padding: 0 5px;
  }
  .contact {
    height: 70vh;
  }
  .contact .box {
    width: 100%;
    padding: 20px 15px;
  }
  .contact .box ul li span {
    flex-shrink: 0;
  }
  .contact .box .link {
    display: none;
  }
  .company_ys {
    padding: 40px 0;
  }
  .company_ys .yuan {
    width: 100%;
    height: auto;
    border: none;
    display: flex;
    flex-direction: column;
  }
  .company_ys .yuan::after {
    display: none;
  }
  .company_ys .yuan .title {
    font-size: 24px;
    position: static;
    text-align: center;
    border-radius: 0;
    background: none;
    transform: translate(0);
    width: 100%;
    margin-bottom: 30px;
  }
  .company_ys .yuan ul {
    order: 2;
  }
  .company_ys .yuan ul li {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
  }
  .company_ys .yuan ul li i {
    position: static;
    flex-shrink: 0;
    transform: translate(0);
  }
  .company_ys .yuan ul li .text {
    padding-left: 20px;
    position: static;
    margin: 0;
    transform: translateX(0) !important;
    text-align: left !important;
  }
  .company_ys .yuan ul li .text p {
    height: auto;
    opacity: 1;
  }
  .company_ys .yuan ul li .text span::after {
    transform: skewX(20deg) !important;
    background-image: linear-gradient(to right, #09509b, rgba(0, 139, 214, 0)) !important;
  }
  .company_ys .yuan .img {
    display: none;
  }
  .advantage {
    padding: 40px 0;
    height: auto;
  }
  .advantage.mod_bgc {
    background-position: left bottom;
    background-size: auto 100%;
  }
  .advantage .mod_title {
    position: static;
    transform: translate(0);
    padding: 0;
    color: #fff;
  }
  .advantage .mod_title strong {
    color: #fff;
  }
  .advantage ul {
    position: static;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .advantage ul li {
    position: static;
    align-items: center;
    justify-content: flex-start;
    width: 48%;
    height: auto;
    flex-direction: row;
    padding: 10px 15px;
    background-image: linear-gradient(to right, #008bd6, #09509b);
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .advantage ul li i {
    margin-right: 10px;
  }
  .advantage ul li strong {
    font-size: 16px;
  }
  .recruitment {
    padding: 40px 0;
  }
  .recruitment .swiper {
    margin-top: 40px;
    padding: 0 15px;
  }
  .service_1 {
    padding: 40px 0;
  }
  .service_1 ul li {
    width: 32%;
  }
  .service_1 ul li .ico {
    width: 100%;
  }
  .service_1 ul li p {
    max-width: 100%;
  }
  .service_2 .items .item {
    flex-wrap: wrap;
  }
  .service_2 .items .item h4 {
    width: 100%;
    margin-bottom: 10px;
  }
  .service_2 .items .item a {
    margin-left: 1rem;
  }
  .service_3 ul {
    justify-content: space-between;
  }
  .service_3 ul li {
    margin-left: 0;
    width: 32%;
  }
  .case_detail .left {
    width: 100%;
  }
  .case_detail .left > ul {
    padding-right: 0;
  }
  .case_detail .right {
    display: none;
  }
  .partner_list .title span {
    font-size: 16px;
  }
  .partner_list .title span strong {
    font-size: 16px;
  }
  .partner_list .title span strong em {
    font-size: 16px;
  }
  .partner_list .flex-wrap .item {
    height: 5rem;
  }
  .partner_list .flex-wrap .item:nth-last-of-type(-n+6) {
    margin-bottom: 10px;
  }
  .partner_list .flex-wrap .item:nth-last-of-type(-n+3) {
    margin-bottom: 0;
  }
  .news_list .news_head {
    flex-direction: column;
  }
  .news_list .news_head .img, .news_list .news_head .text {
    width: 100%;
  }
  .news_list .news_head .text {
    padding: 20px 15px;
  }
  .news_list .item {
    flex-direction: column;
  }
  .news_list .item .img, .news_list .item .text {
    width: 100%;
  }
  .news_list .item .text {
    padding: 20px 15px;
  }
  .news_detail .box {
    padding: 15px;
  }
  .news_detail .box > .title {
    flex-direction: column;
  }
  .news_detail .box > .title h1 {
    order: 2;
    margin-top: 15px;
  }
  .news_detail .box > .title a {
    margin-left: auto;
  }
  .epc_1 {
    height: 60vh;
    position: relative;
  }
  .epc_1::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.3);
  }
  .epc_1 .container {
    position: relative;
    z-index: 3;
  }
  .epc_2 {
    padding-top: 40px;
  }
  .epc_2 ul {
    width: 100%;
    height: auto;
    padding-top: 50%;
  }
  .epc_2 ul li i {
    font-size: 18px;
  }
  .epc_2 ul li span {
    font-size: 14px;
    max-width: 30%;
  }
  .epc_2 ul li span strong {
    font-size: 14px;
  }
  .epc_3 {
    padding: 40px 0;
  }
  .epc_3 .flex-stretch-between {
    flex-direction: column;
  }
  .epc_3 .img {
    width: 100%;
    height: 100px;
    transform: translateX(0);
    clip-path: none;
  }
  .epc_3 .group {
    width: 100%;
    transform: translate(0);
  }
  .epc_3 .group .caption {
    height: auto;
    padding: 15px;
  }
  .epc_3 .group .caption ul {
    flex-wrap: wrap;
  }
  .epc_3 .group .caption ul li {
    margin-right: 10px;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .epc_4 {
    height: auto;
    padding-top: 40px;
    flex-direction: column;
  }
  .epc_4 .img {
    width: 100%;
    height: 200px;
    clip-path: none;
    position: static;
    margin-top: 15px;
  }
  .xiangmu_1 ul {
    width: 200px;
    height: 200px;
  }
  .xiangmu_1 ul .mod_title span {
    font-size: 16px;
  }
  .xiangmu_1 ul .mod_title strong {
    font-size: 18px;
  }
  .xiangmu_2 .caption {
    flex-direction: column;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2) li span {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2) li span::after {
    left: 50%;
    top: calc(100% + .5rem);
    transform: translateX(-50%);
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):first-child li {
    flex-direction: column;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):first-child li::after {
    width: 1px;
    height: 2.375rem;
    border-right: 1px dashed #fff;
    border-bottom: none;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2)::before {
    height: 2.375rem;
    width: 75%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 1px dashed #fff;
    border-bottom: none;
    border-radius: 1.25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li {
    margin-bottom: 0;
    width: 24%;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li::before {
    display: none;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li span {
    margin: 0;
    margin-top: 2.375rem;
    margin-bottom: 5px;
  }
  .xiangmu_2 .caption > ul:nth-child(-n+2):nth-child(2) li span::before {
    display: none;
  }
  .xiangmu_2 .caption .group {
    margin-left: 0;
    margin-top: .375rem;
    flex-direction: row;
  }
  .xiangmu_2 .caption .group::before {
    content: '';
    height: 2.375rem;
    width: 75%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 1px dashed #fff;
    border-bottom: none;
  }
  .xiangmu_2 .caption .group ul {
    flex-direction: column;
    width: 24%;
  }
  .xiangmu_2 .caption .group ul li {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .xiangmu_2 .caption .group ul li:first-child::before {
    content: '';
    height: 2.375rem;
    width: 1px;
    border-right: 1px dashed #fff;
  }
  .xiangmu_2 .caption .group ul li:first-child span {
    margin-left: 0;
  }
  .xiangmu_2 .caption .group ul li i {
    transform: rotate(90deg);
    margin: 5px 0;
  }
  .xiangmu_2 .caption .group ul li span {
    margin: 0;
    height: auto;
    padding: 8px;
    width: 100%;
  }
  .xiangmu_3 {
    height: 360px;
  }
  .ny_left {
    padding-right: 0;
    position: absolute;
    top: -25px;
    left: 0;
    z-index: 5;
    transform: translateX(calc(-100% - 1px));
    width: 70%;
    transition: all .3s ease;
  }
  .ny_left .ny_left_btn {
    display: block !important;
    position: absolute;
    left: calc(100% + 2px);
    top: 0;
  }
  .ny_left .ny_left_btn span {
    padding: 4px 10px;
    border-radius: 4px;
    background: #09509b;
    color: #fff;
    display: inline-block;
    white-space: nowrap;
  }
  .ny_left.show {
    transform: translateX(0);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  }
  .main_menu {
    display: none;
  }
  .product_detail_0 .right {
    padding-left: 0;
  }
  .product_detail_1 .swiper {
    padding: 40px 0;
  }
  .mod_fanye02 {
    flex-direction: column;
  }
  .mod_fanye02 a {
    width: 100%;
  }
  .mod_fanye02 a:nth-child(2) {
    text-align: right;
  }
  .mod_form {
    width: calc(100vw - 30px);
  }
  .mod_form.mod_form_en .form-group {
    flex-wrap: wrap;
  }
  .mod_form.mod_form_en .form-group label {
    width: 100%;
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 4px;
    text-align: left;
  }
  .mod_title span {
    font-size: 24px;
  }
  .mod_title span:nth-child(2) {
    font-size: 20px;
  }
  .mod_title strong {
    font-size: 24px;
  }
  .mod_social, .mod_backTop {
    right: 5px;
    display: none;
  }
  .mod_more span, .mod_more a, .mod_more button {
    width: 168px;
    height: 42px;
    font-size: 14px;
  }
  .mod_more span svg, .mod_more a svg, .mod_more button svg {
    width: 100%;
    height: 100%;
  }
  .history .swiper-button-prev, .history .swiper-button-next {
    display: none;
  }
  .mod_position {
    white-space: wrap;
  }
  .jobDetail {
    width: calc(100% - 20px);
    padding: 15px 10px;
  }
  .jobDetail > h3 {
    padding-right: 30px;
  }
  .jobDetail .mod_content {
    line-height: 1.4;
  }
  .jobDetail .more a {
    display: inline-block;
    padding: 6px 15px;
    text-align: center;
  }
  .jobDetail .fancybox-close-small::after {
    color: #999;
  }
  .jobDetail .fancybox-close-small {
    border-color: #999;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .fz_36 {
    font-size: 18px;
  }
  .fz_34 {
    font-size: 18px;
  }
  .fz_32 {
    font-size: 18px;
  }
  .fz_30 {
    font-size: 18px;
  }
  .fz_28 {
    font-size: 16px;
  }
  .fz_26 {
    font-size: 16px;
  }
  .fz_24 {
    font-size: 16px;
  }
  .fz_22 {
    font-size: 16px;
  }
  .fz_20 {
    font-size: 16px;
  }
  .fz_18 {
    font-size: 14px;
  }
  .fz_16 {
    font-size: 14px;
  }
  .fz_14 {
    font-size: 14px;
  }
  .fz_12 {
    font-size: 12px;
  }
  .mod_header .header .header_center .logo a img {
    height: 30px;
  }
  .mod_header .header .header_center nav > ul > li {
    padding: 0;
  }
  .mod_header .header .header_center nav > ul > li a {
    font-size: 14px;
  }
  .mod_header .header .header_center nav > ul > li ul::after {
    transform: skewX(-20deg) translateX(-2.25rem);
  }
  .mod_header .header .header_center nav > ul > li ul li a {
    font-size: 14px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .fz_32 {
    font-size: 22px;
  }
  .fz_30 {
    font-size: 22px;
  }
  .fz_28 {
    font-size: 20px;
  }
  .fz_26 {
    font-size: 20px;
  }
  .fz_24 {
    font-size: 18px;
  }
  .fz_22 {
    font-size: 18px;
  }
  .fz_20 {
    font-size: 16px;
  }
  .fz_18 {
    font-size: 16px;
  }
  .fz_16 {
    font-size: 14px;
  }
  .fz_14 {
    font-size: 14px;
  }
  .fz_12 {
    font-size: 12px;
  }
  .mod_header .header .header_center .logo a img {
    height: 30px;
  }
  .mod_header .header .header_center nav > ul > li {
    padding: 0 5px;
  }
  .mod_header .header .header_center nav > ul > li a {
    font-size: 14px;
  }
  .mod_header .header .header_center nav > ul > li ul::after {
    transform: skewX(-20deg) translateX(-1.5rem);
  }
  .mod_header .header .header_center nav > ul > li ul li a {
    font-size: 14px;
  }
}

@media (min-width: 1441px) and (max-width: 1680px) {
  .mod_header .header .header_center .logo a img {
    height: 30px;
  }
  .mod_header .header .header_center nav > ul > li {
    padding: 0 10px;
  }
  .mod_header .header .header_center nav > ul > li a {
    font-size: 16px;
  }
  .mod_header .header .header_center nav > ul > li ul::after {
    transform: skewX(-20deg) translateX(-1rem);
  }
  .mod_header .header .header_center nav > ul > li ul li a {
    font-size: 14px;
  }
}

@media (min-width: 1025px) {
  .about_skills {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: calc(100% - 13.125rem);
    width: calc(100% - 13.125rem) !important;
    padding: 0 15px;
  }
  .mod_header .header {
    padding: 0 calc(6.5625rem + 15px);
    max-width: 1920px;
    margin: 0 auto;
  }
}
