@charset "utf-8";
/* CSS Document */

body {
  font-family: "Microsoft YaHei", "微软雅黑" !important;
}
::-webkit-scrollbar-track-piece {
  width: 10px;
  background-color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #212121;
  color: #fff;
}
::selection {
  background: #212121;
  color: #fff;
}

/********header********/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.header_box {
  width: 100%;
  background-color: transparent;
  padding: 30px 3% 20px 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.header .logo {
  width: 15%;
  position: relative;
  z-index: 1;
}
.header .logo img {
  width: 100%;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.header .logo img:first-child {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}
.header .logo img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
}
.header .nav {
  position: absolute;
  height: 100%;
  padding-top: 10px;
  top: 50%;
  left: 50%;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.header .nav > a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header .nav span {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 0 30px;
  font-weight: 600;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.header .nav > a::before {
  content: "";
  width: 0%;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  background-color: #3da3ef;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.header .nav > a::after {
  content: "";
  width: 0%;
  height: 3px;
  position: absolute;
  right: 50%;
  bottom: 0px;
  background-color: #3da3ef;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.header .nav > a:hover::before {
  width: 40%;
}
.header .nav > a:hover::after {
  width: 40%;
}
.header.active .header_box,
.header.header_inner .header_box {
  background-color: #fff;
}
.header.active .logo img:first-child,
.header.header_inner .logo img:first-child {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
}
.header.active .logo img:last-child,
.header.header_inner .logo img:last-child {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}
.header.active .nav span,
.header.header_inner .nav span {
  color: #212121;
}
.header .right {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header .right img {
  width: 24px;
}
.header .right span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-left: 40px;
  cursor: pointer;
}
.header .right i {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 2px;
  cursor: pointer;
}
.header.active .right span,
.header.header_inner .right span,
.header.active .right i,
.header.header_inner .right i {
  color: #212121;
}
.header_inner::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  height: 1px;
  bottom: -1px;
  background-color: #e9e9e9;
}
.language-selector:hover span,
.language-selector:hover i {
  color: #50acf0 !important;
}
.language-list {
  width: 70px;
  position: absolute;
  top: 100%;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  display: none;
}
.language-list li {
  font-size: 14px;
  color: #212121;
  line-height: 2;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.language-list li:hover {
  color: #50acf0;
  text-decoration: underline;
}
.area-selector:hover span,
.area-selector:hover i {
  color: #50acf0 !important;
}
.area-list {
  width: 70px;
  position: absolute;
  top: 100%;
  left: 101px;
  padding: 10px 0;
  background-color: #fff;
  display: none;
}
.area-list li {
  font-size: 14px;
  color: #212121;
  line-height: 2;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.area-list li:hover {
  color: #50acf0;
  text-decoration: underline;
}
.sub_nav {
  position: absolute;
  width: 68%;
  position: absolute;
  top: 100%;
  left: 16%;
  background-color: #fff;
  padding: 3%;
  display: none;
}
.sub_nav_list {
  display: none;
}
.sub_nav_solutions {
  padding-left: 18%;
}
.sub_nav_solutions_list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5%;
}
.sub_nav_solutions_list h5 {
  font-size: 16px;
  color: #515151;
  margin: 0;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.sub_nav_solutions_list h5 i {
  font-size: 16px;
  color: #515151;
}
.sub_nav_solutions_list h5:hover {
  color: #00a5f1;
}
.sub_nav_solutions_list h5:hover i {
  color: #00a5f1;
}
.sub_nav_solutions_list p {
  padding-left: 6%;
  margin: 0;
  margin-left: 6%;
  position: relative;
  display: none;
}
.sub_nav_solutions_list p::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  bottom: 6%;
  width: 1px;
  background-color: #869bce;
}
.sub_nav_solutions_list p span {
  display: inline-block;
  font-size: 14px;
  color: #00369c;
  line-height: 1;
  border-bottom: 1px solid #00369c;
  margin-bottom: 10%;
}
.sub_nav_product {
  display: flex;
  align-items: flex-start;
}
.sub_nav_product_list {
  padding-right: 5%;
  margin-right: 5%;
  border-right: 1px solid #999;
}

/********header********/

/********首页********/
.banner {
  width: 100%;
  position: relative;
}
.banner_list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.banner_txt {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 20%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.banner_txt h5 {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
  color: #fff;
  /*text-transform: uppercase;*/
  line-height: 1.7;
  white-space: pre-wrap;
}
/*.banner_txt p{
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
}*/
.banner_txt .banner_con p {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin: 0;
}
.banner_txt span {
  display: inline-block;
  margin-top: 6%;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 2;
  padding: 0 24px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.banner_txt span:hover {
  border: 1px solid #3da3ef;
  background: #3da3ef;
}
.banner_con_btn_null {
  margin-top: 6%;
}
.pagination_banner {
  position: absolute;
  z-index: 9;
  bottom: 80px !important;
}
.pagination_banner .swiper-pagination-bullet {
  width: 40px;
  height: 10px;
  background-color: #e5e5e5;
  border-radius: 10px;
  opacity: 1;
  margin: 0 5px !important;
  position: relative;
  z-index: 2;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.pagination_banner .swiper-pagination-bullet-active {
  background-color: #3da3ef;
  width: 100px;
}

.index_about {
  padding: 5% 18%;
}
.index_about .box {
  padding-left: 24%;
  position: relative;
}
.index_about .txt {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  position: absolute;
  width: 50%;
  left: 0;
  top: 50%;
  padding: 3% 6%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: right;
}
.index_about .txt h5 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  color: #212121;
  margin-bottom: 15%;
  position: relative;
  padding-top: 20px;
  text-align: left;
}
.index_about .txt .box_txt_con {
  margin-bottom: 6%;
  text-align: left;
}
.index_about .txt p {
  color: #212121;
  font-size: 20px;
  margin: 0;
}

.index_about .txt h5::before {
  content: "";
  width: 52px;
  height: 6px;
  background-color: #1069f9;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.index_about .txt span {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  line-height: 2;
  padding: 0 16px;
  background-color: #1069f9;
  border-radius: 20px;
}

.index_news {
  padding: 5% 0%;
  background-color: #f7f7f7;
}
.index_news > h5 {
  font-size: 40px;
  font-weight: 600;
  width: 64%;
  margin: 0 auto;
  color: #212121;
  margin-bottom: 4%;
  position: relative;
  padding-top: 20px;
  text-align: left;
}
.index_news > h5::before {
  content: "";
  width: 52px;
  height: 6px;
  background-color: #1069f9;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.news_wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.news_wrap ul {
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.news_wrap ul li {
  float: left;
}
.index_news_list {
  width: 100%;
  padding: 0 15px;
}
.index_news_list .box {
  position: relative;
  overflow: hidden;
}
.index_news_list .box .bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.index_news_list .box:hover .bg {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
}
.index_news_list .txt {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.index_news_list .txt i {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12%;
}
.index_news_list .txt p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6%;
}
.index_news_list .txt span {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid #fff;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}

.index_news_list .box:hover .txt span {
  background-color: #1069f9;
  border: 1px solid #1069f9;
}

.index_solution {
  padding: 5% 6%;
}
.index_solution > h5 {
  font-size: 40px;
  font-weight: 600;
  width: 72%;
  margin: 0 auto;
  color: #212121;
  margin-bottom: 4%;
  position: relative;
  padding-top: 20px;
  text-align: left;
}
.index_solution > h5::before {
  content: "";
  width: 52px;
  height: 6px;
  background-color: #1069f9;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.index_solution_list {
  text-align: center;
}
.index_solution_list .img {
  overflow: hidden;
}
.index_solution_list .img img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.index_solution_list:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.index_solution_list h5 {
  font-size: 22px;
  color: #4d4d4d;
  line-height: 1.5;
  margin: 20px 0;
  white-space: pre-wrap;
}
.index_solution_list span {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #bfbfbf;
  line-height: 2.4;
  padding: 0 40px;
  border-radius: 20px;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.index_solution_list:hover span {
  background-color: #1069f9;
}

.index_provide {
  background-color: #f4f4f4;
  padding: 5% 18%;
}
.index_provide .box {
  padding-left: 40%;
  position: relative;
}
.index_provide .box .img {
  width: 100%;
}
.index_provide .txt {
  width: 40%;
  padding-right: 5%;
  position: absolute;
  top: 47%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.index_provide .txt h5 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  color: #212121;
  margin-bottom: 10%;
  position: relative;
  padding-top: 20px;
  text-align: left;
}
.index_provide .txt h5::before {
  content: "";
  width: 52px;
  height: 6px;
  background-color: #1069f9;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.index_provide .txt p {
  font-size: 20px;
  color: #212121;
  /*margin-bottom: 8%;*/
  margin-bottom: 2%;
  text-align: left;
}
.index_provide .txt span {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  line-height: 2;
  padding: 0 16px;
  background-color: #1069f9;
  border-radius: 20px;
  margin-top: 6%;
}

/********首页********/

/********footer********/
.footer {
  background-color: #696969;
  padding: 4% 18% 3% 18%;
}
.foot_logo {
  margin-bottom: 4%;
}
.foot_logo img {
  width: 16%;
}
.foot_nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 50px;
}
.foot_nav .item h5 {
  font-size: 14px;
  color: #fff;
  margin: 0;
  margin-bottom: 50px;
}
.foot_nav .item p {
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 9px;
  white-space: pre-wrap;
}
.foot_nav .item .footer_item_nav {
  width: 360px;
}
.foot_nav .item .footer_item_nav .clp05:last-child {
  padding-right: 0;
}
.foot_nav::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: 40px;
  left: 0;
}
.foot_nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.foot_info {
  display: flex;
}
.foot_info .item {
  width: 36%;
  margin-right: 5%;
}
.foot_info .item:first-child {
  width: 22%;
}
.foot_info .item h5 {
  font-size: 14px;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
}
.foot_info .item p {
  font-size: 12px;
  color: #fff;
  line-height: 2;
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.foot_info .item p span {
  font-size: 12px;
  color: #fff;
  line-height: 2;
  margin-right: 4px;
}
.foot_bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.foot_bot p {
  font-size: 12px;
  color: #fff;
  line-height: 2;
  margin: 0;
}
.foot_bot img {
  height: 36px;
}

/********footer********/

/********内页********/
.inner_nav {
  padding: 16px 18%;
  display: flex;
  align-items: center;
  position: relative;
}
.inner_nav i {
  font-size: 18px;
  color: #545454;
  margin: 0 12px;
}
.inner_nav > i:first-child {
  font-size: 18px;
  color: #00a5f1;
  margin: 0;
  cursor: pointer;
}
.inner_nav span {
  text-transform: uppercase;
  cursor: pointer;
}
.inner_nav i:nth-last-child(2) {
  color: #00a5f1;
}
.inner_nav span:last-child {
  color: #00a5f1;
}
.inner_nav .back {
  position: absolute;
  top: 15px;
  right: 18%;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.inner_nav_back i:nth-last-child(3) {
  color: #00a5f1;
}
.inner_nav_back span:nth-last-child(2) {
  color: #00a5f1;
}

.inner_banner {
  width: 100%;
  position: relative;
}
.inner_banner_txt {
  position: absolute;
  top: 25%;
  left: 18%;
  right: 18%;
}
.inner_banner_txt h5 {
  font-size: 32px;
  line-height: 2;
  color: #fff;
  margin: 0;
  /*text-transform: uppercase;*/
}
.inner_banner_txt p {
  font-size: 16px;
  line-height: 2;
  margin: 0;
  color: #fff;
}
.inner_banner_txt1 {
  top: 58%;
}
.inner_banner_txt2 {
  top: 48%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.inner_banner_contact {
  padding: 0 3% 3% 3%;
  position: relative;
}
.banner_contact_txt {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  width: 60%;
  top: 45%;
  left: 20%;
  padding: 3% 5% 4% 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.banner_contact_txt h5 {
  font-size: 36px;
  color: #212121;
  margin: 0;
  text-align: center;
  font-weight: 600;
}
.banner_contact_txt p {
  font-size: 16px;
  color: #212121;
  margin: 0;
  margin-top: 4%;
  text-align: center;
}

.inner_h5 {
  padding: 0 18%;
  font-size: 36px;
  color: #212121;
  margin-bottom: 4%;
  padding-top: 2%;
  position: relative;
  font-weight: 600;
}
.inner_h5.inner_h51 {
  padding: 0;
  padding-top: 2%;
}
.inner_h5.inner_h52 {
  margin-bottom: 3%;
}
.inner_h5::before {
  content: "";
  width: 50px;
  height: 6px;
  background-color: #1069f9;
  position: absolute;
  top: 0;
  left: 18%;
  border-radius: 6px;
}
.inner_h5.inner_h51::before {
  left: 0;
}
.news_details_con img {
  max-width: 100%;
}
/****solution****/
.solution_sec1 {
  padding: 5% 12%;
  background-image: url("../images/solution_1_bg1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution_sec1 img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.solution_sec1 img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.solution_sec2 {
  padding: 5% 0;
  background-image: url("../images/solution_1_bg2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution_sec2_box {
  padding: 0 12%;
}
.solution_sec2_box img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.solution_sec2_box img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.solution_sec3 {
  padding: 5% 0;
}
.solution_sec3_box {
  padding: 0 12%;
}
.solution_sec3 .swiper_star {
  padding-top: 5%;
}
.solution_star {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.solution_star_img {
  position: relative;
}
.solution_star_img img:last-child {
  height: 80%;
  position: absolute;
  left: 50%;
  bottom: 10%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}
.solution_star_img img:first-child {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.solution_star:hover {
  background-color: #383838;
}
.solution_star:hover .solution_star_img img:first-child {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}
.solution_star:hover .solution_star_img img:last-child {
  -webkit-transform: translateX(-50%) scale(1.5);
  transform: translateX(-50%) scale(1.5);
}
.solution_star_txt {
  padding: 3% 3% 0 3%;
}
.solution_star_txt h5 {
  font-size: 20px;
  color: #212121;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.solution_star_txt p {
  font-size: 16px;
  color: #212121;
  line-height: 20px;
  min-height: 60px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 限制显示3行 */
  line-clamp: 3;
  overflow: hidden;
  white-space: pre-wrap;
  text-overflow: ellipsis; /* 超出部分用省略号显示 */
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.solution_star:hover .solution_star_txt h5 {
  color: #fff;
}
.solution_star:hover .solution_star_txt p {
  color: #fff;
}

.solution_sec4 {
  padding: 5% 0 12% 0;
  background-image: url("../images/solution_1_bg3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution_sec4_box {
  padding: 0 18%;
}
.solution_sec4_list {
  flex: 1;
  padding: 0 4%;
}
.solution_sec4_txt {
  padding-top: 30%;
}
.solution_sec4_txt p {
  width: 100%;
  font-size: 16px;
  color: #212121;
  text-align: left;
}
.solution_sec4_txt p span {
  display: block;
  font-size: 20px;
  margin-top: 2%;
  color: #212121;
  font-weight: 600;
}

/****solution****/

/****product****/
.product_sec1 {
  padding: 5% 12% 2% 12%;
}
.product_list {
  margin-bottom: 20%;
}
.product_list_img {
  padding: 18%;
  border: 1px solid #f4f4f4;
  background-color: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.product_list_img img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.product_list:hover .product_list_img {
  background-color: transparent;
  border: 1px solid #6e6e6e;
}
.product_list:hover .product_list_img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.product_list_txt {
  margin-top: 6%;
}
.product_list_txt h5 {
  padding-top: 6%;
  margin: 0;
  position: relative;
  font-size: 20px;
  color: #333;
}
.product_list_txt p {
  font-size: 16px;
  color: #333;
  margin: 5% 0 10% 0;
  line-height: 20px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product_list_txt span {
  display: inline-block;
  background-color: #bfbfbf;
  font-size: 16px;
  line-height: 2.4;
  padding: 0 16px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.product_list_txt h5::before {
  content: "";
  width: 0px;
  height: 6px;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1069f9;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}

.product_list:hover .product_list_txt h5::before {
  width: 50px;
}
.product_list:hover .product_list_txt span {
  font-weight: 500;
  background-color: #1069f9;
}

.product_sec2 {
  padding: 5% 12%;
  background-color: #f4f4f4;
}
.product_sec2_txt {
  text-align: center;
}
.product_sec2_txt p {
  font-size: 20px;
  color: #333;
  margin: 10% 0;
}
.product_sec2_txt span {
  display: inline-block;
  background-color: #bfbfbf;
  font-size: 16px;
  line-height: 2.4;
  padding: 0 24px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.product_sec2_list:hover .product_sec2_txt span {
  font-weight: 500;
  background-color: #1069f9;
}

.product_sec2_list_img {
  overflow: hidden;
  position: relative;
}
.product_sec2_list_img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  z-index: 1;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}

.product_sec2_list:hover .product_sec2_list_img video {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}

.products_details {
  padding: 3% 12% 5% 12%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.products_details_nav {
  width: 28%;
  margin-right: 3%;
  padding: 4%;
  background-color: #f4f4f4;
}
.products_details_nav_item {
  margin-bottom: 12px;
}
.products_details_nav_item h5 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #666;
  margin: 0;
  margin-bottom: 12px;
}
.products_details_this h5 {
  font-size: 24px;
  color: #333;
}
.products_details_this {
  padding-bottom: 12%;
  margin-bottom: 12%;
  border-bottom: 1px solid #a0a0a0;
}
.products_details_nav_item h5 i {
  margin-right: 10px;
  font-size: 24px;
}
.products_details_nav_item p {
  padding-left: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 8px 0;
}
.products_details_nav_item p a {
  display: flex;
  align-items: center;
}
.products_details_nav_item p i {
  font-size: 16px;
  margin-right: 5px;
  color: #878787;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.products_details_nav_item p span {
  font-size: 14px;
  color: #878787;
  border-bottom: 1px solid #757575;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.products_details_this p i {
  color: #4d4d4d;
}
.products_details_this p span {
  color: #4d4d4d;
}
.products_details_nav_item p.active i {
  color: #3da3ef;
}
.products_details_nav_item p.active span {
  color: #3da3ef;
  border-bottom: 1px solid #3da3ef;
}
.products_details_nav_item p:hover span {
  color: #3da3ef;
  border-bottom: 1px solid #3da3ef;
}
.products_details_nav_item p:hover i {
  color: #3da3ef;
}
.sub_nav_product_list .products_details_nav_item {
  cursor: pointer;
}
.sub_nav_product_list .products_details_nav_item h5:hover {
  color: #3da3ef;
}
.sub_nav_product_list .products_details_nav_item h5:hover i {
  color: #3da3ef;
}
.sub_nav_product_list .products_details_nav_item p {
  display: none;
}
.sub_nav_product_list .products_details_nav_item:hover p {
  display: block;
}

.products_details_box {
  width: 69%;
}

.products_details_sec1 {
  width: 100%;
  margin-bottom: 6%;
}
.products_details_sec1_img {
  overflow: hidden;
  background-color: #f4f4f4;
  border-radius: 20px;
}
.products_details_sec1_img img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.products_details_sec1_img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.products_details_sec1_txt {
  margin-top: 2%;
}
.products_details_sec1_txt h5 {
  margin: 0;
  font-size: 24px;
  color: #333;
  line-height: 2;
}
.products_details_sec1_txt p {
  font-size: 18px;
  color: #333;
  line-height: 2;
  margin: 0;
}
.products_details_click {
  display: flex;
  justify-content: flex-end;
  margin-top: 3%;
}
.products_details_click a {
  display: flex;
  justify-content: flex-end;
}
.products_details_click span {
  font-size: 16px;
  color: #fff;
  line-height: 2.4;
  font-weight: 500;
  padding: 0 40px;
  border-radius: 20px;
  background-color: #bfbfbf;
  text-transform: uppercase;
  cursor: pointer;
}
.products_details_click span:hover {
  background-color: #1069f9;
}

.products_details_sec2 {
  width: 100%;
  margin-bottom: 6%;
}
.products_details_sec2_img {
  overflow: hidden;
  border: 1px solid #7a7a7a;
  border-radius: 20px;
}
.products_details_sec2_img img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.products_details_sec2_img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.products_data_txt1 {
  background-color: #f4f4f4;
  padding: 2%;
  margin-top: 3%;
}
.products_data_txt1 img {
  max-width: 100%;
}
.products_data_txt2 {
  background-color: transparent;
  padding: 2% 0;
}
.products_data_txt1 h5 {
  margin: 0;
  font-size: 24px;
  color: #333;
  line-height: 2;
}
.products_data_txt1 p {
  margin: 0;
  font-size: 18px;
  color: #4d4d4d;
  line-height: 2;
}

.product_data_bottom {
  /*padding: 3% 12% 3% 35%;*/
  padding: 3% 8% 3% 35%;
  background: url("../images/product_data_bg.jpg") center no-repeat;
  background-size: cover;
}
.product_data_bottom h5 {
  font-size: 36px;
  color: #fff;
  margin: 0;
}
.product_data_bottom p {
  font-size: 18px;
  color: #fff;
  margin: 2% 0 4% 0;
}
.product_data_bottom span {
  display: inline-block;
  line-height: 2.4;
  font-size: 16px;
  text-transform: uppercase;
  color: #1069f9;
  background-color: #fff;
  /*padding: 0 40px;*/
  padding: 0 20px;
  border-radius: 20px;
  font-weight: 500;
  margin-right: 10px;
}

/****product****/

/****service****/
.service_sec1 {
  padding: 5% 18%;
}
.service_sec1_txt {
  padding-right: 20%;
}
.service_sec1 h5.inner_h51 {
  padding-top: 8%;
  margin-bottom: 8%;
}
.service_sec1_txt .service_sec1_txt_con {
  /*font-size: 18px;*/
  color: #333;
  line-height: 1.6;
  margin-bottom: 8%;
}
.service_sec1_txt p {
  font-size: 18px;
  color: #333;
  /*line-height: 1.6;*/
  margin: 0;
  /*margin-bottom: 8%;*/
  margin-bottom: 2%;
}

.service_sec1_txt span {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  line-height: 2.4;
  padding: 0 40px;
  border-radius: 20px;
  background-color: #1069f9;
  cursor: pointer;
}

.service_sec2 {
  padding: 5% 0;
  background: url("../images/service_sec2.jpg") center no-repeat;
  background-size: cover;
}
.service_sec2 .inner_h5 {
  color: #fff;
  margin-bottom: 0;
  line-height: 1.5;
  white-space: pre-wrap;
  margin-top: -10px;
}
.service_sec2 .inner_h5::before {
  background-color: #fff;
}

.service_sec3 {
  padding: 5% 18%;
  background-color: #f4f4f4;
}
.service_sec3_list {
  padding: 3% 0;
  border-bottom: 1px solid #cacaca;
}
.service_sec3_list:first-child {
  padding-top: 0;
}
.service_sec3_list h5,
.service_sec3_list p {
  font-size: 18px;
  color: #4d4d4d;
  margin: 0;
  line-height: 2;
}
.service_sec3 .more,
.service_sec4 .more {
  display: flex;
  justify-content: flex-end;
  margin-top: 3%;
}
.service_sec3 .more span,
.service_sec4 .more span {
  font-size: 16px;
  color: #fff;
  line-height: 2.4;
  padding: 0 40px;
  border-radius: 20px;
  background-color: #1069f9;
  cursor: pointer;
}

.service_sec4 {
  padding: 5% 18%;
  /*background-color: #fff;*/
  background-color: #f4f4f4;
}
.service_sec4 .inner_h5 {
  text-align: center;
  padding: 0;
}
.service_sec4 .inner_h5::before {
  display: none;
}
.service_sec4 > p {
  font-size: 20px;
  color: #4d4d4d;
  margin-bottom: 3%;
  line-height: 2;
}

.service_sec4_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_sec4_input {
  width: 100%;
}
.service_sec4_input:nth-child(1),
.service_sec4_input:nth-child(2) {
  width: 48%;
}
.service_sec4_input p {
  font-size: 18px;
  color: #4d4d4d;
}
.service_sec4_input input {
  display: block;
  width: 100%;
  /*background-color: #f4f4f4;*/
  font-size: 18px;
  color: #000000;
  border-radius: 4px;
  border: none;
  padding: 8px 12px;
  margin-bottom: 3%;
}
.service_sec4_input textarea {
  display: block;
  width: 100%;
  /*background-color: #f4f4f4;*/
  font-size: 18px;
  color: #000000;
  border-radius: 4px;
  border: none;
  padding: 8px 12px;
}

.service_inner {
  padding: 3% 12% 15% 12%;
  background: url("../images/service_inner_bg.jpg") center no-repeat;
  background-size: cover;
}
.service_inner .top {
  display: flex;
  align-items: center;
  margin-bottom: 8%;
}
.service_inner .top img {
  margin-right: 4%;
  width: 10%;
}
.service_inner .search {
  width: 40%;
  position: relative;
}
.service_inner .search i {
  position: absolute;
  top: 8px;
  left: 15px;
  font-size: 18px;
}
.service_inner .search input {
  width: 100%;
  background-color: #fff;
  border: none;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4d4d4d;
  padding: 10px;
  border-radius: 20px;
}
.service_inner > h5 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
.service_inner > p {
  font-size: 20px;
  color: #fff;
  margin: 2% 0 4% 0;
}
.service_inner_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.service_inner_list {
  width: 25%;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 4%;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.service_inner_img {
  overflow: hidden;
}
.service_inner_img img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.service_inner_txt {
  padding-top: 36%;
  position: relative;
}
.service_inner_list:hover {
  background-color: #f4f4f4;
  box-shadow: 0 6px 24px hsla(214, 3%, 49%, 0.5);
}
.service_inner_list:hover .service_inner_img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.service_inner_txt h5 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  font-weight: 600;
  color: #4d4d4d;
  margin: 0;
  text-align: center;
}
.service_inner_txt h5 p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  margin-top: 5%;
}
.service_inner_txt h5 p span {
  font-size: 16px;
  color: #4d4d4d;
  font-weight: 400;
  margin: 0 5%;
  line-height: 1.5;
}
.bgc_white {
  background-color: #fff;
}
.mgb2 {
  margin-bottom: 3%;
}
/****service****/

/****contact****/
.contact_sec1 {
  background-color: #f4f4f4;
  padding: 5% 18% 0 18%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact_sec1_input {
  width: 48%;
  margin-bottom: 3%;
}
.contact_sec1_input span {
  display: block;
  font-size: 18px;
  color: #4d4d4d;
  margin-bottom: 12px;
}
.contact_sec1_input input {
  font-size: 16px;
  color: #212121;
  padding: 8px 12px;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  width: 100%;
}
.contact_sec1_input textarea {
  font-size: 16px;
  color: #212121;
  padding: 8px 12px;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  width: 100%;
}
.contact_sec1_input:nth-last-child(1),
.contact_sec1_input:nth-last-child(2),
.contact_sec1_input:nth-last-child(3) {
  width: 100%;
}
.contact_sec1_submit {
  background-color: #f4f4f4;
  padding: 0% 18% 5% 18%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.contact_sec1_submit span {
  color: #fff;
  line-height: 2.4;
  padding: 0 40px;
  border-radius: 20px;
  background-color: #1069f9;
  cursor: pointer;
}

.contact_sec2 {
  padding: 5% 12%;
}
.contact_sec2_1 {
  padding: 0 12% 5% 12%;
}
.contact_sec2_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact_sec2_list {
  width: 28%;
  display: flex;
  align-items: center;
  padding-bottom: 2.5%;
  margin-bottom: 2.5%;
}
.contact_sec2_list > img {
  width: 40%;
  margin-right: 15px;
}
.contact_sec2_list .txt h5 {
  font-size: 20px;
  color: #212121;
  margin: 0;
  margin-bottom: 10px;
}
.contact_sec2_list .txt p {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
}
.contact_sec2_list .txt p img {
  width: 26px;
  margin-right: 8px;
}

.contact_map {
  padding: 3% 12% 5% 12%;
  background-color: #f4f4f4;
}
.contact_map_box {
  position: relative;
}
.contact_search {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 40%;
  padding-right: 5%;
}
.contact_search input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 12px 12px;
  font-size: 14px;
  line-height: 1;
  color: #212121;
  text-transform: uppercase;
  text-align: center;
}
.contact_search span {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 20px 20px 0;
  background-color: #1069f9;
  color: #fff;
  padding: 15px 30px;
  font-size: 14px;
  line-height: 1;
}
.contact_map_list {
  padding-right: 20px;
  overflow-y: scroll;
}
.contact_map_item {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 5%;
  margin-bottom: 5%;
}
.contact_map_item h5 {
  font-size: 18px;
  color: #878787;
  margin: 0;
  line-height: 2;
  font-weight: 600;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.contact_map_item p {
  font-size: 16px;
  color: #878787;
  margin: 0;
  line-height: 1.8;
  padding-left: 20px;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.contact_map_item.active h5 {
  color: #3da3ef;
}
.contact_map_item.active p {
  color: #3da3ef;
}

.contact_maps {
  position: relative;
}
.contact_maps_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_maps_icon {
  position: absolute;
  width: 24px;
  height: 24px;
}
.contact_maps_icon span {
  position: absolute;
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 14px;
  color: 878787;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  letter-spacing: -1px;
}
.contact_maps_icon1 {
  top: 35%;
  left: 12%;
}
.contact_maps_icon2 {
  top: 42%;
  left: 37%;
}
.contact_maps_icon3 {
  top: 46%;
  left: 34%;
}
.contact_maps_icon4 {
  top: 44%;
  left: 28%;
}
.contact_maps_icon5 {
  top: 39%;
  left: 40%;
}
.contact_maps_icon6 {
  top: 37%;
  left: 44%;
}
.contact_maps_icon > img:nth-child(1) {
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.contact_maps_icon > img:nth-child(2) {
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.contact_maps_icon.active span {
  color: #3da3ef;
  font-weight: 600;
  -webkit-transform: translateX(-50%), scale(1.2);
  transform: translateX(-50%), scale(1.2);
}
.contact_maps_icon.active > img:nth-child(1) {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
}
.contact_maps_icon.active > img:nth-child(2) {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(2);
  transform: scale(2);
}

/****contact****/

/****about****/
.news_details {
  padding: 5% 18%;
  position: relative;
  z-index: 2;
}
.news_details_box {
  padding: 4% 5% 5% 5%;
  background-color: #fff;
  margin-top: -20%;
}
.news_details_box > span {
  font-size: 15px;
  color: #4d4d4d;
  display: block;
  margin-bottom: 6%;
}
.news_details_con p {
  font-size: 18px;
  color: #4d4d4d;
  line-height: 2;
  margin: 0;
  margin: 2% 0;
}
.news_details_con h5 {
  font-size: 24px;
  color: #212121;
  margin: 0;
  margin: 2% 0;
}
.news_details_con img {
  margin: 2% 0;
}

.news_sec1 {
  padding: 3% 18% 5% 18%;
}
.news_sec1_img {
  padding-right: 30%;
  position: relative;
}

.swiper_news {
  position: relative;
}
.pagination_news {
  position: absolute;
  z-index: 9;
  bottom: 20px !important;
}
.pagination_news .swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  background-color: #e5e5e5;
  border-radius: 8px;
  opacity: 1;
  margin: 0 5px !important;
  position: relative;
  z-index: 2;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.pagination_news .swiper-pagination-bullet-active {
  background-color: #3da3ef;
  width: 60px;
}

.news_sec1_img > i {
  font-size: 13px;
  color: #666;
  display: block;
  margin: 3% 0 1% 0;
}
.news_sec1_img > p {
  font-size: 16px;
  color: #4d4d4d;
  margin: 0;
  margin-bottom: 4%;
}
.news_sec1_img > span {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  line-height: 2;
  padding: 0 30px;
  border-radius: 20px;
  text-transform: uppercase;
  background-color: #1069f9;
}

.news_sec1_txt {
  position: absolute;
  left: 73%;
  bottom: 32%;
}
.news_sec1_txt p {
  font-size: 16px;
  color: #4d4d4d;
  line-height: 2;
  margin: 0;
}

.news_sec2 {
  padding: 2% 0 5% 0;
}
.news_sec2_box {
  padding: 0 3%;
}
.news_type {
  padding: 0 12.5%;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  margin-bottom: 1%;
}
.news_type span {
  font-size: 16px;
  color: #4d4d4d;
  margin-right: 5%;
  line-height: 3;
  border-bottom: 3px solid transparent;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.news_type span.active {
  border-bottom: 3px solid #3da3ef;
}
.news_list {
  padding: 3% 12.5%;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
}
.news_list_img {
  width: 28%;
  margin-right: 3%;
}
.news_list_txt {
  width: 69%;
}
.news_list_txt i {
  font-size: 14px;
  color: #666666;
}
.news_list_txt h5 {
  font-size: 20px;
  font-weight: 600;
  color: #4d4d4d;
  margin: 3% 0 2% 0;
}
.news_list_txt p {
  font-size: 16px;
  color: #4d4d4d;
  margin: 0;
}

.news_sec3 {
  padding: 5% 0;
}
.news_sec3_box {
  padding: 0 12%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news_sec3_list {
  width: 31%;
}
.news_sec3_list h5 {
  font-size: 18px;
  font-weight: 600;
  color: #4d4d4d;
  line-height: 1.6;
  margin: 0;
  margin-top: 6%;
}

.banner_about_inner_txt {
  position: absolute;
  top: 10%;
  left: 18%;
  right: 18%;
}

.banner_about_inner_txt h5 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5%;
  text-transform: uppercase;
}
.banner_about_inner_txt p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0;
  /*margin-bottom: 2%;*/
}

.about_inner_sec1 {
  padding: 6% 18%;
  background: url("../images/about_inner_bg.jpg") center no-repeat;
  background-size: 100% 100%;
}

.about_inner_sec1_box {
  position: relative;
}
.about_inner_sec1_txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.about_inner_sec1_txt h5 {
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
.about_inner_sec1_txt p {
  font-size: 20px;
  color: #fff;
  margin: 0;
  margin-top: 20px;
  font-weight: 400;
}

.about_inner_sec2 {
  padding: 6% 0;
  background-color: #f4f4f4;
}
.about_inner_sec2_list {
  width: 100%;
  display: flex;
  align-items: self-start;
}
.about_inner_sec2_list img {
  width: 30%;
}
.about_inner_sec2_txt {
  width: 70%;
  padding-left: 30px;
}

.about_inner_sec2_txt h5 {
  font-size: 22px;
  font-weight: 600;
  color: #212121;
  margin: 0;
  line-height: 2;
}
.about_inner_sec2_txt p {
  font-size: 16px;
  color: #4d4d4d;
  margin: 0;
  line-height: 2;
}
.about_inner_sec3 {
  padding: 6% 18%;
  background-color: #ffffff;
}
.swiper_honor {
  padding-left: 12%;
  padding-bottom: 50px;
}
.swiper-scrollbar-honor {
  left: 12% !important;
  width: 76% !important;
  background-color: #e5e5e5 !important;
}
.swiper-scrollbar-honor .swiper-scrollbar-drag {
  background-color: #1069f9 !important;
}

.banner_about_txt {
  position: absolute;
  top: 15%;
  left: 18%;
  right: 18%;
}
.banner_about_txt h5 {
  font-size: 36px;
  color: #fff;
  margin: 0;
  margin-bottom: 1%;
  text-transform: uppercase;
}
.banner_about_txt i {
  font-style: normal;
  font-size: 16px;
  color: #fff;
}
.banner_about_txt h4 {
  /*font-size: 52px;*/
  font-size: 30px;
  color: #fff;
  /*text-transform: uppercase;*/
  margin-top: 8%;
  margin-bottom: 1%;
  /*line-height: 1.2;*/
  line-height: 1.4;
}
.banner_about_txt p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0;
}
.banner_about_txt span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 2.4;
  padding: 0 30px;
  border-radius: 20px;
  border: 1px solid #fff;
  display: inline-block;
  margin-top: 3%;
}

.about_sec1 {
  padding: 5% 0;
}
.about_sec1_box {
  padding: 0 6%;
  position: relative;
}
.honor_logo {
  width: 100%;
  overflow: hidden;
}
.honor_logo ul {
  position: relative;
  overflow: hidden;
  padding: 2% 0;
}
.honor_logo1 ul,
.honor_logo3 ul {
  left: 0px;
}
.honor_logo2 ul {
  right: 0px;
}
.honor_logo ul li {
  float: left;
}
.honor_logo ul li img {
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  filter: alpha(opacity=30);
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.honor_logo ul li:hover img {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  filter: alpha(opacity=100);
}
.honor_logo2 {
  margin: 1% 0;
}

.honor_logo_txt {
  display: none;
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 3%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.honor_logo_txt ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.honor_logo_txt ul li p {
  font-size: 20px;
  color: #4d4d4d;
  line-height: 2.2;
  margin: 0;
}

/* .about_sec1_box>img{
  -webkit-animation: bgFunction 6s ease-in-out infinite 0s;
  animation: bgFunction 6s ease-in-out infinite 0s;
} */
@-webkit-keyframes bgFunction {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes bgFunction {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}
/* .about_sec1_con{
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
} */

.about_sec2 {
  padding: 5% 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
}
.about_sec2_box {
  padding: 0 15%;
  padding-top: 2%;
}
.about_sec2_img {
  display: flex;
  align-items: center;
}
.about_sec2_list {
  width: 24%;
  margin: 0 10px;
  position: relative;
  padding-top: 40px;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.about_sec2_list img {
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.about_sec2_list.active {
  width: 28%;
}
.about_sec2_list span {
  width: 100%;
  position: absolute;
  line-height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.about_sec2_list.active span {
  top: 10px;
  color: #0068fc;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
.about_sec2_txt {
  padding-top: 4%;
}
.about_sec2_txt_list {
  /*display: none;*/
}
.about_sec2_txt_list_con {
}
.about_sec2_txt_list p {
  font-size: 18px;
  color: #414141;
  margin: 0;
  line-height: 2;
  /*text-align: center;*/
}
.about_sec2_txt_list h5 {
  font-size: 24px;
  font-weight: 600;
  color: #414141;
  margin: 0;
  margin-top: 4%;
  text-align: center;
}

.about_sec3 {
  padding: 5% 0;
}
.about_sec3_box {
  /*padding: 0 6%;*/
  padding: 0 10%;
}
.about_sec3_txt {
  padding: 0 18%;
  padding-top: 3%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about_sec3_txt p {
  /*width: 48%;*/
  /*font-size: 18px;*/
  /*color: #4d4d4d;*/
  /*line-height: 2;*/
  margin: 0;
  /*white-space: pre-wrap;*/
}
.about_sec3_txt_p {
  width: 48%;
  font-size: 18px;
  color: #4d4d4d;
  line-height: 2;
  margin: 0;
}
.about_sec4 {
  /*padding: 5% 0;*/
  padding: 5% 0 7% 0;
  background-color: #f4f4f4;
}
.about_sec4_box {
  position: relative;
  /*padding: 0 15%;*/
  padding: 0 18%;
  display: flex;
  justify-content: flex-end;
}
.about_sec4_item {
  /*width: 32%;*/
  width: 27%;
  position: absolute;
  top: 50%;
  /*left: 15%;*/
  left: 18%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about_sec4_img {
  width: 62%;
  position: relative;
}
.about_sec4_img h5 {
  width: 100%;
  position: absolute;
  /*top: 50%;*/
  top: 45%;
  left: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.about_sec4_img h5 span {
  display: inline-block;
  line-height: 2;
  border-radius: 20px;
  padding: 0 30px;
  background-color: #1069f9;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;
}
.about_sec5 {
  /*padding: 5% 0 4% 0;*/
  padding: 5% 0 6.5% 0;
  background-color: #f4f4f4;
}
.about_sec5_box {
  padding: 0 12%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about_sec5_item {
  /*width: 17%;*/
  width: 15%;
  margin: 0 1.5%;
}
.about_sec5_item img {
  border: 1px solid #ebebeb;
}
.about_sec5_item p {
  font-size: 18px;
  color: #4d4d4d;
  margin: 12% 0;
  text-align: center;
}

.about_sec6 {
  padding: 5% 0;
  /*background-color: #f4f4f4;*/
}
.swiper_news {
  padding-left: 12%;
}

.about_sec6 .index_news_list .box:hover .txt span {
  background-color: #1069f9;
  border: 1px solid #1069f9;
}

/* 20250530 */
.addSwiper {
  position: relative;
}
.ad_list_line {
  background-color: #1069f9;
  height: 2px;
  position: absolute;
  left: -30px;
  top: 90px;
  right: -30px;
}
.add_next {
  width: 30px;
  height: 30px;
  background: #1069f9;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 110px;
  transform: translateY(-50%);
}
.add_prev {
  width: 30px;
  height: 30px;
  background: #1069f9;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 110px;
  transform: translateY(-50%);
}
.ad_list {
  cursor: pointer;
}
.ad_list .ad_list_con {
  font-size: 14px;
  color: #414141;
  line-height: 18px;
  margin: 0;
  text-align: left;
  margin-bottom: 50px;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.ad_list_con p {
  font-size: 14px;
}
.ad_list h2 {
  margin-bottom: 80px;
  font-size: 28px;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}

.addSwiper .swiper-slide-active h2 {
  color: #1069f9;
}
.addSwiper .swiper-slide-active p {
  color: #000000;
  font-weight: 600;
}
.addSwiper .swiper-slide-active .ad_list_img_item {
  background-color: transparent;
}
.ad_list_img {
  position: relative;
}
.ad_list_img img {
  width: 100%;
}
.ad_list_img_item {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
  transition: all cubic-bezier(0.18, 1, 0.21, 1) 0.9s;
}
.ad_list:hover p {
  color: #000000;
  font-weight: 600;
}
.ad_list:hover h2 {
  color: #1069f9;
}
.ad_list:hover .ad_list_img_item {
  background-color: transparent;
}
/* 20250530*/

#whyZone {
}
#whyZone h3,
#whyZone h4 {
  text-align: center;
  justify-content: center;
}
#whyZone .mynewscontainer {
  margin: 0 auto;
}
#whyZone .swiper-container-3d {
  overflow-x: clip;
}
#whyZone .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  position: relative;
}
#whyZone .swiper-slide .whySlideText {
  position: absolute;
  font-size: 14px;
  color: #777;
  left: 0px;
  bottom: -40px;
  width: 100%;
  text-align: center;
  z-index: 2;
  display: none;
}
#whyZone .swiper-slide.swiper-slide-active .whySlideText {
  display: initial;
}
#whyZone .swiper-slide .whySlideTextTitle {
  position: absolute;
  font-size: 14px;
  color: #777;
  left: 0px;
  bottom: -40px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
#whyZone .swiper-slide .whySlideTextCon {
  position: absolute;
  font-size: 14px;
  color: #777;
  left: -50%;
  top: 60px;
  width: 200%;
  text-align: left;
  z-index: 2;
}
#whyZone .swiper-slide img {
  display: block;
  width: 100%;
}

#whyZone .whyBtns {
  padding: 100px 0 50px 0;
}
#whyZone .whyBtns .learn-more {
  padding: 10px 100px;
  border: solid 1px #999;
  position: relative;
}
#whyZone .whyBtns .learn-more::after {
  color: #999;
  font-family: "iconfont" !important;
  font-size: 14px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\e70a";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
#whyZone .whyBtns .learn-more a {
  color: #999;
  font-size: 14px;
}

.learn-more,
.learn-more a {
  transition: all 0.3s;
}
.learn-more:hover {
  border-color: #76a580;
}
.learn-more:hover a {
  color: #76a580;
}
@media (max-width: 1920px) {
  #whyZone .whyBtns .learn-more {
    padding: 10px 90px;
  }
}

@media (max-width: 1700px) {
  #whyZone .whyBtns .learn-more {
    padding: 10px 80px;
  }
}
@media (max-width: 1500px) {
  #whyZone .whyBtns .learn-more {
    padding: 10px 70px;
  }
}

@media (max-width: 1300px) {
  #whyZone .whyBtns .learn-more {
    padding: 10px 60px;
  }
}
@media (max-width: 1000px) {
  #whyZone .whyBtns .learn-more {
    padding: 10px 50px;
  }
}
@media (max-width: 768px) {
  #whyZone .swiper-slide .whySlideTextCon {
    position: absolute;
    font-size: 14px;
    color: #777;
    left: 0;
    top: 60px;
    width: 100%;
    text-align: left;
    z-index: 2;
  }
}

/****about****/

.clm0 {
  margin-left: 0;
  margin-right: 0;
}
.clm30 {
  margin-left: -3%;
  margin-right: -3%;
}
.clp05 {
  padding-left: 0;
  padding-right: 5%;
}
.clp30 {
  padding-left: 3%;
  padding-right: 3%;
}
.clp40 {
  padding-left: 4%;
  padding-right: 4%;
}

.clm50 {
  margin-left: -5%;
  margin-right: -5%;
}
.clp50 {
  padding-left: 5%;
  padding-right: 5%;
}

/********内页********/

/********屏幕自适应********/
@media (min-width: 970px) {
  .header .nav span {
    font-size: 12px;
  }
  .banner_txt h5 {
    font-size: 36px;
  }
  .banner_txt p {
    font-size: 24px;
  }
  .banner_txt .banner_con p {
    font-size: 24px;
  }
  .banner_txt span {
    font-size: 14px;
  }
  .index_about .txt h5 {
    font-size: 30px;
  }
  .index_about .txt p {
    font-size: 14px;
  }
  .index_about .txt span {
    font-size: 12px;
  }
  .index_solution > h5 {
    font-size: 30px;
  }
  .index_solution_list h5 {
    font-size: 16px;
  }
  .index_solution_list span {
    font-size: 12px;
  }
  .index_provide .txt h5 {
    font-size: 30px;
  }
  .index_provide .txt p {
    font-size: 14px;
  }
  .index_provide .txt span {
    font-size: 12px;
  }
  .index_news > h5 {
    font-size: 30px;
  }
  .index_news_list .txt i {
    font-size: 12px;
  }
  .index_news_list .txt p {
    font-size: 14px;
  }
  .index_news_list > span {
    font-size: 14px;
  }
  .inner_banner_txt h5 {
    font-size: 26px;
  }
  .inner_banner_txt p {
    font-size: 13px;
  }
  .inner_h5 {
    font-size: 30px;
  }
  .solution_star_txt h5 {
    font-size: 15px;
  }
  .solution_star_txt p {
    font-size: 12px;
  }
  .solution_sec4_txt > p {
    font-size: 13px;
  }
  .solution_sec4_txt > p span {
    font-size: 16px;
  }
  .product_list_txt h5 {
    font-size: 14px;
  }
  .product_list_txt p,
  .product_list_txt span {
    font-size: 12px;
  }
  .product_sec2_txt p {
    font-size: 15px;
  }
  .product_sec2_txt span {
    font-size: 12px;
  }
  .service_sec1_txt p {
    font-size: 14px;
  }
  .service_sec1_txt span {
    font-size: 12px;
  }
  .service_sec3_list h5,
  .service_sec3_list p {
    font-size: 14px;
  }
  .service_sec3 .more span,
  .service_sec4 .more span {
    font-size: 12px;
  }
  .service_sec4 > p {
    font-size: 14px;
  }
  .service_sec4_input p,
  .service_sec4_input input,
  .service_sec4_input textarea {
    font-size: 14px;
  }
  .service_inner > h5 {
    font-size: 30px;
  }
  .service_inner > p {
    font-size: 15px;
  }
  .service_inner_txt h5 {
    font-size: 15px;
  }
  .service_inner_txt h5 p span {
    font-size: 12px;
  }
  .products_details_nav_item h5 {
    font-size: 14px;
  }
  .products_details_nav_item h5 i {
    font-size: 22px;
  }
  .products_details_this h5 {
    font-size: 22px;
  }
  .products_details_nav_item p i {
    font-size: 14px;
  }
  .products_details_nav_item p span {
    font-size: 12px;
  }
  .products_details_sec1_txt h5 {
    font-size: 18px;
  }
  .products_details_sec1_txt p {
    font-size: 14px;
  }
  .products_details_click span {
    font-size: 12px;
  }
  .products_data_txt1 h5 {
    font-size: 18px;
  }
  .products_data_txt1 p {
    font-size: 13px;
  }
  .product_data_bottom h5 {
    font-size: 30px;
  }
  .product_data_bottom p {
    font-size: 14px;
  }
  .product_data_bottom span {
    font-size: 12px;
  }

  .banner_contact_txt h5 {
    font-size: 30px;
  }
  .banner_contact_txt p {
    font-size: 13px;
  }
  .contact_sec1_input span {
    font-size: 15px;
  }
  .contact_sec1_input input {
    font-size: 13px;
  }
  .contact_map_item h5 {
    font-size: 14px;
  }
  .contact_map_item p {
    font-size: 12px;
  }
  .news_details_box > span {
    font-size: 12px;
  }
  .news_details_con p {
    font-size: 14px;
  }
  .news_details_con strong {
    font-size: 14px;
  }
  .news_details_con h5 {
    font-size: 18px;
  }
  .news_type span {
    font-size: 13px;
  }
  .news_list_txt i {
    font-size: 12px;
  }
  .news_list_txt h5 {
    font-size: 15px;
  }
  .news_list_txt p {
    font-size: 13px;
  }
  .news_sec3_list h5 {
    font-size: 14px;
  }
  .banner_about_inner_txt h5 {
    font-size: 30px;
  }
  .banner_about_inner_txt p {
    font-size: 13px;
  }
  .about_inner_sec1_txt h5 {
    font-size: 36px;
  }
  .about_inner_sec1_txt p {
    font-size: 14px;
  }
  .about_inner_sec2_txt h5 {
    font-size: 16px;
  }
  .about_inner_sec2_txt p {
    font-size: 13px;
  }
  .banner_about_txt h5 {
    font-size: 30px;
  }
  .banner_about_txt i,
  .banner_about_txt p {
    font-size: 13px;
  }
  .banner_about_txt h4 {
    /*font-size: 40px;*/
    font-size: 24px;
  }
  .banner_about_txt span {
    font-size: 12px;
  }
  .about_sec2_txt_list p {
    font-size: 14px;
  }
  .about_sec2_txt_list h5 {
    font-size: 18px;
  }
  .about_sec3_txt strong {
    font-size: 15px;
  }
  .about_sec3_txt p {
    font-size: 15px;
  }
  .about_sec4_img h5 {
    font-size: 15px;
  }
  .about_sec4_img h5 span {
    font-size: 13px;
  }
  .sub_nav_solutions_list h5,
  .sub_nav_solutions_list h5 i {
    font-size: 14px;
  }
  .sub_nav_solutions_list p span {
    font-size: 12px;
  }
  .about_sec2_list span {
    font-size: 15px;
  }
  .index_news_list .txt span {
    font-size: 14px;
  }
  .contact_sec2_list .txt h5 {
    font-size: 15px;
  }
  .contact_sec2_list .txt p {
    font-size: 12px;
  }
  .contact_sec2_list .txt p img {
    width: 20px;
  }
  .honor_logo_txt ul li p {
    font-size: 14px;
  }
  .ad_list h2 {
    font-size: 20px;
  }
}
@media (min-width: 1370px) {
  .header .nav span {
    font-size: 12px;
  }
  .banner_txt h5 {
    font-size: 38px;
  }
  .banner_txt p {
    font-size: 26px;
  }
  .banner_txt .banner_con p {
    font-size: 26px;
  }
  .banner_txt span {
    font-size: 16px;
  }
  .index_about .txt h5 {
    font-size: 32px;
  }
  .index_about .txt p {
    font-size: 16px;
  }
  .index_about .txt span {
    font-size: 14px;
  }
  .index_solution > h5 {
    font-size: 32px;
  }
  .index_solution_list h5 {
    font-size: 18px;
  }
  .index_solution_list span {
    font-size: 12px;
  }
  .index_provide .txt h5 {
    font-size: 32px;
  }
  .index_provide .txt p {
    font-size: 16px;
  }
  .index_provide .txt span {
    font-size: 14px;
  }
  .index_news > h5 {
    font-size: 32px;
  }
  .index_news_list .txt i {
    font-size: 12px;
  }
  .index_news_list .txt p {
    font-size: 14px;
  }
  .index_news_list > span {
    font-size: 14px;
  }
  .inner_banner_txt h5 {
    font-size: 28px;
  }
  .inner_banner_txt p {
    font-size: 14px;
  }
  .inner_h5 {
    font-size: 32px;
  }
  .solution_star_txt h5 {
    font-size: 16px;
  }
  .solution_star_txt p {
    font-size: 13px;
  }
  .solution_sec4_txt > p {
    font-size: 14px;
  }
  .solution_sec4_txt > p span {
    font-size: 18px;
  }
  .product_list_txt h5 {
    font-size: 15px;
  }
  .product_list_txt p,
  .product_list_txt span {
    font-size: 13px;
  }
  .product_sec2_txt p {
    font-size: 16px;
  }
  .product_sec2_txt span {
    font-size: 13px;
  }
  .service_sec1_txt p {
    font-size: 15px;
  }
  .service_sec1_txt span {
    font-size: 13px;
  }
  .service_sec3_list h5,
  .service_sec3_list p {
    font-size: 15px;
  }
  .service_sec3 .more span,
  .service_sec4 .more span {
    font-size: 13px;
  }
  .service_sec4 > p {
    font-size: 16px;
  }
  .service_sec4_input p,
  .service_sec4_input input,
  .service_sec4_input textarea {
    font-size: 15px;
  }
  .service_inner > h5 {
    font-size: 32px;
  }
  .service_inner > p {
    font-size: 16px;
  }
  .service_inner_txt h5 {
    font-size: 16px;
  }
  .service_inner_txt h5 p span {
    font-size: 13px;
  }
  .products_details_nav_item h5 {
    font-size: 14px;
  }
  .products_details_nav_item h5 i {
    font-size: 22px;
  }
  .products_details_this h5 {
    font-size: 22px;
  }
  .products_details_nav_item p i {
    font-size: 14px;
  }
  .products_details_nav_item p span {
    font-size: 12px;
  }
  .products_details_sec1_txt h5 {
    font-size: 20px;
  }
  .products_details_sec1_txt p {
    font-size: 15px;
  }
  .products_details_click span {
    font-size: 13px;
  }
  .products_data_txt1 h5 {
    font-size: 20px;
  }
  .products_data_txt1 p {
    font-size: 14px;
  }
  .product_data_bottom h5 {
    font-size: 32px;
  }
  .product_data_bottom p {
    font-size: 15px;
  }
  .product_data_bottom span {
    font-size: 13px;
  }

  .banner_contact_txt h5 {
    font-size: 32px;
  }
  .banner_contact_txt p {
    font-size: 14px;
  }
  .contact_sec1_input span {
    font-size: 16px;
  }
  .contact_sec1_input input {
    font-size: 14px;
  }
  .contact_map_item h5 {
    font-size: 15px;
  }
  .contact_map_item p {
    font-size: 13px;
  }
  .news_details_box > span {
    font-size: 13px;
  }
  .news_details_con p {
    font-size: 15px;
  }
  .news_details_con strong {
    font-size: 15px;
  }
  .news_details_con h5 {
    font-size: 20px;
  }
  .news_type span {
    font-size: 14px;
  }
  .news_list_txt i {
    font-size: 13px;
  }
  .news_list_txt h5 {
    font-size: 16px;
  }
  .news_list_txt p {
    font-size: 14px;
  }
  .news_sec3_list h5 {
    font-size: 15px;
  }
  .banner_about_inner_txt h5 {
    font-size: 32px;
  }
  .banner_about_inner_txt p {
    font-size: 14px;
  }
  .about_inner_sec1_txt h5 {
    font-size: 40px;
  }
  .about_inner_sec1_txt p {
    font-size: 16px;
  }
  .about_inner_sec2_txt h5 {
    font-size: 18px;
  }
  .about_inner_sec2_txt p {
    font-size: 14px;
  }
  .banner_about_txt h5 {
    font-size: 32px;
  }
  .banner_about_txt i,
  .banner_about_txt p {
    font-size: 14px;
  }
  .banner_about_txt h4 {
    /*font-size: 44px;*/
    font-size: 26px;
  }
  .banner_about_txt span {
    font-size: 12px;
  }
  .about_sec2_txt_list p {
    font-size: 16px;
  }
  .about_sec2_txt_list h5 {
    font-size: 20px;
  }
  .about_sec3_txt strong {
    font-size: 16px;
  }
  .about_sec3_txt p {
    font-size: 16px;
  }
  .about_sec4_img h5 {
    font-size: 16px;
  }
  .about_sec4_img h5 span {
    font-size: 14px;
  }
  .sub_nav_solutions_list h5,
  .sub_nav_solutions_list h5 i {
    font-size: 14px;
  }
  .sub_nav_solutions_list p span {
    font-size: 12px;
  }
  .about_sec2_list span {
    font-size: 16px;
  }
  .index_news_list .txt span {
    font-size: 15px;
  }
  .contact_sec2_list .txt h5 {
    font-size: 16px;
  }
  .contact_sec2_list .txt p {
    font-size: 13px;
  }
  .contact_sec2_list .txt p img {
    width: 22px;
  }
  .honor_logo_txt ul li p {
    font-size: 16px;
  }
  .ad_list h2 {
    font-size: 22px;
  }
}
@media (min-width: 1570px) {
  .header .nav span {
    font-size: 14px;
  }
  .banner_txt h5 {
    font-size: 40px;
  }
  .banner_txt p {
    font-size: 28px;
  }
  .banner_txt .banner_con p {
    font-size: 28px;
  }
  .banner_txt span {
    font-size: 18px;
  }
  .index_about .txt h5 {
    font-size: 36px;
  }
  .index_about .txt p {
    font-size: 18px;
  }
  .index_about .txt span {
    font-size: 16px;
  }
  .index_solution > h5 {
    font-size: 36px;
  }
  .index_solution_list h5 {
    font-size: 20px;
  }
  .index_solution_list span {
    font-size: 14px;
  }
  .index_provide .txt h5 {
    font-size: 36px;
  }
  .index_provide .txt p {
    font-size: 18px;
  }
  .index_provide .txt span {
    font-size: 16px;
  }
  .index_news > h5 {
    font-size: 36px;
  }
  .index_news_list .txt i {
    font-size: 13px;
  }
  .index_news_list .txt p {
    font-size: 16px;
  }
  .index_news_list > span {
    font-size: 16px;
  }
  .inner_banner_txt h5 {
    font-size: 30px;
  }
  .inner_banner_txt p {
    font-size: 15px;
  }
  .inner_h5 {
    font-size: 34px;
  }
  .solution_star_txt h5 {
    font-size: 18px;
  }
  .solution_star_txt p {
    font-size: 14px;
  }
  .solution_sec4_txt > p {
    font-size: 15px;
  }
  .solution_sec4_txt > p span {
    font-size: 18px;
  }
  .product_list_txt h5 {
    font-size: 16px;
  }
  .product_list_txt p,
  .product_list_txt span {
    font-size: 14px;
  }
  .product_sec2_txt p {
    font-size: 18px;
  }
  .product_sec2_txt span {
    font-size: 14px;
  }
  .service_sec1_txt p {
    font-size: 16px;
  }
  .service_sec1_txt span {
    font-size: 14px;
  }
  .service_sec3_list h5,
  .service_sec3_list p {
    font-size: 16px;
  }
  .service_sec3 .more span,
  .service_sec4 .more span {
    font-size: 14px;
  }
  .service_sec4 > p {
    font-size: 18px;
  }
  .service_sec4_input p,
  .service_sec4_input input,
  .service_sec4_input textarea {
    font-size: 16px;
  }
  .service_inner > h5 {
    font-size: 34px;
  }
  .service_inner > p {
    font-size: 18px;
  }
  .service_inner_txt h5 {
    font-size: 18px;
  }
  .service_inner_txt h5 p span {
    font-size: 14px;
  }
  .products_details_nav_item h5 {
    font-size: 15px;
  }
  .products_details_nav_item h5 i {
    font-size: 23px;
  }
  .products_details_this h5 {
    font-size: 23px;
  }
  .products_details_nav_item p i {
    font-size: 15px;
  }
  .products_details_nav_item p span {
    font-size: 13px;
  }
  .products_details_sec1_txt h5 {
    font-size: 22px;
  }
  .products_details_sec1_txt p {
    font-size: 16px;
  }
  .products_details_click span {
    font-size: 14px;
  }
  .products_data_txt1 h5 {
    font-size: 22px;
  }
  .products_data_txt1 p {
    font-size: 16px;
  }
  .product_data_bottom h5 {
    font-size: 34px;
  }
  .product_data_bottom p {
    font-size: 16px;
  }
  .product_data_bottom span {
    font-size: 14px;
  }

  .banner_contact_txt h5 {
    font-size: 34px;
  }
  .banner_contact_txt p {
    font-size: 15px;
  }
  .contact_sec1_input span {
    font-size: 17px;
  }
  .contact_sec1_input input {
    font-size: 15px;
  }
  .contact_map_item h5 {
    font-size: 16px;
  }
  .contact_map_item p {
    font-size: 14px;
  }
  .news_details_box > span {
    font-size: 14px;
  }
  .news_details_con p {
    font-size: 16px;
  }
  .news_details_con strong {
    font-size: 16px;
  }
  .news_details_con h5 {
    font-size: 22px;
  }
  .news_type span {
    font-size: 15px;
  }
  .news_list_txt i {
    font-size: 13px;
  }
  .news_list_txt h5 {
    font-size: 18px;
  }
  .news_list_txt p {
    font-size: 15px;
  }
  .news_sec3_list h5 {
    font-size: 16px;
  }
  .banner_about_inner_txt h5 {
    font-size: 34px;
  }
  .banner_about_inner_txt p {
    font-size: 15px;
  }
  .banner_about_inner_txt h5 {
    font-size: 34px;
  }
  .banner_about_inner_txt p {
    font-size: 15px;
  }
  .about_inner_sec1_txt h5 {
    font-size: 44px;
  }
  .about_inner_sec1_txt p {
    font-size: 18px;
  }
  .about_inner_sec2_txt h5 {
    font-size: 20px;
  }
  .about_inner_sec2_txt p {
    font-size: 15px;
  }
  .banner_about_txt h5 {
    font-size: 34px;
  }
  .banner_about_txt i,
  .banner_about_txt p {
    font-size: 15px;
  }
  .banner_about_txt h4 {
    /*font-size: 48px;*/
    font-size: 28px;
  }
  .banner_about_txt span {
    font-size: 13px;
  }
  .about_sec2_txt_list p {
    font-size: 17px;
  }
  .about_sec2_txt_list h5 {
    font-size: 22px;
  }
  .about_sec3_txt strong {
    font-size: 17px;
  }
  .about_sec3_txt p {
    font-size: 17px;
  }
  .about_sec4_img h5 {
    font-size: 18px;
  }
  .about_sec4_img h5 span {
    font-size: 15px;
  }
  .sub_nav_solutions_list h5,
  .sub_nav_solutions_list h5 i {
    font-size: 15px;
  }
  .sub_nav_solutions_list p span {
    font-size: 13px;
  }
  .about_sec2_list span {
    font-size: 18px;
  }
  .index_news_list .txt span {
    font-size: 16px;
  }
  .contact_sec2_list .txt h5 {
    font-size: 18px;
  }
  .contact_sec2_list .txt p {
    font-size: 14px;
  }
  .contact_sec2_list .txt p img {
    width: 24px;
  }
  .honor_logo_txt ul li p {
    font-size: 18px;
  }
  .ad_list h2 {
    font-size: 26px;
  }
}

@media (min-width: 1770px) {
  .header .nav span {
    font-size: 14px;
  }
  .banner_txt h5 {
    font-size: 42px;
  }
  .banner_txt p {
    font-size: 30px;
  }
  .banner_txt .banner_con p {
    font-size: 30px;
  }
  .banner_txt span {
    font-size: 20px;
  }
  .index_about .txt h5 {
    font-size: 40px;
  }
  .index_about .txt p {
    font-size: 20px;
  }
  .index_about .txt span {
    font-size: 18px;
  }
  .index_solution > h5 {
    font-size: 40px;
  }
  .index_solution_list h5 {
    font-size: 22px;
  }
  .index_solution_list span {
    font-size: 14px;
  }
  .index_provide .txt h5 {
    font-size: 40px;
  }
  .index_provide .txt p {
    font-size: 20px;
  }
  .index_provide .txt span {
    font-size: 18px;
  }
  .index_news > h5 {
    font-size: 40px;
  }
  .index_news_list .txt i {
    font-size: 14px;
  }
  .index_news_list .txt p {
    font-size: 18px;
  }
  .index_news_list > span {
    font-size: 18px;
  }
  .inner_banner_txt h5 {
    font-size: 32px;
  }
  .inner_banner_txt p {
    font-size: 16px;
  }
  .inner_h5 {
    font-size: 36px;
  }

  .solution_star_txt h5 {
    font-size: 20px;
  }
  .solution_star_txt p {
    font-size: 16px;
  }
  .solution_sec4_txt > p {
    font-size: 16px;
  }
  .solution_sec4_txt > p span {
    font-size: 20px;
  }
  .product_list_txt h5 {
    font-size: 20px;
  }
  .product_list_txt p,
  .product_list_txt span {
    font-size: 16px;
  }
  .product_sec2_txt p {
    font-size: 20px;
  }
  .product_sec2_txt span {
    font-size: 16px;
  }
  .service_sec1_txt p {
    font-size: 18px;
  }
  .service_sec1_txt span {
    font-size: 16px;
  }
  .service_sec3_list h5,
  .service_sec3_list p {
    font-size: 18px;
  }
  .service_sec3 .more span,
  .service_sec4 .more span {
    font-size: 16px;
  }
  .service_sec4 > p {
    font-size: 20px;
  }
  .service_sec4_input p,
  .service_sec4_input input,
  .service_sec4_input textarea {
    font-size: 18px;
  }
  .service_inner > h5 {
    font-size: 36px;
  }
  .service_inner > p {
    font-size: 20px;
  }
  .service_inner_txt h5 {
    font-size: 20px;
  }
  .service_inner_txt h5 p span {
    font-size: 16px;
  }
  .products_details_nav_item h5 {
    font-size: 16px;
  }
  .products_details_nav_item h5 i {
    font-size: 24px;
  }
  .products_details_this h5 {
    font-size: 24px;
  }
  .products_details_nav_item p i {
    font-size: 16px;
  }
  .products_details_nav_item p span {
    font-size: 14px;
  }
  .products_details_sec1_txt h5 {
    font-size: 24px;
  }
  .products_details_sec1_txt p {
    font-size: 18px;
  }
  .products_details_click span {
    font-size: 16px;
  }
  .products_data_txt1 h5 {
    font-size: 24px;
  }
  .products_data_txt1 p {
    font-size: 18px;
  }
  .product_data_bottom h5 {
    font-size: 36px;
  }
  .product_data_bottom p {
    font-size: 18px;
  }
  .product_data_bottom span {
    font-size: 16px;
  }

  .banner_contact_txt h5 {
    font-size: 36px;
  }
  .banner_contact_txt p {
    font-size: 16px;
  }
  .contact_sec1_input span {
    font-size: 18px;
  }
  .contact_sec1_input input {
    font-size: 16px;
  }
  .contact_map_item h5 {
    font-size: 18px;
  }
  .contact_map_item p {
    font-size: 16px;
  }
  .news_details_box > span {
    font-size: 15px;
  }
  .news_details_con p {
    font-size: 18px;
  }
  .news_details_con strong {
    font-size: 18px;
  }
  .news_details_con h5 {
    font-size: 24px;
  }
  .news_type span {
    font-size: 16px;
  }
  .news_list_txt i {
    font-size: 14px;
  }
  .news_list_txt h5 {
    font-size: 20px;
  }
  .news_list_txt p {
    font-size: 16px;
  }
  .news_sec3_list h5 {
    font-size: 18px;
  }
  .banner_about_inner_txt h5 {
    font-size: 36px;
  }
  .banner_about_inner_txt p {
    font-size: 16px;
  }
  .about_inner_sec1_txt h5 {
    font-size: 48px;
  }
  .about_inner_sec1_txt p {
    font-size: 20px;
  }
  .about_inner_sec2_txt h5 {
    font-size: 22px;
  }
  .about_inner_sec2_txt p {
    font-size: 16px;
  }

  .banner_about_txt h5 {
    font-size: 36px;
  }
  .banner_about_txt i,
  .banner_about_txt p {
    font-size: 16px;
  }
  .banner_about_txt h4 {
    /*font-size: 52px;*/
    font-size: 30px;
  }
  .banner_about_txt span {
    font-size: 14px;
  }
  .about_sec2_txt_list p {
    font-size: 18px;
  }
  .about_sec2_txt_list h5 {
    font-size: 24px;
  }
  .about_sec3_txt strong {
    font-size: 18px;
  }
  .about_sec3_txt p {
    font-size: 18px;
  }

  .about_sec4_img h5 {
    font-size: 20px;
  }
  .about_sec4_img h5 span {
    font-size: 16px;
  }
  .sub_nav_solutions_list h5,
  .sub_nav_solutions_list h5 i {
    font-size: 16px;
  }
  .sub_nav_solutions_list p span {
    font-size: 14px;
  }
  .about_sec2_list span {
    font-size: 20px;
  }
  .index_news_list .txt span {
    font-size: 18px;
  }
  .contact_sec2_list .txt h5 {
    font-size: 20px;
  }
  .contact_sec2_list .txt p {
    font-size: 15px;
  }
  .contact_sec2_list .txt p img {
    width: 26px;
  }
  .honor_logo_txt ul li p {
    font-size: 20px;
  }
  .ad_list h2 {
    font-size: 28px;
  }
}
/********屏幕自适应********/

/********移动端********/
@media (max-width: 768px) {
  body {
    font-size: 12px;
    overflow-x: hidden;
  }
  /*手机导航*/
  .phone_header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 22;
    background: #ffffff;
    width: 100%;
    height: 50px;
  }

  .phone_header .logo {
    position: absolute;
    left: 10px;
    top: 12px;
    width: 180px;
  }
  .logo_white {
    position: absolute;
    left: 20px;
    top: 12px;
    width: 100px;
  }
  .menuIcon,
  .menuIcon2 {
    position: absolute;
    right: 0px;
    top: 2px;
    z-index: 996;
    cursor: pointer;
  }
  .btn-nav {
    background: 0 0;
    border: none;
    padding: 10px 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
    z-index: 99999;
  }
  .btn-nav:focus {
    outline: 0;
  }
  .icon-bar {
    display: block;
    margin: 5px 0;
    width: 23px;
    height: 2px;
    background-color: #000;
  }
  .btn-nav:hover .icon-bar {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #000;
  }
  .btn-nav.animated2 .icon-bar {
    background-color: #000;
  }
  .btn-nav.animated2 .icon-bar.top {
    -webkit-transform: translateY(6px) rotateZ(45deg);
    transform: translateY(6px) rotateZ(45deg);
  }
  .btn-nav.animated2 .icon-bar.middle {
    width: 0;
  }
  .btn-nav.animated2 .icon-bar.bottom {
    -webkit-transform: translateY(-8px) rotateZ(-45deg);
    transform: translateY(-8px) rotateZ(-45deg);
  }
  .middle {
    width: 18px;
  }
  .icon-bar {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 999999;
  }
  .menuMain {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #ffffff;
    display: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .menuBox {
    margin: 80px 0px 20px 0px;
    padding: 0 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .menuBox .home_bot .nav_ti > li div {
    color: rgba(0, 0, 0, 0.8);
  }
  .menuBox .home_bot .nav_ti > li ul li a {
    color: rgba(0, 0, 0, 0.9);
  }
  .home_bot .nav_ti > li {
    border-bottom: 1px solid rgba(220, 220, 220, 0.8);
  }
  .home_bot .nav_ti > li > div {
    height: 40px;
    line-height: 45px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    background-size: 12px;
    display: block;
    text-transform: uppercase;
  }
  .nav_ti > li > div > img {
    float: right;
    font-size: 22px;
    margin-right: 15px;
    margin-top: 17px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .home_bot .nav_ti > li ul {
    display: none;
    padding: 0 5px 5px;
  }
  .home_bot .nav_ti > li ul li {
    padding-left: 15px;
    line-height: 30px;
  }
  .home_bot .nav_ti > li ul li a {
    color: rgba(0, 0, 0, 0.4);
  }
  .home_bot .fast li img {
    width: 30px;
    margin-right: 5px;
  }
  .nav_ti div img.scale1 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  /*手机导航*/

  .footer {
    padding: 5%;
  }
  .foot_logo {
    margin-bottom: 30px;
  }
  .foot_logo img {
    width: 24%;
  }
  .foot_nav {
    flex-wrap: wrap;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  .foot_nav .item {
    width: 100%;
  }
  .foot_nav .item p {
    display: none;
  }
  .foot_nav .item h5 {
    margin-bottom: 20px;
  }
  .foot_nav::before {
    top: -15px;
  }
  .foot_info {
    flex-wrap: wrap;
  }
  .foot_info .item {
    width: 100% !important;
  }
  .banner {
    margin-top: 50px;
  }
  .banner_list {
    top: -50px;
  }
  .banner_txt {
    width: 80%;
    left: 10%;
    top: 40%;
  }
  .banner_txt h5 {
    font-size: 20px;
    /*line-height: 1.5;*/
    line-height: 2;
  }
  .banner_txt span {
    font-size: 16px;
    padding: 0 16px;
    border-radius: 16px;
    margin-top: 12%;
  }
  .pagination_banner {
    /*bottom: 20px !important;*/
    bottom: 90px !important;
  }
  .pagination_banner .swiper-pagination-bullet {
    width: 24px;
    height: 6px;
  }
  .pagination_banner .swiper-pagination-bullet-active {
    width: 40px;
  }
  .index_about {
    /*padding: 6%;*/
    padding: 0 6% 6% 6%;
  }
  .index_about .box {
    padding-left: 0;
  }
  .index_about .txt {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 6%;
    border: none;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  .index_about .txt h5 {
    font-size: 20px;
    margin-bottom: 6%;
  }
  .index_about .txt h5::before {
    width: 36px;
    height: 4px;
  }
  .index_about .txt p {
    font-size: 14px;
  }
  .index_about .txt span {
    font-size: 14px;
  }
  .index_news {
    padding: 6% 0;
  }
  .index_news > h5 {
    width: 80%;
    font-size: 20px;
    margin-bottom: 6%;
  }
  .index_news > h5::before {
    width: 36px;
    height: 4px;
  }
  .index_news_list .txt i {
    font-size: 12px;
    margin-bottom: 6%;
  }
  .index_news_list .txt p {
    font-size: 14px;
  }
  .index_news_list .txt span {
    font-size: 14px;
  }
  .index_solution {
    padding: 6%;
  }
  .index_solution > h5 {
    font-size: 20px;
    margin-bottom: 6%;
  }
  .index_solution > h5::before {
    width: 36px;
    height: 4px;
  }
  .index_solution_list h5 {
    font-size: 16px;
  }
  .index_solution_list {
    margin-bottom: 6%;
  }
  .index_provide {
    padding: 6%;
  }
  .index_provide .box {
    padding-left: 0;
  }
  .index_provide .txt {
    width: 100%;
    padding-right: 0;
    position: relative;
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    margin-top: 6%;
  }
  .index_provide .txt h5 {
    font-size: 20px;
    margin-bottom: 6%;
  }
  .index_provide .txt h5::before {
    width: 36px;
    height: 4px;
  }
  .index_provide .txt p {
    font-size: 14px;
  }
  .index_provide .txt span {
    font-size: 14px;
  }
  .inner_nav {
    margin-top: 50px !important;
    padding: 16px;
  }
  .inner_nav i {
    margin: 0px 6px;
  }
  .inner_banner_txt {
    left: 10%;
    right: 10%;
  }
  .inner_banner_txt h5 {
    font-size: 20px;
  }
  .inner_banner_txt p {
    font-size: 14px;
    display: none;
  }
  .solution_sec1 {
    padding: 6%;
  }
  .solution_sec2 {
    padding: 6% 0;
  }
  .inner_h5 {
    padding: 0 10%;
    font-size: 20px;
    margin-bottom: 6%;
    padding-top: 4%;
  }
  .inner_h5::before {
    width: 36px;
    height: 4px;
    left: 10%;
  }
  .solution_sec2_box {
    padding: 0 6%;
  }
  .solution_sec3 {
    padding: 6% 0;
  }
  .solution_sec3_box {
    padding: 0 6%;
  }
  .solution_star_txt h5 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .solution_star_txt p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .solution_sec4 {
    padding: 6% 0 9% 0;
  }
  .solution_sec4_box {
    padding: 0 6%;
  }
  .solution_sec4_txt {
    padding-top: 6%;
  }
  .solution_sec4_txt p {
    font-size: 14px;
    margin-bottom: 6%;
  }
  .solution_sec4_txt p span {
    font-size: 16px;
    margin-top: 6%;
  }
  .product_sec2_list {
    width: 80%;
    margin: 0 auto;
  }
  .product_sec2_txt p {
    font-size: 16px;
    margin: 6% 0;
  }
  .product_sec2_txt span {
    font-size: 14px;
  }
  .inner_banner_txt1 {
    top: 54%;
  }
  .product_sec1 {
    padding: 6%;
  }
  .product_list_txt {
    margin-top: 3%;
  }
  .product_list_txt h5 {
    font-size: 16px;
  }
  .product_list_txt p {
    font-size: 14px;
  }
  .product_list_txt span {
    font-size: 14px;
  }
  .product_list_txt p {
    margin: 3% 0 6% 0;
  }
  .product_list {
    margin-bottom: 8%;
  }
  .product_sec2 {
    padding: 6%;
  }
  .product_sec2 .product_sec2_list {
    margin-bottom: 6%;
  }
  .products_details {
    padding: 6%;
  }
  .inner_nav .back {
    right: 16px;
  }
  .products_details {
    flex-wrap: wrap;
  }
  .products_details_nav {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
  .products_details_box {
    width: 100%;
  }
  .inner_nav .back {
    top: 40px;
  }
  .products_details_this h5 {
    font-size: 16px;
  }
  .products_details_nav_item h5 i {
    font-size: 16px;
  }
  .products_details_nav_item p {
    font-size: 12px;
  }
  .products_details_nav_item p i {
    font-size: 12px;
  }
  .products_details_this {
    padding-bottom: 4%;
    margin-bottom: 4%;
  }
  .products_details_sec1_img {
    margin-bottom: 3%;
  }
  .products_details_sec1_txt h5 {
    font-size: 16px;
  }
  .products_details_sec1_txt p {
    font-size: 12px;
  }
  .products_details_click span {
    font-size: 13px;
  }
  .products_details_sec2_img {
    margin-bottom: 3%;
  }
  .products_data_txt1 h5 {
    font-size: 16px;
  }
  .products_data_txt1 p {
    font-size: 12px;
  }
  .product_data_bottom {
    padding: 6%;
  }
  .product_data_bottom h5 {
    font-size: 20px;
  }
  .product_data_bottom p {
    font-size: 14px;
  }
  .product_data_bottom span {
    font-size: 12px;
    padding: 5px 30px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .service_sec1 {
    padding: 6%;
  }
  .service_sec1_txt p {
    font-size: 14px;
  }
  .service_sec1_txt_con {
    margin-bottom: 6%;
  }
  .service_sec1_txt {
    margin-bottom: 6%;
  }
  .service_sec2 {
    padding: 10% 0;
  }
  .service_sec3 {
    padding: 6%;
  }
  .service_sec3_list h5,
  .service_sec3_list p {
    font-size: 14px;
  }
  .service_sec3 .more span,
  .service_sec4 .more span {
    font-size: 14px;
  }
  .service_sec4 {
    padding: 6%;
  }
  .service_sec4 > p {
    font-size: 14px;
  }
  .service_sec4_input p {
    font-size: 14px;
  }
  .service_inner {
    padding: 6% 6% 20% 6%;
  }
  .service_inner .top img {
    font-size: 20px;
  }
  .service_inner .top img {
    width: 20%;
  }
  .service_inner .search {
    width: 76%;
  }
  .service_inner .search input {
    font-size: 10px;
  }
  .service_inner > h5 {
    font-size: 20px;
  }
  .service_inner > p {
    font-size: 15px;
  }
  .service_inner_list {
    width: 50%;
  }
  .service_inner_txt h5 {
    font-size: 15%;
  }
  .service_inner_txt h5 p span {
    font-size: 12px;
  }
  .service_inner_txt h5 p span {
    margin: 0 2%;
  }
  .service_inner_txt {
    padding-top: 50%;
  }
  .banner_about_txt {
    top: 12%;
    left: 10%;
    right: 10%;
  }
  .banner_about_txt h5 {
    font-size: 16px;
  }
  .banner_about_txt h4 {
    display: none;
  }
  .banner_about_txt p {
    font-size: 13px;
    line-height: 1.6;
  }
  .banner_about_txt span {
    font-size: 12px;
    line-height: 2;
    padding: 0 20px;
  }
  .honor_logo_txt {
    width: 80%;
  }
  .honor_logo_txt ul li p {
    font-size: 13px;
  }
  .about_sec2 {
    padding: 6% 0;
  }
  .about_sec2_box {
    padding: 0;
  }
  .about_sec2_img {
    flex-wrap: wrap;
    height: auto !important;
  }
  .about_sec2_list {
    width: 38%;
  }
  .about_sec2_list.active {
    width: 48%;
  }
  .about_sec2_list span {
    font-size: 14px;
  }
  .about_sec2_txt_list p {
    font-size: 13px;
    line-height: 1.6;
  }
  .about_sec2_txt_list h5 {
    font-size: 20px;
  }
  .about_sec3 {
    padding: 6% 0;
  }
  .about_sec3_box {
    padding: 0 6%;
  }
  .about_sec3_txt {
    padding: 0 8%;
  }
  .about_sec3_txt strong {
    font-size: 13px;
    line-height: 1.8;
  }
  .about_sec3_txt p {
    font-size: 13px;
    line-height: 1.8;
  }
  .about_sec4 {
    padding: 6% 0 8% 0;
  }
  .about_sec4_box {
    padding: 0 6%;
  }
  .about_sec4_img {
    width: 70%;
  }
  .about_sec4_item {
    width: 32%;
    left: 6%;
  }
  .about_sec4_img h5 {
    font-size: 18px;
    top: 10%;
    margin: 0;
  }
  .about_sec4_img h5 span {
    font-size: 13px;
  }
  .about_sec5_box {
    padding: 0 6%;
  }
  .about_sec5_item {
    font-size: 24%;
  }
  .about_sec5_item p {
    font-size: 14px;
  }
  .swiper_news {
    padding-left: 6%;
  }
  .about_sec6 .index_news_list {
    padding: 0;
  }
  .banner_about_inner_txt {
    left: 10%;
    right: 10%;
  }
  .banner_about_inner_txt h5 {
    font-size: 20px;
  }
  .banner_about_inner_txt p {
    font-size: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .about_inner_sec1 {
    padding: 6%;
  }
  .about_inner_sec1_txt h5 {
    font-size: 20px;
  }
  .about_inner_sec1_txt p {
    font-size: 12px;
  }
  .swiper_honor {
    padding-left: 6%;
  }
  .about_inner_sec2_txt {
    padding-left: 20px;
  }
  .about_inner_sec2_txt h5 {
    font-size: 16px;
  }
  .about_inner_sec2_txt p {
    font-size: 12px;
    line-height: 1.5;
  }
  .banner_contact_txt {
    width: 80%;
    left: 10%;
  }
  .banner_contact_txt h5 {
    font-size: 20px;
  }
  .banner_contact_txt p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .contact_map {
    padding: 6%;
  }
  .contact_map_list {
    margin-bottom: 4%;
  }
  .contact_map_item {
    padding-bottom: 3%;
    margin-bottom: 3%;
  }
  .contact_map_item h5 {
    font-size: 15px;
  }
  .contact_map_item p {
    font-size: 13px;
    line-height: 1.5;
  }
  .contact_search {
    display: none;
  }
  .contact_sec2 {
    padding: 6%;
  }
  .contact_sec2_list {
    width: 100%;
  }
  .contact_sec2_list .txt h5 {
    font-size: 16px;
  }
  .contact_sec2_list .txt p {
    font-size: 13px;
  }
  .contact_sec2_list .txt p img {
    width: 20px;
  }
  .contact_sec1 {
    padding: 6%;
  }
  .contact_sec1_input span {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .foot_info .item p {
    display: none;
  }
  .ad_list .ad_list_con {
    padding: 0 6%;
    margin-bottom: 28px;
  }
  .ad_list_img {
    padding: 0 6%;
  }
  .ad_list h2 {
    padding: 0 6%;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .add_next,
  .add_prev,
  .ad_list_line {
    display: none;
  }
}

/********移动端********/

/********缓动********/
.animateHide {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
}
.animateHide1 {
  -webkit-transform: translateX(-120px);
  transform: translateX(-120px);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
}
.animateHide2 {
  -webkit-transform: translateX(120px);
  transform: translateX(120px);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
}
.animateHide.d0 {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.animateHide.d1 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.animateHide.d2 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.animateHide.d3 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.animateHide.d4 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.animateHide.d5 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.animateHide.d6 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.animateHide.d7 {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.animateHide.d8 {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.animateHide.d9 {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.animateShow {
  -webkit-transform: translateX(0px) translateY(0px);
  transform: translateX(0px) translateY(0px);
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}
/********缓动********/
