body {
  padding: 0;
}

.dth_wh {
  width: 96%;
  max-width: 1580px;
  display: block;
  margin: 0 auto;
}
.dth_wh.w1780 {
  width: 100%;
  max-width: 100%;
  padding: 0 2%;
}
.flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.flex::before,
.flex::after {
  display: none;
}

.fixed_ratio {
  position: relative;
  overflow: hidden;
  padding-top: calc(3 / 4 * 100%);
}
.fixed_ratio img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enlarge .imgs {
  overflow: hidden;
  position: relative;
}
.enlarge .imgs img {
  transform: scale(1);
  transition: 0.5s ease;
}
.enlarge:hover .imgs img {
  transform: scale(1.1);
}

@media (min-width: 1500px) {
  .dth_wh.w1780 {
    padding: 0 4.9%;
  }
}
@media (max-width: 1200px) {
  .dth_wh {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .fp-enabled body,
  body {
    padding-bottom: 0;
  }
}
@media (max-width: 640px) {
  .dth_wh {
    padding: 0 12px;
  }
}


.slick-arrows {
  outline: none;
}

.swiper-button-prev,
.swiper-button-next {
  outline: none;
  display: flex;
  width: 24px;
  height: 44px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background: none;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-color: transparent transparent #4d4d4d #4d4d4d;
  position: absolute;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: relative;
  left: 0;
  top: 0;
  margin: 0;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  border-color: transparent transparent #ffffff #ffffff;
}

.swiper-button-next {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.swiper-pagination {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 5%;
  left: 0;
}

.swiper-pagination .swiper-pagination-bullet {
  outline: none;
  margin: 0 1em;
}

/*@media (max-width: 992px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}*/



@media (min-width: 991px) {
  body {
    padding-top: 90px;
  }
}
header {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.5s all;
  background: #fff;
/*  background-image: repeating-linear-gradient(to top,rgba(0, 0, 0, 0.005), rgba(0, 0, 0, 0.3));*/
}
header.scroll,
header.black {
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  background-image: none;
}
header .dth_wh::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all;
}
header .dth_wh:hover::before {
  opacity: 1;
  visibility: visible;
}
header:hover {
  background-color: #ffffff;
}
header .dth_wh {
  align-items: center;
  position: relative;
  z-index: 20;
}

.logo {
  display: block;
  width: 15%;
  position: relative;
}
.logo a {
  display: block;
  position: relative;
}
.logo a:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
}
.logo img {
  display: block;
  max-width: 100%;
  max-height: 85px;
  object-fit: contain;
  transition: 0.5s all;
}
header.scroll .logo img,
header.black .logo img {
  max-height: 80px;
}
.show .logo a:first-child {
  z-index: 1;
  visibility: visible;
}
.show .logo a:nth-child(2) {
  visibility: hidden;
  z-index: -1;
}
/*header .dth_wh:hover .logo a:first-child {
  visibility: hidden;
  z-index: -1;
}
header .dth_wh:hover .logo a:nth-child(2) {
  z-index: 1;
  visibility: visible;
}*/

.search {
  height: 90px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  width: 4%;
  transition: 0.5s all;
}
header.scroll .search,
header.black .search {
  /* height: 80px; */
}
.search_btn {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/search_btn1.png);
  background-size: 18px auto;
  cursor: pointer;
  position: relative;
}

.search_btn:hover {
  background-image: url(../images/search_btn.png);
}
header.scroll .search_btn,
header.black .search_btn {
  background-image: url(../images/search_btn1.png);
}
header.show .search_btn.show {
  background-image: url(../images/close.png);
}
header .dth_wh:hover .search_btn.show {
  background-image: url(../images/close1.png);
}
header .dth_wh .search_btn.show:hover {
  background-image: url(../images/close.png);
}
.search_btn:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #0d50be;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: 0.4s;
}
.search_btn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  border-color: #bf1920;
}

.search_down {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: #0d50be;
  opacity: 0;
  visibility: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  -moz-transition: 0.8s;
  transition: 0.8s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.search_down.show {
  opacity: 1;
  visibility: visible;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  pointer-events: visible;
}

.search_down_cent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 630px;
}
.search_down_sous {}
.search_down_sous h6 {
  font-size: 42px;
  color: #ffffff;
  font-weight: normal;
  line-height: 1;
  display: block;
  margin: 0;
  text-align: center;
  margin-bottom: 4.15vh;
}
.search_down_sous #formsearch {
  background-color: #ffffff;
}
.search_down_sous #formsearch input {
  background: none;
  border: none;
  outline: none;
  height: 60px;
}
.search_down_sous #formsearch input#keyword {
  width: calc(100% - 60px);
  font-size: 16px;
  padding: 1.25em;
}
.search_down_sous #formsearch input#keyword::placeholder {
  color: rgba(34, 34, 34, 0.5);
}
.search_down_sous #formsearch input#s_btn {
  width: 60px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  background-image: url(../images/form_btn.png);
}
.search_down_sous #formsearch:hover input#s_btn {
  background-image: url(../images/form_btn1.png);
}

.search_down_keyw {
  padding-top: 28px;
}
.search_down_keyw h6 {
  margin: 0;
  display: block;
  font-size: 15px;
  color: #ffffff;
  font-weight: normal;
}
.search_down_keyw ul {
  flex-wrap: wrap;
  margin-top: 20px;
}
.search_down_keyw li {
  min-width: 90px;
  max-width: 100%;
  margin-right: 10px;
  margin-bottom: 10px;
}
.search_down_keyw li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 0 0.5em;
}


.lang {
  flex-shrink: 0;
  margin-left: 2.7%;
}
.lang a {
  display: block;
  font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: 0px;
    /* color: #666666; */
    color: #ffffff;
  padding-left: calc(32 / 14 * 1em);
  position: relative;
}
.lang a::before {
  content: "";
  display: block;
  width: calc(20 / 14 * 1em);
  height: calc(20 / 14 * 1em);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/lang.gif);
  background-color: #666666;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.show .lang a {
  color: #ffffff;
}
.show .lang a::before {
  background-color: #bf1920;
}
.dth_wh:hover .lang a {
  color: #666666;
}
.scroll .dth_wh .lang a,
header.black .dth_wh .lang a {
  color: #666666;
}
.show .dth_wh .lang a {
  color: #ffffff;
}
.show .dth_wh:hover .lang a {
  color: #666666;
}
.show .dth_wh:hover .lang a::before {
  background-color: #666666;
}


nav {
  /* width: 66%; */
  flex-grow: 1;
  margin-left: 5%;
}
.x-menu {
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
}
.x-menu>li {
  /* margin-right: 5.5%; */
  /* margin-right: 8%; */
  position: relative;
}
.x-menu>li.produtnav {
  position: static;
}
.x-menu>li:last-child {
  margin-right: 0;
}
.x-menu>li>a {
  /* font-size: 16px; */
  font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 86px;
    letter-spacing: 0px;
    /* color: #333333; */
    color: #333;
  transition: 0.5s all;
  display: block;

  margin: 0 2em;
  border-bottom: 3px solid #fff;
}
/*header:hover .x-menu>li>a {
  color: #222;
}*/
header.scroll .x-menu>li>a,
header.black .x-menu>li>a {
  /* line-height: 80px; */
  color: #222;
}
header.show .x-menu>li>a {
  color: #ffffff;
}
header.show .dth_wh:hover .x-menu>li>a {
    color: #333333;
}

.x-menu > li:hover > a,
header:hover .x-menu>li:hover>a,
header.scroll .x-menu>li:hover>a,
header.show .x-menu>li:hover>a,
header.show .dth_wh:hover .x-menu>li:hover>a,
header.black .x-menu>li:hover>a {
    /* color: #bf1920; */
  color: #0d50be;
  font-weight: bold;
  border-color: #0d50be;
}
.x-menu > li.active > a {
}

.x-sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  /* width: 144px; */
  width: 100%;
  transform: translateX(-50%);
  display: none;
  padding: 5px 0;
}
.x-sub-menu>li {}
.x-sub-menu>li>a {
  display: block;
  font-size: 15px;
  line-height: 2.6;
  font-weight: normal;
  color: #666;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.2em 1em;
}
.x-sub-menu>li:hover>a {
  /* color: #bf1920; */
  background-color: #0d50be;
  color: #ffffff;
}

.x-menu > li .x-sub-menux {
  display: none;
}

.product_nav_ul {
  position: fixed;
  left: 0;
  top: 90px;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  transition: 0.5s all;
}
header.scroll .product_nav_ul {
  /* top: 80px; */
}
li.produtnav .product_nav_ul.opna {
  pointer-events: visible;
}
.product_nav_ul.opna .product_menu_bg {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.product_menu_bg {
  position: fixed;
  left: 0;
  top: 90px;
  bottom: 0;
  width: 100%;
  height: -webkit-calc(-10vh);
  height: -moz-calc(-10vh);
  height: calc(100vh - 90px);
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
  pointer-events: none;
}
header.scroll .product_menu_bg {
  /* top: 80px; */
  /* height: calc(100vh - 80px); */
}
.product_nav_li {
  position: relative;
  padding: 26px 30px 8px;
  background: #fff;
  text-align: center;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.product_nav_ul.opna .product_nav_li {
  opacity: 1;
  visibility: visible;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  pointer-events: visible;
}
.product_nav_li ul {
  display: flex;
  flex-wrap: wrap;
}
.product_nav_li li {
  margin-bottom: 25px;
  text-align: center;
  /* width: 11.5%;
  margin-right: calc(8% / 7); */
  
  width: 15%;
  margin-right: calc(10% / 5);
}
.product_nav_li li:nth-child(6n) {
  margin-right: 0;
}
.product_nav_li li a {
  display: block;
  margin: 0 auto;
  /* width: 90px; */
  /* max-height: 100%; */
}
.product_nav_li li figure {
  display: block;
  position: relative;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  height: 11vw;
}
.product_nav_li li figure img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_nav_li li figure img:nth-child(2) {
  mask-image: url(../images/product_nav.png);
  -webkit-mask-image: url(../images/product_nav.png);
  mask-position: 30% 30%;
  -webkit-mask-position: 30% 30%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  visibility: hidden;
  -webkit-transition: all 1s,opacity 0s;
  -o-transition: all 1s,opacity 0s;
  -moz-transition: all 1s,opacity 0s;
  transition: all 1s,opacity 0s;
}
.product_nav_li li a:hover figure img:nth-child(2) {
  opacity: 1;
  visibility: visible;
  mask-position: 50% 100%;
  -webkit-mask-position: 50% 100%;
}

.product_nav_li li p {
  margin-top: 14px;
  color: #666666;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.2;
  transition: 0.4s;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1800px) {
  .x-menu>li {
    /* margin-right: 5.2%; */
  }
}
@media (max-width: 1650px) {
  .x-menu>li {
    /* margin-right: 4.8%; */
  }
}
@media (max-width: 1440px) {
  .x-menu>li>a {
    font-size: 15px;
  }
}
@media (max-width: 1400px) {
  .head_phone {
    display: none;
  }
  .logo {
    width: 14%;
  }
  nav {
    flex-grow: 1;
    margin-left: 2%;
  }
  .x-menu>li {
    /* margin-right: 4.5%; */
  }
  .search {
    width: auto;
    flex-shrink: 0;
  }
  .search_btn {
    width: 30px;
    height: 30px;
    background-size: 15px auto;
  }
  .lang a {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .lang a {
    font-size: 12px;
  }
  header {
    display: none;
  }
  .xymob-head {
    display: block !important;
  }
  body {
    /* padding-top: 60px; */
  }
}
@media (max-width: 990px) {
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}

/* banner */
#banner {
  position: relative;
}
.banner_pc {
  display: block;
}
.banner_mob {
  display: none;
}
#banner li {
}
#banner li a {
  display: block;
}
#banner li .imgs {
  display: block;
}
#banner li .imgs img {
  width: 100%;
}
#banner .hi {
  display: none;
}
#banner .swiper-button-prev,
#banner .swiper-button-next {
  width: 50px;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.5);
}

#banner .swiper-button-prev {
  left: 0;
}

#banner .swiper-button-next {
  right: 0;
}

#banner .swiper-button-prev:hover,
#banner .swiper-button-next:hover {
  background-color: #ff4500;
}


#banner .swiper-pagination {
  bottom: 11.5%;
}

#banner .swiper-pagination-bullet {
  width: 8px;
    height: 8px;
    border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  opacity: 1;
  margin: 0 15px;
}
/*#banner .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  left: 0;
  top: 0;
}*/

#banner .swiper-pagination-bullet:hover,
#banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}
#banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  /* animation: 5.5s linear 0s banwidth 1 forwards; */
  animation: 4s linear 0s banwidth 1 forwards;
}

#banner .p_scrool {
    position: absolute;
    left: calc((100% - 90px) / 2);
    bottom: 40px;
    color: #fff;
    width: 90px;
    z-index: 10;
    text-align: center;
}

#banner .p_scrool i {
    display: block;
    width: 20px;
    height: 30px;
    margin: 0 auto;
    border-radius: 12px;
    border: 2px #fff solid;
    position: relative;
}

#banner .p_scrool i:before {
    content: "";
    display: block;
    width: 4px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 3px;
    animation: scrollmouse 2s linear infinite;
}

#banner .p_scrool span {
    color: #fff;
    display: block;
    font-family: arial;
    line-height: 20px;
    margin-top: 12px;
    font-size: 12px;
}

@keyframes scrollmouse {
    from {
        transform: translate(-50%, 0);
        opacity: 1
    }

    to {
        transform: translate(-50%, 10px);
        opacity: 0
    }
}

.banner_video {
  /* height: 50vw; */
  height: 100vh;
  background-color: #000000;
}
.banner_video video {
  object-position: center 10%;
  object-fit: cover;
  /* opacity: 0.75; */
}
.banner_wz {
  position: absolute;
  top: 35.2%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
}
.banner_wz img {
  max-width: 100%;
}

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

@media (max-width: 1650px) {
}
@media (max-width: 1200px) {
  #banner .swiper-pagination {
    bottom: 10%;
  }
  #banner .swiper-pagination-bullet {
    width: 45px;
    margin: 0 15px;
  }
}
@media (max-width: 990px) {
  #banner .swiper-pagination-bullet {
    width: 40px;
    margin: 0 12px;
  }
}
@media (max-width: 768px) {
  .banner_pc {
    display: none;
  }
  .banner_mob {
    display: block;
  }
  #banner .p_scrool {
    display: none;
  }
}
@media (max-width: 640px) {
  .banner_video {
    min-height: 170px;
  }
  .banner_video video {
    object-position: center top;
  }
  .banner_wz {
    width: 80vw;
  }
  #banner .swiper-pagination {
    bottom: 10px;
  }
  #banner .swiper-pagination-bullet {
    width: 24px;
    height: 2px;
    margin: 0 8px;
  }
}

footer {
    background-color: #1b1b1b;
}


.layout_ewm {
  justify-content: center;
  max-width: 160px;
  width: 10%;
  margin-top: 0 !important;
}
.layout_ewm li {
}
.layout_ewm li a {
  display: block;
  text-align: center;
}
.layout_ewm li img {
  width: 100%;
}
.layout_ewm li p {
  font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: 0px;
    color: #aeaeae;
  margin-top: 1em;
}

.clearboth {
  display: block;
  width: 100%;
  clear: both;
}
.ft_link {
}

@media (max-width: 1650px) {
  .layout_ewm {
    margin-top: 18%;
  }
}
@media (max-width: 1440px) {
  .layout_ewm {
    margin-top: 15%;
  }
}
@media (max-width: 1200px) {
  .layout_ewm li p {
    font-size: 13px;
  }
  .ft_link {
    display: none;
  }
}
@media (max-width: 990px) {
  .layout_ewm {
    margin-top: 30px;
    max-width: 240px;
  }
  .ft_prs {
    display: none;
  }
  .ft_region {
    display: none;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .layout {
    padding: 24px 0 20px;
  }
  .layout_tel .tel {
    font-size: 24px;
  }
  .layout_ewm {
    margin-top: 20px;
    max-width: 200px;
    display: none;
  }
  .layout_ewm li p {
    font-size: 12px;
    margin-top: 0.6em;
  }
  .foots {
    padding: 1.2em 0;
  }
  .ft_copyright span {
    font-size: 18px;
  }
}


@keyframes jiggle {
  48%,
  62% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 0.8);
  }
  56% {
    transform: scale(0.8, 1.2) translate(0, -5px);
  }
  59% {
    transform: scale(1, 1) translate(0, -3px);
  }
}

@media (max-width: 990px) {
}
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}
@media (max-width: 640px) {
}


.dth_wh {
  max-width: 1500px;
  width: 94%;
}

.dth_wh.w1760 {
  width: 100%;
  max-width: 100%;
  padding: 0 4%;
}

@media (min-width: 1660px) {
  .dth_wh.w1760 {
    padding: 0 2%;
  }
}
@media (max-width: 1200px) {
  .dth_wh,
  .dth_wh.w1760 {
    width: 100%;
    padding: 0 20px;
  }
  /* .fp-enabled body,
  body {
    padding-top: 60px;
  } */
}
@media (max-width: 991px) {
  body {
    /* padding-top: 60px; */
  }
}
@media (max-width: 767px) {
  .fp-enabled body,
  body {
    padding: 66px 0 50px;
  }
}
@media (max-width: 640px) {
  .dth_wh,
  .dth_wh.w1760 {
    width: 100%;
    padding: 0 15px;
  }
}

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

.sideNav {
  position: fixed;
  /* left: 3.2%;
  top: 50%;
  transform: translateY(-50%); */
  left: 50%;
  transform: translateX(-50%);
  bottom: 2%;
  z-index: 95;
}

.sideNav.hi {
  visibility: hidden;
  opacity: 0;
}
.sideNav ul {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.sideNav li {
  /* margin: 16px 0; */
  margin: 0 16px;
  display: none;
}
.sideNav li.active {
  display: block;
}
.sideNav li a {
  width: auto;
  height: 5rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  -webkit-transform: scale(1.1) translateY(-0.6rem);
  -ms-transform: scale(1.1) translateY(-0.6rem);
  -moz-transform: scale(1.1) translateY(-0.6rem);
  -o-transform: scale(1.1) translateY(-0.6rem);
  transform: scale(1.1) translateY(-0.6rem);
  z-index: 9;
}

.sideNav li.black a {
  color: rgba(0, 0, 0, 0.5);
}
.sideNav li.black .arrow--23PRO {
  border-color: #000;
}
/*.sideNav.black li a {
  background-color: #000000;
}*/
.sideNav li.active a {
/*    background-color: #bf1920;
  outline: 5px solid rgba(255, 255, 255, 0.4);*/
  opacity: 1;
}
/*.sideNav.black li.active a {
  outline: 5px solid rgba(0, 0, 0, 0.1);
}*/

.arrow-0--2Z3_7 {
  content: "";
  display: block;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  width: 1.6875rem;
  height: 1.6875rem;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-animation-name: arrowMove0--3web3;
  -moz-animation-name: arrowMove0--3web3;
    -o-animation-name: arrowMove0--3web3;
       animation-name: arrowMove0--3web3;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
}

@-webkit-keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

@-moz-keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

@-o-keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
       transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -o-transform: translateY(0.13rem) rotate(-45deg);
       transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

@keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
      -o-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
      -o-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}


.arrow-1--3ffAv {
  content: "";
  display: block;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  width: 1.6875rem;
  height: 1.6875rem;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-animation-name: arrowMove1--2gBO-;
  -moz-animation-name: arrowMove1--2gBO-;
    -o-animation-name: arrowMove1--2gBO-;
       animation-name: arrowMove1--2gBO-;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
  margin: -0.9375rem 0 0;
}

@-webkit-keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

@-moz-keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

@-o-keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
       transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -o-transform: translateY(0.13rem) rotate(-45deg);
       transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

@keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
      -o-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
      -o-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

.arrow-2--12bmK {
  content: "";
  display: block;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  width: 1.6875rem;
  height: 1.6875rem;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-animation-name: arrowMove2--JKEw4;
  -moz-animation-name: arrowMove2--JKEw4;
    -o-animation-name: arrowMove2--JKEw4;
       animation-name: arrowMove2--JKEw4;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
  margin: -0.9375rem 0 0;
}


.f_toolbar {
  /* transition: 0.8s ease; */
  right: 0;
  padding-right: 10px;
}
/* .sideNav.bot, */
.f_toolbar.bot {
  /* top: -100vh; */
}
.f_toolbar_ul {
  transform: translateX(100%);
  transition: 1s ease;
}
.f_toolbar:hover .f_toolbar_ul {
  transform: translateX(0);
}

@media (max-width: 1600px) {
}
@media (max-width: 1200px) {
  .section,
  .fp-tableCell {
    height: auto!important;
  }
}
@media (max-width: 1024px) {
}
@media (max-width: 990px) {
  .sideNav {
    display: none;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}


header {
}
.logo {
  width: 14%;
}
.logo a {
  display: block;
}
.logo img {
  display: block;
  max-width: 100%;
}
.logo img, 
header.scroll .logo img, 
header.black .logo img {
  max-height: 80px;
}

.language {
  flex-shrink: 0;
  position: relative;
  padding: 10px 0;
}
.language_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: 0px;
  color: #333333;
  cursor: pointer;
}
.language_btn span {
  padding-left: 100px;
  position: relative;
  padding-right: 18px;
}
.language_btn span::after {
  content: '';
  display: block;
  background: url(../images/lang_icon.png) center no-repeat;
  width: 6px;
  height: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2.5px;
}
header:hover .language_btn,
header.scroll .language_btn,
header.black .language_btn {
  color: #333333;
}
header.show .language_btn {
  color: #333333;
}
header.show .dth_wh:hover .language_btn {
  color: #333333;
}

.language_btn .btn_earth {
  display: block;
  background-image: url(../images/lang.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.language_btn .wz {
  margin: 0 calc(13 / 14 * 1em) 0 calc(10 / 14 * 1em);
}
.language_btn .wz:nth-child(n+3) {
  display: none;
}
.language_btn .btn_arrow {
  width: 0.5em;
  height: calc(4 / 14 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/btn_arrow.png);
}
header:hover .language_btn .btn_arrow,
header.scroll .language_btn .btn_arrow,
header.black .language_btn .btn_arrow {
  background-image: url(../images/btn_arrow1.png);
}
header.show .language_btn .btn_arrow {
  background-image: url(../images/btn_arrow.png);
}
header.show .dth_wh:hover .language_btn .btn_arrow {
  background-image: url(../images/btn_arrow1.png);
}

.language_select {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.language_select a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  color: #333333;
  line-height: 2;
  font-weight: normal;
  padding: 0.2em 0.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}
.language_select a:hover {
  background-color: #0d50be;
  color: #ffffff;
}
.language_select a img {
  display: block;
  width: 2em;
  height: auto;
  margin-right: 0.5em;
}


@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
}
@media (max-width: 1540px) {
  .x-menu>li>a {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
  .x-menu>li>a {
    font-size: 15px;
  }
}
@media (max-width: 990px) {
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}

/* banner */
#banner {}

#banner .swiper-pagination {
  bottom: 9%;
}
#banner li {
  overflow: hidden;
}
#banner li .imgs {
  transform: scale(1);
  transition: 1s linear;
}
/*#banner li.swiper_active .imgs {
  transform: scale(1.15);
  transition: 4.5s linear;
}*/

@media (min-width: 1201px) {
  #banner li .imgs img,
  .banner_video {
    height: 100vh;
    padding-top: 0;
    min-height: auto;
  }
}
@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
}
@media (max-width: 1540px) {
}
@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 990px) {
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}


.titles_new1 {}
.titles_new1 h2 {
  font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #0d50be;
    text-align: left;
}
.titles_new1 h4 {
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: 333;
    text-align: left;
}
.titles_new2 {
  text-align: center;
  position: relative;
  margin-top: 6vh;
}
.titles_new2 h2 {
  font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #000;
}
.titles_new2 h4 {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: capitalize;  
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 0.5);
}
.titles_new2.white h2 {
  color: #ffffff;
}
.titles_new2.white h4 {
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
  .titles_new1 h2 {
    font-size: 2.8vw;
  }
  .titles_new1 h4 {
    font-size: 1.45vw;
  }
  .titles_new2 h2 {
    font-size: 2.4vw;
  }
}
@media (max-width: 1400px) {
  .titles_new1 h4 {
    font-size: 20px;
  } 
  .titles_new2 h2 {
    font-size: 32px;
  }
  .titles_new2 h4 {
    font-size: 17px;
  }
}
@media (max-width: 1200px) {
  .titles_new1 h2 {
    font-size: 36px;
  }
  .titles_new1 h4 {
    font-size: 18px;
  } 
  .titles_new2 h2 {
    font-size: 30px;
  }
  .titles_new2 h4 {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .titles_new1 h2 {
    font-size: 32px;
  }
  .titles_new1 h4 {
    font-size: 16px;
  } 
  .titles_new2 h2 {
    font-size: 28px;
  }
  .titles_new2 h4 {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .titles_new1 h2 {
    font-size: 28px;
  }
  .titles_new1 h4 {
    font-size: 14px;
  } 
  .titles_new2 h2 {
    font-size: 24px;
  }
  .titles_new2 h4 {
    font-size: 14px;
  }
}


.section2 {}
.about_new {}
.about_new .dth_wh {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about_new_left {
  width: 56%;
}
.about_new_text {
  text-align: left;
  font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2.3;
    letter-spacing: 0px;
    color: #444444;
  margin-top: 4.2vh;
  
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
a.mores {
    width: 11.9em;
    background-color: #0d50be;
    border-radius: 6px;
    opacity: 0.9;
  font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 3.5;
    letter-spacing: 0px;
    color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.mores::after {
  content: "";
  display: block;
  width: calc(13 / 16 * 1em);
  height: 2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/mores.png);
  margin-left: 1.25em;
  transition: 0.3s ease;
}

a.mores:hover {
  background-color: #0d50be;
}
a.mores:hover::after {
  margin-left: 2em;
}
.about_new .mores {
  margin-top: 5vh;
}

.about_new_right {
  width: 56%;
  margin-top: 5vh;
}
.about_new_right ul {
  justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.about_new_right li {
  max-width: 48%;
  text-align: center;
}
.about_new_right li:nth-child(2n) {
  margin-right: 0;
}

.about_new_right li .nums {
  display: flex;
  align-items: unset;
  justify-content: center;
}
.about_new_right li .nums .counter {
  font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: 0px;
    color: #333333;
}
.about_new_right li .nums .counter:hover {
  color: #0d50be;
}
.about_new_right li .nums .wz {
  font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: 0px;
    color: #ffffff;
}
.about_new_right li .nums .bde {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
  margin-left: 0.2em;
  color: rgba(51, 51, 51, 0.62);
  justify-content: flex-start;
}
.about_new_right li .nums .bde span {
}
/*.about_new_right li .nums .bde span:nth-child(2) {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}*/
.about_new_right li h4 {
  font-size: 16px;
  color: #666666;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
  margin: 0.5em 0 1.4em;
}

.asort li {
  position: absolute;
  cursor: pointer;
}

.circle dl {
  width: 87px;
  height: 87px;
  position: relative;
  margin: 0 auto;
  margin-top: 0.6vw;
}

.circle dd {
  width: 87px;
  height: 87px;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: scale(0);
  border-radius: 50%;
  background-color: rgba(13, 80, 190, 0.1);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-animation: circleScale 4s linear infinite;
  -moz-animation: circleScale 4s linear infinite;
  -ms-animation: circleScale 4s linear infinite;
  animation: circleScale 4s linear infinite;
}

.circle dt {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0d50be;
}

.asort li:first-child {
  left: 62vw;
  bottom: 9vw;
}

.asort li:nth-child(2) {
  left: 72.5vw;
  bottom: 4.5vw;
}

.asort li:nth-child(3) {
  left: 81.5vw;
  bottom: 8.5vw;
}

@keyframes circleScale {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes circleScale1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
  }
}

@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
  .about_new_text {
    font-size: 17px;
    line-height: 2.2;
  }
  a.mores {
    font-size: 15px;
  }
  .about_new_right li .nums .counter {
    font-size: 4.8vw;
  }
  .about_new_right li .nums .wz {
    font-size: 4.8vw;
  }
  .about_new_right li .nums .bde {
    font-size: 1.8vw;
  }
  .about_new_right li .nums .bde span:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .about_new_text {
    font-size: 16px;
  }
  a.mores {
    font-size: 14px;
  }
  .about_new_right li h4 {
    font-size: 17px;
  }
  .about_new_right li .nums .bde span:nth-child(2) {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .about_new {
    padding: 60px 0 80px;
  }
  .about_new_left {
    width: 52%;
  }
  .about_new_text {
    line-height: 2.1;
    -webkit-line-clamp: 8;
    font-size: 15px;
    margin-top: 20px;
  }
  a.mores {
    font-size: 13px;
  }
  .about_new .mores {
    margin-top: 40px;
  }
  .about_new_right {
    width: 40%;
  }
  .about_new_right li .nums .counter {
    font-size: 50px;
  }
  .about_new_right li .nums .wz {
    font-size: 50px;
  }
  .about_new_right li .nums .bde {
    font-size: 22px;
  }
  .about_new_right li .nums .bde span:nth-child(2) {
    font-size: 14px;
  }
  .about_new_right li h4 {
    font-size: 16px;
    margin: 0.3em 0 1em;
  }
}
@media (max-width: 990px) {
  .about_new {
    padding: 45px 0 50px;
  }
  .about_new .dth_wh {
    flex-flow: column;
  }
  .about_new_left {
    width: 100%;
    max-width: 100%;
  }
  .about_new_text {
    -webkit-line-clamp: 15;
    margin-top: 15px;
  }
  .about_new .mores {
    margin-top: 32px;
  }
  .about_new_right {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }
  .about_new_right li:nth-child(n+1) {
    width: 23%;
    margin: 0;
  }
  .about_new_right li .nums .counter {
    font-size: 40px;
  }
  .about_new_right li .nums .wz {
    font-size: 40px;
  }
  .about_new_right li .nums .bde span:nth-child(2) {
    font-size: 13px;
  }

  .asort {
    display: none;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .about_new {
    padding: 24px 0 30px;
  }
  .about_new_text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 2;
  }
  a.mores {
    font-size: 12px;
  }
  .about_new .mores {
    margin-top: 20px;
  }
  .about_new_right {
    margin-top: 24px;
  }
  .about_new_right ul {
    flex-wrap: wrap;
  }
  .about_new_right li:nth-child(n+1) {
    width: 45%;
  }
  .about_new_right li .nums .counter {
    font-size: 30px;
  }
  .about_new_right li .nums .wz {
    font-size: 30px;
  }
  .about_new_right li .nums .bde {
    font-size: 18px;
  }
  .about_new_right li .nums .bde span:nth-child(2) {
    font-size: 12px;
  }
  .about_new_right li h4 {
    font-size: 14px;
    margin-bottom: 0.6em;
  }
}



.section3 {}
.product_new {
  padding-top: 90px;
}
.product_new_cont {
  position: relative;
  margin-top: 5.2vh;
  justify-content: space-between;
}
.product_new_cont a {
  display: block;
  position: relative;
}
.product_new_cont .text {
  position: absolute;
}
.product_new_cont .text h4 {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product_new_cont .text .sums {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product_new_left {
  width: calc(842 / 1600 * 100%);
}
.product_new_left .imgs {
  /* padding-top: calc(578 / 842 * 100%); */
  padding-top: calc(500 / 842 * 100%);
}
.product_new_left .text {
  left: 5.9%;
  top: 15.5%;
  width: 30%;
}
.product_new_left .text h4 {
  font-size: 34px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #333333;
  transition: 0.3s ease;
}
.product_new_left a:hover .text h4 {
    color: #bf1920;
}
.product_new_left .text .sums {
  font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.9;
    letter-spacing: 0px;
    color: #888888;
  margin-top: 0.88em;
}
.product_new_left .text .mors {
    width: 9.5em;
    background-color: #bf1920;
    border-radius: 2em;
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 3;
    letter-spacing: 0px;
    color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 27%;
  transition: 0.3s ease;
}
.product_new_left a:hover .text .mors {
  background-color: #e51e28;
}
.product_new_left .text .mors::after {
  width: 0.5em;
  height: 0.8em;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/product_new_left.png);
  margin-left: 0.9em;
}

.product_new_right {
  width: calc(744 / 1600 * 100%);
}
.product_new_right .imgs {
  /* padding-top: calc(282 / 744 * 100%); */
  padding-top: calc(243 / 744 * 100%);
}
.product_new_right .text {
  top: 19.5%;
  max-width: 37.6%;
}
.product_new_right a:nth-child(1) .text {
  left: 6.7%;
}
.product_new_right a:nth-child(2) {
  margin-top: calc(15 / 744 * 100%);
}
.product_new_right a:nth-child(2) .text {
  right: 6.7%;
}
.product_new_right .text h4 {
  font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #333333;
  display: block;
  transition: 0.3s ease;
}
.product_new_right a:hover .text h4 {
  color: #bf1920;
}
.product_new_right .text .sums {
  font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.9;
    letter-spacing: 0px;
    color: #888888;
  margin-top: 0.5em;
  -webkit-line-clamp: 1;
}
.product_new_right .text .mors {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/product_new_right.png);
  background-size: 10px auto;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: solid 2px #bf1920;
  border-radius: 50%;
  /* margin-top: 17%; */
  transition: 0.3s ease;
  /* margin-top: 4.5vh; */
  margin-top: 3.5vh;
}
.product_new_right a:hover .text .mors {
  border-color: #bf1920;
  background-color: #bf1920;
  background-image: url(../images/product_new_right1.png);
}

.product_new_uls {
  display: none;
  margin-top: 24px;
}
.product_new_uls ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.product_new_uls li {
  width: 48.5%;
}
.product_new_uls li:nth-child(n+3) {
  margin-top: 8px;
}
.product_new_uls li .imgs {
  padding-top: calc(400 / 500 * 100%);
}
.product_new_uls li h4 {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  padding: 1em;
  text-align: center;
}

@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
  .product_new_left .text h4 {
    font-size: 2vw;
  }
  .product_new_left .text .sums {
    font-size: 16px;
  }
  .product_new_left .text .mors {
    font-size: 14px;
  }
  .product_new_right .text h4 {
    font-size: 1.8vw;
  }
  .product_new_right .text .sums {
    font-size: 16px;
  }
  .product_new_right .text .mors {
    width: 42px;
    height: 42px;
    /* margin-top: 16%; */
    margin-top: 4.2vh;
  }
}
@media (max-width: 1400px) {
  .product_new_left .text .sums {
    font-size: 15px;
  }
  .product_new_left .text .mors {
    font-size: 13px;
  }
  .product_new_right .text .sums {
    font-size: 15px;
  }
  .product_new_right .text .mors {
    width: 40px;
    height: 40px;
    /* margin-top: 12%; */
    margin-top: 3.6vh;
  }
}
@media (max-width: 1300px) {
  .product_new_right .text .mors {
    width: 36px;
    height: 36px;
    /* margin-top: 8%; */
    margin-top: 3vh;
  }
}
@media (max-width: 1200px) {
  .product_new {
    padding: 45px 0 50px;
  }
  .product_new_cont {
    margin-top: 30px;
    flex-flow: column;
  }
  .product_new_left {
    width: 100%;
  }
  .product_new_left .text h4 {
    font-size: 24px;
  }
  .product_new_left .text .mors {
    margin-top: 24px;
  }
  .product_new_right {
    width: 100%;
    margin-top: 20px;
  }
  .product_new_right a:nth-child(2) {
    margin-top: 20px;
  }
  .product_new_right .text h4 {
    font-size: 22px;
  }
  .product_new_right .text .mors {
    width: 32px;
    height: 32px;
    margin-top: 20px;
  }
}
@media (max-width: 990px) {
  .product_new {
    padding: 42px 0 40px;
  }
  .product_new_cont {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .product_new {
    padding: 30px 0 20px;
  }
  .product_new_cont {
    display: none;
  }
  .product_new_uls {
    display: block;
    margin-top: 18px;
  }
}


.section4 {}

.industry_uls {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000000;
}
.industry_uls ul {
  justify-content: space-between;
}
.industry_uls li {
  flex: 1;
  overflow: hidden;
  border-right: 1px solid #969ca6;
}
.industry_uls li:last-child {
  border-right: none;
}
.industry_uls li.cur {
  flex: 1.94;
}
.industry_uls li a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.industry_uls li .back_imgs {
  width: 100%;
  display: flex;
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 20;
}
.industry_uls li .back_imgs .fixed_ratio {
  padding-top: 0;
  width: calc(754 / 1920 * 100vw);
  flex-shrink: 0;
  /* opacity: .65; */
  opacity: .3;
  height: 100%;
}
.industry_uls li.cur .back_imgs .fixed_ratio {
  opacity: 1;
}
.industry_uls li .back_imgs .fixed_ratio img {
  z-index: 10;
}
.industry_uls li .back_imgs .text {
  position: absolute;
  width: 100%;
  padding: 0 10%;
  bottom: 8.8%;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20vh);
}
.industry_uls li.cur .back_imgs .text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0vh);
  z-index: 20;
}
.industry_uls li .back_imgs .text .imgs {
  display: none;
}
.industry_uls li .back_imgs .text h4 {
  font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: 0px;
    color: #ffffff;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.industry_uls li .back_imgs .text .sums {
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.85;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.9);
  margin-top: 1.8em;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: justify;
}
.industry_uls li .back_imgs .text .sums span {
  cursor: pointer;
  margin-left: 0.4em;
  float: right;
  /* position: absolute;
  top: 100%;
  right: 10%; */
}
.industry_uls li .back_imgs .text .sums span:hover {
  color: #bf1920;
}
.industry_uls li .text_img {
  position: absolute;
  left: 10%;
  bottom: 30%;
  z-index: 20;
  width: 80%;
}
.industry_uls li .text_img .imgs {
  display: block;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto;
}
.industry_uls li .text_img .imgs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.industry_uls li .text_img h4 {
  display: block;
  text-align: center;
  font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #ffffff;
  margin-top: 1.25em;
}
.industry_uls li.cur .text_img {
  transform: translateY(20vh);
  opacity: 0;
  visibility: hidden;
}

.industry_uls li,
.industry_uls li .back_imgs .fixed_ratio,
.industry_uls li .back_imgs .text,
.industry_uls li .text_img {
  transition: 0.5s ease;
}

@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
  .industry_uls li .text_img .imgs {
    width: 7.2vw;
    height: 7.2vw;
  }
  .industry_uls li .text_img h4 {
    font-size: 1.45vw;
  }
  .industry_uls li .back_imgs .text h4 {
    font-size: 1.8vw;
  }
  .industry_uls li .back_imgs .text .sums {
    margin-top: 1.6em;
  }
}
@media (max-width: 1400px) {
  .industry_uls li .back_imgs .text .sums {
    margin-top: 1.4em;
  }
  .industry_uls li .text_img h4 {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .industry_new {
    padding-top: 42px;
  }
  .industry_new .titles_new2 {
    position: relative;
  }
  .industry_new .titles_new2.white h2 {
    color: #010101;
  }
  .industry_new .titles_new2.white h4 {
    color: rgba(0, 0, 0, 0.5);
  }
  .industry_uls {
    position: relative;
    margin-top: 24px;
  }
  .industry_uls ul {
    flex-wrap: wrap;
  }
  .industry_uls li,
  .industry_uls li.cur {
    width: 50%;
    border: none;
    flex: none;
  }
  .industry_uls li .back_imgs {
    height: 100vw;
    max-height: 400px;
  }
  .industry_uls li .back_imgs .fixed_ratio {
    width: 100%;
  }
  .industry_uls li:nth-child(n+1) .text_img {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  .industry_uls li .text_img .imgs {
    width: 90px;
    height: 90px;
  }
  .industry_uls li .back_imgs .text h4 {
    font-size: 20px;
  }
  .industry_uls li .back_imgs .text .sums {
    margin-top: 1em;
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .industry_new {
    padding-top: 36px;
  }
  .industry_uls {
    position: relative;
    margin-top: 20px;
  }
  .industry_uls li .back_imgs .text {
    padding: 0 20px;
    bottom: 24px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .industry_new {
    padding-top: 30px;
  }
  .industry_uls {
    margin-top: 16px;
  }
  .industry_uls li, 
  .industry_uls li.cur {
    width: 100%;
  }
  .industry_uls li .back_imgs {
    max-height: 360px;
  }
  .industry_uls li .back_imgs .text,
  .industry_uls li.cur .back_imgs .text {
    transform: none;
    opacity: 1;
    visibility: visible;
    z-index: 20;
  }
  .industry_uls li .back_imgs .text .imgs {
    display: block;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
  .industry_uls li .back_imgs .text .imgs img {
    width: 100%;
    height: 100%;
    position: static;
  }
  .industry_uls li:nth-child(n+1) .text_img {
    display: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }
  .industry_uls li .text_img h4 {
    display: none;
  }
  .industry_uls li .back_imgs .text {
    bottom: 15px;
    padding: 0 15px;
  }
  .industry_uls li .back_imgs .text h4 {
    margin-top: 12px;
    font-size: 18px;
  }
  .industry_uls li .back_imgs .text .sums {
    line-height: 1.8;
    margin-top: 0.8em;
  }
}


.section5 {}
.news_new {
  padding-top: 90px;
}
.news_new .titles_new2 {
  position: relative;
}
.news_new .titles_new2 h4 {
  color: #666666;
}
.titles_new2>a {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  color: #666666;
}
.titles_new2>a:hover {
  color: #bf1920;
}

.news_new_cont {
  margin-top: 5.4vh;
}
.news_new_cont ul {
  justify-content: space-between;
}
.news_new_cont li {
  width: 31.25%;
  transition: 0.3s ease;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
}
.news_new_cont li:hover {
  box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}
.news_new_cont li a {
  display: block;
}
.news_new_cont li .imgs {
  padding-top: calc(300 / 500 * 100%);
}
.news_new_cont li .imgs .imgs_text {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 12px 20px;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.44);
  /* opacity: 0; */
  /* transition: 0.5s ease; */
}
.news_new_cont li:hover .imgs .imgs_text {
  /* opacity: 1; */
}
.news_new_cont li .imgs .imgs_text h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
}
.news_new_cont li .imgs .imgs_text h5 {
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.5;
  /* margin-top: 0.3em; */
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  opacity: .6;
}

.news_new_cont li .text {
  /* padding: 4vh 0 0; */
  padding: 4vh 4% 2vh;
}
.news_new_cont li .text .times {
  font-family: Arial, Helvetica, sans-serif;
    /* font-size: 20px; */
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: 0px;
    color: #666666;
}
.news_new_cont li .text h4 {
  /* font-size: 24px; */
  font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #333333;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1.6vh;
}
.news_new_cont li:hover .text h4 {
  color: #bf1920;
}
.news_new_cont li .text .sums {
  /* font-size: 18px; */
  font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.9;
    letter-spacing: 0px;
    color: rgba(51, 51, 51, 0.8);
  text-align: justify;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.8em;
  margin-top: 1.9vh;
}
.news_new_cont li .text .sums span {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/news_new_cont.png);
  width: calc(40 / 18 * 1em);
  height: 1em;
  margin-left: 2em;
}
.news_new_cont .swiper-pagination {
  position: static;
  margin-top: 6.6vh;
}
.news_new_cont .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #000000;
    opacity: 0.26;
  margin: 0 10px;
}
.news_new_cont .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #bf1920;
  opacity: 1;
}

@media (min-width: 1921px) {
}
@media (max-width: 1660px) {
  .news_new_cont li .text .times {
    /* font-size: 18px; */
    font-size: 15px;
  }
  .news_new_cont li .text h4 {
    /* font-size: 22px; */
    font-size: 20px;
  }
  .news_new_cont li .text .sums {
  }
}
@media (max-width: 1400px) {
  .news_new_cont li .text .times {
    /* font-size: 17px; */
    font-size: 14px;
  }
  .news_new_cont li .text h4 {
    /* font-size: 20px; */
    font-size: 18px;
  }
  .news_new_cont li .text .sums {
    /* font-size: 17px; */
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .news_new {
    padding: 45px 0 50px;
  }
  .titles_new2>a {
    font-size: 13px;
  }
  .news_new_cont {
    margin-top: 30px;
  }
  .news_new_cont li .text {
    padding-top: 20px;
  }
  .news_new_cont li .text .times {
    /* font-size: 16px; */
  }
  .news_new_cont li .text h4 {
    /* font-size: 20px; */
    margin-top: 8px;
  }
  .news_new_cont li .text .sums {
    /* font-size: 16px; */
    margin-top: 10px;
    font-size: 14px;
  }
  .news_new_cont .swiper-pagination {
    margin-top: 42px;
  }
}
@media (max-width: 990px) {
  .news_new {
    padding: 40px 0 45px;
  }
  .news_new_cont {
    margin-top: 24px;
  }
  .news_new_cont ul {
    flex-flow: column;
  }
  .news_new_cont li {
    width: 100%;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
  }
  .news_new_cont li:hover {
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
  }
  .news_new_cont li:nth-child(n+2) {
    margin-top: 20px;
  }
  .news_new_cont li .text {
    /* padding-top: 16px; */
    padding: 20px;
    background-color: #ffffff;
  }
  .news_new_cont li .text .times {
    font-size: 14px;
  }
  .news_new_cont li .text h4 {
    font-size: 18px;
  }
  .news_new_cont li .text .sums {
    font-size: 14px;
    margin-top: 8px;
    height: auto;
  }
  .news_new_cont .swiper-pagination {
    margin-top: 36px;
  }
  .news_new_cont .swiper-pagination .swiper-pagination-bullet {
    margin: 0 9px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .news_new {
    padding: 30px 0 32px;
  }
  .titles_new2>a {
    font-size: 12px;
  }
  .news_new_cont {
    margin-top: 15px;
  }
  .news_new_cont li .text {
    /* padding-top: 12px; */
    padding: 20px 15px 15px;
  }
  .news_new_cont li .text .times {
    font-size: 13px;
  } 
  .news_new_cont li .text h4 {
    font-size: 17px;
  }
  .news_new_cont li .text .sums {
    height: auto;
    line-height: 1.8;
    margin-top: 5px;
  }
  .news_new_cont .swiper-pagination {
    margin-top: 30px;
  }
  .news_new_cont .swiper-pagination .swiper-pagination-bullet {
    margin: 0 6px;
    width: 6px;
    height: 6px;
  }
}


footer {
    background-color: #ededed;
}
footer a {
  font-size: inherit;
  color: inherit;
}
footer a:hover {
  color: #bf1920;
}
.layt_new {
  padding: 10vh 0 10vh;
  background: #fff;
}
.layt_new .dth_wh {
  justify-content: space-between;
}
.layt_new_contact {
  width: 26%;
}
.layt_new_logo {}
.layt_new_logo a {
  display: block;
}
.layt_new_logo img {
  max-width: 80%;
  max-height: 100px;
  object-fit: contain;
  display: block;
}
.layt_new_lx {
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.5);
  margin-top: 5.2%;
}
.layout_ewm {
  justify-content: center;
  max-width: 160px;
  width: 10%;
  margin-top: 0 !important;
}
.layout_ewm li {

}
.layout_ewm li a {
  display: block;
  text-align: center;
}
.layout_ewm li img {
  width: 100%;
}
.layout_ewm li p {
  font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: 0px;
    color: #aeaeae;
  margin-top: 1em;
}

.layt_new_nav {
  width: 55%;
  max-width: 945px;
}
.layt_new_nav .fot_nav {
  justify-content: space-between;
}
.layt_new_nav .fot_nav>li {
  padding-right: 4%;
}
.layt_new_nav .fot_nav>li:last-child {
  padding-right: 0;
}
.layt_new_nav .fot_nav>li>a {
  display: block;
  font-size: 18px;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #fff;
    font-weight: bold;
    background: url(../images/nav_jian.png) right 50% no-repeat;
    padding-right: 25px;
}
.layt_new_nav .fot_nav .x-nav-menu {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 2vh;
}
.layt_new_nav .fot_nav .x-nav-menu dd {
  overflow: hidden;
}
.layt_new_nav .fot_nav .x-nav-menu dd a {
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2.25;
    letter-spacing: 0px;
    color: #a6a9b0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.layt_new_nav .fot_nav .x-nav-menu dd a:hover {
  color: #2d72e2;
}
.layt_new_nav .fot_nav .x-nav-menu>a {
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2.25;
    letter-spacing: 0px;
    color: #a6a9b0;
  margin-top: 1em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.layt_new_nav .fot_nav .x-nav-menu>a:hover {
  color: #2d72e2;
}

.feet {
    background-color: #212f45;
  text-align: center;
  font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: 0px;
    color: #fff;
  padding: 1em 0;
}
.feet .dth_wh {
  flex-wrap: wrap;
  justify-content: space-between;
}
.feet .dth_wh>div {
  margin: 0 0.2em;
}
.feet span {
  font-size: inherit;
}

.feet .ft_prs a {
  margin-left: 10px;
}


@media (min-width: 1921px) {
}

@media (max-width: 1400px) {
  .layt_new_logo img {
    max-height: 90px;
  }
  .layt_new_lx {
    font-size: 15px;
  }
  .layout_ewm {
    width: 240px;
  }
  .layout_ewm li p {
    margin-top: 0.8em;
  }
  .layt_new_nav .fot_nav>li>a {
    font-size: 17px;
  }
  .layt_new_nav .fot_nav .x-nav-menu dd a {
    font-size: 15px;
  }
  .layt_new_nav .fot_nav .x-nav-menu>a {
    font-size: 14px;
  }
  .feet {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .layt_new {
    padding: 36px 0 30px;
  }
  .layt_new_logo img {
    max-height: 80px;
  }
  .layt_new_lx {
    font-size: 14px;
  }
  .layt_new_nav .fot_nav .x-nav-menu {
    margin-top: 10px;
  }
  .layt_new_nav .fot_nav .x-nav-menu dd a {
    font-size: 14px;
  }
  .layt_new_nav .fot_nav .x-nav-menu>a {
    font-size: 13px;
  }
  .layout_ewm {
    width: 200px;
  }
  .layout_ewm li p {
    font-size: 13px;
  }
}
@media (max-width: 990px) {
  .layt_new_contact {
    width: 100%;
  }
  .layt_new_lx {
    margin-top: 20px;
  }
  .layout_ewm {
    margin-top: 20px;
  }
  .layt_new_nav {
    display: none;
  }
  .feet {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .layt_new {
    padding: 24px 0 20px;
  }
  .layt_new_logo img {
    max-height: 60px;
  }
  .layt_new_lx {
    margin-top: 12px;
  }
  .layout_ewm {
    display: flex;
    margin-top: 15px;
  }
  .layout_ewm li:nth-child(2) {
  }
  .layout_ewm li p {
    font-size: 12px;
    margin-top: 0.5em;
  }
}



@media(min-width: 1200px) {
  /* banner */
  #banner .swiper-pagination {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-direction: normal;
  }
  .section.active #banner .swiper-pagination {
    animation-name: fadeInUp;
  }


  .about_new_left,
  .about_new_right {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-direction: normal;
  }
  .section.active .about_new_left {
    animation-name: fadeInUp;
  }
  .section.active .about_new_right {
    animation-name: fadeInUp;
  }


  .product_new .titles_new2,
  .product_new_cont {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-direction: normal;
  }
  .product_new .titles_new2 {
    animation-delay: 0.2s;
  }
  .product_new_cont {
    animation-delay: 0.4s;
  }
  .section.active .product_new .titles_new2 {
    animation-name: fadeInUp;
  }
  .section.active .product_new_cont {
    animation-name: fadeInUp;
  }


  .industry_new .titles_new2,
  .industry_new .industry_uls li {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-direction: normal;
  }
  .industry_new .titles_new2 {
    animation-delay: 0.2s;
  }
  .industry_new .industry_uls li {
    animation-delay: 0.3s;
  }
  .section.active .product_new .titles_new2 {
    animation-name: fadeInDown;
  }
  .section.active .industry_new .industry_uls li {
    animation-name: fadeInDown;
  }
  .section.active .industry_new .industry_uls li:nth-child(2n) {
    animation-name: fadeInUp;
  }


  .news_new .titles_new2,
  .news_new_cont {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-direction: normal;
  }
  .news_new .titles_new2 {
    animation-delay: 0.2s;
  }
  .news_new_cont {
    animation-delay: 0.4s;
  }
  .section.active .news_new .titles_new2 {
    animation-name: fadeInUp;
  }
  .section.active .news_new_cont {
    animation-name: fadeInUp;
  }
}




.flex2 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}


@-webkit-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@-moz-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@-o-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}


.section4 {
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section4 {
    padding: 0;
  }
}

.section4 .title_a1 {
  position: absolute;
  left: 0;
  width: 100%;
  top: 16.9375rem;
  text-align: center;
  z-index: 9;
}

.section4 .title_a1 .tit {
  font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
}

.section4 .title_a1 .ftit {
  font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 768px) {
  .section4 .title_a1 {
    display: none;
  }
}

.section4 .a3_v2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section4 .a3_v2 dl {
  height: 100%;
}

.section4 .a3_v2 dl img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 990px) {
  .section4 .a3_v2 dl img {
    height: 50vh;
  }
  .viewMore--3t8jh{
    display: none;
  }
  .pc-banner .viewMore--3t8jh{
    display: block;
  }
}

@media (max-width: 768px) {
  .section4 .a3_v2 dl img {
    height: 100%;
  }
}

.section4 .a3_v1 {
  z-index: 9;
  position: relative;
}

.section4 .a3_v1 .a3_b1 li {
  width: 25%;
  height: 100vh;
  padding: 0 2%;
  text-align: center;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  overflow: hidden;
}

@media (max-width: 990px) {
  .section4 .a3_v1 .a3_b1 li {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li {
    height: 40vh;
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section4 .a3_v1 .a3_b1 li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.section4 .a3_v1 .a3_b1 li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  background: -webkit-linear-gradient(bottom, #ec1c24 -20%, rgba(44, 44, 44, 0) 30%);
  background: -moz-linear-gradient(bottom, #ec1c24 -20%, rgba(44, 44, 44, 0) 30%);
  background: -o-linear-gradient(bottom, #ec1c24 -20%, rgba(44, 44, 44, 0) 30%);
  background: linear-gradient(0deg, #ec1c24 -20%, rgba(44, 44, 44, 0) 30%);
  width: 100%;
  height: 100%;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.section4 .a3_v1 .a3_b1 li:nth-child(2)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #ec1c24;
  -webkit-animation: scroll2 2.1s linear infinite;
     -moz-animation: scroll2 2.1s linear infinite;
       -o-animation: scroll2 2.1s linear infinite;
          animation: scroll2 2.1s linear infinite;
}

.section4 .a3_v1 .a3_b1 li:nth-child(3)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #ec1c24;
  -webkit-animation: scroll2 1.8s linear infinite;
     -moz-animation: scroll2 1.8s linear infinite;
       -o-animation: scroll2 1.8s linear infinite;
          animation: scroll2 1.8s linear infinite;
}

.section4 .a3_v1 .a3_b1 li:nth-child(4)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #ec1c24;
  -webkit-animation: scroll2 2.4s linear infinite;
     -moz-animation: scroll2 2.4s linear infinite;
       -o-animation: scroll2 2.4s linear infinite;
          animation: scroll2 2.4s linear infinite;
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li:nth-child(5) {
    width: 100%;
  }
}

.section4 .a3_v1 .a3_b1 li:nth-child(5)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #ec1c24;
  -webkit-animation: scroll2 1.5s linear infinite;
     -moz-animation: scroll2 1.5s linear infinite;
       -o-animation: scroll2 1.5s linear infinite;
          animation: scroll2 1.5s linear infinite;
}

.section4 .a3_v1 .a3_b1 li .cont-p {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  margin-bottom: 10.9375rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li .cont-p {
    margin-bottom: 0;
  }
}

.section4 .a3_v1 .a3_b1 li .cont-p u {
  display: block;
  font-size: 0;
  width: 8.525rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li .cont-p u {
    width: 3.5rem;
  }
}

.section4 .a3_v1 .a3_b1 li .cont-p u img {
  width: 100%;
/*  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(97deg) brightness(108%) contrast(105%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(97deg) brightness(108%) contrast(105%);*/
}

.section4 .a3_v1 .a3_b1 li .cont-p .tit {
  font: 600 2rem/1.5em "Noto Sans SC";
  margin: 1rem 0 1rem;
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li .cont-p .tit {
    font-size: 1.35rem;
    margin: 0.5rem 0 0.4rem;
  }
}

.section4 .a3_v1 .a3_b1 li .cont-p .p {
  font: 400 1.2rem/1.5em "Noto Sans SC";
  text-align: center;
  display: none;
  color: rgba(255, 255, 255, 0.8);
}

.section4 .a3_v1 .a3_b1 li .cont-p a.more-b {
  margin-top: 2.75rem;
  display: none;
}

.section4 .a3_v1 .a3_b1 li .cont-p a.more-b span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 45px;
  padding: 15px 45px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li .cont-p a.more-b {
    margin-top: 1rem;
  }
    .section4 .a3_v1 .a3_b1 li .cont-p a.more-b span {
    font-size: 14px;
    padding: 10px 25px;
  }
  .section4 .a3_v1 .a3_b1 li .cont-p .p {
    font-size: 14px;
  }
}

.section4 .a3_v1 .a3_b1 li:hover::before,.section4 .a3_v1 .a3_b1 li.on::before {
  bottom: 0;
}

.section4 .a3_v1 .a3_b1 li:hover .cont-p,.section4 .a3_v1 .a3_b1 li.on .cont-p  {
  margin-bottom: 5.625rem;
}

@media (max-width: 768px) {
  .section4 .a3_v1 .a3_b1 li:hover .cont-p,.section4 .a3_v1 .a3_b1 li.on .cont-p {
    margin-bottom: 0;
  }
}

.section4 .a3_v1 .a3_b1 li:hover .cont-p .p,.section4 .a3_v1 .a3_b1 li.on .cont-p .p  {
  display: block;
}

.section4 .a3_v1 .a3_b1 li:hover .cont-p a.more-b,.section4 .a3_v1 .a3_b1 li.on .cont-p a.more-b {
  display: inline-block;
}


.hmPage5{ background-repeat:no-repeat; background-size:cover;}
.hmPage5 .hmTbox .hmBbtn{ position:absolute; right:0; top:0;}
.hmc5Con{ margin-top: 2.86vw; height:577px; position:relative }
.hmc5Con .prev{ background: url(../images/hmc5ar_pre.png) no-repeat center center; height: 50px; width: 50px; margin-top: -25px; position: absolute; left: -80px; top: 50%; z-index: 1; border-radius:50%; cursor:pointer}
.hmc5Con .next{background: url(../images/hmc5ar_nex.png) no-repeat center center; height: 50px; width: 50px; margin-top: -25px; position: absolute; right: -80px; top: 50%; z-index: 1; border-radius:50%; cursor:pointer}
.hmc5Con .prev:hover{ background: url(../images/hmc5ar_pre_h.png) no-repeat center center; }
.hmc5Con .next:hover{ background: url(../images/hmc5ar_nex_h.png) no-repeat center center; }
.hmc5Firx{ float:left; width:50%;}
.hmc5Firx .bgImg img {
  width: 100%;
}
.hmc5FixaBox{ display:block;}
.hmc5FixaBox .overflowHide{ position: relative;height: 478px;overflow: hidden;}
.hmc5bmx{ width: 100%;position: absolute; left: 0px; right: 0px; bottom: 0px; padding: 26px 60px 20px; color: #FFF;}
.hmc5bmx strong{ font-size: 20px; line-height: 36px; letter-spacing: 1px; display: block; height: 36px; font-weight: bold; }
.hmc5bmx p{ font-size: 16px; line-height: 24px; color: rgba(255,255,255,0.8); margin: 8px 0px 18px; max-height:48px; overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2; }
.hmc5bmx span{ font-size: 16px; line-height: 24px; }
.hmc5slider{ width:50%; float:right;}
.hmc5slider dd{ padding-left:15px;}
.hmc5ra{ display: block; position: relative; padding: 70px 30px 0px; background:#fff; height:478px; }
.hmc5ra strong{ font-size: 20px; color: #333333;line-height: 34px; font-weight: blod; letter-spacing: 1px; display: block; height: 68px; overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;}
.hmc5rx{ font-size: 16px; line-height: 24px; color: #666666; margin: 22px 0px 58px; }
.hmc5rx span{ display: inline-block; margin-left: 20px; text-transform: uppercase; font-size: 14px; }
.hmc5ra p{ font-size: 16px; line-height: 26px; color: #666666; height: 78px; overflow: hidden; margin-bottom: 80px; display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;}
.hmc5ra span.transition{ line-height: 48px; height: 48px; width: 146px; font-size: 14px; letter-spacing: 1px; padding-left: 22px; border: 1px solid #d2dbe3; background: url(../images/hmc5ar_news.png) no-repeat 110px center; border-radius:0.3em; display:inline-block; color: #888888}
.hmc5ra:hover span.transition{ color: #FFF; background: #ed1c24 url(../images/hmc5ar_news_h.png) no-repeat 110px center; border: 1px solid #ed1c24;}
.hmc5ra:hover strong {
  color: #ed1c24;
}


.news-top {
  width: 100%;
  background: #fff;
  margin-top: 50px;
}
.news-top .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.news-top .item .img {
  overflow: hidden;
  width: 48.8%;
}
.news-top .item .img img {
  width: 100%;
  transition: all .5s;
}
.news-top .item .img:hover img {
  transform: scale(1.05);
}
.news-top .item .wz {
  width: 51.2%;
  padding: 4%;
}
.news-top .item .wz .time {
  color: #888888;
  font-size: 15px;
}
.news-top .item .wz h3 {
  color: #000000;
  font-size: 22px;
  font-weight: bold;
  margin-top: 25px;
}
.news-top .item .wz .summary {
  color: #888888;
  font-size: 17px;
  line-height: 30px;
  margin-top: 25px;
}
.news-top .item .wz .more {
  margin-top: 35px;
}

.news-recom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.news-recom .item {
  width: 30%;
}
.news-recom .item .line {
  width: 100%;
  position: relative;
  height: 1px;
  background: #d2d8e1;
}
.news-recom .item .line::before {
  content: '';
  display: block;
  height: 1px;
  background: #0e369a;
  transition: all .5s;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.news-recom .item .time {
  color: #888888;
  font-size: 15px;
  margin: 25px 0;
}
.news-recom .item h3 {
  color: #333333;
  font-size: 18px;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news-recom .item:hover .line::before {
  width: 100%;
}
.news-recom .item:hover h3 {
  font-weight: bold;
  color: #0e369a;
}






@media (max-width:1799px){
.hmc5FixaBox .overflowHide{height:430px;}
.hmc5ra{height:430px;}
.hmc5Con{height:430px; margin-top:2vw;}
.hmPage5 .hmTbox{ margin-top:45px;}
.hmc5bmx strong{font-size:22px; line-height:30px; height:30px;}
.hmc5bmx p{font-size:14px; line-height:22px; height:44px; margin:6px 0px 8px}
.hmc5bmx span{ font-size:14px; line-height:20px;}
.hmc5bmx{padding:18px 20px 20px;}
.hmc5ra{padding:50px 20px 0px;}
.hmc5ra strong{font-size:20px; line-height:30px; height:60px;}
.hmc5rx{font-size:14px; margin:15px 0px 22px;}
.hmc5ra p{font-size:14px; line-height:24px; height:72px; margin-bottom:65px;}
.hmc5ra span.transition{ line-height: 46px; height: 48px; font-size: 14px; }

.news-top .item .wz {
  padding: 2.4%;
}
}
@media (max-width:1379px){
.hmc5FixaBox .overflowHide{height:400px;}
.hmc5ra{height:400px;}
.hmc5Con{height:400px;}
.hmc5ra{padding-top:40px;}
}
@media (max-width:1199px){
.hmc5Con{margin-left:50px; margin-right:50px;}
}
@media (max-width:993px){
.hmPage5{padding:60px 0 70px;}
.hmPage5 .hmTbox{margin-top:0;}
.hmc5Con{margin:35px 0 25px;}
.hmc5Con .prev,.hmc5Con .next{display:none;}
.hmc5Firx{width:100%; float:none;}
.hmc5slider{width:100%; float:none; margin-top:25px;}
.hmc5FixaBox .overflowHide{height:500px;}
.hmc5Con{height:auto;}
.hmc5slider .slick-dots{bottom:-50px;}
.hmc5slider .slick-dots li button{display:none;}
.hmc5slider .slick-dots li { background:#ed1c24; display: inline-block; height: 7px; width: 7px; margin: 0px 6px; position: relative; border-radius:50%; vertical-align:middle; opacity:0.2;}
.hmc5slider .slick-dots li.slick-active{ opacity:1;}
}
@media (max-width:767px){
.hmPage5{padding:30px 0 40px;}
.hmPage5 .hmTbox{transform-origin:left center;}
.hmPage5 .hmTbox p{display:none;}
.hmPage5 .hmTbox .hmBbtn{transform:translateX(80px); top:-6px}
.hmc5bmx strong{font-size:17px;}
.hmc5FixaBox .overflowHide{height:auto;}
.hmc5slider .slick-dots{ bottom:-42px;}
.hmc5ra strong{font-size:18px;}
.hmc5rx {margin: 10px 0px 12px;}
.hmc5ra p{margin-bottom:25px;}
.hmc5ra{padding:30px 15px 0px; height:330px;}
.hmc5ra span.transition{width:140px; background-position:100px center!important;}
}


/*slick.css*/
.slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }
.slick-list { position: relative; display: block; overflow: hidden; margin: 0; padding: 0; }
.slick-list:focus { outline: none; }
.slick-list.dragging { cursor: pointer; cursor: hand; }
.slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.slick-track { position: relative; top: 0; left: 0; display: block; margin-left: auto; margin-right: auto; }
.slick-track:before, .slick-track:after { display: table; content: ''; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }
.slick-slide { display: none; float: left; height: 100%; min-height: 1px; }
[dir='rtl'] .slick-slide { float: right; }
.slick-slide img { display: block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }
.slick-arrow.slick-hidden { display: none; }
.slick-dots { position: absolute; bottom: -25px; display: block; width: 100%; padding: 0; margin: 0; list-style: none; text-align: center; }
.slick-dots li { position: relative; display: inline-block; width: 20px; height: 20px; margin: 0 5px; padding: 0; cursor: pointer; }
.slick-dots li button { font-size: 0; line-height: 0; display: block; width: 20px; height: 20px; padding: 5px; cursor: pointer; color: transparent; border: 0; outline: none; background: transparent; }
.slick-dots li button:hover, .slick-dots li button:focus { outline: none; }
.slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; }
.slick-dots li button:before { font-family: 'slick'; font-size: 6px; line-height: 20px; position: absolute; top: 0; left: 0; width: 20px; height: 20px; content: '鈥�'; text-align: center; opacity: .25; color: black; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.slick-dots li.slick-active button:before { opacity: .75; color: black; }


.product-swiper {
}

.product-swiper .dth_wh {
  position: relative;
}

.product-swiper .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-swiper .item .img {
  width: 55%;
}

.product-swiper .item .img img {
  width: 100%;
  height: auto;
}

.product-swiper .item .text {
  width: 35%;
  margin-top: 50px;
}

.product-swiper .item .text h4 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
}

.product-swiper .titles_new1 {
  margin-bottom: 5vh;
}

.product-swiper .item .text p {
  margin-top: 25px;
  font-size: 17px;
  line-height: 30px;
  color: #333333;
}

.product-swiper h2 {
  color: #000000;
  font-size: 48px;
}

.product-swiper h4 {
  color: #666666;
  font-size: 20px;
}

.product-swiper .mySwiper {
  width: 35%;
/*  position: relative;
  top: -100px;*/
  z-index: 100;
  position: absolute;
  right: 0;
  bottom: 0;
}

.product-swiper .mySwiper .swiper-pagination {
  position: relative;
  justify-content: flex-start;
  margin-top: 60px;
  color: #333;
  font-size: 18px;
  line-height: 1;
  font-size: 24px;
}

.product-swiper .mySwiper .swiper-pagination span {
  margin: 0 5px;
}

.product-swiper .mySwiper .swiper-pagination .swiper-pagination-current {
  color: #333333;
  font-size: 40px;
  font-weight: bold;
}


.product-cont {
  position: relative;
}

.product-tabs .tab-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-tabs .tab-content .text {
  width: 56%;
  position: relative;
  padding-bottom: 12vh;
}

.product-tabs .tab-content .text h3 {
  color: #000;
  font-size: 48px;
  font-weight: bold;
}

.product-tabs .tab-content .text .swiper {
  margin-top: 65px;
  overflow: hidden;
}

.product-tabs .tab-content .text .swiper-pagination-progressbar {
    width: calc(100% - 145px);
    text-align: right;
    left: auto;
    right: 0;
    bottom: 30px;
    top: auto;
    height: 3px;
    border-radius: 3px;
    background: rgba(13, 80, 190, 0.05);
    z-index: 9;
}

.product-tabs .tab-content .text .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: rgba(13, 80, 190, 1);
}

.product-tabs .tab-content .text .swiper-button-prev,
.product-tabs .tab-content .text .swiper-button-next {
  width: 38px;
  height: 38px;
  opacity: 1;
  bottom: 15px;
  top: auto;
}

.product-tabs .tab-content .text .swiper-button-prev::after,
.product-tabs .tab-content .text .swiper-button-next::after {
  display: none;
}

.product-tabs .tab-content .text .swiper-button-prev {
  left: 0;
  background: url(../images/product_prev.png) center no-repeat;
}

.product-tabs .tab-content .text .swiper-button-next {
  left: 56px;
  right: auto;
  background: url(../images/product_prev.png) center no-repeat;
}

.product-tabs .tab-content .text .swiper-button-prev:hover {
  background: url(../images/product_prev1.png) center no-repeat;
}

.product-tabs .tab-content .text .swiper-button-next:hover {
  background: url(../images/product_prev1.png) center no-repeat;
}

.product-tabs .tab-content .text .list {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 30px;
  background: linear-gradient(to bottom, #e3eaf6, #feffff);
}

.product-tabs .tab-content .text .list .img {
  overflow: hidden;
  height: 65px;
  display: flex;
  align-items: center;
}

.product-tabs .tab-content .text .list h5 {
  color: #222222;
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-tabs .tab-content .text .list p {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  height: 78px;
  overflow: hidden;
  margin-top: 20px;
}

.product-tabs .tab-content .text .list .more {
  text-align: right;
}

.product-tabs .tab-content .bigImg {
  width: 44%;
  overflow: hidden;
}

.product-tabs .tab-content .bigImg img {
  width: 100%;
}

.cate-tabs {
  position: absolute;
  left: 0;
  bottom: -60px;
}

.cate-tabs li {
  list-style: none;
  cursor: pointer;
  color: #999999;
  font-size: 18px;
  display: inline-block;
}

.cate-tabs li:not(:last-child) {
  margin-right: 60px;
}

.cate-tabs li.on {
  color: #0d50be;
}



@media (max-width:767px){
  .product-swiper {
    padding: 40px 0 80px 0;
  }
  .product-swiper .item .img {
    width: 100%;
  }
  .product-swiper .item .text {
    width: 100%;
    margin-top: 20px;
  }
  .product-swiper .mySwiper {
    width: 100%;
    z-index: 100;
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }
  .product-swiper h2 {
    font-size: 28px;
  }

  .product-swiper h4 {
    font-size: 14px;
  }
  .product-swiper .item .text h4 {
    font-size: 24px;
  }
  .product-swiper .item .text p {
    font-size: 14px;
  }
}

.job-btn {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 8vh auto 0 auto;
}

.job-btn a {
  margin: 0 30px !important;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0;
}

.job-btn a::after {
  display: none;
}

.job-btn a.xiao::before {
  content: "";
  display: block;
  width: calc(33 / 16 * 1em);
  height: 2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/job_btn1.png);
  margin-right: 1.25em;
  transition: 0.3s ease;
}

.job-btn a.she::before {
  content: "";
  display: block;
  width: calc(33 / 16 * 1em);
  height: 2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../images/job_btn2.png);
  margin-right: 1.25em;
  transition: 0.3s ease;
}

.job-btn a:hover {
  background: rgba(199, 14, 21, 0.8);
  border: 1px solid rgba(199, 14, 21, 0.8);
}


@media(max-width:767px) {
  .job-btn a {
    margin: 0 8px !important;
    font-size: 14px;
  }
}











.index-partner .flex {
  justify-content: space-between;
}

.partner-left {
  width: 48%;
  position: relative;
}

.partner-left .img {
  overflow: hidden;
}

.partner-left .img img {
  width: 100%;
}

.partner-left .address {
  position: absolute;
  bottom: 0;
  left: 0;
}

.partner-left .address p {
  color: #666666;
  font-size: 18px;
  line-height: 34px;
  padding-left: 35px;
}

.partner-left .address p:nth-child(1) {
  background: url(../images/address1.png) 0 50% no-repeat;
}

.partner-left .address p:nth-child(2) {
  background: url(../images/address2.png) 0 50% no-repeat;
}

.partner-left .city {
      position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.partner-left .city li {
  position: absolute;
  position: relative;
  width: 32px;
  height: 32px;
  z-index: 9;
  font-size: 12px;
  color: #000000;
  font-weight: bold;
  text-align: center;
}

.partner-left .city li p {
  margin-top: 5px;
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.partner-left .city li img {
  animation: bounce 1s infinite;
}

/*.partner-left .city li::before {
  content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background-color: rgba(237, 28, 36, 0.3);
    z-index: 99;
    border-radius: 50%;
    animation: circleChange 2s infinite linear .65s;
    animation-delay: 1s;
}

.partner-left .city li::after {
  content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background-color: rgba(237, 28, 36, 0.3);
    z-index: 99;
    border-radius: 50%;
    animation: circleChange 2s infinite linear .65s;
    animation-delay: 0.1s;
}*/

.partner-left .city li:nth-child(1) {
    left: 66%;
    top: 36%;
}

.partner-left .city li:nth-child(2) {
    left: 49%;
    top: 35%;
}

.partner-left .city li:nth-child(3) {
    left: 58%;
    top: 28%;
}

.partner-left .city li:nth-child(4) {
    left: 68%;
    top: 25%;
}

.partner-left .city li:nth-child(5) {
    left: 61%;
    top: 26%;
}

.partner-left .city li:nth-child(6) {
    left: 71%;
    top: 21%;
}

.partner-left .city li:nth-child(7) {
    left: 42%;
    top: 22%;
}

.partner-left .city li:nth-child(8) {
    left: 59%;
    top: 15%;
}

.partner-left .city li:nth-child(9) {
    left: 68%;
    top: 7%;
}

.partner-left .city li:nth-child(10) {
    left: 75%;
    top: 0%;
}

.partner-left .city li:nth-child(11) {
    left: 73%;
    top: 2%;
}

.partner-left .city li:nth-child(12) {
    left: 62%;
    top: 11%;
}

.partner-left .city .add {
  width: 26px;
  height: 32px;
  background: url(../images/addre.png) center no-repeat;
  position: absolute;
  left: 71%;
  top: 51%;
}

@keyframes circleChange{
  0%{transform: scale(1);opacity: 0.95;}
  25%{transform: scale(2);opacity: 0.75;}
  50%{transform: scale(3);opacity: 0.5;}
  75%{transform: scale(4);opacity: 0.25;}
  100%{transform: scale(5);opacity: 0.05;}
}

.partner-right {
  width: 45%;
}

.partner-right .titles {
  text-align: left;
}

.partner-right .titles h2 {
  font-size: 40px;
  font-weight: bold;
  color: #000;
}

.partner-right .titles h4 {
  font-size: 16px;
  color: #666;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 36px;
  margin-top: 8px;
}

.partner-right .text {
  color: #666;
  font-size: 17px;
  line-height: 28px;
  margin-top: 15px;
}

.partner-right .more {
  margin-top: 6vh;
  position: relative;
  text-align: right;
}

.partner-right .more a {
  color: #999999;
  font-size: 15px;
}

.partner-right .more::before {
  content: '';
  display: inline-block;
  width: calc(100% - 105px);
  height: 1px;
  background: rgba(13, 80, 190, 0.1);
  position: absolute;
  left: 0;
  top: 50%;
}

.partner-list {
  margin-top: 60px;
  flex-wrap: wrap;
}

.partner-list li {
  width: calc(100% / 3 - 5px);
  margin-bottom: 5px;
}

.partner-list li img {
  width: 100%;
  border-radius: 3px;
}


@media (max-width:767px){

  .partner-left {
    width: 100%;
  }
  .partner-right {
    width: 100%;
    margin-top: 30px;
  }

  .partner-right .titles h2 {
    font-size: 28px;
  }

  .partner-left .address {
    position: relative;
  }

  .product-tabs .tab-content .text, .product-tabs .tab-content .bigImg {
    width: 100%;
  }

  .product-tabs .tab-content .text h3 {
    font-size: 28px;
  }

  .product-tabs .tab-content .text .swiper {
    margin-top: 40px;
  }

  .product-tabs .tab-content .text .list {
    padding: 15px;
  }

  .product-tabs .tab-content .text .list h5 {
    font-size: 14px;
  }

  .product-tabs .tab-content .text .list p {
    font-size: 12px;
  }

  .cate-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    right: 0;
  }

  .cate-tabs li {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 32.5%;
  }

  .cate-tabs li:not(:last-child) {
    margin: 0;
  }

  .titles_new2 {
    margin-top: 0;
  }

  .news-top {
    margin-top: 30px;
  }

  .news-top .item .img,.news-top .item .wz {
    width: 100%;
  }

  .news-top .item .wz h3 {
    font-size: 16px;
  }

  .news-top .item .wz .summary {
    font-size: 14px;
  }

  .news-recom .item {
    width: 100%;
    margin-bottom: 10px;
  }

  .news-recom .item .time {
    font-size: 12px;
    margin: 10px 0;
  }

  .news-recom .item h3 {
    font-size: 14px;
  }

  .partner-list {
    margin-top: 40px;
  }
}


.bbdfx {
  margin-top: 30px;
}

.bbdfx li{
    float: left;
    width: 46px;
    height: 46px;
    border: solid 1px #9c9c9c;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    list-style: none;
    position: relative;
    
}
.bbdfx li .img{
    overflow: hidden;
}
.bbdfx li .img img{
    max-width: 100%;
}
.bbdfx li .ewm {
  position: absolute;
    top: -110px;
    left: -50%;
    display: none;
}
.bbdfx li:hover .ewm {
  display: block;
}
/*.bbdfx li:hover{
    border: solid 1px #0a2777;
    background-color: #0a2777;
}

.bbdfx li:hover .img img{
    opacity: 1;
}*/

@media (min-width: 1200px) {
  .product-swiper .dth_wh {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-direction: normal;
  }

  .section4 .dth_wh,.section5 .dth_wh,.section7 .dth_wh {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-direction: normal;
  }

  .section.active.product-swiper .dth_wh {
    animation-name: fadeInUp;
  }

  .section.active.section4 .dth_wh {
    animation-name: fadeInUp;
  }

  .section.active.section5 .dth_wh {
    animation-name: fadeInUp;
  }

  .section.active.section7 .dth_wh {
    animation-name: fadeInUp;
  }
}