﻿@charset "utf-8";

:root {
  --main-color: #0D4DA1;
  --dark-color: #333;
  --white-color: #FFFFFF;
  --black-color: #231F20;
  --green-color: #3AB54A;
  --blue-color:#001EC8;
}

/* footer */
footer {
  display: flex;
  flex-flow: column;
  padding-top: 58px;
  background-color: var(--main-color);
}

.footer>.my-container>div {
  position: relative;
  z-index: 1;
}

.footer>.my-container>div::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 35%;
  background-image: url(../images/foot_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.foot_code {
  text-align: center;
}

.foot_code>div {
  padding-left: 30px;
}

.foot_code img {
  border-radius: 6px;
  width: 80px;
  overflow: hidden;
}

.foot_code p {
  padding-top: 10px;
  color: var(--white-color);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.foot_bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 290;
  line-height: normal;
}

.foot_bottom a {
  color: inherit;
}

.footer-bottom-mean {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 55px;
  margin-top: 55px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-mean-left {
  display: flex;
  flex-direction: column;
}

.footer-bottom-mean-right {
  flex: 1;
  display: flex;
  padding-left: 30px;
}

.footer-left-title {
  padding-bottom: 40px;
  color: var(--white-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


.footer-left-adress {
  display: flex;
  align-items: flex-start;
  padding-bottom: 20px;
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-left-adress a {
  color: inherit;
}

.footer-left-adress:last-child {
  padding-bottom: 0;
}

.footer-left-adress img {
  width: 24px;
  margin-right: 10px;
}

.footer-bottom-item:first-child {
  margin-left: auto;
}

.footer-bottom-item {
  margin-left: 60px;
}

.footer-bottom-item ul {
  margin-top: 38px;
}

.footer-bottom-item ul li {
  margin-bottom: 7px;
}

.footer-bottom-item ul li a {
  position: relative;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.7;
}

.footer-bottom-item ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--white-color);
  transform-origin: bottom right;
  opacity: 0.8;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.footer-bottom-item ul li a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.footer-bottom-item ul li:last-child {
  margin-bottom: 0;
}

.footer-bottom-item h3 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.footer-bottom-item h3 a {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.footer-bottom-item h3 a:hover {
  font-weight: 600;
}

@media (max-width: 1680px) {
  .footer-bottom-item {
    margin-left: 40px;
  }
}

@media (max-width: 1580px) {
  .footer-bottom-item {
    margin-left: 25px;
  }
}

@media (max-width: 1439px) {
  .footer-bottom-mean-right {
    justify-content: space-between;
    padding-left: 50px;
  }

  .footer-bottom-item {
    margin-left: inherit;
  }

  .footer-bottom-item:first-child {
    margin-left: inherit;
  }

}

@media (max-width: 1279px) {

  .footer-bottom-mean {
    padding-top: 35px;
    margin-top: 35px;
    padding-bottom: 38px;
  }

  .footer-bottom-mean {
    flex-flow: column;
  }

  .footer-bottom-mean-right {
    padding-top: 30px;
    justify-content: space-between;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  footer {
    padding-top: 40px;
}
  .foot_top {
    flex-flow: column;
  }

  .foot_code {
    padding-top: 40px;
  }

  .foot_code>div:first-child {
    padding-left: 0;
  }

  .footer-bottom-item ul {
    display: none !important;
  }

  .footer-left-title {
    padding-bottom: 30px;
    font-size: 22px;
  }

  .footer-bottom-mean {
    padding-bottom: 10px;
  }

  .footer-bottom-mean-right {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-bottom-item {
    width: 25%;
    padding-bottom: 20px;
  }

  .foot_bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    line-height: 1.8;
  }

  .footer-bottom-item h3 a {
    font-size: 16px;
  }

}

/* banner */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 99;
}

.index_banner_swp,
.index_banner .swiper-slide {
  width: 100%;
  height: 100%;
}

.img_pc {
  width: 100%;
  height: 100%;
}

.img_pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ban_mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  max-height: 400px;
  background-image: url(../images/ban_mask.png);
  background-repeat: repeat-x;
  background-position: top;
  z-index: 8;
}

.ban_text {
  position: absolute;
  left: 0;
  bottom: 150px;
  width: 100%;
  z-index: 9;
}

.ban_text .my-container .t {
  padding-right: 100px;
}

.ban_text .t1 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--white-color);
  overflow: hidden;
  transition: all 1.2s .4s;
}

.ban_text .t>i {
  font-style: normal;
  line-height: inherit;
  display: block;
}

.ban_text .t>i {
  transform: translateY(200%);
  transition: all 1.6s cubic-bezier(.33, 1, .68, 1);
}

.ban_text .t4 {
  padding-top: 40px;
  overflow: hidden;
  transition: all 1.2s 1s;
}

.in_more {
  display: flex;
}

.in_more a {
  position: relative;
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transform: translateY(200%);
  transition: transform 1.6s cubic-bezier(.33, 1, .68, 1);

  z-index: 1;
}

.in_more a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  border-radius: 10px;
  z-index: -1;
}

.in_more a i {
  display: inline-block;
  background-image: url(../images/jt_white.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}

.in_more a:hover {
  border-color: var(--green-color);
  background: var(--green-color);
}

.banner_button {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 180px;
  z-index: 8;
}

.banner_button .my-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 1px;
}

.banner_button .ban_prev,
.banner_button .ban_next {
  display: flex;
  padding: 16px;
  align-items: flex-start;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  cursor: pointer;
}

.banner_button .ban_prev:hover,
.banner_button .ban_next:hover {
  border-color: var(--green-color);
  background-color: var(--green-color);
}

.banner_button .num {
  margin-left: 13px;
  margin-right: 13px;
  display: flex;
  align-items: center;
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  font-family: 'Archivo';
}

.banner_button .num span {
  min-width: 22px;
  text-align: right;
}

.banner_button .num em {
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
  font-style: normal;
}

.index_banner .swiper-slide.swiper-slide-active .t>i,
.index_banner .swiper-slide.swiper-slide-active .in_more a {
  transform: translateY(0);
}


@media (max-width: 1680px) {

  .ban_text {
    bottom: 120px;
  }
  .banner_button {
    bottom: 150px;
  }
}
@media (max-width: 1440px) {

  .ban_text {
    bottom: 80px;
  }
  .banner_button {
    bottom: 110px;
  }

}

@media (max-width:1279px) {
  .ban_text .my-container .t {
    padding-right: 215px;
  }

}
/* @media (min-width: 768px) and (max-width: 991px) {
  .banner {
    height: auto;
  }
  .banner .pc_show {
    display: none !important;
  }
  .banner .mo_show {
    display: block !important;
  }


} */
@media (max-width: 991px) {
  .banner .pc_show {
    display: none !important;
  }
  .ban_text {
    bottom: 50px;
  }
  .banner_button {
    height: auto;
    bottom: 50px;
  }

  .banner_button .my-container {
    height: auto;
  }
  .banner_button .num {
    margin-left: 8px;
    margin-right: 8px;
}

}



@media (max-width: 767px) {
  .ban_text .my-container .t {
    padding-right: 0;
  }
  .ban_text {
    bottom: 150px;
  }
  .banner_button {
    height: auto;
    bottom: 30px;
  }

  .banner_button .ban_prev,
  .banner_button .ban_next {
    padding: 10px;
  }
  .banner_button .my-container {
    justify-content: center;
  }
}

/* index title */
.index_title {}

.index_title .small_t {
  color: var(--black-color);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}

.index_title .big_t {
  padding-top: 14px;
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.index_title .w {
  color: var(--white-color);
}
.index_more {
  display: flex;
}

.index_more a {
  display: inline-flex;
  padding: 13px 14px 13px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
}

.index_more a svg {
  margin-left: 10px;
}

.index_more a:hover {
  background: var(--main-color);
  color: #fff;
}

.index_more a:hover svg path {
  stroke: #fff;
}

@media (max-width:767px) {

}

@media (max-width:767px) {
  .index_title {
    flex-flow: column;
    align-items: flex-start;
  }
}

/* product */
.in_product {
  padding-top: 100px;
  padding-bottom: 144px;
  overflow: hidden;
}
.pro_two_list {
  padding-top: 80px;
  width: 100%;
}

.pro_two_list .ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: auto;
}

.pro_two_list .ul .box {
  width: calc(14% - 10px) !important;
  min-width: 185px;
}
.pro_two_list .box.act {
  width:calc(44% - 10px) !important;
}

.pro_two_list .box {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.pro_two_list .bg {
  position: relative;
  display: flex;
  padding:50px 40px 84px 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 512px;
  border-radius: 20px;
  background: #F6F8FA;
  overflow: hidden;
  z-index: 1;
}
.pro_two_list .bg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: url(../images/pro_bg_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  opacity: 0;
  z-index: -1;
}
.pro_two_list .label {
  position: relative;
  z-index: 9;
}

.pro_two_list .label span {
  display: flex;
  color: #BDBEC0;
  font-family: 'Archivo';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height:1;
}
.pro_two_list .bottom {
  position: relative;
  width: 100%;
}
.pro_two_list .bottom .title {
  color: var(--black-color);
font-style: normal;
font-weight: 700;
line-height: normal;
}
.pro_two_list .bottom .text {
  height: 0;
  opacity: 0;
  min-width: 250px;
  transform: translateY(30px);
  transition: opacity .4s, transform .6s;
  transition-delay: .3s;
  overflow: hidden;
}

.pro_two_list .bottom .text .p {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  padding-top: 30px;
}
.pro_two_list .bottom .text .p a{
  display: block;
  margin-bottom: 13px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.pro_two_list .bottom .text .p a:nth-child(n + 6) {
  display: none;
}
.pro_two_list .bottom .text .p a:last-child {
  margin-bottom: 0;
}
.pro_two_list .bottom .text .p a:hover {
  color: var(--main-color);
}
.pro_two_list .bottom .text .title {
  margin-bottom: 16px;
}
.pro_more {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  opacity: 0;
  transition: opacity .4s;
}

.pro_more a {
  display: inline-flex;
  padding: 13px 14px 13px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--green-color);
  background-color: var(--green-color);
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
}

.pro_more a svg {
  margin-left: 10px;
}
.pro_two_list .thumb {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 33px;
  padding-bottom: 33px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.pro_two_list .thumb img {
  -webkit-transition: -webkit-transform .4s;
	transition: -webkit-transform .4s;
	-o-transition: transform .4s;
	transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s;
	-webkit-transition: transform .4s;
}

.pro_two_list .thumb a:hover img {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.pro_two_list .box.act .bottom {
  height: calc(100% - 56px);
}
.pro_two_list .box.act .bottom>.title {
  opacity: 0;
  font-size: 0;
}
.pro_two_list .box.act .bottom .text {
  height: auto;
  transform: translateY(0px);
  opacity: 1;
}
.pro_two_list .box.act .pro_more {
  opacity: 1;
}
.pro_two_list .box.act .thumb {
  opacity: 1;
  transition: opacity .4s;
  transition-delay: .2s;
}
.pro_two_list .box.act .bg {
  padding-left: 30px;
  padding-right: 30px;
}
.pro_two_list .box.act .bg::before {
  opacity: 1;
  transition: opacity .3s;
  transition-delay: .1s;
}
.pro-pagination {
  display: none;
}
.pro-pagination .swiper-pagination-bullet-active {
  background: var(--main-color);
}
@media (max-width:1580px) {

.pro_two_list .bg {
  padding:50px 15px 84px 20px;
}

}
@media (max-width:1439px) {
  .pro_two_list .thumb {
    width: 65%;
  }

}

@media (max-width:1365px)  and (min-width: 1101px) {
 
  .pro_two_list .box.act .pro_more {
    position: relative;
    margin-top: 30px;
  }
  .pro_two_list .thumb {
    top: inherit;
    bottom:0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    height: auto;
   justify-content: center;
  }
  .pro_two_list .thumb img{
    max-height: 200px;
  }
  .pro_two_list .bg{
    height: 560px;
  }

}

@media (max-width:1365px) {
  .pro_two_list .ul .box {
    width: 175px !important;
    min-width: auto;
}
.pro_two_list .box.act {
  width: calc(100% - 740px) !important;
}
}
@media (max-width:1200px) {
  .pro_two_list .bottom .text {
    min-width: 150px;
  }

}
@media (max-width:1100px) {
  .in_product {
    padding-top: 80px;
    padding-bottom: 100px;
  }
 
  .pro_two_list .ul .box,
  .pro_two_list .box.act {
    margin-bottom: 20px;
    width: 100% !important;
  }
.pro-pagination {
  display: flex;
  justify-content: center;
}
}
@media (max-width:767px) {
  .in_product {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pro_two_list {
    padding-top: 40px;
  }
  .pro_two_list .box.act .pro_more {
    position: relative;
    margin-top: 30px;
  }
  .pro_two_list .thumb {
    position: relative;
    top: inherit;
    bottom:0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    height: auto;
  justify-content: center;
  }
  .pro_two_list .thumb img{
    max-height: 300px;
  }
  .pro_two_list .bg{
    padding: 30px 15px 0px 20px;
    height: 630px;
  }
  .pro_two_list .bottom .text .p a {
    margin-bottom: 10px;
}
  .pro_two_list .bottom .text .p {
    margin-top: 20px;
    padding-top: 0;
  }
  .pro_two_list .box.act .bottom .text {
    padding-top: 20px;
  }
  .pro_two_list .label span{
    font-size: 26px;
  }


}

/* case */
.index_case{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.in_case_title {
  position: absolute;
  left: 0;
  top: 92px;
  width: 100%;
  z-index: 9;
}
.in_top_bg {
  width: 100%;
  height: 100%;
}

.in_four_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.in_four_mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.2;
background: #000;
}

.perform {
	position: relative;
	padding-top: 140px;
	z-index: 9;
}

.in_four_swiper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.in_four_swiper .swiper-container {
	width: 100%;
	height: 100%;
}

.in_four_swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

.perform_swiper .bg {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 70px;
  padding-bottom: 70px;
	padding-left: 16px;
	padding-right: 16px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-right: 1px solid rgba(217,217,217, 0.3);
	transition: all .4s;
	z-index: 1;
}

.perform_swiper .swiper-slide:last-child .bg {
  border-right: none;
}

@media screen and (min-width: 1025px) {

	.perform_swiper .bg::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 353px;
    background-image: url(../images/case_b_mask.png);
    background-repeat: no-repeat;
		z-index: 10;
	}
}

.perform_swiper .bg>div {
  position: absolute;
  left: 16px;
  bottom: 70px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: calc(100% - 32px);
  text-align: center;
  transition: all .4s;
}


@media (min-width:992px) {

  .perform_swiper .bg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: var(--main-color);
    transition: all .5s;
    z-index: -1;
  }
  
  .perform_swiper .bg:hover>div{
    top: 50%;
    transform: translateY(-50%);
    bottom: inherit;
  }
  
  .perform_swiper .bg:hover:before {
    opacity: 0.8;
  }

}

.perform_swiper .t {
	margin-top: 16px;
  height: 52px;
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; 

}

.perform_swiper .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 80px;
}

.perform_swiper .case_more {
	position: relative;

  display: flex;
  justify-content: center;
	opacity: 0;
  height: 0;
  overflow: hidden;
	transition: all .5s;
}
.perform_swiper .case_more a {
  display: flex;
  padding: 13px 14px 13px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
border: 1px solid #FFF;
background: rgba(241, 243, 245, 0.20);
color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; 
transition: all .3s;
}
.perform_swiper .case_more svg {
  margin-left: 10px;
}
.perform_swiper .bg:hover .case_more {
  margin-top: 14px;
  height: auto;
	opacity: 1;
}
.case_more a:hover {
  background-color: var(--green-color);
  border-color: var(--green-color);
}
.perform-prev,
.perform-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  /* background-color: rgba(255,255,255,0.3); */
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9;
}
.perform-prev {
	left: 10px;
}

.perform-next {
	right: 10px;
}
.perform-prev:hover,
.perform-next:hover  {
  background-color: var(--main-color);
  border-color: var(--main-color);
}


.in_top_bg .bg {
	width: 100%;
	height: 100%;
}
.in_top_bg .mo_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
  z-index: -1;
}
.in_top_bg .bg img,
.in_top_bg .mo_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_top_bg .b_box{
  display: none;
}
.in_top_bg .li {
  width: 100% !important;
  height: 100%;

}
@media (min-width:992px) {
  .in_top_bg .li {
   
    display: none;
    opacity: 0;
    transition: opacity .3s;
  }
  
  .in_top_bg .swiper-slide-active {
    display: block;
    opacity: 1;
  }
}
@media (max-width:1279px) {

  .perform_swiper .bg:hover .case_more {
  margin-top: 40px;
}

}
@media (max-width:1024px) {

	.perform_swiper {
		padding-top: 0;
	}

}

@media (max-width:991px) {
  .index_case {
    height:700px;
  }
	.perform_swiper .swiper-slide {
		/* height: 80px; */
		overflow: hidden;
	}
  .perform-prev,
  .perform-next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .perform_swiper .bg {
    padding-bottom: 30px;
  }
  .perform_swiper .bg>div {
    bottom: 40px;
}
.in_four_swiper {
  display: none;
}
.in_top_bg .b_box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

.in_top_bg .t {
	margin-top: 16px;
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; 

}

.in_top_bg .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 80px;
}
  
.in_top_bg .case_more {
	position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.in_top_bg .case_more a {
  display: flex;
  padding: 13px 14px 13px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
border: 1px solid #FFF;
background: rgba(241, 243, 245, 0.20);
color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; 
transition: all .3s;
}
.in_top_bg .case_more svg {
  margin-left: 10px;
}


}

@media (max-width:767px) {
  .index_case {
    height: 550px;
  }
	.in_top_bg .li .mo_text {
		position: relative;
		z-index: 9;
	}
  .in_case_title {
    top: 50px;
}

	.in_four_swiper {
		position: absolute;
		margin-top: 0;
		left: 0;
		top: inherit;
		bottom: 0;
		/* height: auto; */
	}

	.perform_swiper {
		padding-top: 0px;
	}

	.perform_swiper .t {
		margin-top: 0;
		font-size: 22px;
		font-weight: 400;
    height: auto;
	}

	.perform_swiper .icon {
		width: 60px;
	}

	.perform_swiper .bg:hover {
		padding: 14px 0;
	}

	.perform_swiper .case_more {
    margin-top: 30px;
    opacity: 1;
  }

}


@media (max-width:767px) {}

/* about */
.in_about_z {
  position: relative;
  padding-top: 166px;
  padding-bottom: 90px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.in_about_z .aboutz_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.in_about_z .aboutz_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_about_z .index_title {
  align-items: flex-start;
}

.about_year {
  display: flex;
  flex-flow: column;
  text-align: right;
}

.about_year strong {
  display: inline-block;
  color: var(--main-color);
  font-family: 'Archivo bold';
  font-size: 130px;
  font-style: normal;
  font-weight: 900;
  line-height: 0.9;
}

.about_year span {
  padding-top: 10px;
  display: block;
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.in_about_bottom {
  position: relative;

  z-index: 1;
}

.in_aboutz_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 90px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(3px);
}

.in_aboutz_cont .mid_line {
  width: 1px;
  height: 192px;
  opacity: 0.4;
  background: #ACAEB9;
}

.left-section {
  flex: 1;
  max-width: 420px;
}

.company-name {
  color: var(--main-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 17px;
}

.business-scope {
  margin-top: 17px;
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 290;
  line-height: 27px;
}

.middle-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.ranking-number {
  margin-top: 52px;
  color: var(--green-color);
  font-family: 'Archivo bold';
  font-size: 130px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.6;
  display: flex;
  align-items: flex-end;
}

.ranking-number em {
  color: var(--dark-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ranking-text {
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ranking-text strong {
  font-weight: 700;
}

.right-section {
  width: 422px;
  max-width: 40%;
  color: #1a5276;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #ACAEB9;
}

.stats-item:last-child {
  margin-bottom: 0;
}

.stats-number {
  font-weight: bold;
}

.stats-number {
  color: var(--main-color);
  font-family: 'Archivo bold';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
}

.stats-number em {
  margin-left: 4px;
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stats-label {
  color: var(--black-color);
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width:1680px) {
  .about_year strong,
  .ranking-number {
    font-size: 120px;
  }

}

@media (max-width:1580px) {
  .about_year strong,
  .ranking-number {
    font-size: 110px;
  }
  .in_aboutz_cont {
    padding: 40px 70px;
  }
}

@media (max-width:1440px) {
  .about_year strong,
  .ranking-number {
    font-size: 100px;
  }

  .in_aboutz_cont {
    padding: 40px 60px;
  }
}
@media (max-width:1439px) {
  .in_aboutz_cont {
    padding: 40px 50px;
  }
  .stats-number {
    font-size: 34px;
}
.right-section {
  max-width: 35%;
}


}
@media (max-width:1365px) {
  .about_year strong,
  .ranking-number {
    font-size: 80px;
  }
  .stats-number {
    font-size: 32px;
}
  .in_aboutz_cont {
    /* margin-top: 350px; */
    padding: 40px 30px;
  }

}
@media (max-width:1279px) {
  .right-section {
    max-width: 38%;
  }
.in_aboutz_cont .mid_line {
  margin-left: 15px;
  margin-right: 15px;
}
.in_about_z {
  padding-top: 110px;
}
}
@media (max-width:991px) {
  .in_aboutz_cont {
    margin-top: 200px;
    flex-flow: column;
  }
  .in_aboutz_cont .mid_line {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    height: 1px;
}
.left-section {
  flex: inherit;
  width: 100%;
  max-width: 100%;
}
.middle-section {
  width: 100%;
 align-items: flex-start;
}
.right-section {
  max-width: 100%;
  width: 100%;
}
.about_year strong,
.ranking-number {
  font-size: 70px;
}


}
@media (max-width:767px) {
.in_about_z {
  padding-top:50px;
  padding-bottom: 30px;
  min-height: auto;
}
.about_year {
  padding-top:30px;
  width: 100%;
  text-align: left;
}
.about_year strong,
.ranking-number {
  font-size: 60px;
}
.business-scope {
  font-size: 16px;
  line-height: 25px;
}
.in_aboutz_cont {
  margin-top:50px;
  padding-left: 25px;
  padding-right: 25px;
}
.stats-item {
  flex-flow: column;
  align-items: flex-start;
}
.stats-label {
  padding-top: 10px;
  font-size: 16px;
}
.in_about_bottom {
  padding-top: 30px;
  padding-bottom: 50px;
}
.stats-number {
  font-size: 30px;
}


}

/* index new */
.in_new {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.in_new_list {
  margin-top: 76px;
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
}

.in_new_list ul {
  display: flex;
  margin-left: -46px;
  margin-right: -46px;
}

.in_new_list ul li {
  padding: 52px 46px;
  width: 33.33%;
  border-right: 1px solid #D1D1D1;
}
.in_new_list ul li:last-child {
  border-right: 0;
}
.in_new_list .thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.in_new_list .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.in_new_list .thumb img {

  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.in_new_list a:hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.in_new_list .time {
  margin-top: 30px;
  color: #999;
  font-family: 'Archivo';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.in_new_list .title {
  margin-top: 30px;
  color: var(--black-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  height: 72px;
}

.in_new_list .new_more {
  margin-top: 30px;
}

.new_more {
  display: flex;
}

.new_more span {
  display: flex;
  align-items: center;
  padding: 13px 14px 13px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #D1D1D1;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
}

.new_more span svg {
  margin-left: 10px;
}

.in_new_list a:hover .new_more span {
  border-color: var(--green-color);
  background-color: var(--green-color);
  color: var(--white-color);
}

.in_new_list a:hover .new_more span svg path {
  stroke: var(--white-color);
}
@media (max-width:1366px) {
  .in_new_list .title {
    font-size: 22px;
  }

}
@media (max-width:1279px) {
  .in_new_list .title {
    font-size: 22px;
  }
  .in_new_list ul {
    margin-left: -30px;
    margin-right: -30px;
  }
  
  .in_new_list ul li {
    padding: 52px 30px;
  }


}
@media (max-width:991px) {
  .in_new_list .title {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
    height: 60px;
  }
  .in_new_list ul {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .in_new_list ul li {
    padding: 45px 20px;
  }

}

@media (max-width:767px) {
  .in_new {
    padding-top: 50px;
 
}
  .in_new_list {
    margin-top: 40px;
}
  .in_new_list ul {
    flex-wrap: wrap;
  }
  .in_new_list ul li {
    margin-left: 20px;
    margin-right: 20px;
    padding: 25px 0;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #D1D1D1;
  }
  .in_new_list ul li:last-child {
    border-bottom: none;
  }
  .in_new_list .time {
    margin-top: 20px;
}
  .in_new_list .title {
    margin-top: 10px;
    font-size: 18px;
    height: 50px;
    line-height: 25px;
  }
  .in_new .index_more {
    margin-top: 30px;
    justify-content: center;
  }
  .new_more span,
  .index_more a,
  .perform_swiper .case_more a {
    padding: 10px 10px 10px 14px;
    font-size: 14px;
}


}


/* about */
.in_about {
  position: relative;
  padding-top: 100px;
  padding-bottom: 214px;
  overflow: hidden;
  z-index: 1;
}

.in_about .about_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.in_about .about_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_about_link {
  padding-top: 95px;
}

.in_about_link ul {
  margin-left: -35px;
  margin-right: -35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.in_about_link ul li {
  padding-left: 35px;
  padding-right: 35px;
  width: 25%;
}

.in_about_link ul li:nth-child(2n) {
  padding-top: 60px;
}

.in_about_link .bg {
  position: relative;
  display: block;
  border-radius: 20px;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.in_about_link .bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  /* background: linear-gradient(147deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 40.39%); */
  background: linear-gradient(22deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 40.39%);
}

.in_about_link .thumb {
  width: 100%;
}

.in_about_link .thumb img {
  width: 100%;

}

.in_about_link .title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px;
  width: 100%;
}

.in_about_link .title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 34px;
  border: 2px solid #FFF;
}

.in_about_link .t {
  padding-top: 20px;
  color: var(--white-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.in_about_link .bg:hover {
  transform: translateY(-10px);
}

@media (max-width:1280px) {
  .in_about_link ul {
    margin-left: -25px;
    margin-right: -25px;
  }
  
  .in_about_link ul li {
    padding-left: 25px;
    padding-right: 25px;
  }
  .in_about_link .title {
    padding: 30px;
  }
  

}
@media (max-width:1279px) {

  .in_about_link .title .icon {
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .in_about_link .t {
    font-size: 20px;
  }
}

@media (max-width:991px) {
  .in_about {
    padding-top: 80px;
    padding-bottom: 150px;
}
  .in_about_link ul {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .in_about_link ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .in_about_link ul li:nth-child(2n) {
    padding-top: 40px;
}
.in_about_link .title {
  padding: 25px;
}


}

@media (max-width:767px) {
  .in_about {
    padding-top: 50px;
    padding-bottom: 50px;
}
  .in_about_link {
    padding-top: 35px;
}
  .in_about_link ul li {
    width: 100%;
  }
  .in_about_link ul li:nth-child(2n) {
    padding-top: 15px;
    padding-bottom: 15px;
}

.in_about_link .t {
  padding-top: 16px;
}
.in_about_link .t {
  font-size: 18px;
}
}


.right_rove {
  position: fixed;
  right: 16px;
  bottom: 60px;
  z-index: 9;
}

.right_rove ul {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}

.right_rove ul li {
  position: relative;
  margin-bottom: 2px;
  width: 50px;
  overflow: hidden;
}
.back_top {
  display: none;
}

.right_rove ul li:last-child {
  margin-bottom: 0;
}

.right_rove ul li .a {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  height: 50px;
  transition: all .35s;
  z-index: 1;
}

.right_rove>ul>li>.a img {
  width: 24px;
}

.right_rove>ul>li>.a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background-color: var(--black-color);
  transition: width .3s cubic-bezier(0.99, 0.01, 0.16, 0.99);
  z-index: -1;
}

.right_rove>ul>li.back_top>.a:hover {
  width: 50px;
}
.right_rove>ul>li.back_top .a{
  justify-content: center;
}
.right_rove>ul>li>.a span {
  color: #FFF;
  font-size: 0;
  font-weight: 400;
  line-height: 26px;
  opacity: 0;
  overflow: hidden;
}

.right_rove>ul>li>.a a {
  display: flex;
  align-items: center;
}

.right_rove>ul>li>.a span a {
  color: inherit;
  font-size: inherit;
}

.right_rove ul li:hover {
  overflow: visible;
  width: auto;
}

.right_rove>ul>li.hover>.a:hover::before {
  width: 100%;
}

.right_rove>ul>li>.a:hover::before {
  background-color: var(--blue-color);
}

.right_rove>ul>li.hover>.a:hover span {
  opacity: 1;
  font-size: 16px;
  margin-left: 8px;
  transition: opacity .3s ease;
}

.back_top {
  cursor: pointer;
}

@media (max-width:767px) {
  .right_rove {
    right: 10px;
    bottom: 30px;
  }


}
/* 产品详情新增 */
.table_list .pro_d_text .bottom li{
padding-bottom: 30px;
  width: 33.33%;
}
@media (max-width:991px) {

  .table_list .pro_d_text .bottom li{
      width:50%;
    }

}

@media (max-width:767px) {

  .table_list .pro_d_text .bottom li{
      width:100%;
    }

}
