body {
  padding-top: 80px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 4.5% 0 2.5%;
  z-index: 999;
  background-color: #21252e;
  box-sizing: border-box;
}

.nav-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 66;
}

.nav-box .logo {
  width: 157px;
  height: 40px;
}

.nav-box .logo img,
.nav-box .logo a {
  display: block;
  /* width: 100%; */
  max-height: 100%;
}

.nav-box .nav {
  width: 100%;
  height: 100%;
  margin-left: 5%;
}

.nav-box .nav>ul {
  /* width: 700px; */
  display: flex;
  height: 100%;
  position: relative;
  /* justify-content: center; */
  align-items: center;
}

.nav-box .nav>ul>li {
  /* flex: auto; */
  padding: 0 25px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.nav-box .nav>ul>li>a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.nav-box .nav>ul>li a:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 0;
  transition: width 0.5s;
}

.nav-box .nav>ul>li.on>a::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.nav-box .nav>ul>li>a.on::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.nav-box .nav>ul>li:hover>a:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background-color: #0a418b;
  border-radius: 2px;
}

/* 下拉菜单 */
.nav-box .nav .down {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  /* background-color: #282b31; */
  height: 0;
  /* padding-left: 157px; */
  overflow: hidden;
  transition: height 0.5s;
  box-sizing: border-box;
}

.nav-box .nav .down ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-box .nav>ul>li .down {
  text-align: center;
}

.nav-box .nav>ul>li .down ul li {
  margin: 0 25px;
}

.nav-box .nav>ul>li .down .img {
  width: 140px;
  height: 104px;
  box-sizing: border-box;
  transition: all 0.5s;
}

.nav-box .nav>ul>li .down .img img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-box .nav>ul>li .down p {
  font-size: 14px;
  line-height: 40px;
  color: #ffffff;
  white-space: nowrap;
}

.nav-box .nav>ul>li:hover .down {
  height: 180px;
}

.nav-box .nav>ul>li .down ul li.on .img {
  border: solid 2px #1e74e8;
}

.nav-box .nav>ul>li .down ul li:hover .img {
  border: solid 2px #1e74e8;
}

/*  */
.nav-box .nav-r {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.nav-box .nav-r .img a {
  display: none;
  width: 100px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border: solid 1px rgba(255, 255, 255, 0.6);
}

.nav-box .nav-r .xz {
  height: 53px;
}

.bk {
  position: fixed;
  width: 100%;
  height: 0;
  background-color: #282b31;
  z-index: 66;
  /* transition: height .5s; */
}

.bk.on {
  height: 180px;
  transition: height 0.5s;
}

/* 手机端头部*/
.m_header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #21252e;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  height: 58px;
  padding: 0 15px;
  display: none;
}

.m_hd_con {
  position: relative;
  height: 58px;
}

a.m_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

a.m_logo img {
  height: 40px;
}

.m_nav_icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding-top: 20px;
  cursor: pointer;
  box-sizing: border-box;
}

.m_nav_icon span {
  display: block;
  width: 25px;
  height: 2px;
  background: #3070c5;
}

.m_nav_icon span:nth-child(2n) {
  margin: 7px 0;
}

.m_nav_modal {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 11;
  display: none;
}

.m_nav_expand {
  position: fixed;
  width: 62%;
  height: 100%;
  overflow-y: auto;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 99;
  transform: translateX(-150%);
  transition: all 0.36s;
}

.m_nav_expand.cur {
  transform: translateX(0);
}

.expand_hd {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.expand_logo {
  text-align: center;
  /* margin-bottom: 15px; */
}

.m_search .form_group {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.m_search .form_group input {
  width: 150px;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  border-bottom: 1px solid #eee;
  color: #333;
  border-radius: 0;
}

.m_naver {
  text-align: center;
  padding: 0 15px;
}

.m_naver ul li {
  border-bottom: 1px solid #efefef;
}

.m_naver ul li>a {
  display: block;
  color: #333;
  font-size: 15px;
  line-height: 44px;
}

.m_naver ul li dl {
  /* padding-bottom: 10px; */
  display: none;
}

.m_naver ul li dl dd a {
  display: block;
  font-size: 14px;
  line-height: 36px;
  color: #555;
}

.m_naver ul li>a.active {
  color: #3070c5;
}

.content {
  width: 100%;
  padding-bottom: 100px;
}

.content .banner-swiper {
  width: 100%;
}

.content .banner-swiper .swiper-container {
  height: 100%;
}

.banner-swiper .swiper-slide {
  overflow: hidden;
  height: 759px;
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner-img img {
  width: 100%;
  height: 100%;
}

.banner-swiper .details-img {
  /* height: 100%; */
  margin-top: 10%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}

.banner-swiper .details-img .left {
  width: 41%;
}

.banner-swiper .details-img .left img {
  position: relative;
  display: block;
  margin-top: 10%;
  max-width: 100%;
  animation: leftmove 2s;
}

.banner-swiper .details-img .left img:nth-child(2) {
  margin-top: 50px;
  max-width: 590px;
}

.banner-swiper .details-img .left a {
  position: relative;
  display: block;
  width: 222px;
  height: 63px;
  margin-top: 50px;
  line-height: 63px;
  text-align: center;
  font-size: 30px;
  background-color: #ffffff;
  border-radius: 32px;
  color: #0a418b;
  animation: leftmove 2s;
}

.banner-swiper .details-img .right {
  width: 44%;
}

.banner-swiper .details-img .right img {
  position: relative;
  max-width: 100%;
  animation: rightmove 2s;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: #fff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  width: 26px !important;
  background-color: #0a418b !important;
  border-radius: 5px !important;
}

.title {
  padding-top: 100px;
}

.title>h5 {
  width: 100%;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 29px;
  color: #333333;
}

.title>p {
  width: 800px;
  /* height: 36px; */
  margin: 20px auto 0;
  font-family: PingFang-SC-Regular;
  font-size: 16px;
  text-align: center;
  font-weight: normal;
  font-stretch: normal;
  line-height: 22px;
  letter-spacing: 0px;
  color: #333333;
}

.part1>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.content .part1>ul li {
  width: 22.22%;
  height: 320px;
  padding: 50px 30px 0 30px;
  background: url("../images/small-bg1.png") center no-repeat;
  background-size: 100% 100%;
  border-radius: 10px;
  box-sizing: border-box;
  transition: transform 0.5s;
}

.content .part1>ul li:nth-child(2) {
  background: url("../images/small-bg2.png") center no-repeat;
  background-size: 100% 100%;
}

.content .part1>ul li:nth-child(3) {
  background: url("../images/small-bg3.png") center no-repeat;
  background-size: 100% 100%;
}

.content .part1>ul li:nth-child(4) {
  background: url("../images/small-bg4.png") center no-repeat;
  background-size: 100% 100%;
}

.content .part1>ul li .img {
  width: 66px;
  height: 66px;
  transition: transform 1s;
}

.content .part1>ul li .img img {
  max-width: 100%;
  max-height: 100%;
}

.content .part1>ul li .p1 {
  height: 30px;
  margin-top: 36px;
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.content .part1>ul li .p2 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .part1>ul li:hover {
  transform: translateY(-10px);
}

.content .part1>ul li:hover .img {
  transform: rotate(360deg);
}

.content .part2 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.content .part2 ul li {
  width: 22.22%;
  height: 440px;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.5s;
}

.content .part2 ul li:nth-child(1) {
  padding: 0 24px;
  box-shadow: 0px 0px 20px #ccc;
  background-image: url("../images/small-bg5.jpg");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.content .part2 ul li .p1.ts {
  /* height: 84px; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .part2 ul li .p1 {
  margin-top: 50px;
  font-size: 30px;
  line-height: 42px;
  color: #333333;
  /* white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; */
}

.content .part2 ul li p {
  margin-top: 34px;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.content .part2 ul li .more {
  width: 86px;
  height: 30px;
  margin-top: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  color: #666666;
  background-color: #ffffff;
  border-radius: 15px;
  border: solid 1px #999999;
}

.content .part2 ul li .more a {
  color: #666666;
}

/* .part2 > ul li:hover {
  transform: translateY(-10px);
} */
.content .part2 ul li>.img {
  width: 100%;
  height: 260px;
}

.content .part2 ul li>.img img {
  display: block;
  width: 100%;
  height: 100%;
}

.content .part2 ul li .det {
  width: 100%;
  height: 180px;
  padding: 30px 0 0 0;
  box-sizing: border-box;
  /* transition: all 0.5s; */
}

.content .part2 ul li .det .t1 {
  font-size: 18px;
  line-height: 29px;
  color: #666;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.content .part2 ul li .det .t2 {
  width: 100%;
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.content .part2 ul li .det .right {
  /* position: relative;
  left: -100%; */
  transform: translateX(-100%);
  width: 56px;
  height: 14px;
  margin-top: 20px;
  transition: transform 0.5s;
}

.content .part2 ul li .det .right img {
  display: block;
  width: 100%;
}

.content .part2 ul li:hover .det {
  padding: 30px 70px 0 30px;
  background-color: #21252e;
  border-bottom: 4px solid #1f62dd;
}

.content .part2 ul li:hover .det .t1 {
  color: #fff;
}

.content .part2 ul li:hover .det .t2 {
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .part2 ul li:hover .det .right {
  transform: translateX(0);
}

.content .part2 ul.sec li {
  width: 18.05%;
  height: 460px;
}

.content .part2 ul.sec li:nth-child(1) {
  width: 22.22%;
  background-image: url("../images/small-bg6.jpg");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.content .part2 ul.sec li>.img {
  height: 300px;
}

.content .part2 ul.sec li .det {
  height: 160px;
  padding: 20px 0 0 0;
}

.content .part2 ul.sec li:hover .det {
  padding: 20px 70px 0 30px;
  background-color: #21252e;
  border-bottom: 4px solid #1f62dd;
}

.part3 ul {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.content .part3 ul li {
  flex: 1;
  height: 700px;
  overflow: hidden;
}

.content .part3 ul li .show1 {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  transition: top 1s;
  cursor: pointer;
}

.content .part3 ul li .show1>.img {
  width: 100%;
  height: 63%;
  transition: height 0.5s;
}

.content .part3 ul li .show1>.img img {
  width: 100%;
  height: 100%;
}

.content .part3 ul li .show1 .btm {
  width: 100%;
  height: 37%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #0a418b;
  border-right: 1px solid rgba(238, 238, 238, 0.1);
  box-sizing: border-box;
  transition: height 0.5s, background 0.5s;
}

.line {
  width: 1px;
  height: 27px;
  margin-top: 20px;
  background-color: #e6e6e6;
  opacity: 0.1;
}

.content .part3 ul li .show1 .btm>img {
  max-width: 50px;
  height: 50px;
  margin-top: 30px;
}

.content .part3 ul li .show1 .btm span {
  margin-top: 20px;
  font-size: 24px;
  color: #ffffff;
}

.content .part3 ul li .show1 .down {
  position: absolute;
  bottom: 50px;
  width: 30px;
  height: 16px;
  display: none;
  cursor: pointer;
}

.content .part3 ul li .show1 .down img {
  width: 100%;
  height: 100%;
}

.content .part3 ul li:hover .show1 .line {
  width: 0;
}

.content .part3 ul li:hover .show1>.img {
  height: 50%;
}

.content .part3 ul li:hover .show1 .btm {
  height: 50%;
  background-color: #21252e;
}

.content .part3 ul li:hover .show1 .down {
  display: block;
}

.show2 {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 28% 14% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background-color: #21252e;
  transition: top 1s;
}

.show2 .t1 {
  font-size: 24px;
  color: #ffffff;
}

.show2 .line {
  margin-top: 30px;
}

.show2 p {
  /* margin-top: 63px; */
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 14;
}

.show2 .more {
  width: 86px;
  height: 30px;
  margin-top: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  /* color: #666666; */
  /* background-color: #ffffff; */
  border-radius: 15px;
  border: solid 1px #999999;
}

.show2 .more a {
  color: #fff;
}

.content .part3 ul li.on .show1 {
  position: relative;
  top: -100%;
}

.content .part3 ul li.on .show2 {
  position: relative;
  top: -100%;
}

.content .part4 {
  border-bottom: 1px solid #eee;
}

.content .part4 ul {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content .part4 ul li {
  position: relative;
  width: 19.44%;
  height: 248px;
}

.content .part4 ul li .p1 {
  font-weight: 650;
  font-size: 20px;
  line-height: 30px;
  height: 60px;
  color: #1c1c1c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .part4 ul li p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .part4 ul li .time {
  margin-top: 15px;
  font-size: 14px;
  line-height: 30px;
  color: #999999;
}

.content .part4 ul li .img {
  margin-top: 10px;
  width: 34px;
  height: 34px;
  overflow: hidden;
}

.content .part4 ul li .img img {
  width: 34px;
  height: 34px;
}

.content .part4 ul li::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 0px;
  height: 4px;
  background-color: #0a418b;
  transition: width 0.5s;
}

.content .part4 ul li:hover .img img.s1 {
  display: none;
}

.content .part4 ul li:hover::after {
  width: 100%;
}

.footer {
  width: 100%;
  /* height: 752px; */
  padding-top: 90px;
  background-color: #3d3e46;
  color: #fff;
  box-sizing: border-box;
}

.footer .f1 {
  display: flex;
  /* height: 260px; */
  justify-content: space-between;
  padding-bottom: 40px;
  box-sizing: border-box;
  background-color: #3d3e46;
}

.footer .f1 .left {
  width: 220px;
}

.footer .f1 .left .logo {
  width: 100%;
  height: 62px;
}

.footer .f1 .left .logo img {
  width: 100%;
}

.footer .f1 .left .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}

.footer .f1 .left .img-box .img:last-child {
  display: none;
}

.footer .f1 .left .img-box img {
  width: 96px;
  height: 96px;
}

.footer .f1 .left .img-box p {
  width: 100%;
  font-size: 14px;
  text-align: center;
}

.footer .f1 .cen>ul {
  width: 620px;
  margin: 0 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-right: 1px;
  border-right: 1px solid rgba(238, 238, 238, 0.6);
}

.footer .f1 .cen>ul>li {
  flex: auto;
}

.footer .f1 .cen>ul p {
  font-size: 18px;
  padding-bottom: 20px;
}

.footer .f1 .cen>ul li a,
.footer .f1 .cen>ul li {
  line-height: 36px;
  font-size: 14px;
  color: #fff;
  transition: color 0.5s;
}

.footer .f1 .cen>ul>li ul li:hover a {
  color: #0a418b;
}

.footer .f1 .right {
  width: 460px;
}

.footer .f1 .right>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .f1 .right>ul li {
  text-align: center;
}

.footer .f1 .right>ul li img {
  width: 50px;
  height: 50px;
}

.footer .f1 .right>ul li p {
  width: 100%;
  font-size: 14px;
  color: #fff;
}

.footer .f1 .right .friend p {
  position: relative;
  margin-top: 20px;
  padding-bottom: 15px;
  font-size: 18px;
  color: #fff;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6);
}

.footer .f1 .right .friend p::after {
  position: absolute;
  bottom: -1px;
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0a418b;
}

.footer .f1 .right .friend ul {
  display: flex;
  flex-wrap: wrap;
}

.footer .f1 .right .friend ul li {
  flex: auto;
  margin-right: 20px;
  line-height: 30px;
  font-size: 14px;
}

.footer .f1 .right .friend ul li a {
  color: #fff;
}

.footer .f2 {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222430;
}

.footer .f2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .f2 ul a {
  padding-left: 20px;
  color: #fff;
  transition: color 0.5s;
}

.footer .f2 ul li:hover a {
  color: #0a418b;
}

/* 飞云SAAS */
/* .content1 {
  padding-bottom: 80px;
} */
.bg-box {
  position: relative;
  width: 100%;
  max-height: 500px;
}

.bg-boxs {
  position: relative;
  width: 100%;
  max-height: 640px;
}

.bg-box img {
  display: block;
  width: 100%;
  max-height: 500px;
}

.bg-boxs img {
  max-height: 640px;
}

.bg-box .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.bg-box .txt p {
  height: 57px;
  padding-bottom: 30px;
  font-family: FZLTDHK--GBK1-0;
  font-weight: 600;
  font-size: 60px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #ffffff;
  text-shadow: #0a418b 3px 4px 5px;
}

.bg-box .txt span {
  width: 393px;
  height: 45px;
  font-weight: 100;
  font-size: 42px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #ffffff;
}

/* .content1 .title {
  padding-top: 100px;
  margin-top: 0;
} */
.content1 .part1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
}

.content1 .part1 img {
  margin-top: 35px;
  max-width: 100%;
}

.content1 .part2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #f5f7fa;
}

.content1 .part2 .img-box {
  margin-top: 50px;
  position: relative;
}

.content1 .part2 .img-box img {
  max-width: 100%;
}

.content1 .part2 .img-box .img-s {
  width: 32.3%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.content1 .part2 .img-box .img-s img {
  animation: gunmove 6s infinite linear;
}

.slideTxtBox1 {
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}

.slideTxtBox1 .hd {
  height: 824px;
  position: relative;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.slideTxtBox1 .hd ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.slideTxtBox1 .hd li {
  width: 180px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 20px;
}

.slideTxtBox1 .hd li .img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.slideTxtBox1 .hd li .img img {
  width: 100%;
  height: 100%;
}

.slideTxtBox1 .hd li span {
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 20px;
  color: #333333;
  opacity: 0.8;
}

.slideTxtBox1 .hd li .hk {
  position: absolute;
  right: 0;
  transform: translateX(50%);
  opacity: 0;
}

.slideTxtBox1 .hd li.on {
  background-color: #21252e;
  border-radius: 2px;
}

.slideTxtBox1 .hd li.on span {
  color: #fff;
}

.slideTxtBox1 .hd li.on .hk {
  opacity: 1;
}

/* .slideTxtBox1 .bd {
  width: 83%;
} */
.slideTxtBox1 .bd li {
  width: 100%;
  padding-left: 30px;
  box-sizing: border-box;
}

.slideTxtBox1 .bd li .img img {
  display: block;
  width: 100%;
}

.slideTxtBox1 .bd li .txt-box {
  width: 100%;
  padding: 25px 30px 30px;
  /* height: 150px; */
  color: #fff;
  background-color: #21252e;
  box-sizing: border-box;
}

.slideTxtBox1 .bd li .txt-box .p1 {
  font-size: 18px;
  line-height: 30px;
}

.slideTxtBox1 .bd li .txt-box p {
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.content1 .part4 {
  width: 100%;
  padding-bottom: 70px;
  background: url("../images/ny_bg1.jpg") center no-repeat;
  /* background-size: 100% 100%; */
}

.content1 .part4 .title>h5 {
  color: #fff;
}

.content1 .part4 .title>p {
  color: #fff;
}

.content1 .part4 ul {
  margin-top: 100px;
  /* height: 700px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content1 .part4 ul li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-right: 1px solid rgba(238, 238, 238, 0.6);
}

.content1 .part4 ul li .p1 {
  font-size: 36px;
  line-height: 40px;
  color: #fff;
}

.content1 .part4 ul li .p1.ts {
  max-width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content1 .part4 ul li p {
  width: 70%;
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  height: 90px;
  color: #fffffe;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.content1 .part4 ul li:nth-last-child(1) {
  border-right: none;
}

/* 飞云引擎 */
.slideTxtBox2 {
  margin-top: 50px;
}

.slideTxtBox2 .hd {
  width: 100%;
  height: 42px;
}

.slideTxtBox2 .hd ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slideTxtBox2 .hd ul li {
  width: 110px;
  height: 42px;
  margin: 0 15px;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
  color: #333333;
  background-color: #e1e1e6;
  border-radius: 21px;
}

.slideTxtBox2 .hd ul li.on {
  background-color: #005bac;
  color: #fff;
}

.slideTxtBox2 .bd ul li {
  text-align: center;
}

.slideTxtBox1.engine .hd {
  height: 400px;
  padding-right: 70px;
}

.slideTxtBox1.engine .hd ul {
  margin-top: 0;
}

.slideTxtBox1.engine .hd li {
  flex-direction: column;
}

.slideTxtBox1.engine .hd li p {
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  color: #333333;
}

.slideTxtBox1.engine .hd li.ts p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slideTxtBox1.engine .hd li span {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.slideTxtBox1.engine .hd li.on p {
  color: #fff;
}

.slideTxtBox1.engine .hd li.on span {
  color: #fff;
}

.slideTxtBox1.engine .bd {
  width: 78%;
}

.slideTxtBox1.engine .bd li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.slideTxtBox1.engine .bd li .img {
  width: 44%;
  height: 435px;
}

.slideTxtBox1.engine .bd li .img img {
  max-width: 100%;
  max-height: 100%;
}

.slideTxtBox1.engine .bd li .txt-box {
  width: 47%;
  background: none;
  color: #333;
}

.slideTxtBox1.engine .bd li .txt-box .p1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 48px;
  color: #333333;
}

.slideTxtBox1.engine .bd li .txt-box p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}

.slideTxtBox1.engine .bd li .txt-box a {
  display: block;
  width: 250px;
  height: 49px;
  margin-top: 62px;
  text-align: center;
  line-height: 49px;
  background-color: #005bac;
  border-radius: 25px;
  font-size: 18px;
  color: #ffffff;
}

.content1 .part3 ul.r4 {
  justify-content: space-between;
  padding-bottom: 100px;
}

.content1 .part3 ul.r4 li {
  width: 20.83%;
  height: 360px;
  padding: 53px 30px 0;
  text-align: center;
  color: #333;
  box-shadow: 0px 0px 20px #ccc;
  box-sizing: border-box;
}

.content1 .part3 ul.r4 li .img {
  height: 80px;
  width: 80px;
  margin: 0 auto;
}

.content1 .part3 ul.r4 li .img img {
  max-height: 100%;
  max-width: 100%;
}

.content1 .part3 ul.r4 li .p1 {
  margin-top: 35px;
  font-size: 24px;
  line-height: 24px;
}

.content1 .part3 ul.r4 li.ts .p1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content1 .part3 ul.r4 li .p2 {
  margin-top: 25px;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* 机器视觉AI */
.nav-list-box {
  border-bottom: 1px solid #f2f2f2;
}

.nav-list {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  font-weight: bold;
  position: relative;
}

.l_logo {
  /* position: absolute;
  bottom: 0; */
  width: 180px;
  height: 180px;
  padding: 40px 20px 0;
  /* text-align: center; */
  color: #ffffff;
  background-color: #0a418b;
  box-sizing: border-box;
}

.l_logo .p1 {
  font-size: 23px;
  line-height: 30px;
}

.l_logo p {
  margin-top: 5px;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  opacity: 0.6;
}

.l_logo::after {
  position: absolute;
  bottom: 30px;
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #ffffff;
}

.nav-list .left {
  height: 100%;
}

.nav-list .left ul {
  height: 100%;
  display: flex;
}

.nav-list .left ul li a {
  /* position: relative; */
  display: block;
  width: 175px;
  height: 100%;
  font-weight: normal;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  color: #333;
}

.nav-list .left ul li a.on::after {
  /* position: absolute;
  bottom: 0; */
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 0 auto;
  background-color: #0a418b;
}

.nav-list .right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
}

.nav-list .right ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.nav-list .right ul li a {
  color: #333;
}

.nav-list .right ul li:nth-last-child(1) a {
  color: #0a418b;
}

.content2 .part1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
}

.content2 .nerrong .part1:nth-child(2n) {
  flex-direction: row-reverse;
}

.content2 .part1 .l_txt-box {
  width: 52%;
}

.content2 .part1 .l_txt-box span {
  font-size: 24px;
  line-height: 30px;
  color: #333333;
}

.content2 .part1 .l_txt-box p {
  margin-top: 30px;
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}

.content2 .part1 .img {
  text-align: right;
  width: 39%;
}

.content2 .part1 .img img {
  width: 100%;
}

.content2 .part2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 100px;
}

.content2 .part2 .img {
  width: 44.8%;
}

.content2 .part2 .img img {
  max-width: 100%;
}

.content2 .part2 .l_txt-box {
  width: 38%;
  margin-left: 4.5%;
}

.content2 .l_txt-box span {
  font-size: 24px;
  line-height: 30px;
  color: #333333;
}

.content2 .l_txt-box p {
  margin-top: 30px;
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}

.content2 .part3 {
  margin-top: 100px;
}

.content2 .part3 .l_txt-box span {
  display: block;
  width: 100%;
  text-align: center;
}

.content2 .part3 img {
  margin: 50px 12px;
  max-width: 100%;
}

.pro-box>ul {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.pro-box>ul li {
  width: 100%;
  height: 380px;
  margin-top: 40px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}

.pro-box>ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.pro-box>ul li .pro-img {
  width: 24%;
  overflow: hidden;
}

.pro-box>ul li .pro-img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 1s;
}

.pro-box>ul li .pro-txt {
  width: 73.5%;
}

.pro-box>ul li .pro-txt h5 {
  margin-top: 60px;
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
  color: #333333;
  transition: color 0.5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.pro-box>ul li .pro-txt p {
  width: 100%;
  height: 96px;
  margin-top: 50px;
  font-size: 16px;
  font-weight: normal;
  line-height: 32px;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.pro-box>ul li .pro-txt .btn {
  display: block;
  width: 100px;
  height: 40px;
  margin-top: 70px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #0a418b;
  border: 1px solid #0a418b;
  transition: background 0.5s, color 0.5s;
}

.pro-box>ul li:hover .pro-img img {
  transform: scale(1.05);
}

.pro-box>ul li:hover h5 {
  color: #0a418b;
}

.pro-box>ul li:hover .pro-txt .btn {
  color: #fff;
  background-color: #0a418b;
}

.page-list {
  padding: 60px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: #b5b6b5;
}

.page-list ul {
  display: flex;
  list-style: none;
}

.page-list ul li {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border: 1px solid #d8d8d8;
  cursor: pointer;
  transition: background 0.5s, color 0.5s;
}

.page-list ul li.on {
  background-color: #0a418b;
  color: #fff;
}

.page-list ul li:hover {
  background-color: #0a418b;
  color: #fff;
}

.page-list ul li:nth-child(-n + 1),
.page-list ul li:nth-last-child(-n + 1) {
  width: 50px;
}

.content2 .part3.zhihui .l_txt-box span {
  display: inline;
}

.content2 .part3 .l_txt-box>img {
  max-width: 30%;
}

.page-list ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

/* 飞云智能详情页 */
.slideTxtBox3 {
  margin-top: 30px;
}

.slideTxtBox3 .bd li {
  display: flex;
  justify-content: space-between;
}

.slideTxtBox3 .bd li .img {
  width: 28.5%;
}

.slideTxtBox3 .bd li .img img {
  width: 100%;
}

.slideTxtBox3 .bd li .txt-box {
  width: 68%;
}

.slideTxtBox3 .bd li .txt-box .p1 {
  padding-top: 50px;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #333333;
}

.slideTxtBox3 .bd li .txt-box>p {
  padding-top: 20px;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}

.slideTxtBox3 .bd li .txt-box .p2 {
  padding-top: 80px;
}

.slideTxtBox3 .bd li .txt-box .p2 p {
  font-size: 16px;
  line-height: 40px;
  color: #424956;
}

.slideTxtBox3 .bd li .txt-box .p2 p span {
  margin-left: 70px;
}

.slideTxtBox3 .hd {
  margin-top: 30px;
}

.slideTxtBox3 .hd ul {
  display: flex;
}

.slideTxtBox3 .hd ul li {
  width: 94px;
  height: 94px;
  margin-right: 20px;
  cursor: pointer;
  box-sizing: border-box;
}

.slideTxtBox3 .hd ul li img {
  width: 100%;
  height: 100%;
}

.slideTxtBox3 .hd ul li .img {
  width: 100%;
  height: 100%;
}

.slideTxtBox3 .hd ul li.on .img {
  border: 2px solid #005bac;
}

.content4 .part1 ul {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px;
  background-color: #f3f4f6;
  box-sizing: border-box;
}

.content4 .part1 ul li a {
  display: block;
  font-size: 18px;
  margin-right: 130px;
  line-height: 50px;
  color: #333333;
}

.content4 .part1 ul li.on a {
  color: #005bac;
  border-bottom: 2px solid #005bac;
}

.content4 .part1 .t1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.content4 .part1 .t1 .left {
  padding: 50px 0;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
}

.content4 .part1 .t1 .right {
  width: 88.2%;
  padding: 50px 0;
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  border-bottom: 1px solid #eee;
}

/* 解决方案行业诉求 */
.content2 .part1.case:nth-last-child(1) {
  margin-bottom: 100px;
}

.content2 .part1.case .img {
  width: 50%;
}

.content2 .part1 .l_txt-box {
  width: 46.5%;
}

.content2 .part1 .l_txt-box::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  margin-top: 40px;
  background-color: #0a418b;
  border-radius: 2px;
}

/* 案例解析 */
.content5 .aljx ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.content5 .aljx ul li {
  width: 24%;
  height: 507px;
  margin-top: 30px;
  margin-right: 1%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.content5 .aljx ul li .img {
  width: 100%;
  height: 53%;
  transition: height 0.5s;
}

.content5 .aljx ul li .img img {
  width: 100%;
  height: 100%;
}

.content5 .aljx ul li .det {
  width: 100%;
  height: 47%;
  padding: 0 30px;
  box-sizing: border-box;
  transition: height 0.5s, background 1s;
}

.content5 .aljx ul li .det .t1 {
  padding-top: 20px;
  height: 60px;
  line-height: 60px;
  font-weight: 650;
  font-size: 18px;
  color: #333333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.content5 .aljx ul li .det .t2 {
  width: 90%;
  height: 90px;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content5 .aljx ul li .det .xian {
  display: block;
  margin-top: 30px;
  width: 46px;
  height: 2px;
  background-color: #0a418b;
}

.content5 .aljx ul li .det .more {
  display: none;
  width: 132px;
  height: 41px;
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
  line-height: 41px;
  color: #ffffff;
  background-color: #0a418b;
}

.content5 .aljx ul li:hover .img {
  height: 39%;
}

.content5 .aljx ul li:hover .det {
  height: 61%;
  background-color: #21252e;
}

.content5 .aljx ul li:hover .det .t1 {
  color: #fff;
}

.content5 .aljx ul li:hover .det .t2 {
  color: #fff;
}

.content5 .aljx ul li:hover .det .more {
  display: block;
}

/* 案例解析详情页 */
.content5 .details {
  padding-top: 50px;
}

.content5 .details h5 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 60px;
  color: #333333;
}

.content5 .details .p1 {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 36px;
  color: #999999;
}

.content5 .details .p1 span {
  margin-right: 30px;
}

.content5 .details p {
  /* margin-top: 30px; */
  font-size: 16px;
  line-height: 32px;
  /* color: #666666; */
}

.content5 .details img {
  display: block;
  margin: 50px auto;
  max-width: 100%;
}

.content5 .details .list {
  width: 100%;
  padding: 40px 0 100px;
  border-top: 1px solid #eeeeee;
}

.content5 .details .list ul li a {
  font-size: 16px;
  line-height: 40px;
  color: #666666;
}

.content5 .details .list ul li:hover a {
  color: #0a418b;
}

/* 关于我们 */
.content6 .c_introduce {
  width: 100%;
  padding: 100px 0 90px;
  background-color: #f5f6fa;
  overflow: hidden;
}

.c_introduce h5 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #2d2d2d;
}

.c_introduce .c_txt {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 583px;
  margin-top: 30px;
}

.c_introduce .c_txt>img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56.45%;
  height: 511px;
}

.c_introduce .c_txt .l_logo {
  position: absolute;
  top: 0;
  left: 95px;
  width: 292px;
  height: 396px;
  z-index: 66;
  padding: 60px 30px 0;
  color: #fff;
  box-sizing: border-box;
}

.c_introduce .c_txt .l_logo span {
  font-size: 20px;
}

.c_introduce .c_txt .l_logo .p1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 76px;
}

.c_introduce .c_txt .l_logo p {
  font-size: 16px;
  line-height: 32px;
  margin-top: 70px;
}

.c_introduce .c_txt .l_logo::after {
  position: static;
  margin-top: 15px;
  width: 100%;
  height: 2px;
}

.c_introduce .c_txt .t1 {
  width: 93.4%;
  height: 563px;
  padding-right: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  box-sizing: border-box;
  background-color: #ffffff;
}

.c_introduce .c_txt .t1>img {
  position: absolute;
  right: 0;
  width: 540px;
  height: 125px;
  transform: translateX(40%);
}

.c_introduce .c_txt .t1 .f1 {
  width: 39%;
  font-size: 30px;
  line-height: 24px;
  color: #0a418b;
}

.c_introduce .c_txt .t1 .f1 span {
  display: block;
  width: 100%;
  padding-top: 86px;
  padding-bottom: 28px;
}

.c_introduce .c_txt .t1 p {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  text-indent: 2em;
  color: #666666;
}

.content6 .team {
  padding: 80px 0;
}

.content6 .team h5 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #2d2d2d;
}

.content6 .team .swiper-container {
  padding: 50px 0 100px;
}

.content6 .team .swiper-slide {
  box-shadow: 0px 0px 20px #ccc;
  cursor: pointer;
}

.content6 .team .swiper-slide .img {
  width: 100%;
  height: 345px;
}

.content6 .team .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
}

.content6 .team .swiper-slide .txt-box {
  width: 100%;
  height: 250px;
  padding: 20px 20px 0;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
}

.content6 .team .swiper-slide .txt-box span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 26px;
  white-space: nowrap;
  overflow: hidden;
}

.content6 .team .swiper-slide .txt-box em {
  display: block;
  width: 100%;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
}

.content6 .team .swiper-slide .txt-box p {
  font-size: 16px;
  line-height: 32px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.content6 .team .swiper-slide:hover .txt-box {
  background-color: #21252e;
}

.content6 .team .swiper-slide:hover .txt-box {
  color: #fff;
}

.content6 .team .swiper-slide:hover .txt-box p {
  color: #fff;
}

.content6 .team .swiper-pagination-bullet {
  background-color: #cccccc !important;
}

.content6 .team .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
  background-color: #0a418b !important;
}

.content6 .support {
  width: 100%;
  height: 685px;
  background: url("../images/about-us-bg.jpg") no-repeat center;
  background-size: cover;
}

.content6 .support h5 {
  width: 100%;
  padding-top: 70px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
}

.content6 .support ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}

.content6 .support ul li {
  width: 32%;
  height: 441px;
  padding: 40px 70px 0;
  background-color: #fff;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.5s;
}

.content6 .support ul li .img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.content6 .support ul li .img img {
  display: block;
  width: 100%;
  height: 100%;
}

.content6 .support ul li .txt-box span {
  display: block;
  width: 100%;
  height: 37px;
  padding: 30px 0 15px;
  font-size: 25px;
  color: #232323;
}

.content6 .support ul li .txt-box p {
  font-size: 17px;
  line-height: 29px;
  color: #666666;
}

.content6 .support ul li:hover {
  transform: scale(1.05);
}

.content6 .c_us {
  width: 100%;
  padding-bottom: 40px;
  /* height: 836px; */
}

.content6 .c_us h5 {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 50px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #333333;
}

.content6 .c_us #mapCont {
  width: 100%;
  height: 640px;
}

.phone-footer {
  display: none;
}

.s_fn {
  display: none;
}

/* 新闻咨询 */
.content .news ul {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
}

.content .news ul li {
  position: relative;
  width: 100%;
  height: 200px;
  /* margin-right: 3%; */
  margin-top: 30px;
  border-bottom: 1px solid #eee;
}

.content .news ul li .p1 {
  font-weight: 650;
  font-size: 20px;
  /* height: 60px; */
  height: 30px;
  line-height: 30px;
  color: #1c1c1c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.content .news ul li p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .news ul li .time {
  margin-top: 15px;
  font-size: 14px;
  line-height: 30px;
  color: #999999;
}

.content .news ul li .img {
  margin-top: 10px;
  width: 34px;
  height: 34px;
  overflow: hidden;
}

.content .news ul li .img img {
  width: 34px;
  height: 34px;
}

.content .news ul li::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 0px;
  height: 4px;
  background-color: #0a418b;
  transition: width 0.5s;
}

.content .news ul li:hover .img img.s1 {
  display: none;
}

.content .news ul li:hover::after {
  width: 100%;
}

.qianyan {
  margin-bottom: 50px;
}

.qianyan img {
  display: block;
  max-width: 100%;
  margin: 50px auto 20px;
}

.qianyan p {
  margin-top: 30px;
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}

@keyframes leftmove {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

@keyframes rightmove {
  0% {
    right: -100%;
  }

  100% {
    right: 0;
  }
}

@keyframes gunmove {
  0% {
    transform: rotate(0deg);
  }

  /* 50% {
    transform: translate(-50%, -70%) rotate(180deg);
  } */
  100% {
    transform: rotate(360deg);
  }
}

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

  .part1,
  .content .part2,
  .part4>ul,
  .footer .f1,
  .content1 .slideTxtBox1,
  .content1 .part3,
  .nav-list,
  .content2 .part3,
  .content3 .pro-box,
  .slideTxtBox3,
  .content5 .aljx,
  .details,
  .c_introduce .c_txt,
  .content6 .team,
  .content6 .support ul,
  .content .news {
    width: 90%;
  }

  .qianyan {
    width: 90%;
  }

  .content1 .part1.ts {
    width: 100%;
  }

  .part1.ts .slideTxtBox2 {
    width: 90%;
  }

  .bg-box .txt p {
    font-size: 44px;
  }

  .bg-box .txt span {
    font-size: 40px;
  }

  .title>h5 {
    font-size: 32px;
  }

  .show2 {
    padding: 18% 10% 0;
  }

  .show2 p {
    margin-top: 10px;
  }

  .show2 .more {
    margin-top: 40px;
  }

  .show2 .line {
    margin-top: 20px;
  }

  .content1 .part3 ul.r4 {
    width: 80%;
    margin: 40px auto 0;
  }

  .content .part3 ul li {
    height: 600px;
  }

  .content2 .part2 .l_txt-box {
    width: 44%;
  }

  .nav-box .nav>ul>li .down .img {
    width: 90%;
    height: 90%;
  }

  .slideTxtBox1 .hd {
    height: 800px;
  }

  .banner-swiper .swiper-slide {
    height: 569px;
  }
}

@media only screen and (max-width: 1440px) {
  .footer .f1 .cen>ul {
    width: 570px;
    margin: 0 30px;
  }

  .content .part3 ul li {
    height: 550px;
  }

  .bg-box .txt p {
    font-size: 36px;
    padding-bottom: 10px;
  }

  .bg-box .txt span {
    font-size: 30px;
  }

  .slideTxtBox1 .hd {
    height: 690px;
  }

  /* .slideTxtBox1 .bd {
    width: 78%;
  } */
  .content1 .part3 ul.r4 li {
    height: 330px;
    padding: 30px 20px 0;
  }

  .nav-list .left ul li a {
    width: 130px;
  }

  .c_introduce .c_txt .l_logo {
    width: 270px;
  }

  .c_introduce .c_txt .l_logo .p1 {
    font-size: 40px;
  }

  .c_introduce .c_txt .l_logo p {
    margin-top: 60px;
  }

  .c_introduce .c_txt>img {
    width: 50%;
  }

  .c_introduce .c_txt .t1 .f1 {
    width: 48%;
  }

  .content6 .team .swiper-slide .img {
    height: 300px;
  }

  .content6 .team .swiper-slide .txt-box {
    padding: 10px 10px 0;
  }

  .content6 .team .swiper-slide .txt-box span {
    font-size: 22px;
  }

  .content6 .support ul li {
    padding: 40px 40px 0;
  }

  .show2 {
    padding: 18% 7% 0;
  }

  .show2 .more {
    margin-top: 10px;
  }

  .banner-swiper .swiper-slide {
    height: 497px;
  }
}

@media only screen and (max-width: 1260px) {
  body {
    padding-top: 58px;
  }

  .header {
    display: none;
  }

  .m_header {
    display: block;
  }

  .hd_con {
    height: 100px;
  }

  .hd_nav {
    margin-left: 10px;
  }

  .hd_nav .naver ul li a {
    font-size: 14px;
    width: 76px;
    line-height: 100px;
  }

  .hd_nav .naver ul li .son {
    top: 100px;
  }

  .hd_nav .naver ul li .son a {
    font-size: 12px;
  }

  .hd_nav .naver ul li:first-child a {
    width: 68px;
  }

  .content .banner-swiper {
    height: 520px;
  }

  .banner-swiper .details-img .left {
    width: 50%;
  }

  .banner-swiper .details-img .left img {
    height: 167px;
    margin-top: 15%;
  }

  .banner-swiper .details-img .right img {
    height: 340px;
  }

  .title {
    padding-top: 50px;
  }

  .title>h5 {
    font-size: 26px;
  }

  .part1>ul,
  .part2>ul,
  .content .part2>ul,
  .part3>ul,
  .content .part4>ul {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .content .part1>ul li {
    width: 48%;
    margin-top: 20px;
  }

  .content .part2 ul li {
    width: 30%;
    margin-top: 30px;
  }

  .content .part2 ul li:nth-child(1),
  .content .part2 ul.sec li:nth-child(1) {
    width: 100%;
    height: 360px;
  }

  .content .part2 ul li>.img {
    height: 240px;
  }

  .content .part2 ul li .det {
    padding: 10px 0 0 0;
  }

  .content .part2 ul li:hover .det {
    padding: 15px 30px 0 15px;
  }

  .content .part2 ul.sec li {
    width: 45%;
  }

  .content .part3 ul li {
    flex: none;
    width: 33.33%;
    margin-top: 30px;
  }

  .content .part4 ul li {
    width: 45%;
    margin-top: 30px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer .f1 {
    width: 95%;
    flex-wrap: wrap;
  }

  .footer .f1 .left {
    width: 180px;
    text-align: center;
  }

  .footer .f1 .left .img-box img {
    width: 80px;
    height: 80px;
  }

  .footer .f1 .cen>ul {
    width: 480px;
    margin: 0 0 0 10px;
    border: none;
  }

  .footer .f1 .right {
    width: 100%;
    margin: 30px auto 0;
  }

  .bg-box img {
    height: 380px;
  }

  .bg-box .txt p {
    font-size: 26px;
    white-space: nowrap;
  }

  .bg-box .txt span {
    font-size: 22px;
  }

  .title>h5 {
    font-size: 22px;
  }

  .title>p {
    font-size: 15px;
  }

  .slideTxtBox1 .hd {
    padding-right: 20px;
  }

  .slideTxtBox1 .hd li {
    width: 140px;
    height: 60px;
  }

  .slideTxtBox1 .hd {
    height: 500px;
  }

  /* .slideTxtBox1 .bd {
    width: 72%;
  } */
  .content1 .part4 ul {
    margin-top: 50px;
  }

  .content1 .part4 ul li .p1 {
    font-size: 20px;
  }

  .content1 .part4 ul li p {
    margin-top: 25px;
  }

  .content1 .part3 ul.r4 li {
    width: 45%;
    margin-top: 30px;
  }

  .l_logo {
    width: 140px;
    height: 140px;
  }

  .nav-list .left {
    flex: 1;
  }

  .nav-list .left ul {
    width: 100%;
  }

  .nav-list .left ul li {
    flex: auto;
  }

  .nav-list .left ul li a {
    width: 100%;
  }

  .nav-list .right {
    display: none;
  }

  .content2 .part3 .l_txt-box>img {
    margin: 20px 10px;
  }

  .content2 .part1 {
    flex-wrap: wrap;
  }

  .content2 .part1.ts {
    flex-direction: column-reverse;
  }

  .content2 .part1 .l_txt-box {
    width: 90%;
    margin-top: 30px;
  }

  .content2 .part1 .img {
    text-align: center;
    margin: 0 auto;
  }

  .content2 .part2.ts {
    flex-wrap: wrap;
  }

  .content2 .part2.ts .img {
    margin: 0 auto;
  }

  .content2 .part2.ts .l_txt-box {
    width: 100%;
    margin-top: 20px;
  }

  .content2 .part3 {
    margin-top: 50px;
  }

  .pro-box>ul li {
    height: 240px;
  }

  .pro-box>ul li .pro-txt {
    width: 70%;
  }

  .pro-box>ul li .pro-img {
    width: 28%;
  }

  .pro-box>ul li .pro-txt h5 {
    margin-top: 20px;
    font-size: 20px;
  }

  .pro-box>ul li .pro-txt p {
    margin-top: 15px;
    line-height: 28px;
    height: 84px;
  }

  .pro-box>ul li .pro-txt .btn {
    margin-top: 10px;
  }

  .content4 .part1 ul li a {
    margin-right: 40px;
  }

  .content4 .part1 .t1 .right img {
    max-width: 100%;
  }

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

  .content5 .aljx ul li {
    width: 32%;
  }

  .content .news ul li {
    /* width: 47%; */
  }

  .content6 .c_introduce {
    padding: 50px 0 40px 0;
  }

  .c_introduce h5 {
    font-size: 26px;
  }

  .c_introduce .c_txt {
    display: block;
    height: auto;
  }

  .c_introduce .c_txt>img {
    position: static;
    width: 100%;
  }

  .c_introduce .c_txt .l_logo {
    width: 240px;
    height: 320px;
    padding: 30px 30px 0;
  }

  .c_introduce .c_txt .l_logo .p1 {
    font-size: 28px;
  }

  .c_introduce .c_txt .l_logo p {
    margin-top: 28px;
  }

  .c_introduce .c_txt .t1 {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    padding-right: 0;
    justify-content: center;
  }

  .c_introduce .c_txt .t1 .f1 {
    width: 90%;
    font-size: 26px;
  }

  .c_introduce .c_txt .t1 .f1 span {
    padding-top: 40px;
  }

  .c_introduce .c_txt .t1>img {
    display: none;
  }

  .content6 .team {
    padding: 40px 0;
  }

  .content6 .team h5,
  .content6 .support h5 {
    font-size: 26px;
  }

  .content6 .support {
    height: auto;
    padding-bottom: 60px;
  }

  .content6 .support h5 {
    padding-top: 35px;
  }

  .content6 .support ul {
    padding-top: 0;
    flex-wrap: wrap;
  }

  .content6 .support ul li {
    width: 100%;
    height: auto;
    padding: 10px 20px 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .content6 .support ul li .img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }

  .content6 .support ul li .txt-box {
    flex: 1;
  }

  .content6 .support ul li .txt-box span {
    padding: 0;
    font-size: 23px;
  }

  /* .content6 .c_us {
    height: 650px;
  } */
  .content6 .c_us h5 {
    font-size: 26px;
    padding: 35px 0 25px 0;
  }

  /* .content6 .c_us img {
    height: 465px;
  } */
  .slideTxtBox1.engine {
    margin-bottom: 10px;
  }

  .slideTxtBox1.engine .bd li .txt-box .p1 {
    font-size: 24px;
  }

  .slideTxtBox1.engine .bd li .txt-box p {
    font-size: 14px;
    margin-top: 20px;
  }

  .slideTxtBox1.engine .bd li .txt-box a {
    margin-top: 45px;
  }

  .show2 .more {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 780px) {
  .content {
    padding-bottom: 20px;
  }

  .Business_bridge {
    display: none;
  }

  .content .banner-swiper {
    height: 340px;
  }

  .banner-swiper .details-img .left img {
    height: 120px;
  }

  .banner-swiper .details-img .right img {
    height: 250px;
  }

  .title {
    padding-top: 20px;
  }

  .title>p {
    width: 100%;
    margin-top: 10px;
  }

  .part1>ul,
  .part2>ul,
  .content .part2>ul,
  .part3>ul,
  .content .part4>ul {
    margin-top: 0;
  }

  .content .part1>ul li {
    margin-top: 20px;
    height: auto;
    padding: 20px;
  }

  .content .part1>ul li .img {
    width: 50px;
    height: 50px;
  }

  .content .part1>ul li .p1 {
    margin-top: 15px;
    font-size: 18px;
  }

  .content .part1>ul li .p2 {
    margin-top: 0;
    font-size: 14px;
  }

  .content .part2 ul li {
    margin-top: 20px;
    height: 320px;
  }

  .content .part2 ul li>.img {
    height: 170px;
  }

  .content .part2 ul li:nth-child(1),
  .content .part2 ul.sec li:nth-child(1) {
    width: 100%;
    height: 290px;
  }

  .content .part2 ul li .p1 {
    margin-top: 30px;
    font-size: 22px;
    line-height: 22px;
  }

  .content .part2 ul li p {
    margin-top: 20px;
  }

  .content .part2 ul li .det {
    height: 150px;
  }

  .content .part2 ul li .det .t2 {
    margin-top: 10px;
  }

  .content .part2 ul.sec li {
    height: 320px;
  }

  .content .part2 ul.sec li>.img {
    height: 190px;
  }

  .content .part2 ul.sec li .det {
    height: 130px;
  }

  .content .part2 ul.sec li:hover .det {
    padding: 10px 20px 0 10px;
  }

  .content .part3 ul li {
    width: 50%;
    height: 320px;
    margin-top: 20px;
  }

  .content .part3 .title>p,
  .content .part4 .title>p {
    width: 90%;
  }

  .content .part3 ul li .show1 .btm {
    justify-content: center;
  }

  .line {
    display: none;
  }

  .content .part3 ul li .show1 .btm>img {
    width: 40px;
    height: 40px;
  }

  .content .part3 ul li .show1 .btm>img,
  .content .part3 ul li .show1 .btm span {
    margin-top: 0;
    font-size: 18px;
  }

  .content .part4 ul li {
    height: 200px;
  }

  .content .part4 ul li .p1 {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
  }

  .content .part4 ul li .img {
    width: 25px;
    height: 25px;
  }

  .content .part4 ul li .img img {
    width: 100%;
    height: 100%;
  }

  .content .part4 ul li p,
  .content .part4 ul li .time {
    margin-top: 0;
    font-size: 14px;
  }

  .footer {
    display: none;
  }

  .phone-footer {
    display: block;
    background-color: #333;
  }

  .phone-footer .phone-footer1 {
    height: auto;
    padding: 20px 0;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .phone-footer .phone-footer1 .s_logo {
    width: 50%;
  }

  .phone-footer .phone-footer1 .img1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .phone-footer .phone-footer1 .img1 img {
    width: 45%;
  }

  .phone-footer .phone-footer1 .f2 {
    width: 45%;
  }

  .phone-footer .phone-footer1 .f2 li,
  .phone-footer .phone-footer1 .f2 li a {
    font-size: 14px;
    color: #fff;
  }

  .phone-footer .phone-footer2 ul {
    width: 100%;
    height: 80px;
    display: flex;
    background-color: #21252e;
  }

  .phone-footer .phone-footer2 ul li {
    flex: 1;
    border-right: 1px solid #fff;
    box-sizing: border-box;
  }

  .phone-footer .phone-footer2 ul li:nth-last-child(1) {
    border-right: none;
  }

  .phone-footer .phone-footer2 ul li a {
    display: flex;
    height: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
  }

  .phone-footer .phone-footer2 ul li a img {
    display: block;
    width: 37px;
    height: 34px;
  }

  .phone-footer .phone-footer2 ul li span {
    font-size: 16px;
  }

  .bg-box .txt p {
    font-size: 20px;
    height: auto;
  }

  .bg-box .txt span {
    font-size: 16px;
  }

  .bg-box img {
    height: 280px;
  }

  .content1 .part1 {
    padding-bottom: 20px;
  }

  .title>h5 {
    font-size: 18px;
  }

  .title>p {
    font-size: 14px;
  }

  .content1 .part1 img {
    margin-top: 20px;
  }

  .content1 .part2 .title {
    width: 90%;
    margin: 0 auto;
  }

  .content1 .part2 .img-box {
    width: 90%;
    margin-top: 20px auto;
  }

  .content1 .part3 {
    margin: 0 auto;
  }

  .slideTxtBox1 {
    display: none;
  }

  .slideTxtBox1.engine {
    display: flex;
    flex-direction: column;
  }

  .slideTxtBox1.engine ul {
    flex-direction: row;
  }

  .slideTxtBox1.engine .hd {
    padding-right: 0;
    height: auto;
  }

  .slideTxtBox1.engine .hd li.on .hk {
    display: none;
  }

  .slideTxtBox1.engine .hd li p {
    font-size: 16px;
  }

  .slideTxtBox1.engine .hd li.on span {
    font-size: 12px;
  }

  .slideTxtBox1.engine .bd {
    width: 100%;
  }

  .slideTxtBox1.engine .bd li {
    padding-left: 0;
    margin-bottom: 10px;
  }

  .slideTxtBox1.engine .bd li .txt-box {
    padding: 0;
  }

  .slideTxtBox1.engine .bd li .txt-box .p1 {
    font-size: 20px;
  }

  .slideTxtBox1.engine .bd li .txt-box p {
    margin-top: 0;
  }

  .slideTxtBox1.engine .bd li .img {
    height: auto;
  }

  .slideTxtBox1.engine .bd li .txt-box a {
    width: 200px;
    margin-top: 10px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .s_fn {
    display: block;
    width: 90%;
    padding-bottom: 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .s_fn .s_box {
    margin-top: 20px;
  }

  .s_fn .s_box .s_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 180px;
    margin: 0 auto;
    box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 10%);
  }

  .s_fn .s_box .s_title img {
    width: 36px;
    height: 36px;
    margin-right: 20px;
  }

  .s_fn .s_box .s_tbox {
    font-size: 16px;
    padding-bottom: 10px;
    margin-top: 10px;
    width: 100%;
    color: #fff;
    background-color: #21252e;
    box-sizing: border-box;
  }

  .s_fn .s_box .s_tbox img {
    max-width: 100%;
    display: block;
  }

  .s_fn .s_box .s_tbox .p1 {
    padding: 10px 10px 5px;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
  }

  .s_fn .s_box .s_tbox p {
    display: block;
    width: 100%;
    padding: 0 10px;
    font-size: 12px;
    box-sizing: border-box;
  }

  .part1.ts .slideTxtBox2 {
    margin-top: 25px;
  }

  .slideTxtBox2 .hd ul li {
    height: 38px;
    line-height: 38px;
  }

  .part1.ts .title {
    width: 90%;
  }

  .content1 .part4 p {
    width: 90%;
  }

  .content1 .part4 ul {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .content1 .part4 ul li {
    flex: auto;
    border-right: none;
    margin-top: 20px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.6);
  }

  .content1 .part4 ul li p {
    width: 100%;
    margin-top: 0;
  }

  .content1 .part3 ul.r4 {
    margin-top: 0;
    width: 100%;
    padding-bottom: 20px;
  }

  .content1 .part3 ul.r4 li {
    height: 220px;
    margin-top: 20px;
    padding: 14px 14px 0;
  }

  .content1 .part3 ul.r4 li .img {
    width: 60px;
    height: 60px;
  }

  .content1 .part3 ul.r4 li .p1 {
    font-size: 18px;
    margin-top: 10px;
  }

  .content1 .part3 ul.r4 li .p2 {
    margin-top: 10px;
  }

  .l_logo {
    display: none;
  }

  .nav-list {
    width: 100%;
    height: 60px;
  }

  .nav-list .left ul li a {
    font-size: 16px;
    line-height: 60px;
  }

  .content2 .part1 {
    margin-top: 25px;
  }

  .content2 .part1 .l_txt-box {
    width: 100%;
    margin-top: 10px;
  }

  .content2 .part1 .l_txt-box span {
    font-size: 18px;
  }

  .content2 .part1 .l_txt-box p {
    margin-top: 0;
    line-height: 24px;
    font-size: 14px;
  }

  .content2 .part1 .l_txt-box::after {
    margin-top: 20px;
  }

  .content2 .part1 .l_txt-box.ts {
    width: 100%;
  }

  .content2 .part1 .img,
  .content2 .part1.case .img {
    width: 100%;
  }

  .content2 .part2.ts .img {
    width: 90%;
  }

  .content2 .part2.ts {
    margin-top: 20px;
    align-items: center;
  }

  .content2 .part2.ts .l_txt-box {
    width: 90%;
    margin: 20px auto 0;
  }

  .content2 .l_txt-box span {
    font-size: 18px;
  }

  .content2 .l_txt-box p {
    margin-top: 0;
    font-size: 14px;
  }

  .content2 .part3 {
    margin-top: 20px;
  }

  .content2 .part3 .l_txt-box>img {
    width: 30%;
    margin: 10px 4px;
  }

  .pro-box>ul li {
    height: 160px;
    margin-top: 20px;
  }

  .pro-box>ul li .pro-img {
    width: 40%;
  }

  .pro-box>ul li .pro-txt {
    width: 56%;
  }

  .pro-box>ul li .pro-txt h5 {
    font-size: 16px;
    margin-top: 6px;
  }

  .pro-box>ul li .pro-txt p {
    font-size: 12px;
    height: 66px;
    line-height: 22px;
    margin-top: 0;
  }

  .pro-box>ul li .pro-txt .btn {
    width: 80px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }

  .slideTxtBox3 .bd li {
    flex-direction: column;
  }

  .slideTxtBox3 .bd li .img {
    width: 60%;
  }

  .slideTxtBox3 .bd li .img img {
    width: auto;
    max-width: 100%;
  }

  .slideTxtBox3 .bd li .txt-box {
    width: 100%;
  }

  .slideTxtBox3 .bd li .txt-box .p1 {
    padding-top: 10px;
    font-size: 18px;
  }

  .slideTxtBox3 .bd li .txt-box .p2 {
    padding-top: 10px;
    font-size: 14px;
  }

  .slideTxtBox3 .bd li .txt-box>p {
    padding-top: 0;
  }

  .content4 .slideTxtBox3 {
    padding-bottom: 20px;
  }

  .content4 .part1 ul {
    padding: 0 10px;
  }

  .content4 .part1 ul li a {
    font-size: 14px;
    margin-right: 20px;
  }

  .content4 .part1 .t1 .left {
    padding: 25px 0;
    font-size: 14px;
  }

  .content4 .part1 .t1 .right {
    width: 75%;
    padding: 25px 0;
    font-size: 14px;
    line-height: 22px;
  }

  .content .news ul {
    margin-top: 0;
  }

  .content5 .aljx ul li {
    width: 49%;
    height: 260px;
    margin-top: 20px;
  }

  .content .news ul li {
    width: 100%;
    height: 110px;
    margin-top: 15px;
  }

  .content .news ul li p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 0;
  }

  .content .news ul li .p1 {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    -webkit-line-clamp: 1;
  }

  .content .news ul li .time {
    margin-top: 0;
  }

  .content .news ul li .img {
    display: none;
  }

  .content5 .aljx ul li .det {
    padding: 0 10px;
  }

  .content5 .aljx ul li .det .t1 {
    font-size: 16px;
    padding-top: 10px;
    height: auto;
    line-height: 30px;
  }

  .content5 .aljx ul li .det .t2 {
    font-size: 12px;
    line-height: 22px;
    height: 66px;
    -webkit-line-clamp: 3;
  }

  .content5 .aljx ul li .det .xian {
    display: none;
  }

  .page-list {
    padding: 20px 0 40px;
  }

  .content5 .details {
    padding-top: 0;
  }

  .content5 .details h5 {
    font-size: 16px;
    line-height: 40px;
  }

  .content5 .details .p1 span {
    margin-right: 10px;
  }

  .content5 .details p {
    margin-top: 0;
    font-size: 12px;
    line-height: 20px;
  }

  .content5 .details img {
    margin: 20px auto;
  }

  .content5 .details .list {
    padding: 20px 0 30px;
  }

  .content5 .details .list ul li a {
    font-size: 10px;
    line-height: 20px;
  }

  .content6 .c_introduce {
    padding: 20px 0;
  }

  .content6 .c_us #mapCont {
    height: 240px;
  }

  .c_introduce h5 {
    font-size: 18px;
  }

  .c_introduce .c_txt {
    margin-top: 10px;
  }

  .c_introduce .c_txt>img {
    display: block;
    height: auto;
  }

  .c_introduce .c_txt .t1 .f1 span {
    font-size: 18px;
    padding: 10px 0;
  }

  .c_introduce .c_txt .t1 p {
    font-size: 14px;
    line-height: 24px;
  }

  .c_introduce .c_txt .t1 {
    padding-bottom: 20px;
  }

  .content6 .team {
    padding: 20px 0;
  }

  .content6 .team .swiper-container {
    padding: 20px 0 40px;
  }

  .content6 .team .swiper-slide .img {
    height: 120px;
  }

  .content6 .team .swiper-slide .txt-box {
    height: 150px;
    padding: 5px 5px 0;
  }

  .content6 .team .swiper-slide .txt-box span {
    font-size: 14px;
  }

  .content6 .team .swiper-slide .txt-box em {
    font-size: 12px;
    line-height: 22px;
  }

  .content6 .team .swiper-slide .txt-box p {
    font-size: 10px;
    line-height: 20px;
  }

  .content6 .team .swiper-pagination-bullet-active,
  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
  }

  .content6 .support h5 {
    padding-top: 10px;
  }

  .content6 .team h5,
  .content6 .support h5 {
    font-size: 18px;
  }

  .content6 .support ul li {
    width: 100%;
    height: auto;
    padding: 5px 10px 0;
    margin-top: 10px;
  }

  .content6 .support ul li .txt-box span {
    height: 25px;
    font-size: 16px;
  }

  .content6 .support ul li .txt-box p {
    font-size: 12px;
    line-height: 22px;
  }

  .content6 .support ul li .img {
    width: 60px;
    height: 60px;
  }

  .content6 .support {
    height: auto;
    padding-bottom: 30px;
  }

  .content6 .c_us {
    padding-bottom: 20px;
  }

  .content6 .c_us h5 {
    font-size: 18px;
    padding: 10px 0;
  }

  .show2 {
    padding: 4% 7% 0;
  }

  .show2 .more {
    margin-top: 20px;
  }

  .show2 .t1 {
    font-size: 18px;
  }

  .show2 p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 450px) {
  .content .banner-swiper {
    height: 260px;
  }

  .banner-swiper .details-img .left img {
    height: 80px;
  }

  .banner-swiper .details-img .right img {
    height: 180px;
  }

  .bg-box img {
    height: 260px;
  }

  .content .part2 ul li .det .t1 {
    font-size: 16px;
  }

  .content .part3 ul li .show1 .btm>img {
    width: 30px;
    height: 30px;
  }

  .content .part3 ul li .show1 .btm>img,
  .content .part3 ul li .show1 .btm span {
    font-size: 16px;
  }

  .content .part3 ul li .show1 .down {
    bottom: 20px;
  }

  .show2 .t1 {
    font-size: 16px;
  }

  .show2 .more {
    width: 75px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
  }

  .show2 p {
    margin-top: 8px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    overflow: hidden;
  }

  .content .part4 ul li {
    height: 160px;
  }

  .content .part4 ul li p,
  .content .part4 ul li .time {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
  }

  .content .part4 ul li .time {
    margin-top: 0;
  }

  .content .part2 ul li {
    height: 260px;
  }

  .content .part2 ul li>.img {
    height: 130px;
  }

  .content .part2 ul.sec li .det {
    padding: 10px 0 0 0;
  }

  .nav-list .left.total ul li a {
    font-size: 13px;
  }
}

/* 弹窗 */
.Business_bridge {
  position: fixed;
  left: 6px;
  top: 50%;
  z-index: 9999;
  margin-top: -184px;
  /* display: none; */
}

.Business_bridge .ewm_tc {
  margin-top: 20px;
  margin-bottom: 2px;
  text-align: center;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  /* box-shadow: 0px 0px 5px #333; */
  max-width: 80px;
}

.Business_bridge>div img {
  /* width: 32px;
  height: 32px; */
  display: block;
  margin: 0 auto;
  transition: .3s all;
}


/* .Business_bridge>div p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 70%;
} */


.Business_bridge .Click_consulting {
  padding: 0;
  /* height: 72px */
}

.Business_bridge .Click_consulting a {
  display: block;
  height: 63px;
  padding-top: 9px
}

.Business_bridge .Mobile_station .popup_details {
  position: absolute;
  width: 0px;
  height: 220px;
  left: -500px;
  top: 50%;
  /* box-shadow: 0 0 8px rgba(0, 0, 0, .16); */
  padding: 6px;
  /* display: none; */
  transition: all .3s;
}

.popup_details .des {
  position: absolute;
  top: 30%;
  width: 100%;
  padding-left: 30px;
}

.popup_details .des .item {
  display: flex;
  align-items: flex-start;


}

.popup_details .des .item:first-child {
  margin-bottom: 40px;


}

.popup_details .des>.item>.fr {
  color: #ffffff;
  margin-left: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;

}

.popup_details .des>.item>.fr h6 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: inherit;

}

.popup_details .des>.item>.fr p {
  font-size: 16px;
  line-height: 1.5;
}

.Business_bridge>div .popup_details:hover>img {
  display: block
}

.Business_bridge>div .popup_details::after {
  content: '';
  /* width: 10px;
  height: 22px; */
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -11px;
  background: url(../images/ysj.png) no-repeat
}

.Business_bridge>div .popup_details img {
  width: 100%;
  /* height: 100%; */
  display: block
}





.Business_bridge .helpline {
  padding: 0;
  display: flex;

}

.Business_bridge .helpline .helpline_nr {
  position: relative;
  z-index: 99;
  max-width: 80px;
  transition: .3s all;
}

.Business_bridge .helpline .popup_details {
  width: 0;
  height: 251px;
  padding: 0;
  left: -500px;
  font-size: 20px;
  color: rgb(247, 128, 128);
  text-align: center;
  line-height: 73px;
  display: block;
  /* opacity: 0; */
  z-index: 9;
  position: relative;
}





/* 智慧污水,智慧能源专题页样式 */
.footer_fixed {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	animation: opt 0.6s;
	z-index: 9999;
	padding: 28px 0 21px;
}

.footer_fixed .footer_fixed_nr {
	height: 100%;
	position: relative
}

.footer_fixed .images .figure {}

.footer_fixed .images {
	float: left;
	font-size: 16px;
	color: #fff;
	text-align: center;
	width: 8.2%
}

.footer_fixed .images .figure img {
	padding: 2px;
	background: #fff;
	border-radius: 8px;
	width: 100%
}

.footer_fixed .ask_for {
	display: flex;
	align-items: center;
	max-width: 880px;
	flex-wrap: wrap;
	justify-content: space-between;

}

.footer_fixed .ask_for h2 {
	margin-bottom: 15px;
	color: #fff;
	font-size: 20px;
	padding-left: 600px;
}

.footer_fixed .ask_for .text {
	width: 191px;
	height: 46px;
	background: #fff;
	border-radius: 4px;
	padding: 0 20px;
	box-sizing: border-box;
	display: block;
	font-size: 16px;
	color: #666;
	font-family: "Microsoft YaHei";
	line-height: 46px;
}

.footer_fixed .ask_for input.text::placeholder {
	color: #999999;
}

.footer_fixed .ask_for .text::-webkit-input-placeholder {
	color: #333;
}

.footer_fixed .ask_for #xxk {
	color: #fff;
	font-size: 17px;
	margin: 15px 0px 0px 0px;
	display: flex;
	width: 95%;
	font-weight: 700;
	line-height: 20px;
}

.footer_fixed .ask_for #xxk .xuanxiang {
	display: flex;
	/* width: 70%; */
	justify-content: space-between;
}

.footer_fixed .ask_for #xxk .xuanxiang li {
	display: flex;
	align-items: center;
	position: relative;
	margin-right: 30px;
	cursor: pointer;
}

.footer_fixed .ask_for #xxk .xuanxiang li:last-child {
	margin-right: 0;
}

.footer_fixed .ask_for #xxk .xuanxiang li input {
	margin-right: 5px;
	width: 18px;
	height: 18px;
	opacity: 0;
	position: relative;
	z-index: 5;
	cursor: pointer;
}

.footer_fixed .ask_for #xxk .xuanxiang li label {
	cursor: pointer;
}

.footer_fixed .ask_for #xxk .xuanxiang li::after {
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	opacity: 1;
	border: 1px solid #FBCA07;
	z-index: 1;
	box-sizing: border-box;
}

.footer_fixed .ask_for #xxk .xuanxiang li::before {
	content: '';
	width: 11px;
	height: 8px;
	background: url("../images/g-ico.png");
	position: absolute;
	left: 3.5px;
	z-index: 2;
	display: none;
}

.footer_fixed .ask_for #xxk .xuanxiang li.on::after {
	background: #FBCA07;
}

.footer_fixed .ask_for #xxk .xuanxiang li.on::before {
	display: block;
	cursor: pointer;
}

.footer_fixed .ask_for .obtain_code {
	position: relative;
	display: inline-block
}

.footer_fixed .ask_for .obtain_code .text {
	margin: 0;
	width: 277px
}

.footer_fixed .ask_for .obtain_code .code_btn {
	display: block;
	outline: none;
	border: none;
	width: 130px;
	padding: 12px 20px;
	border-radius: 3px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #FF7733;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #fff
}

.footer_fixed .ask_for .obtain_code .code_btn::after {
	content: '';
	width: 1px;
	height: 20px;
	background-color: #999;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%)
}

.footer_fixed .ask_for .submit {
	display: block;
	outline: none;
	border: none;
	background: #FBC407;
	width: 160px;
	height: 46px;
	border-radius: 4px;
	text-align: center;
	font-size: 18px;
	color: #333;
	cursor: pointer;
}

.footer_fixed .ask_for .submit:hover {
	font-weight: bold;
}

.footer_fixed .ask_for .submit_m {
	display: none
}

.footer_fixed .footer_fixed_nr {
	display: flex;
	align-items: center;
	padding-left: 31.25%;
}

.footer_fixed .footer_fixed_nr .qgphone {
	width: 30.20%;
	height: 147px;
	background: url("../images/footer_box_bg.png") no-repeat;
	background-position: right;
	position: absolute;
	bottom: -21px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 65px;
	box-sizing: border-box;
}

.footer_fixed .footer_fixed_nr .qgphone .phone-ico {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #222222;
	margin-right: 14px;
	box-sizing: border-box;
}

.footer_fixed .footer_fixed_nr .qgphone .phone-txt p {
	font-size: 20px;
	font-weight: 700;
}

.footer_fixed .footer_fixed_nr .qgphone .phone-txt h3 {
	font-size: 30px;
	font-weight: 900;
}

.footer_fixed .footer_fixed_nr h2 {
	width: 156px;
	font-size: 26px;
	color: #FBCA07;
	font-weight: bold;
	line-height: 40px;
	margin-right: 45px;
}

.footer_fixed .footer_fixed_nr .service_hotline {
	float: left;
	margin-left: 52px;
	margin-top: 16px
}

.footer_fixed .footer_fixed_nr .service_hotline em {
	display: block;
	font-size: 18px;
	color: #fbc407
}

.footer_fixed .footer_fixed_nr .service_hotline .heat_ray {
	margin-top: 10px
}

.footer_fixed .footer_fixed_nr .service_hotline .heat_ray a {
	font-size: 22px;
	color: #fab123;
	display: block
}

.footer_fixed .close {
	width: 28px;
	height: 28px;
	background: url(../images/bi.png) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer
}

.footer_fixed.on {
	transition: all 0.6s;
	opacity: 0;
	width: 0;
	height: 0;
	bottom: 20px
}
.fixed {
    position: fixed;
    z-index: 65;
    top: 80px;
    left: 0;
}
.a-nav {
	width: 100%;
	background: #fff;
	font-size: 18px;
	line-height: 80px;
	border-bottom: 1px solid #eee;
	overflow-x: hidden;
}

.a-nav ul {
	width: 1166px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.a-nav li a {
	display: block;
	width: 72px;
	text-align: center;
	color: #333333;
}

.a-nav li.on a,
.a-nav li:hover a {
	color: rgb(55, 125, 255);
}


.a-nav li {
	position: relative;
}

.a-nav li::after {
	content: '';
	width: 69px;
	height: 3px;
	background-color: rgb(20, 143, 250);
	position: absolute;
	bottom: 0;
	transform: scaleX(0);
	transition: 0.4s;
}

.a-nav li.on::after {
	transform: scaleX(1);
}

.a-nav li:hover::after {
	transform: scaleX(1);
}
.smart-title p {
    font-size: 20px;
    color: #77838f;
    line-height: 1.7;
    margin-top: 10px;
}

.smart-title p span {
	color: #377dff;
}

.smart-title p i {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.smart-title {
	text-align: center;
}
.part01 p {
	font-size: 18px;
	line-height: 34px;
	text-align: center;
	color: #666
}

.part01 p span {
	color: #3E67FF;
	font-weight: bold;
}

.bigh {
	font-size: 46px;
	color: #333333;
	text-align: center;
	font-weight: normal;
}

.w1170 {
	width: 1170px;
	margin: 0 auto;
}

.pb80 {
	padding: 80px 0;
}

.m60 {
	margin-top: 60px !important;
}

.xtgn-list ul li .list-box {
	display: flex;
	padding: 0 25px;
	box-sizing: border-box;
	justify-content: space-between;
	align-items: center;
}
.xtgn-list ul li .list-box .title{
	padding-top: 0;
}
.xtgn-list ul li .left .title h4 {
	font-size: 34px;
	color: rgb(51, 51, 51);
	line-height: 1.059;
	font-weight: normal;
	margin-top: 25px;
}

.xtgn-list ul li .left .title p {
	width: auto;
	text-align: left;
	background: linear-gradient(to bottom, rgba(55, 125, 255, 0.3) 0%, rgba(55, 125, 255, 0.2) 50%, rgba(55, 125, 255, 0.05) 70%, rgba(255, 255, 255, 0.01) 95%, rgba(55, 125, 255, 0) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	/*将设置的背景颜色限制在文字中*/
	-webkit-text-fill-color: transparent;
	/*给文字设置成透明*/
	font-size: 120px;
	font-weight: 100;
	line-height: 0.9;
	margin-left: 0;
}

.xtgn-list ul li .left .left-content {
	margin-top: 25px;
}

.xtgn-list ul li .left .left-content p {
	font-size: 16px;
	color: rgb(85, 85, 85);
	line-height: 1.5;
	margin-bottom: 15px;
}

.xtgn-list ul li .left .a-button {
	display: flex;
	margin-top: 35px;
}
.xtgn-list ul li .left .a-button .kt-btn{
	transform: none;
	box-shadow: unset;
}
.xtgn-list ul li .left .a-button button {
	margin-right: 20px;
}

.xtgn-list ul li .left .a-button a,
.xtgn-list ul li .left .a-button button {
	display: block;
	box-sizing: border-box;
	width: 162px;
	height: 54px;
	border: 1px solid rgb(20, 143, 250);
	background: #fff;
	cursor: pointer;
	text-align: center;
	line-height: 54px;
	border-radius: 6px;
	font-size: 22px;
	color: rgb(20, 143, 250);
	transition: 0.4s;
}

.xtgn-list ul li .left .a-button a:hover,
.xtgn-list ul li .left .a-button button:hover {
	background: rgb(20, 143, 250);
	color: #fff;
}

.xtgn-list ul li:nth-child(2n) {
	background-color: rgb(246, 247, 248);
}

.xtgn-list ul li:nth-child(2n) .list-box {
	flex-direction: row-reverse;
}

.xtys-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.xtys-list ul li {
	width: 22.22%;
	margin-bottom: 50px;
	box-shadow: 0px 0px 20px 0px rgb(240, 244, 247);
}

.xtys-list ul li:nth-last-child(-n+4) {
	margin-bottom: 0;
}

.xtys-list ul li .title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 86px;
	text-align: center;
	background: url('../images/xtys-bg.png') no-repeat;
	background-size: 100%;
	padding-top: 0;
}

.xtys-list ul li .title .title-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 86px;
	width: 270px;
	text-align: center;
}

.xtys-list ul li .title h4 {
	font-size: 22px;
	font-weight: bold;
}

.xtys-list ul li .xtys-content {

	/* height: 160px; */
	padding: 20px 0 20px;
	box-sizing: border-box;
}

.xtys-list ul li .xtys-content p {
	font-size: 16px;
	color: rgb(85, 85, 85);
	line-height: 1.75;
	width: 270px;
	margin: 0 auto;
}


.part08 .swiper {
	padding: 0 75px;
	box-sizing: border-box;
}

.part08 .swiper>ul>li {
	display: flex;
	justify-content: space-between;
}

.part08 .swiper>ul>li .left {
	width: 740px;
	height: 436px;
}

.part08 .swiper>ul>li .left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.part08 .swiper>ul>li .right {
	width: 426px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.part08.sewage-case .swiper>ul>li .right {
	width: 400px;
	box-sizing: border-box;
}

.part08.sewage-case .swiper>ul>li .right h4 {
	margin-bottom: 40px;
}

.part08.sewage-case .swiper>ul>li .right p span {
	color: #148ffa;
	line-height: 1.889;
}



.part08 .swiper>ul>li .right h4 {
	font-size: 30px;
	font-weight: bold;
	line-height: 30px;
	color: #333333;
}

.part08 .swiper>ul>li .right p {
	font-size: 18px;
	color: rgb(102, 102, 102);
	line-height: 30px;
}

.part08 .swiper>ul>li .right ul li {
	font-size: 18px;
	font-weight: bold;
	line-height: 50px;
	color: #333333;
	padding-left: 32px;
	position: relative;
}

.part08 .swiper>ul>li .right ul li::after {
	content: '';
	width: 19.99px;
	height: 14.66px;
	background: url("../images/kh-case-ico.png") no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.part09 {
	padding: 48px 0;
	position: relative;
	/* height: 232px; */
	background: url("../images/content-footer-bg.png");
	background-size: cover;
	box-sizing: border-box;
	margin-top: 102px;
}

.part09 h2 {
	font-size: 40px;
	color: #148FFA;
	font-family: SourceHanSansCN;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
}

.part09 p {
	font-size: 20px;
	line-height: 34px;
	color: #333333;
	margin-bottom: 17px;
	line-height: 1;
	margin-bottom: 20px;
}

.part09 .kt-btn {
	font-size: 20px;
	color: #F6F6F6;
	width: 148px;
	height: 46px;
	line-height: 46px;
	border-radius: 10px;
	background: #148FFA;
}

.part09 div {
	position: relative;
}

.part09 div img {
	position: absolute;
	right: 0;
	bottom: -48px;
}

.w1220 {
	width: 1220px;
	margin: 0 auto;
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}

@media screen and (max-width:1200px) {
	.a-nav ul {
		width: 95%;
	}

	.w1170 {
		width: 95%;
	}
}

@media screen and (max-width:960px) {
	.a-nav {
		line-height: 55px;
		font-size: 16px;
	}

	.part01 p {
		font-size: 17px;
	}

	.pb80 {
		padding: 30px 0 30px 0;
	}

	.m60 {
		margin-top: 20px !important;
	}

}

@media screen and (max-width:960px) {
	.bigh {
		font-size: 32px;
		color: #333333;
		text-align: center;
		font-weight: normal;
	}
}

@media screen and (max-width:660px) {
	.bigh {
		font-size: 28px;
	}
}

/* 单页 */
.shrink_windows {
	position: fixed;
	background: #fbc407;
	left: -100%;
	bottom: 30px;
	padding: 12px 24px 12px 35px;
	border-radius: 0 35px 35px 0;
	display: flex;
	align-items: center;
	z-index: 99999;
	cursor: pointer;
	transition: all 0.8s;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.16);
	display: none
}

.shrink_windows.on {
	left: -200px;
}

.shrink_windows .shrink_nr {
	padding-right: 46px;
	background: url(../images/ss-zygw.png) no-repeat right center
}

.shrink_windows .shrink_nr h4 {
	font-size: 18px;
	color: #222
}

.shrink_windows .shrink_nr p {
	font-size: 14px;
	color: #222
}
@media screen and (max-width:1680px) {
	.footer_fixed .footer_fixed_nr .qgphone {
		width: 24.2%;
		height: 135px;
	}

	.footer_fixed .footer_fixed_nr {
		padding-left: 24.5%;
		padding-right: 50px;
	}

	.footer_fixed .footer_fixed_nr h2 {
		width: 132px;
		font-size: 22px;
		margin-right: 2%;
	}

	.footer_fixed {
		padding: 20px 0 15px;
	}

	/* 	.footer_fixed .ask_for{
		width: 800px;
	} */
	.footer_fixed .ask_for .submit {
		width: 120px;
	}
}

@media screen and (max-width:1500px) {
	.footer_fixed .footer_fixed_nr .qgphone .phone-txt p {
		font-size: 18px;
	}

	.footer_fixed .footer_fixed_nr .qgphone .phone-txt h3 {
		font-size: 20px;
	}

	.footer_fixed .footer_fixed_nr .qgphone .phone-ico {
		width: 45px;
		height: 45px;
	}

	.footer_fixed .footer_fixed_nr h2 {
		width: 108px;
		font-size: 18px;
		line-height: 30px;
	}

	.footer_fixed .ask_for .text,
	.footer_fixed .ask_for .submit {
		height: 35px;
		line-height: 35px;
	}

	.footer_fixed .ask_for .obtain_code .code_btn {
		padding: 7px 15px;
	}

	.footer_fixed .ask_for #xxk {
		margin-top: 10px;
	}

	.footer_fixed .ask_for .obtain_code .text {
		width: 215px;
	}

	.footer_fixed .ask_for {
		width: 80%;
	}

	.footer_fixed .ask_for .obtain_code .code_btn {
		width: 110px;
	}

	/* .footer_fixed .ask_for #xxk .xuanxiang{
		width: 75%;
	} */
	.footer_fixed .ask_for .submit {
		width: 100px;
	}

	.footer_fixed {
		padding: 15px 0 10px;
	}

	.footer_fixed .footer_fixed_nr .qgphone {
		height: 115px;
	}
}

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

	.xtys-list ul li .xtys-content p,
	.xtys-list ul li .title .title-box {
		width: 90%;
	}

	.xtys-list ul li .title h4 {
		font-size: 18px;
	}

	.part08 .swiper>ul>li .left {
		width: 55%;
	}

	.part08 .swiper>ul>li .right {
		width: 40%;
	}
}

@media screen and (max-width:1350px) {
	.footer_fixed .ask_for #xxk .xuanxiang li {
		margin-right: 15px;
	}
}

@media screen and (max-width:1250px) {
	.footer_fixed .footer_fixed_nr .qgphone {
		width: 23.2%;
	}

	.footer_fixed .footer_fixed_nr {
		padding-left: 22.5%;
	}

	/* .footer_fixed .ask_for{
		width: 625px;
	} */
	.footer_fixed .ask_for #xxk {
		width: 100%;
	}

	.footer_fixed .footer_fixed_nr .qgphone .phone-txt h3 {
		font-size: 18px;
	}

	.footer_fixed .ask_for {
		width: 84%;
	}
}

@media screen and (max-width:1220px) {
	.w1220 {
		width: 95%;
	}

	.part08 .swiper>ul>li .right h4 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.part08 .swiper>ul>li .right p {
		font-size: 16px;
	}

	.part08 .swiper>ul>li .right ul li {
		line-height: 40px;
	}

	.part08 .swiper>ul>li .right ul {
		margin-bottom: 15px;
	}
}

@media screen and (max-width:1120px) {
	.footer_fixed {
		padding-top: 15px;
	}

	.footer_fixed .footer_fixed_nr .qgphone {
		display: none;
	}

	.footer_fixed .footer_fixed_nr {
		width: 95%;
		margin: 0 auto;
		padding: 0;
		display: block;
	}

	.footer_fixed .footer_fixed_nr h2 {
		display: none;
	}

	.footer_fixed .ask_for {
		width: 90%;
		margin: 0;
	}

	.footer_fixed .ask_for #xxk {
		width: 80%;
	}

	.xtgn-list ul li .left {
		width: 40%;
	}

	.xtgn-list ul li .right {
		width: 55%;
	}

	.xtgn-list ul li .right img {
		width: 100%;
	}
	.part08.sewage-case .swiper>ul>li .right .txt{
		margin-bottom: 20px;
	}
	.part08 .swiper>ul>li .left{
		width: 48%;
		height: auto;
	}
	.part08.sewage-case .swiper>ul>li .right{
		width:48%;
	}

}

@media screen and (max-width:1080px) {
	.footer_fixed .ask_for {
		width: 90%;
		margin: 0 auto;
		/* display: block; */
	}

	.footer_fixed .ask_for .text {
		width: 49%;
		margin-bottom: 15px;
		height: 45px;
		line-height: 45px;
	}

	.footer_fixed .ask_for .obtain_code .code_btn {
		padding: 12px;
	}

	.footer_fixed .ask_for .obtain_code {
		width: 49%;
	}

	.footer_fixed .ask_for .obtain_code .text {
		width: 100%;
		margin-bottom: 15px;
	}

	.footer_fixed .ask_for .submit {
		display: none;
	}

	.footer_fixed .ask_for .submit.submit_m {
		display: block;
	}

	.footer_fixed .ask_for #xxk .xuanxiang li {
		width: 130px;
		margin-bottom: 15px;
	}

	.footer_fixed .ask_for #xxk {
		width: 100%;
	}

	.footer_fixed .ask_for #xxk .xuanxiang {
		width: auto;
	}

	/* .footer_fixed .close{
		left: 20px;
		right: auto;
	}
	.footer_fixed .ask_for #xxk .xuanxiang{
		width: 85%;
	} */
	.part09 h2 {
		font-size: 24px;
	}

	.part09 p {
		font-size: 16px;
	}

	.part09 .kt-btn {
		font-size: 16px;
		width: 110px;
		height: 40px;
		line-height: 40px;
	}

	.part09 {
		padding: 20px 0;
	}

	.part09 div img {
		width: 250px;
	}

	.xtgn-list ul li .left {
		width: 35%;
	}

	.xtgn-list ul li .right {
		width: 62%;
	}

	.xtgn-list ul li .left .title p {
		font-size: 90px;
	}

	.xtgn-list ul li .left .title h4 {
		font-size: 28px;
		margin-top: 10px;
	}

	.xtgn-list ul li .left .left-content {
		margin-top: 10px;
	}

	.xtgn-list ul li .left .a-button {
		margin-top: 15px;
	}

	.xtgn-list ul li .left .a-button a,
	.xtgn-list ul li .left .a-button button {
		width: 110px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
}

@media screen and (max-width:960px) {
	.xtgn-list ul li .list-box {
		flex-wrap: wrap;
	}

	.xtgn-list ul li .left {
		width: 100%;
	}

	.xtgn-list ul li .right {
		width: 70%;
		margin: 0 auto;
		margin-top: 20px;
	}

	.xtgn-list ul li .left .left-content {
		display: flex;
		flex-wrap: wrap;
	}

	.xtgn-list ul li .left .title p {
		margin-right: 4%;
	}

	.xtgn-list ul li .left .left-content p {
		width: 48%;
		margin-right: 4%;
	}

	.xtgn-list ul li .left .left-content p:nth-child(2n) {
		margin-right: 0%;
	}

	.xtgn-list ul li .left .title {
		display: flex;
		align-items: center;
	}

	.xtgn-list ul li .left .title h4 {
		margin-top: 0;
	}

	.xtys-list ul {
		flex-wrap: wrap;
	}

	.xtys-list ul li {
		width: 48%;
		margin-bottom: 20px;
	}

	.xtys-list ul li:nth-last-child(-n+4) {
		margin-bottom: 20px;
	}

	.xtys-list ul li:nth-last-child(-n+2) {
		margin-bottom: 0;
	}

	.part08 .swiper>ul>li {
		flex-direction: column;
		box-shadow: 0 0 4px 0 rgb(0, 0, 0, 0.4);
		margin-bottom: 5px;
	}

	.part08 .swiper>ul>li .left {
		width: 100%;
	}

	.part08.sewage-case .swiper>ul>li .right {
		width: 100%;
		padding: 20px;
	}

	.part08 .swiper>ul>li .right h4 {
		font-size: 20px;
		text-align: center;
	}

	.part08 .swiper>ul>li .right p {
		font-size: 16px;
	}

	.part08 .swiper>ul>li .right .kt-btn {
		margin: 0 auto;
	}

	.part09 {
		margin-top: 50px;
	}
}

@media screen and (max-width:768px) {
	.footer_fixed .ask_for {
		width: 80%;
	}

	#aff-im-root .embed-icon {
		display: none !important;
	}

	.part09 div img {
		display: none;
	}
	.smart-title p{
		margin-bottom: 20px;
		line-height: 1.8;
	}
	.smart-title p,
	.smart-test02 .test02_content ul li span,
	.test07-content .test07-txt span{
		font-size: 15px;
	}

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

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

	.part08 .swiper>ul>li .right .kt-btn {
		width: 120px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		border-radius: 8px;
	}

}

@media screen and (max-width:690px) {
	.footer_fixed .ask_for {
		width: 80%;
	}

	/* .footer_fixed .ask_for #xxk .xuanxiang li{
		width: 43%;
	} */
	.footer_fixed .ask_for .text,
	.footer_fixed .ask_for .obtain_code {
		width: 100%;
	}

	.footer_fixed .ask_for #xxk {
		flex-wrap: wrap;
		margin-top: 0;
	}

	.footer_fixed .ask_for #xxk p {
		width: 100%;
		margin-bottom: 15px;
	}

}

@media screen and (max-width:660px) {
	.part08 .swiper>ul>li .right h4 {
		font-size: 18px;
	}

	.part08 .swiper>ul>li .right p {
		margin-bottom: 15px;
	}

	.part08 .swiper>ul>li .right ul li,
	.part08 .swiper>ul>li .right p {
		font-size: 14px;
		line-height: 24px;
	}
}

@media screen and (max-width:560px) {
	.xtgn-list ul li .left .left-content p {
		width: 100%;
		font-size: 18px;
	}

	.xtgn-list ul li .left .title p {
		font-size: 60px;
		background: none;
		color: rgba(55, 125, 255);
		-webkit-text-fill-color: unset;
	}

	.xtgn-list ul li .right {
		width: 100%;
	}

	.xtgn-list ul li .left .left-content {
		margin-top: 15px;
	}

	.xtys-list ul li {
		width: 100%;
	}

	.part08 .swiper {
		padding: 0 10px;
	}
}

@media screen and (max-width:520px) {
	.footer_fixed .ask_for #xxk p {
		font-size: 16px;
	}

	.footer_fixed .ask_for #xxk ul li label {
		font-size: 14px;
	}

	/* 	.footer_fixed .ask_for #xxk .xuanxiang li input{
		width: 10px;
		height: 10px;
	} */
	.footer_fixed .ask_for #xxk .xuanxiang li {
		width: 107px;
		margin-bottom: 10px;
		margin-right: 10px;
	}
}

@media screen and (max-width:475px) {
	.footer_fixed .ask_for #xxk {
		flex-wrap: wrap;
		margin-bottom: 15px;
	}

	.footer_fixed .ask_for #xxk p {
		width: 100%;
		margin-bottom: 10px;
	}

	.footer_fixed .ask_for #xxk .xuanxiang {
		width: 100%;
	}

	/* .footer_fixed .ask_for #xxk .xuanxiang li{
		width: 48%;
		margin-bottom: 5px;
	} */
}

@media screen and (max-width:425px) {
	.footer_fixed .ask_for {
		width: 70%;
	}

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

	.part09 p {
		font-size: 14px;
	}

	.part09 .kt-btn,
	.test02_content .kt-btn {
		font-size: 14px;
		width: 100px;
		height: 40px;
		line-height: 40px;
	}

	.footer_fixed .close {
		top: 5px;
	}

	.footer_fixed.show {
		padding-top: 40px;
	}

	.footer_fixed .ask_for {
		width: 100%;
	}

	.xtgn-list ul li .left .left-content p {
		font-size: 14px;
	}

	.xtgn-list ul li .left .title p {
		font-size: 48px;
	}

	.xtgn-list ul li .left .title h4 {
		font-size: 18px;
	}

	.xtgn-list ul li .left .a-button a,
	.xtgn-list ul li .left .a-button button {
		width: 90px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}

}


