@charset "utf-8";

body {
  /* 填写默认字体 */
  font-family: "Inter", "Microsoft Yahei", "PingFang SC", "Helvetica Neue", Helvetica, Arial;
  color: #1e1d28;
  min-height: initial !important;
}

@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont/iconfont.woff2?t=1681287520508') format('woff2'), url('../fonts/iconfont/iconfont.woff?t=1681287520508') format('woff'), url('../fonts/iconfont/iconfont.ttf?t=1681287520508') format('truetype');
}

@font-face {
  font-family: 'Impact';
  src: local('Impact'), url('../fonts/impact/Impact.woff2') format('woff2'), url('../fonts/impact/Impact.woff') format('woff'), url('../fonts/impact/Impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter Black'), local('Inter-Black'), url('Inter-Black.woff2') format('woff2'), url('Inter-Black.woff') format('woff'), url('Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter Bold'), local('Inter-Bold'), url('Inter-Bold.woff2') format('woff2'), url('Inter-Bold.woff') format('woff'), url('Inter-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter Medium'), local('Inter-Medium'), url('Inter-Medium.woff2') format('woff2'), url('Inter-Medium.woff') format('woff'), url('Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter Regular'), local('Inter-Regular'), url('Inter-Regular.woff2') format('woff2'), url('Inter-Regular.woff') format('woff'), url('Inter-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.iconfonts {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grahccale;
}

/* slick 懒加载图片去边框 */
.slick-loading {
  opacity: 0;
}

/* 去除翻译插件边框 */
.goog-te-gadget-simple {
  border: none !important;
}

/* h1隐藏 */
.fszero {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -100;
}

/* 去除input记忆填充底色 */
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  -webkit-text-fill-color: #333 !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ph去除载入效果 */
@media screen and (max-width: 1200px) {
  .wow {
    animation: none;
  }
}

ul {
  padding: 0;
}

:root {
  font-size: 16px;
  --main-color: #1E2188;
  --flex-margin: -15px;
  --flex-padding: 15px;
  scroll-behavior: initial;
}

/* 翻译插件展位 */
.google-translate {
  min-width: 108px;
}

.fancybox-content {
  height: 800px !important;
}

.c_pcbtn {
  display: none;
}

.header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 0 100px;
  --height: 100px;
}

.header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1200px) {
  .header.home-header {
    background-color: transparent;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
    position: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
  }

  .header.home-header::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.5s;
  }

  .header.home-header .hd_link {
    color: #fff;
  }

  .header.home-header .hd_item.active .hd_link,
  .header.home-header .hd_item:hover .hd_link {
    color: #fff;
    text-decoration: underline;
  }

  .header.home-header .header-logo img:first-child {
    opacity: 0;
  }

  .header.home-header .header-logo img:last-child {
    opacity: 1;
  }

  .header.home-header .header-search-box form {
    background-color: #fff;
    transition: all 0.5s;
  }

  .header.home-header .header-language p {
    color: #fff;
    transition: all 0.5s;
  }

  .header.home-header:hover,
  .header.home-header.active {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    position: fixed;
    border-bottom: 1px solid #ffffff;
  }

  .header.home-header:hover::after,
  .header.home-header.active::after {
    opacity: 0;
    pointer-events: none;
  }

  .header.home-header:hover .hd_link,
  .header.home-header.active .hd_link {
    color: #222;
  }

  .header.home-header:hover .hd_item.active .hd_link,
  .header.home-header.active .hd_item.active .hd_link,
  .header.home-header:hover .hd_item:hover .hd_link,
  .header.home-header.active .hd_item:hover .hd_link {
    color: var(--main-color);
    text-decoration: underline;
  }

  .header.home-header:hover .header-logo img:first-child,
  .header.home-header.active .header-logo img:first-child {
    opacity: 1;
  }

  .header.home-header:hover .header-logo img:last-child,
  .header.home-header.active .header-logo img:last-child {
    opacity: 0;
  }

  .header.home-header:hover .header-search-box form,
  .header.home-header.active .header-search-box form {
    background-color: transparent;
    transition: all 0.5s;
  }

  .header.home-header:hover .header-language p,
  .header.home-header.active .header-language p {
    color: #222;
    transition: all 0.5s;
  }
}

.translated-ltr .header,
.translated-rtl .header {
  top: 40px;
}

.header-logo {
  width: 185px;
  display: block;
  line-height: var(--height);
  position: relative;
}

.header-logo img {
  width: 100%;
  transition: all 0.5s;
}

.header-logo img:last-child {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1200px) {
  .hd_list {
    display: flex;
  }

  .hd_item {
    margin-right: 50px;
  }

  .hd_item:last-child {
    margin-right: 0;
  }

  .hd_link {
    height: var(--height);
    align-items: center;
    display: flex;
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
  }

  .hd_item.active .hd_link,
  .hd_item:hover .hd_link {
    color: var(--main-color);
    text-decoration: underline;
  }

  .hd_second {
    width: 100%;
    position: absolute;
    background-color: #fff;
    padding: 20px 24px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06);
    padding: 20 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hd_second_item {
    margin: 0 50px;
  }

  .hd_second_link {
    font-size: 18px;
    line-height: 1.65;
    display: inline-block;
    padding: 6px 0;
    color: #333;
    white-space: nowrap;
    font-weight: bold;
  }

  .hd_second_link:hover {
    color: var(--main-color);
  }

  .hd_second_item.active .hd_second_link {
    color: var(--main-color);
  }

  .hd_three_link {
    font-size: 16px;
    color: #666;
    line-height: 1.65;
    display: inline-block;
    padding: 4px 0;
  }

  .hd_three_link:hover {
    color: var(--main-color);
  }
}

.hd_second {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

.hd_second.active {
  opacity: 1;
  pointer-events: all;
}

.header-control {
  display: flex;
  align-items: center;
}

.header-search {
  margin-right: 40px;
}

.ph-search-btn {
  display: none;
}

.header-search-box form {
  width: 300px;
  border-radius: 48px;
  border: 1px solid #CCCCCC;
  display: flex;
}

.header-search-box form input {
  width: calc(100% - 48px);
  padding: 0 20px;
}

.header-search-box button {
  height: 48px;
  width: 48px;
  padding-right: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search-box button span {
  font-size: 16px;
  color: #222222;
}

.header-language {
  display: flex;
  align-items: center;
  margin-right: 32px;
}

.header-language img {
  width: 30px;
  flex-shrink: 0;
  margin-right: 8px;
}

.header-language p {
  color: #444444;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.home-banner {
  overflow: hidden;
  position: relative;
}

.home-banner .swiper-container {
  width: 100%;
}

.home-banner .swiper-slide {
  overflow: hidden;
}

.home-banner .swiper-container {
  width: 100%;
}

.home-banner .swiper-slide {
  overflow: hidden;
}

.home-banner .slide-link {
  position: relative;
  display: block;
}

.home-banner .slide-link img {
  width: 100%;
}

.home-banner .slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.home-banner .slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  bottom: 26px;
  --wh: 13px;
  --interval: 10px;
}

.home-banner .swiper-pagination .swiper-pagination-bullet {
  width: var(--wh);
  height: var(--wh);
  background-color: #CCCCCC;
  opacity: 1 !important;
  margin: 0 var(--interval);
  transition: all 0.5s;
}

.home-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.hc_cont1710 {
  width: 100%;
  padding: 0 105px;
  max-width: 1710px;
  margin-left: auto;
  margin-right: auto;
}

.home-about {
  overflow: hidden;
}

.home-about .flex {
  display: flex;
  margin-top: 64px;
}

.home-about .flex .left {
  width: 62.7604166%;
  position: relative;
}

.home-about .flex .left .play {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
  border: 1.2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
}

.home-about .flex .left .play span {
  color: #fff;
  font-size: 22px;
}

.home-about .flex .left .img_box {
  padding-top: 50.45643154%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 79.6680497% 100%, 0 100%);
}

.home-about .flex .left .img_box img {
  object-fit: cover;
}

@media screen and (min-width: 1200px) {
  .home-about .flex .left:hover .play {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.home-about .flex .right {
  width: calc(100% - 62.7604166%);
  padding-left: 70px;
  padding-right: calc((100% - 1710px) / 2);
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.home-about .flex .right>img {
  width: calc(100% + 100px);
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.home-about .flex .right .text {
  margin-bottom: 3.75rem;
}

.home-about .flex .right .text p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.home-about .flex .right .more {
  margin-top: 130px;
  display: flex;
  align-items: center;
}

.home-about .flex .right .more p {
  color: #222;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 20px */
  margin-right: 12px;
  position: relative;
}

.home-about .flex .right .more p::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -5px;
  height: 2px;
  background-color: #222;
}

.home-about .flex .right .more span {
  font-size: 16px;
  color: #222222;
}

@media screen and (min-width: 1200px) {
  .home-about .flex .right .more:hover p {
    color: var(--main-color);
  }

  .home-about .flex .right .more:hover p::after {
    background-color: var(--main-color);
  }

  .home-about .flex .right .more:hover span {
    color: var(--main-color);
    transform: translateX(10px);
  }
}

.mod-tit60 {
  color: #000133;
  text-align: center;
  font-family: Impact;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-transform: uppercase;
}

.home-about {
  padding-top: 100px;
}

.home-about-number {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}

.home-about-number .item {
  width: 50%;
  margin-bottom: 40px;
}

.home-about-number .number {
  display: flex;
  margin-bottom: 16px;
}

.home-about-number .number .val,
.home-about-number .number .unit1 {
  color: var(--main-color);
  font-family: Impact;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.home-about-number .number .unit1 {
  margin-left: 10px;
}

.home-about-number .texts {
  color: #444;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 16px;
}

.home-product {
  padding: 100px 0;
  background-color: #F0F0F7;
}

.home-product .text {
  margin-top: 24px;
  width: 1130px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.home-product .text p {
  color: #525266;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.home-product-slick {
  margin-top: 60px;
  position: relative;
}

.home-product-slick .carter_arrow {
  z-index: 2;
  top: 40%;
}

.mod-prev,
.mod-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.5s;
}

.mod-prev span,
.mod-next span {
  color: #1E2188;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {

  .mod-prev:hover,
  .mod-next:hover {
    background-color: var(--main-color);
  }

  .mod-prev:hover span,
  .mod-next:hover span {
    color: #fff;
  }
}

.mod-prev {
  transform: rotate(180deg);
}

.home-product-list {
  margin: 0 var(--flex-margin);
}

.home-product-item {
  padding: 0 var(--flex-padding);
}

.home-product-link {
  text-align: center;
  display: block;
}

.home-product-link .img_box {
  background-color: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 24px;
  padding-top: 100%;
}

.home-product-link .tits {
  color: #000133;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 16px;
}

.home-product-link .texts p {
  color: #525266;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-map img {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .home-product-link:hover .img_box img {
    transform: scale(1.05);
  }

  .home-product-link:hover .tits {
    color: var(--main-color);
    text-decoration: underline;
  }
}

.home-news {
  padding: 100px 0 80px;
}

.home-news .hds {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.home-news .hds .title {
  text-align: left;
}

.home-news .hds .more {
  width: 160px;
  height: 52px;
  border-radius: 52px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

@media screen and (min-width: 1200px) {
  .home-news .hds .more:hover {
    transform: scale(1.1);
  }
}

.home-news-item {
  padding: 0 var(--flex-padding);
}

.home-news-list {
  margin: 0 var(--flex-margin);
}

.home-news-link {
  display: block;
}

.home-news-link .imgs {
  position: relative;
}

.home-news-link .imgs .img_box {
  padding-top: 67.2727272%;
  border-radius: 0 16px 16px 16px;
  margin-bottom: 24px;
}

.home-news-link .imgs .time {
  position: absolute;
  width: 150px;
  height: 44px;
  padding: 15px 15px;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  z-index: 2;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.home-news-link .tits {
  color: #000133;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  margin-bottom: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.home-news-link .texts p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 1200px) {
  .home-news-link:hover .imgs .img_box img {
    transform: scale(1.05);
  }

  .home-news-link:hover .tits {
    color: var(--main-color);
    text-decoration: underline;
  }
}

.home-firend {
  display: flex;
}

.home-firend .item {
  width: 20%;
}

.home-firend .img_box {
  padding-top: 31.578947%;
}

.footer {
  background-color: #171946;
}

.footer-top {
  padding: 88px 0 100px;
}

.footer-top .flex {
  display: flex;
  justify-content: space-between;
}

.footer-info {
  width: 405px;
}

.footer-info .footer-logo {
  width: 230px;
  display: block;
  margin-bottom: 38px;
}

.footer-info .footer-logo img {
  width: 100%;
}

.footer-info .text {
  margin-bottom: 56px;
}

.footer-info .text p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.footer-media {
  display: flex;
}

.footer-media .item {
  margin-right: 16px;
}

.footer-media .link {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-media .link span {
  font-size: 16px;
  color: #999999;
}

@media screen and (min-width: 1200px) {
  .footer-media .link:hover {
    border: 1px solid #ffffff;
    background: #fff;
  }

  .footer-media .link:hover span {
    color: var(--main-color);
  }
}

.footer-media .item:last-child {
  margin-top: 0;
}

.footer-tits {
  color: #FFF;
  font-family: Impact;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  padding-bottom: 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.footer-tits::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 2px;
  background-color: var(--main-color);
  left: 0;
  bottom: -1px;
  z-index: 2;
}

.footer-product {
  width: 200px;
}

.footer-product li {
  margin-bottom: 8px;
}

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

.footer-product a {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  /* 28px */
}

@media screen and (min-width: 1200px) {
  .footer-product a:hover {
    text-decoration: underline;
  }
}

.footer-contact {
  width: 375px;
}

.footer-contact .item {
  margin-bottom: 30px;
}

.footer-contact .item .key {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.footer-contact .item .key span {
  color: #FFFFFF;
  opacity: 0.6;
  margin-right: 8px;
  font-size: 16px;
}

.footer-contact .item .key p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  opacity: 0.6;
}

.footer-contact .item .val p,
.footer-contact .item .val a {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  /* 28px */
}

@media screen and (min-width: 1200px) {
  .footer-contact .item .val a:hover {
    text-decoration: underline;
  }
}

.footer-contact .item:last-child {
  margin-bottom: 0;
}

.footer-message {
  width: 405px;
}

.footer-message input,
.footer-message textarea {
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer-message input::-webkit-input-placeholder,
.footer-message textarea::-webkit-input-placeholder {
  /* WebKit browsers，webkit内核浏览器 */
  color: rgba(255, 255, 255, 0.6);
}

.footer-message input {
  height: 48px;
  margin-bottom: 16px;
}

.footer-message textarea {
  height: 170px;
  margin-bottom: 16px;
}

.footer-message button {
  display: flex;
  align-items: center;
}

.footer-message button p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  margin-right: 8px;
}

.footer-message button span {
  color: #fff;
  font-size: 12px;
}

@media screen and (min-width: 1200px) {
  .footer-message button:hover span {
    transform: translateX(4px);
  }
}

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

.footer-bottom .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .flex .left {
  display: flex;
}

.footer-bottom .flex .left p,
.footer-bottom .flex .left a {
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
  margin-right: 15px;
}

@media screen and (min-width: 1200px) {
  .footer-bottom .flex .left a:hover {
    color: #fff;
  }
}

.footer-bottom .flex .right {
  display: flex;
  align-items: center;
}

.footer-bottom .flex .right a {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
}

.footer-bottom .flex .right a::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #999;
  opacity: 0.2;
  margin: 0 12px;
}

@media screen and (min-width: 1200px) {
  .footer-bottom .flex .right a:hover {
    color: #fff;
  }
}

.page-banner {
  position: relative;
  overflow: hidden;
}

.page-banner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.page-banner-content .flex {
  width: 1410px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.page-banner-content .title {
  color: #FFF;
  font-family: Impact;
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

/* bread */
.bread {
  --text-color: #444;
  --text-interval: 8px;
  --text-fontsize: 16px;
  --icon-fontsize: 16px;
  --hover-color: #1E2188;
  position: relative;
  padding-left: 0px;
  padding-right: 10px;
  background-color: #fff;
  z-index: 2;
}

.bread>.before-img {
  position: absolute;
  right: 99.5%;
  top: 0;
  height: 100%;
  width: auto;
  z-index: -1;
}

.bread>.after-img {
  position: absolute;
  left: 99.5%;
  top: 0;
  height: 100%;
  width: auto;
  z-index: -1;
}

.mod_bread {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
}

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

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

.mod_bread_link span {
  color: var(--text-color);
  font-size: var(--icon-fontsize);
  margin-right: 10px;
}

.mod_bread_link .text {
  color: var(--text-color);
  font-size: var(--text-fontsize);
  transition: all 0.36s;
}

.mod_bread_item>span {
  margin: 0 var(--text-interval);
  display: inline-block;
  font-size: var(--text-fontsize);
  color: var(--text-color);
}

.mod_bread_item:last-child>span {
  display: none;
}

.mod_bread_link:hover .text {
  color: var(--hover-color) !important;
}

.mod_bread_link:hover span {
  color: var(--hover-color) !important;
}

/* bread-end */
.about-info {
  padding: 100px 0 120px;
  overflow: hidden;
}

.about-info .company-name {
  margin-top: 20px;
  color: #1E2188;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
}

.about-info .title {
  text-align: left;
}

.about-info .flex {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}

.about-info .flex .left {
  width: 450px;
  position: relative;
  border-radius: 16px;
  cursor: pointer;
}

.about-info .flex .left .img_box {
  border-radius: 16px;
  padding-top: 150%;
  height: 100%;
}

.about-info .flex .left .img_box img {
  object-fit: cover;
}

.about-info .flex .left .play {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-info .flex .left .play span {
  font-size: 24px;
  color: #fff;
}

.about-info .flex .right {
  width: calc(100% - 450px);
  padding-left: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-info .flex .right .text p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.about-info-number {
  margin-top: 40px;
  margin-left: -80px;
  display: flex;
  padding: 42px 77px;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 16px 16px 16px 0px;
}

.about-info-number .number {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.about-info-number .number .val,
.about-info-number .number .unit {
  color: #1E2188;
  font-family: Impact;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 44px */
}

.about-info-number .texts {
  color: #444;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.about-honor {
  display: flex;
  overflow: hidden;
  margin-bottom: 100px;
}

.about-honor .left {
  width: 49.6354166%;
  background-color: #F0F0F7;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: calc((100% - 1410px) / 2);
  padding-right: 40px;
  border-radius: 0 16px 16px 0;
}

.about-honor .left .title {
  text-align: left;
  margin-bottom: 32px;
  width: 450px;
  max-width: 100%;
}

.about-honor .left .text {
  margin-bottom: 120px;
  width: 450px;
  max-width: 100%;
}

.about-honor .left .text p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.about-honor .left .arrow {
  display: flex;
}

.about-honor .left .arrow .mod-prev {
  margin-right: 16px;
}

.about-honor .right {
  width: calc(100% - 49.6354166%);
  padding: 50px 0;
}

.about-honor-content {
  margin-left: -100px;
}

.about-honor-list {
  margin: 0 var(--flex-margin);
}

.about-honor-item {
  padding: 0 var(--flex-padding);
}

.about-honor-cont {
  cursor: pointer;
}

.about-honor-cont .img_box {
  padding-top: 141.666666%;
}

.about-factory {
  overflow: hidden;
  padding-bottom: 100px;
}

.about-factory .text {
  margin-top: 26px;
  margin-bottom: 48px;
  width: 1170px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-factory .text p {
  color: #525266;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  /* 28px */
}

.about-factory-list {
  margin: 0 var(--flex-margin) 30px;
}

.about-factory-list .slick-list {
  overflow: initial !important;
}

.about-factory-list:last-child {
  margin-bottom: 0;
}

.about-factory-item {
  padding: 0 var(--flex-padding);
}

.about-factory-conts {
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.about-factory-conts .img_box {
  padding-top: 66.6666666%;
}

.about-factory-conts .hovers {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(30, 33, 136, 0.8);
  transition: all 0.5s;
  opacity: 0;
}

.about-factory-conts .hovers .iconfont {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .about-factory-conts:hover .img_box img {
    transform: scale(1.05);
  }

  .about-factory-conts:hover .hovers {
    opacity: 1;
  }
}

.rxhibit-cintent {
  padding: 88px 0 100px;
}

.rxhibit-cintent .title {
  color: #000133;
  text-align: center;
  font-size: 48px;
  font-family: Impact;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 48px */
  margin-bottom: 24px;
}

.rxhibit-cintent .text p {
  color: #525266;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.rxhibit-list {
  margin: 48px var(--flex-margin) -30px;
}

.rxhibit-item {
  padding: 0 var(--flex-padding);
  margin-bottom: 30px;
}

.rxhibit-link {
  border-radius: 16px;
  padding-bottom: 30px;
  overflow: hidden;
  background-color: #F0F0F7;
  --paddx: 30px;
  display: block;
}

.rxhibit-link .img_box {
  padding-top: 66.666666%;
  border-radius: 16px;
  margin-bottom: 30px;
}

.rxhibit-link .tits {
  color: #000133;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-left: var(--paddx);
  margin-right: var(--paddx);
}

.rxhibit-link .tabs {
  display: inline-flex;
  color: #1E2188;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding: 5px 8px;
  background-color: #DBDBED;
  margin-bottom: 40px;
  margin-right: var(--paddx);
  margin-left: var(--paddx);
}

.rxhibit-link .time {
  color: #525266;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 14px */
  margin-left: var(--paddx);
  margin-right: var(--paddx);
}

@media screen and (min-width: 1200px) {
  .rxhibit-link:hover .img_box img {
    transform: scale(1.05);
  }

  .rxhibit-link:hover .tits {
    color: #1E2188;
    text-decoration: underline;
  }
}

/* 分页 */
.mod_page {
  display: flex;
  align-items: center;
  justify-content: center;
  --margin-x: 4px;
  --fs: 16px;
  --iconfs: 12px;
  --wh: 44px;
  --bg: #F0F0F7;
  --page-color: #222;
  margin-top: 50px;
}

.mod_page_item {
  margin: 0 var(--margin-x);
}

.mod_page .prev,
.mod_page .next {
  margin: 0 calc(var(--margin-x) + 5px) !important;
}

.mod_page_item a {
  color: var(--page-color);
  transition: all 0.36s;
  display: block;
  text-align: center;
  border-radius: 50%;
  width: var(--wh);
  line-height: var(--wh);
  font-size: var(--fs);
  background-color: var(--bg);
}

.mod_page .prev a,
.mod_page .next a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--wh);
}

.mod_page .prev span {
  transform: rotate(180deg);
}

.mod_page .next span {
  transform: rotate(0deg);
}

.mod_page .prev span,
.mod_page .next span {
  font-size: var(--iconfs);
}

.mod_page_item.act a {
  background-color: var(--main-color);
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .mod_page_item a:hover {
    background-color: var(--main-color);
  }

  .mod_page_item.prev a:hover span,
  .mod_page_item.next a:hover span {
    color: #fff;
  }

  .mod_page_item:not(.prev, .next) a:hover {
    color: #fff;
  }
}

/* 分页-end */
.mod_page_item.omit {
  margin: 0 0;
  pointer-events: none;
}

.mod_page_item.omit a {
  background-color: transparent !important;
}

.product {
  background-color: #F0F0F7;
}

.product-content {
  padding: 80px 0 100px;
}

.product-content .flex {
  display: flex;
}

.product-content .left {
  width: 330px;
}

.product-content .right {
  width: calc(100% - 330px);
  padding-left: 30px;
}

.product-leftbox {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  left: 0;
  top: 130px;
}

.product-leftbox .tits {
  color: #FFF;
  text-align: center;
  font-family: Impact;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  background-color: var(--main-color);
  padding: 20px 24px;
  border-radius: 16px;
}

.product-nav {
  padding: 0 16px;
}

.product-nav-item {
  border-bottom: 1px solid #F0F0F7;
}

.product-nav-link {
  padding: 17px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-nav-link img {
  height: 22px;
  width: auto;
}

.product-nav-link .iconfont {
  font-size: 14px;
  color: #525266;
}

.product-second {
  padding: 6px 8px 20px;
  display: none;
}

.product-second .product-second-item {
  margin-bottom: 16px;
}

.product-second .product-second-item:last-child {
  margin-bottom: 0;
}

.product-second a {
  color: #525266;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 14px */
  padding-left: 12px;
  position: relative;
  display: inline-block;
}

.product-second a::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #DBDBED;
  left: 0;
  top: 5px;
  transition: all 0.5s;
}

@media screen and (min-width: 1200px) {
  .product-second a:hover {
    color: var(--main-color);
    text-decoration: underline;
  }

  .product-second a:hover::before {
    background-color: var(--main-color);
  }
}

.product-nav-item.active .product-second {
  display: block;
}

.product-nav-item.active .product-nav-link .iconfont {
  transform: rotate(90deg);
}

.product-item {
  padding: 0 var(--flex-padding);
  margin-bottom: 30px;
}

.product-list {
  margin: 0 var(--flex-margin) -30px;
}

.product-link {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  background-color: #fff;
}

.product-link .img_box {
  padding-top: 100%;
}

.product-link .content {
  padding: 24px 24px;
}

.product-link .content .tits {
  color: #000133;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
  margin-bottom: 16px;
}

.product-link .content .texts p {
  color: #525266;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 1200px) {
  .product-link:hover .img_box img {
    transform: scale(1.05);
  }

  .product-link:hover .content .tits {
    color: var(--main-color);
  }
}

.prodeta-info {
  padding: 80px 0 48px;
  overflow: hidden;
}

.prodeta-info .flex {
  display: flex;
  justify-content: space-between;
}

.prodeta-info .left {
  width: 38.2978723%;
}

.prodeta-info .left .img_box {
  padding-top: 100%;
}

.prodeta-info .right {
  width: 57.4468085%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prodeta-info .right .title {
  color: #000133;
  font-family: Impact;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 40px;
}

.prodeta-info .right .key {
  color: #000133;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
}

.prodeta-info .right .texts p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  /* 28px */
  margin-top: 12px;
}

.prodeta-info .right .des {
  margin-bottom: 30px;
}

.prodeta-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #CFCFE5;
  border-bottom: 1px solid #CFCFE5;
}

.prodeta-share p {
  color: #000133;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
}

.prodeta-info-blist {
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.prodeta-info-slist {
  margin: 0 -5px;
}

.prodeta-info-sitem {
  padding: 0 5px;
}

.prodeta-info-sitem .img_box {
  border-radius: 16px;
}

.prodeta-info-scont {
  cursor: pointer;
  position: relative;
}

.prodeta-info-scont .play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.prodeta-info-scont .play span {
  color: #fff;
  font-size: 8px;
}

.inquiry-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  height: 50px;
  background-color: var(--main-color);
  transition: all 0.5s;
}

.inquiry-btn span {
  color: #fff;
  font-size: 16px;
  margin-right: 12px;
}

.inquiry-btn p {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (min-width: 1200px) {
  .inquiry-btn:hover {
    transform: translateY(-4px);
  }
}

.prodeta {
  background-color: #F0F0F7;
}

.prodeta-nav {
  z-index: 20;
  margin-bottom: 56px;
  position: sticky;
  left: 0;
  top: 100px;
  z-index: 6;
}

@media screen and (max-width: 1680px) {
  .prodeta-nav {
    top: 90px;
  }
}

@media screen and (max-width: 1200px) {
  .prodeta-nav {
    top: 80px;
  }
}

.prodeta-nav-list {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0 30px;
  border-radius: 16px;
}

.prodeta-nav-item {
  height: 60px;
  align-items: center;
  color: #000133;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
  margin-right: 60px;
  position: relative;
  display: flex;
  cursor: pointer;
}

.prodeta-nav-item::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.5s;
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .prodeta-nav-item:hover {
    color: var(--main-color);
  }

  .prodeta-nav-item:hover::after {
    opacity: 1;
  }
}

.prodeta-nav-item:last-child {
  margin-right: 0;
}

.prodeta-nav-item.active {
  color: var(--main-color);
}

.prodeta-nav-item.active::after {
  opacity: 1;
}

.prodeta-title {
  color: #000133;
  font-family: Impact;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
}

.prodeta-details {
  margin-bottom: 60px;
}

.prodeta-details .edit {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 16px;
}

.prodeta-inquiry {
  margin-bottom: 60px;
}

.prodeta-inquiry .text p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.prodeta-inquiry .mod_form {
  --form-margin: -5px;
  --form-padding: 5px;
  --form-item-botton: 12px;
  --form-item-br: 12px;
  --form-item-width: 50%;
  --form-item-bg: #fff;
  --form-item-height: 50px;
  --form-item-padding: 20px;
  --form-label-size: 15px;
  --form-color: #525266;
  --form-textarea-height: 120px;
  display: flex;
  flex-wrap: wrap;
  margin: 24px var(--form-margin) 0;
}

.prodeta-inquiry .mod_form .mod_form_item {
  width: var(--form-item-width);
  padding: 0 var(--form-padding);
  margin-bottom: var(--form-item-botton);
}

.prodeta-inquiry .mod_form .mod_form_item .conts {
  position: relative;
  background-color: var(--form-item-bg);
  border-radius: 8px;
}

.prodeta-inquiry .mod_form .mod_form_item .conts label {
  position: absolute;
  left: var(--form-item-padding);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.36s;
  font-size: var(--form-label-size);
  line-height: 1.2;
  color: var(--form-color);
}

.prodeta-inquiry .mod_form .mod_form_item .conts input {
  width: 100%;
  height: var(--form-item-height);
  padding: 0 var(--form-item-padding);
  font-size: var(--form-label-size);
  color: var(--form-color);
}

.prodeta-inquiry .mod_form .mod_form_item .conts textarea {
  height: var(--form-textarea-height);
  font-size: var(--form-label-size);
  padding: 22px var(--form-item-padding);
  width: 100%;
  color: var(--form-color);
}

.prodeta-inquiry .mod_form .mod_form_item .conts button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 18px;
  background-color: var(--main-color);
  border-radius: 48px;
  margin-top: 6px;
  transition: all 0.5s;
}

.prodeta-inquiry .mod_form .mod_form_item .conts button p {
  color: #fff;
}

.prodeta-inquiry .mod_form .mod_form_item .conts button span {
  margin-left: 8px;
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .prodeta-inquiry .mod_form .mod_form_item .conts button:hover {
    transform: scale(1.1);
  }
}

.prodeta-inquiry .mod_form .mod_form_item .conts.active label {
  top: 0 !important;
}

.prodeta-inquiry .mod_form .mod_form_item.button .conts {
  background-color: transparent;
  text-align: left;
  border: none;
}

.prodeta-inquiry .mod_form .mod_form_item.button {
  margin-bottom: 0;
}

.prodeta-inquiry .mod_form .mod_form_item.textarea .conts label {
  top: 30px;
}

.prodeta-inquiry .mod_form .mod_form_item.proname .conts {
  display: flex;
  align-items: center;
  background-color: var(--main-color);
}

.prodeta-inquiry .mod_form .mod_form_item.proname .conts label {
  position: static;
  flex-shrink: 0;
  transform: none;
  padding-left: var(--form-item-padding);
  margin-bottom: 0;
  color: #fff;
}

.prodeta-inquiry .mod_form .mod_form_item.proname .conts input {
  width: 100%;
  padding-left: 5px;
  color: #fff;
}

.prodeta-inquiry .mod_form .mod_form_item.block {
  width: 100%;
}

.prodeta-related-list {
  margin: 0 var(--flex-margin);
}

.prodeta-related-item {
  padding: 0 var(--flex-padding);
}

.prodeta-related {
  padding-bottom: 100px;
}

.news-content {
  padding: 80px 0;
}

.news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-link .img_box {
  padding-top: 66.6666666%;
  border-radius: 16px;
  flex-shrink: 0;
}

.news-link .conts {
  margin: -36px 20px 0;
  border-radius: 16px;
  background-color: #fff;
  padding: 24px 24px;
  height: 100%;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
}

.news-link .conts .time {
  color: #1E2188;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 12px;
  transition: all 0.5s;
}

.news-link .conts .tits {
  color: #000133;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  margin-bottom: 16px;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-link .conts .texts p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  /* 28px */
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 1200px) {
  .news-link:hover .img_box img {
    transform: scale(1.05);
  }

  .news-link:hover .conts {
    background-color: var(--main-color);
  }

  .news-link:hover .conts .time {
    color: #fff;
  }

  .news-link:hover .conts .tits {
    color: #fff;
  }

  .news-link:hover .conts .texts p {
    color: #fff;
  }
}

.news-list {
  margin: 0 var(--flex-margin) -30px;
}

.news-item {
  padding: 0 var(--flex-padding);
  margin-bottom: 30px;
}

.news,
.product,
.download {
  background-color: #F0F0F7;
}

.news .mod_page .mod_page_item a,
.product .mod_page .mod_page_item a,
.download .mod_page .mod_page_item a {
  background-color: #fff;
  color: #222;
}

.news .mod_page .mod_page_item.act a,
.product .mod_page .mod_page_item.act a,
.download .mod_page .mod_page_item.act a {
  background-color: var(--main-color);
  color: #fff;
}

.news .mod_page .mod_page_item:hover a,
.product .mod_page .mod_page_item:hover a,
.download .mod_page .mod_page_item:hover a {
  background-color: var(--main-color);
  color: #fff;
}

.download {
  padding: 80px 0 100px;
}

.download-item {
  padding: 0 var(--flex-padding);
  margin-bottom: 30px;
}

.download-list {
  margin: 0 var(--flex-margin) -30px;
}

.download-link {
  background-color: #fff;
  border-radius: 16px;
  display: block;
  padding: 30px 30px;
  position: relative;
}

.download-link::after {
  content: "";
  position: absolute;
  width: 86%;
  height: 2px;
  background-color: #BABFD2;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  transition: all 0.5s;
}

.download-link>.iconfont {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E9E9F4;
  color: #1E2188;
  font-size: 20px;
  margin-bottom: 32px;
}

.download-link .tits {
  color: #000133;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  margin-bottom: 16px;
}

.download-link .texts {
  margin-bottom: 32px;
}

.download-link .texts p {
  color: #525266;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 14px */
}

.download-link .btns {
  border-radius: 44px;
  border: 1px solid #C7C7E1;
  height: 44px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.download-link .btns span {
  color: #1E2188;
  font-size: 14px;
  margin-right: 10px;
}

.download-link .btns p {
  color: #1E2188;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 15px */
  transition: all 0.5s;
}

@media screen and (min-width: 1200px) {
  .download-link:hover::after {
    background-color: var(--main-color);
  }

  .download-link:hover .btns {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
  }

  .download-link:hover .btns span {
    color: #fff;
  }

  .download-link:hover .btns p {
    color: #fff;
  }
}

.contact-info {
  background-color: #F0F0F7;
  padding: 77px 0 100px;
}

.contact-info .flex {
  display: flex;
  justify-content: space-between;
}

.contact-info .left {
  width: 41%;
}

.contact-info .left .title {
  color: #000133;
  font-family: Impact;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 20px;
}

.contact-info .left .text {
  margin-bottom: 40px;
}

.contact-info .left .text p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

.contact-info .right {
  width: 49%;
}

.contact-item {
  margin-bottom: 40px;
  display: flex;
}

.contact-item .icons {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1E2188;
  flex-shrink: 0;
  margin-right: 16px;
}

.contact-item .icons span {
  font-size: 20px;
  color: var(--main-color);
}

.contact-item .content .key {
  color: #525266;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 12px;
}

.contact-item .content .val p,
.contact-item .content .val a {
  color: #000133;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (min-width: 1200px) {
  .contact-item .content .val a:hover {
    color: var(--main-color);
    text-decoration: underline;
  }
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-message {
  background-color: #fff;
  padding: 40px 40px;
  margin-top: -280px;
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 16px;
}

.contact-message .title {
  color: #000133;
  font-family: Impact;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 16px;
}

.contact-message .text {
  margin-bottom: 32px;
}

.contact-message .text p {
  color: #525266;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

.contact-message .mod_form {
  --form-margin: -10px;
  --form-padding: 10px;
  --form-item-botton: 20px;
  --form-item-br: 12px;
  --form-item-width: 50%;
  --form-item-bg: #F0F0F7;
  --form-item-height: 50px;
  --form-item-padding: 20px;
  --form-label-size: 16px;
  --form-color: #525266;
  --form-textarea-height: 255px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 var(--form-margin);
}

.contact-message .mod_form .mod_form_item {
  width: var(--form-item-width);
  padding: 0 var(--form-padding);
  margin-bottom: var(--form-item-botton);
}

.contact-message .mod_form .mod_form_item .conts {
  position: relative;
  background-color: var(--form-item-bg);
  border-radius: 8px;
}

.contact-message .mod_form .mod_form_item .conts label {
  position: absolute;
  left: var(--form-item-padding);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.36s;
  font-size: var(--form-label-size);
  line-height: 1.2;
  color: var(--form-color);
}

.contact-message .mod_form .mod_form_item .conts input {
  width: 100%;
  height: var(--form-item-height);
  padding: 0 var(--form-item-padding);
  font-size: var(--form-label-size);
  color: var(--form-color);
}

.contact-message .mod_form .mod_form_item .conts textarea {
  height: var(--form-textarea-height);
  font-size: var(--form-label-size);
  padding: 22px var(--form-item-padding);
  width: 100%;
  color: var(--form-color);
}

.contact-message .mod_form .mod_form_item .conts button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 18px;
  background-color: var(--main-color);
  border-radius: 48px;
  margin-top: 6px;
  transition: all 0.5s;
}

.contact-message .mod_form .mod_form_item .conts button p {
  color: #fff;
}

.contact-message .mod_form .mod_form_item .conts button span {
  margin-left: 8px;
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .contact-message .mod_form .mod_form_item .conts button:hover {
    transform: scale(1.1);
  }
}

.contact-message .mod_form .mod_form_item .conts.active label {
  top: 0 !important;
}

.contact-message .mod_form .mod_form_item.button .conts {
  background-color: transparent;
  text-align: left;
  border: none;
}

.contact-message .mod_form .mod_form_item.button {
  margin-bottom: 0;
}

.contact-message .mod_form .mod_form_item.textarea .conts label {
  top: 30px;
}

.contact-message .mod_form .mod_form_item.proname .conts {
  display: flex;
  align-items: center;
  background-color: #F4F4F4;
}

.contact-message .mod_form .mod_form_item.proname .conts label {
  position: static;
  flex-shrink: 0;
  transform: none;
  padding-left: var(--form-item-padding);
  margin-bottom: 0;
}

.contact-message .mod_form .mod_form_item.proname .conts input {
  width: 100%;
  padding-left: 5px;
}

.contact-message .mod_form .mod_form_item.block {
  width: 100%;
}

.home-map {
  padding: 90px 0;
  background-color: #171946;
}

.home-map .title {
  margin-bottom: 60px;
}

@media screen and (max-width: 1680px) {
  .home-map .title {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1440px) {
  .home-map .title {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 1200px) {
  .home-map .title {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .home-map .title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .home-map .title {
    margin-bottom: 25px;
  }
}

.home-map img {
  width: 100%;
}

.ct_aside1 {
  position: fixed;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 10;
  --wh: 48px;
  --fs: 20px;
}

.ct_aside1_list {
  margin-bottom: 15px;
  transition: all 0.36s;
}

.ct_aside1_item {
  margin-bottom: 10px;
  position: relative;
  transition: all 0.36s;
  cursor: pointer;
}

.ct_aside1_item.boxmedia .ct_aside1_cont {
  box-shadow: none !important;
}

.ct_aside1_item:last-child {
  margin-bottom: 0;
}

.ct_aside1_link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.36s;
}

.ct_aside1_link span {
  font-size: var(--fs);
  color: #fff;
}

.ct_aside1_item.active .ct_aside1_link {
  background-color: var(--main-color);
}

.ct_aside1_item:hover .ct_aside1_link {
  background-color: var(--main-color);
}

.ct_aside1_link,
.ct_aside1_switch {
  width: var(--wh);
  height: var(--wh);
  border-radius: 50%;
}

.ct_aside1_switch {
  background-color: var(--main-color);
  position: relative;
  transition: all 0.36s;
  cursor: pointer;
  display: none;
}

.ct_aside1_switch::after,
.ct_aside1_switch::before {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.36s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ct_aside1_switch::after {
  width: 2px;
  height: 15px;
}

.ct_aside1_switch::before {
  height: 2px;
  width: 15px;
}

.ct_aside1_switch.active {
  background-color: #031417;
  transform: rotate(-135deg);
}

.ct_aside1_cont {
  position: absolute;
  right: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.36s;
  opacity: 0;
  pointer-events: none;
}

.ct_aside1_item.active .ct_aside1_cont {
  pointer-events: all;
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}

.ct_aside1_cont::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 100%;
}

.ct_aside1_cont .qr {
  width: 100px;
  padding: 2px;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  background-color: #fff;
}

.ct_aside1_cont .qr img {
  width: 100%;
}

.ct_aside1_cont a {
  display: inline-block;
  padding: 17px 22px;
  background-color: #fff;
  border-radius: 4px;
  color: #333;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  white-space: nowrap;
}

/* type-animatelist */
.ct_aside1_list.animatelist {
  transform: translateX(100px);
}

.ct_aside1_list.active {
  transform: translateX(0px);
}

/* type-animateitem */
.ct_aside1_list.animateitem .ct_aside1_item {
  transform: translateX(100px);
}

.ct_aside1_list.active .ct_aside1_item {
  transform: translateX(0px);
}

/* type-animateitem-rotate */
.ct_aside1_list.animateitem-rotate .ct_aside1_item {
  transform: translateX(80px) rotate(360deg);
}

.ct_aside1_list.active .ct_aside1_item {
  transform: translateX(0px) rotate(0deg);
}

@media screen and (max-width: 768px) {
  .ct_aside1_list {
    display: none;
  }

  .ct_aside1 {
    top: initial;
    right: 20px;
    bottom: 70px;
    transform: translateY(0);
  }

  .ct_aside1_switch {
    display: block;
  }
}

/* hover */
@media screen and (min-width: 1200px) {
  .ct_aside1_switch:hover {
    background-color: #031417;
  }

  .ct_aside1_item:hover .ct_aside1_cont {
    pointer-events: all;
    opacity: 1;
    transform: translateY(-50%) translateX(0px);
  }
}

/* newdate */
.newdate_info_tit {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: bold;
}

.newdate_info_date {
  font-size: 16px;
  line-height: 1.5;
}

.newdate_info {
  padding: 60px 0 20px;
  border-bottom: 1px solid #ccc;
}

.news_info {
  margin-bottom: 50px;
}

.news_info li {
  list-style: inherit;
}

.news_info ol,
.news_info ul {
  padding-left: 1rem;
}

.news_primary {
  padding-top: 50px !important;
  padding-bottom: 100px !important;
}

.news_info h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: bold;
  color: #222222;
  margin-bottom: 20px;
}

.news_info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 20px;
}

.news_info img {
  height: auto !important;
}

.newdate_main .pdrf_shares {
  margin-top: 50px;
}

.newdate_page {
  margin-top: 40px;
}

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

.newdate_prev {
  margin-bottom: 20px;
}

.pdrf_shares_text {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1.2;
  margin-right: 5px;
}

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

.newdate_page a {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media screen and (max-width: 1680px) {
  .newdate_info_tit {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .newdate_info {
    padding: 55px 0 20px;
  }

  .news_info h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .news_primary {
    padding-top: 40px !important;
    padding-bottom: 80px !important;
  }

  .pdrf_shares_text {
    font-size: 20px;
  }

  .news_info {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1440px) {
  .newdate_info_tit {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .newdate_info {
    padding: 50px 0 15px;
  }

  .news_primary {
    padding-top: 35px !important;
    padding-bottom: 60px !important;
  }

  .newdate_info_date {
    font-size: 14px;
  }

  .news_info h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .news_info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .news_info {
    margin-bottom: 30px;
  }

  .pdrf_shares_text {
    font-size: 18px;
  }

  .newdate_page {
    margin-top: 30px;
  }

  .newdate_page a {
    font-size: 14px;
    line-height: 1.4;
  }

  .newdate_prev {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .newdate_info_tit {
    font-size: 22px;
  }

  .newdate_info {
    padding: 40px 0 12px;
  }

  .news_primary {
    padding-top: 30px !important;
    padding-bottom: 50px !important;
  }

  .pdrf_shares_text {
    font-size: 16px;
  }

  .news_info h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .newdate_info {
    padding: 35px 0 12px;
  }

  .newdate_info_tit {
    margin-bottom: 13px;
    font-size: 22px;
    line-height: 1.4;
  }

  .news_primary {
    padding-top: 25px !important;
    padding-bottom: 40px !important;
  }
}

/* newdate-end */
.page-inquiry.prodeta-inquiry {
  margin-bottom: 0;
  padding-bottom: 100px;
}

.page-inquiry.prodeta-inquiry .mod_form .mod_form_item .conts {
  border: 1px solid #ccc;
}

.page-inquiry.prodeta-inquiry .mod_form .mod_form_item.button .conts {
  border: none;
}

@media screen and (max-width: 1680px) {
  .page-inquiry.prodeta-inquiry {
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 1440px) {
  .page-inquiry.prodeta-inquiry {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 1200px) {
  .page-inquiry.prodeta-inquiry {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 768px) {
  .page-inquiry.prodeta-inquiry {
    padding-bottom: 60px;
  }
}

/* sitemap */
.sitemap_cont {
  padding: 100px 0;
}

.sitemap_cont_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.sitemap_cont_item {
  width: 16.666666%;
  padding: 0 10px;
}

.sitemap_cont_link {
  display: block;
  text-align: center;
  line-height: 50px;
  background-color: var(--main-color);
  color: #fff !important;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.sitemap_cont_link:hover {
  text-decoration: underline;
}

.sitemap_second_list {
  margin-top: 15px;
}

.sitemap_second_item {
  margin-bottom: 10px;
}

.sitemap_second_link {
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  transition: all 0.36s;
  display: block;
  color: #222;
  padding: 4px 0;
}

.sitemap_second_link:hover {
  color: var(--main-color);
  text-decoration: underline;
}

@media screen and (max-width: 1680px) {
  .sitemap_cont {
    padding: 90px 0;
  }

  .sitemap_cont_link {
    line-height: 45px;
  }

  .sitemap_second_item {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 1440px) {
  .sitemap_cont_item {
    padding: 0 8px;
  }

  .sitemap_cont_list {
    margin: 0 -8px;
  }

  .sitemap_cont_link {
    line-height: 40px;
    font-size: 16px;
  }

  .sitemap_second_link {
    padding: 4px 0;
    line-height: 26px;
    font-size: 15px;
  }

  .sitemap_cont {
    padding: 80px 0;
  }
}

@media screen and (max-width: 1200px) {
  .sitemap_cont {
    padding: 70px 0;
  }
}

@media screen and (max-width: 991px) {
  .sitemap_cont_item {
    padding: 0 5px;
  }

  .sitemap_cont_list {
    margin: 0 -5px;
    flex-wrap: wrap;
  }

  .sitemap_cont_item {
    width: 33.333333%;
    margin-bottom: 20px;
  }

  .sitemap_cont {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .sitemap_cont {
    padding: 55px 0;
  }

  .sitemap_cont_list {
    flex-direction: column;
  }

  .sitemap_cont_item {
    width: 100%;
    margin-bottom: 10px;
  }

  .sitemap_second_list {
    margin-top: 10px;
  }
}

/* sitemap-end */
.privacy_cont {
  padding: 100px 0;
}

.privacy_cont .title {
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: bold;
}

.privacy_cont .edit p {
  font-size: 16px;
  line-height: 32px;
  color: #333;
}

@media screen and (max-width: 1680px) {
  .privacy_cont {
    padding: 90px 0;
  }

  .privacy_cont .title {
    margin-bottom: 44px;
    font-size: 30px;
  }
}

@media screen and (max-width: 1440px) {
  .privacy_cont {
    padding: 80px 0;
  }

  .privacy_cont .title {
    margin-bottom: 40px;
    font-size: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .privacy_cont {
    padding: 70px 0;
  }

  .privacy_cont .title {
    margin-bottom: 35px;
    font-size: 30px;
  }
}

@media screen and (max-width: 991px) {
  .privacy_cont {
    padding: 60px 0;
  }

  .privacy_cont .title {
    margin-bottom: 30px;
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .privacy_cont {
    padding: 50px 0;
  }

  .privacy_cont .title {
    margin-bottom: 25px;
    font-size: 26px;
  }
}

/* 搜索页 */
.product_search {
  margin-bottom: 20px;
}

.product_search_tit {
  font-family: Redbold;
  font-size: 22px;
  color: #14151a;
  margin-bottom: 15px;
}

.product_search_text {
  background-color: #fff;
  padding: 12px 20px;
  color: #999999;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1440px) {

  /* 搜索页 */
  .product_search_tit {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .product_search_text {
    padding: 10px 15px;
  }

  .product_search {
    margin-bottom: 15px;
  }

  /* 搜索页-end */
}

.ct_aside1 .footer-media .link {
  border-radius: 50%;
}

.ct_aside1 .footer-media .item {
  margin-right: 10px;
}

.ct_aside1 .footer-media .item:last-child {
  margin-right: 5px;
}

.slide-inner img {
  width: 100%;
}

.about-honor .left {
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-honor .right {
  padding: 50px 0;
}

.about-honor .left .text {
  margin-bottom: 0 !important;
}

.about-honor .left .arrow .mod-prev,
.about-honor .left .arrow .mod-next {
  margin-top: 120px;
}

@media screen and (max-width:1680px) {

  .about-honor .left .arrow .mod-prev,
  .about-honor .left .arrow .mod-next {
    margin-top: 60px;
  }
}

@media screen and (max-width:1440px) {

  .about-honor .left .arrow .mod-prev,
  .about-honor .left .arrow .mod-next {
    margin-top: 40px;
  }
}

@media screen and (max-width:768px) {

  .about-honor .left .arrow .mod-prev,
  .about-honor .left .arrow .mod-next {
    margin-top: 30px;
  }
}

.about-honor .left {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.about-honor {
  align-items: center;
}

.footer {
  position: relative;
  z-index: 1;
}

.footer>img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}

.table-box {
  overflow-x: scroll;
}


@media (min-width: 992px) {
  .product-item.col-lg-4 {
    flex: 0 0 auto;
    width: 19.33% !important;
  }
}