@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/SourceHanSansCN-Regular.otf");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/SourceHanSansCN-Medium.otf");
  font-family: "title";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
@font-face {
  src: url("../fonts/HarmonyOS_Sans_Regular.ttf");
  font-family: "hongmeng";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-size: 12px;
  color: #666;
  list-style: none;
   font-family: "hongmeng"; 
  font-weight: normal;
  box-sizing: border-box;
}
@font-face {
  font-family: "iconfont";
  src: url("../icons/iconfont.eot");
  src: url("../icons/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../icons/iconfont.woff") format("woff"),
    url("../icons/iconfont.ttf") format("truetype"),
    url("../icons/iconfont.svg#iconfont") format("svg");
}

body,
html {
  height: 100%;
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  list-style: none;
  font-size: 12px;
}
img {
  width: 100%;
  display: block;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
dir,
section {
  margin: 0;
  padding: 0;
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
/*index*/
.w_all {
  width: 80%;
  margin: auto;
}
.w_all2 {
  width: 84%;
  margin: auto;
}
.w_all3 {
  width: 100%;
  height: 100vh;
}
html,
body {
  width: 100%;
  position: relative;
}
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
}
header .nav_box {
  position: relative;
}

.swiper-vertical {
  height: 100%;
}

header .logo {
  width: 15%;
}

.vertical-swiper > .swiper-wrapper > .swiper-slide {
  transition: transform 1s ease-out;
  transform: translateY(0);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

/* 导航 Strat */

header .nav_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 5%;
  transition: all 0.5s;
}
header .nav_box .nav_btn {
  z-index: 99999;
  cursor: pointer;
  /* opacity: 0.8; */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(60, 36, 120, 0.1);
}
header .nav_box .nav_btn .dh {
  font-size: 1rem;
  color: #000;
  margin-right: 15px;
}

header .nav_box .nav_btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 6px auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .nav_box .nav_btn span:nth-of-type(2) {
  width: 18px;
  margin-left: 0;
}

header .nav_box .logo img {
  height: 38px;
  width: auto;
}
header .nav_box .logo img:last-of-type {
  display: none;
}

header .nav_box .nav ul {
  display: flex;
  justify-content: space-between;
}
header .nav_box .nav ul .menu {
  padding: 0 30px;
  position: relative;
}
header .nav_box .nav ul li h1 {
  font-size: 1.4rem;
  color: #fff;
  height: 90px;
  line-height: 90px;
  position: relative;
  transition: all 0.3s;
  font-weight: bolder;
}
header .nav_box .nav ul li h1:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  transition: all 0.3s ease-in-out;
  height: 4px;
  background-color: #e62129;
}
header .nav_box .nav ul li:hover h1:after {
  left: 0;
  right: 0;
}

header .nav_box .nav .sub {
  position: absolute;
  top: 90px;
  left: -16%;
  width: 170px;
  text-align: center;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: all 0.6s;
}
header .nav_box .nav .sub ul {
  display: flex;
  flex-direction: column;
}
header .nav_box .nav .sub ul a {
  font-size: 1.4rem;
  color: #666;
  height: 38px;
  line-height: 38px;
  display: block;
  transition: all 0.3s;
}

header.hide .logo {
  opacity: 0;
}
header.hide .logo a {
  display: none;
}
header.hide .nav {
  opacity: 0;
}
header.hide .nav ul {
  display: none;
}
header.hide .nav_box:hover {
  background-color: transparent;
  box-shadow: none;
}
header.hide .nav_box:hover .nav_btn span {
  background-color: #fff;
}

header .nav_box:hover {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
header .nav_box:hover .nav_btn span {
  background-color: #000;
}
header .nav_box:hover ul li h1 {
  color: #666;
}
header .nav_box li:hover .sub {
  transform: scaleY(1);
}
header .nav_box .nav ul li:hover h1 {
  color: #e62129;
}
header .nav_box .nav ul li .sub li:hover a {
  color: #e62129;
}

header .nav_box.white {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
header .nav_box.white .nav_btn span {
  background-color: #000;
}
header .nav_box.white ul li h1 {
  color: #666;
}
header .nav_box:hover .logo img:first-of-type {
  display: none;
}
header .nav_box:hover .logo img:last-of-type {
  display: block;
}
header .nav_box.white .logo img:first-of-type {
  display: none;
}
header .nav_box.white .logo img:last-of-type {
  display: block;
}
header .nav_box:hover .nav_btn {
  background-color: #174592 !important;
}
header .nav_box:hover .nav_btn .dh {
  color: #fff !important;
}
header .nav_box:hover .nav_btn span {
  background-color: #fff !important;
}

header.hide .nav_box:hover .nav_btn {
  background-color: #fff !important;
}
header.hide .nav_box:hover .nav_btn .dh {
  color: #000 !important;
}
header.hide .nav_box:hover .nav_btn span {
  background-color: #000 !important;
}
header.hide .nav_box .nav_btn:hover {
  background-color: #174592 !important;
}
header.hide .nav_box .nav_btn:hover .dh {
  color: #fff !important;
}
header.hide .nav_box .nav_btn:hover span {
  background-color: #fff !important;
}

/* 导航 End*/

/* 侧边导航 Strat */
header .nav_menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 338;
  box-sizing: border-box;
  padding-bottom: 0;
  transition: all 0.5s ease-out;
}
header .nav_menu .con {
  width: 100%;
  height: 100%;
  display: flex;
}
header .nav_menu .imgbox {
  width: 50%;
  height: 100%;
  position: relative;
  top: -100%;
}
header .nav_menu .imgbox img {
  height: 100%;
  object-fit: cover;
}
header .nav_menu .menu_box {
  width: 50%;
  height: 100%;
  padding: 6% 3.5%;
  position: relative;
  top: -100%;
}
header .nav_menu .menu_box > ul {
  display: flex;
  flex-direction: column;
}
header .nav_menu .menu_box > ul > li {
  margin-bottom: 20px;
}
header .nav_menu .menu_box > ul > li > a h1 {
  font-size: 2rem;
  color: #333;
  line-height: 2;
  transition: all 0.3s;
}
header .nav_menu .menu_box .sub ul {
  display: flex;
}
header .nav_menu .menu_box .sub a {
  font-size: 1.4rem;
  color: #777;
  line-height: 2;
  margin-right: 20px;
  transition: all 0.3s;
}
header .nav_menu .menu_box > ul > li > a:hover h1 {
  color: #174592;
}
header .nav_menu .menu_box .sub ul li:hover a {
  color: #174592;
}

header .nav_menu .imgbox h1 {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 4.6rem;
  color: #fff;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "title";
}

.c-open .nav_btn span {
  background-color: #fff !important;
  margin: 0 !important;
}
/* .c-open .nav_btn span:nth-of-type(2) {
  opacity: 0;
} */
.c-open .nav_btn span:nth-of-type(1) {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open .nav_btn span:nth-of-type(2) {
  margin-top: -1.5px !important;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 22px !important;
}
/* .c-open .nav_btn:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
} */

.c-open .nav_btn {
  background-color: #174592 !important;
  padding: 11px 20px !important;
}
.c-open .nav_btn .dh {
  color: #fff !important;
}
/* 侧边导航 End*/

/* banner Strat */
.banner {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  position: relative;
}
.banner .video {
  width: 100%;
  height: 100%;
}
.banner video {
  width: 100%;
  height: 108%;
  object-fit: cover;
  margin-top: -2.5%;
}
.banner .scroll {
  position: absolute;
  bottom: 5%;
  left: 49%;
  width: 50px;
  z-index: 51;
  display: none;
}
.banner .box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background-position: bottom;
}
.banner .box img {
  object-fit: cover;
}
.banner .box .txt {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
/* .banner .box .txt::before{
  content: '';
  position: absolute;
  top: 35%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
} */
.banner .box .txt h1 {
  font-size: 5.4rem;
  color: #fff;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 2;
}
.banner .box .txt h2 {
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
/* banner End*/

/* 首页 Strat */

.i_part1 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.i_part1 .partbg {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.i_part1 .bg img {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 50%;
  height: 100%;
  opacity: 0.3;
}

.i_part1 .content {
  position: relative;
  z-index: 99;
}
.title {
  position: relative;
}
.title h2 {
  font-size: 2rem;
  position: relative;
  letter-spacing: 1.5px;
  line-height: 1.2;
  font-family: "title";
  color: #174592;
  text-transform: uppercase;
}
.title h1 {
  font-size: 2.8rem;
  color: #333;
  position: relative;
}
.title h2 span {
  position: relative;
}
.i_part1 .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.i_part1 .content .ll {
  width: 50%;
  padding-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.i_part1 .content .rr {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.i_part1 .content .rr .r_imgbox {
  height: 100%;
}
.i_part1 .content .rr .r_imgbox img {
  height: 100%;
}
.i_part1 .content .ll .itro {
  width: 90%;
  margin-top: 45px;
  margin-bottom: 64px;
}
.i_part1 .content .ll .itro p {
  font-size: 1.4rem;
  color: #777;
  letter-spacing: 1.75px;
  line-height: 1.6;
}
.i_part1 .content .ll .l_imgbox {
  width: 80%;
}
.l_imgbox {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  padding-left: 0;
}
.l_imgbox:before {
  position: absolute;
  content: "";
  width: 147px;
  height: 147px;
  background: #b3cda1;
  opacity: 0.6;
  left: -30px;
  bottom: -30px;
  z-index: 01;
}
.l_imgbox img {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
.more {
  width: 170px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #174592; */
  border: 1px solid #174592;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}
.more span {
  font-size: 1.4rem;
  color: #174592;
  transition: all ease-out 0.3s;
}
.more svg {
  width: 26px;
  height: 26px;
  transition: all ease-out 0.3s;
}
.more svg path {
  fill: #fff;
  transition: all ease-out 0.3s;
}
.more::before {
  content: "";
  width: 100%;
  height: 0;
  background: #174592;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all ease-out 0.3s;
  z-index: -1;
}
.more:hover::before {
  height: 100%;
}
.more:hover svg {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

.more:hover span {
  color: #fff;
  padding-left: 5px;
}
.more:hover svg path {
  fill: #fff;
}
.i_part1 .content .ll .more {
  margin-top: 10%;
}

.i_part1 .content .ll .num ul {
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.i_part1 .content .ll .num .circle {
  display: flex;
  align-items: baseline;
}
.i_part1 .content .ll .num .circle .counter {
  font-size: 6.5rem;
  color: #174592;
  letter-spacing: 1.5px;
  font-family: "num";
  margin-right: 10px;
}
.i_part1 .content .ll .num .circle .unit {
  font-size: 1.4rem;
  color: #174592;
}
.i_part1 .content .ll .num .tit {
  font-size: 1.4rem;
}
.r_imgbox {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  padding-left: 0;
}
.r_imgbox:before {
  position: absolute;
  content: "";
  width: 147px;
  height: 147px;
  background: #dbe5e7;
  opacity: 0.8;
  right: -30px;
  top: -30px;
  z-index: 01;
}
.r_imgbox img {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4); */
}

.i_part2 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% 50%;
  justify-content: center;
  /* background-color: #f2fafe;
  background: linear-gradient(to bottom, #fff 30%, #F2EAD5 100%); */
}
.i_part2 .content {
  position: relative;
  width: 80%;
  margin: 0 auto;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.i_part2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: url("../images/i2_ys3.png");
  background-size: cover;
  background-position: top;
  z-index: 9;
}

.i_part2 .content .itro p {
  font-size: 1.4rem;
  color: #777;
  letter-spacing: 1.75px;
  line-height: 1.6;
}
.i_part2 .content .aa {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.i_part2 .content .aa .cpg .item i {
  display: block;
  width: 48px;
  height: 48px;
}
.i_part2 .content .aa .title {
  margin-bottom: 45px;
}
.i_part2 .content .aa .cpg {
  margin-top: 5%;
  position: relative;
}
.i_part2 .content .aa .cpg .item {
  margin: 48px 0;
}

.i_part2 .content .aa .cpg .item .ys {
  display: flex;
  align-items: center;
}
.i_part2 .content .aa .cpg .item .ys .txt {
  margin-left: 15px;
}
.i_part2 .content .aa .cpg .item .ys .txt h2 {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.i_part2 .content .aa .cpg .item .ys .txt p {
  font-size: 1.4rem;
  color: #777;
  letter-spacing: 1.5px;
  line-height: 2;
}
.i_part2 .content .aa .cpg .item:first-of-type .ys .txt h2 {
  color: #174592;
}
.i_part2 .content .aa .cpg .item:hover .ys .txt h2 {
  color: #174592;
}
.i_part2 .content .bb {
  width: 50%;
  /* border: 2px solid #b17f5c; */
  border-radius: 50%;
}
.i_part2 .content .bb img {
  /* padding: 5%; */
  /* border: 1.5px dashed #b17f5c;
  border-radius: 50%; */
}
.i_part3 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.i_part3 .bgc {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../images/i3_ys.jpg");
  background-size: cover;
  background-position: center;
  width: 90%;
  height: 100%;
  opacity: 0.5;
}
.i_part3 .content {
  width: 100%;
  padding: 0 10%;
  display: flex;
  justify-content: space-between;
}
.i_part3 .content .aa {
  width: 32%;
}
.i_part3 .content .aa .itro {
  margin: 45px 0 64px;
}
.i_part3 .content .aa .itro p {
  font-size: 1.4rem;
  color: #333;
  letter-spacing: 1.75px;
  line-height: 1.6;
}
.i_part3 .content .bb {
  width: 63%;
  overflow: hidden;
}
.i_part3 .content .bb .yj_swiper {
  position: relative;
  padding-bottom: 5%;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a {
  display: block;
  position: relative;
}
.i_part3 .content .bb .yj_swiper .swiper-slide:nth-of-type(2n-1) a {
  display: flex;
  flex-direction: column-reverse;
}
.i_part3 .content .bb .yj_swiper .swiper-slide h2 {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.5;
  font-family: "title";
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.i_part3 .content .bb .yj_swiper .swiper-slide h3 {
  font-size: 1.2rem;
  color: #174592;
  width: 50%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.i_part3 .content .bb .yj_swiper .swiper-slide .tit {
  margin: 36px 0;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a .img {
  position: relative;
  display: block;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a .img .more1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a .img .more1 img {
  width: 56px;
  height: 56px;
  padding: 10px;
  border: 2px solid #174592;
  border-radius: 50%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.i_part3 .content .bb .yj_swiper .qh {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a:hover .tit h2 {
  color: #174592;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a:hover .tit h3 {
  color: #174592;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a:hover .img .more1 {
  opacity: 1;
}
.i_part3 .content .bb .yj_swiper .swiper-slide a:hover .img .more1 img {
  transform: scale(1.1);
}
.i_part3 .content .bb .yj_swiper .yjswiper-button-prev,
.i_part3 .content .bb .yj_swiper .yjswiper-button-next {
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  width: 54px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 18px;
}
.i_part3 .content .bb .yj_swiper .yjswiper-button-prev {
  background-image: url("../images/swiperleft.png");
  background-position: left;
}
.i_part3 .content .bb .yj_swiper .yjswiper-button-next {
  background-image: url("../images/swiperright.png");
  background-position: right;
}
.i_part3 .content .bb .yj_swiper .yjswiper-pagination {
  width: 45px;
  display: flex;
  justify-content: center;
  color: #000;
  font-size: 1.4rem;
}
.i_part3 .content .bb .yj_swiper .yjswiper-pagination span {
  color: #000;
  font-size: 1.4rem;
}

.i_part4 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% 50%;
  justify-content: center;
}
.i_part4 .content {
  position: relative;
  width: 80%;
  margin: 0 auto;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .i_part4::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/sp.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
} */
.i_part4 .content .aa {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.i_part4 .content .bb {
  width: 50%;
  border-radius: 50%;
  position: relative;
}
.i_part4 .content .bb .v_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(104, 121, 166, 0.3);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  z-index: 9999;
}
.i_part4 .content .bb .v_btn img {
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.i_part4 .content .bb .video{
  width: 100%;
  position: relative;
}
.i_part4 .content .bb video{
  width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.i_part4 .content .more {
  margin-top: 3%;
}

.i_part4 .content .aa p {
  font-size: 1.4rem;
    color: #777;
    letter-spacing: 1.75px;
    line-height: 1.6;
}
.i_part4 .content .aa .itro {
  margin: 45px 0 64px;
}

.i_part4 .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  cursor: pointer;
}
.i_part4 .video-popup {
  display: none;
  /* max-width: 65%;
  max-height: 65%; */
  height: 80%;
  width: auto;
}
.i_part4 .video-popup video {
  width: 100%;
  height: 100%;
}
.i_part4 .close-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #fff;
}



.i_part5 {
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.i_part5 .content {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.i_part5 .content .horizontal-swiper {
  width: 100%;
  padding: 2% 1%;
  margin-top: 3%;
  overflow: hidden;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide{
    height: auto;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 25rem;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .msg {
  position: relative;
  background-color: #f4f4f4;
  height: calc(100% - 25rem);
  padding-bottom: 12rem;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .msg::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #edf7ff;
  padding: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .msg .tit {
  font-size: 1.6rem;
  color: #000;
  font-family: "title";
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  padding: 30px 30px 0 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .msg .con {
  font-size: 1.3rem;
  letter-spacing: 1.2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
  padding: 0px 30px;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .msg .line {
  position: absolute;
  top: -3px;
  left: 7%;
  width: 40%;
  height: 6px;
  background-color: #e62129;
  z-index: 2;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .msg .data {
  /*margin-top: 80px;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  padding: 15px 30px;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide
  .msg
  .data
  h1 {
  font-size: 1.3rem;
  color: #333;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide
  .msg
  .data
  i {
  width: 38px;
  height: 38px;
  display: block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide
  .msg
  .data
  i
  img:first-of-type {
  display: block;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide
  .msg
  .data
  i
  img:last-of-type {
  display: none;
}
.i_part5 .content .horizontal-swiper .swiper-wrapper .swiper-slide .cpg {
  font-size: 1.2rem;
  background-color: #174592;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide:hover
  .msg::after {
  height: 100%;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide:hover
  .msg
  .data
  i {
  -webkit-transform: rotate(48deg);
  transform: rotate(48deg);
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide:hover
  .msg
  .data
  i
  img:last-of-type {
  display: block;
}
.i_part5
  .content
  .horizontal-swiper
  .swiper-wrapper
  .swiper-slide:hover
  .msg
  .data
  i
  img:first-of-type {
  display: none;
}
.i_part5 .content .center {
  position: relative;
}
.i_part5 .content .horizontal-swiper .swiper-button-next {
  right: -6%;
  top: 52%;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 1px #ddd;
  padding: 32px;
}
.i_part5 .content .horizontal-swiper .swiper-button-prev {
  left: -6%;
  top: 52%;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 1px #ddd;
  padding: 32px;
}
.i_part5 .content .horizontal-swiper .swiper-button-prev::after,
.i_part5 .content .horizontal-swiper .swiper-button-next::after {
  font-size: 2rem !important;
  color: #174592;
  font-weight: bold;
}

/* 首页 End*/

/* 底部栏 Strat */
.footer {
  height: 300px !important;
  background-color: #333;
  color: white;
  font-size: 1.5rem;
  width: 100%;
  position: relative;
  padding: 5% 10% 0;
  /* background-image: url("../image/ftbgc1.jpg");
  background-repeat: no-repeat;
  background-size: cover; */
}
.footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .top .logo img {
  width: 260px;
  height: auto;
}
.footer .top .rr .code {
  position: relative;
}
.footer .top .rr .code i img {
  width: 38px;
}
.footer .top .rr .code .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 5px;
  padding-bottom: 0;
  position: absolute;
  bottom: 50px;
  left: -40px;
  display: none;
  transition: all 0.3s ease-out;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.2) 0px 20px 50px 0px;
}
.footer .top .rr .code .box img {
  width: 120px;
}
.footer .top .rr .code .box b {
  font-size: 1.15rem;
  line-height: 2;
  color: #333;
  text-align: center;
}
.footer .top .rr .code:hover .box {
  display: block;
}
.footer .top .rr .tel {
  display: flex;
  align-items: center;
}
.footer .top .rr .tel i {
  width: 38px;
  margin-right: 5px;
  margin-left: 10px;
}
.footer .top .rr .tel a {
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s;
}
.footer .top .rr {
  display: flex;
}
.footer .top .rr .tel:hover a {
  color: #e62129;
}
.footer .bot {
  display: flex;
  padding-bottom: 20px;
}
.footer .bot ul {
  display: flex;
}
.footer .bot span {
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  padding-right: 20px;
  /*font-family: "normal";*/
}
.footer .mid ul {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer .mid ul li a {
  font-size: 1.3rem;
  color: #fff;
  padding: 0 10px;
  position: relative;
  transition: all 0.3s;
  /*font-family: "normal";*/
}
.footer .mid ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
}
.footer .mid ul li:first-of-type a {
  padding-left: 0;
}
.footer .mid ul li:last-of-type a::after {
  width: 0;
}
.footer .mid ul li:hover a {
  color: #e62129;
}

/* 底部栏 End*/

/* 分页器 Strat */
.vertical-swiper > .swiper-pagination {
  left: 0 !important;
  width: 100px;
  top: 49% !important;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet {
  width: 70px;
  height: 100%;
  padding-bottom: 5px;
  background: none;
  position: relative;
  text-align: right;
  transition: all 0.5s;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet b {
  font-size: 1rem;
  color: #174592;
  opacity: 0;
  transition: all 0.5s;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 1px;
  background-color: #174592;
  transition: all 0.5s ease-in-out;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet:hover b {
  opacity: 1;
}

.vertical-swiper > .swiper-pagination .swiper-pagination-bullet-active::before {
  width: 80%;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet-active b {
  opacity: 1;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet:first-of-type {
  display: none;
}
.vertical-swiper > .swiper-pagination .swiper-pagination-bullet:last-of-type {
  display: none;
}
/* 分页器 End*/

/* 内页 Strat */
.ny_banner {
  height: 45%;
  z-index: 2;
}
.ny_banner .tit h2 {
  position: absolute;
  left: 50%;
  top: 46%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  display: block;
  font-size: 4.2rem;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 4px;
  z-index: 3;
}
.ny_nav {
  margin: -28px auto 0;
  position: relative;
  z-index: 3;
}
.ny_nav ul {
  margin: auto;
  width: 40%;
  background: #003388;
  border-radius: 50px;
  padding: 22px;
  box-shadow: 0 2px 15px rgba(23, 69, 146, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.ny_nav ul li {
  width: 25%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  text-align: center;
}
.ny_nav ul li:first-of-type {
  border: none;
}
.ny_nav ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  text-align: center;
  line-height: 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}
.ny_nav ul li a img {
  width: 20px;
  margin: auto;
}
.ny_nav ul li.active a {
  color: rgba(255, 255, 255, 1);
}
.ny_nav ul li:hover a {
  color: rgba(255, 255, 255, 1);
}
.ny_title {
  text-align: center;
}
.ny_title h1 {
  font-size: 2.4rem;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
}
.ny_title h2 {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  color: #174592;
}
.ny_title p {
  width: 100%;
  margin: 0 auto;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-top: 20px;
  text-align: left;
  text-indent: 2em;
}

/* 内页 End*/

/* 公司简介 Strat */
.a_part1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 5% 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.a_part1 .content {
  width: 70%;
  margin: 0 auto;
  z-index: 1;
}
.a_part1 .itro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.a_part1 .data {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.a_part1 .data .icon {
  width: 54px;
  margin-bottom: 20px;
}
.a_part1 .data .tit p {
  font-size: 2.4rem;
  color: #000;
  font-weight: bold;
}

.a_part1 .itro .txt p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #666;
  text-indent: 2em;
  line-height: 1.8;
  text-align: justify;
  margin: 20px 0;
}

.a_part1 .data ul {
  width: 80%;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap-reverse;
}
.a_part1 .data ul li {
  /* background-color: #fff; */
  /* border: 1px solid #efefef; */
  padding: 2.5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.a_part1 .data ul li.sp {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a_part1 .data ul li .circle {
  display: flex;
  align-items: baseline;
}
.a_part1 .data ul li .counter {
  font-size: 6rem;
  color: #174592;
  font-family: "num";
}
.a_part1 .data ul li .unit {
  font-size: 1.6rem;
  color: #174592;
  display: flex;
  margin-left: 10px;
}
.a_part1 .data ul li .unit span {
  font-size: 1.3rem;
  color: #174592;
}
.a_part1 .data ul li .tit {
  font-size: 1.6rem;
}
.a_part1 .data ul li.sp .msgtit {
  font-size: 2.5rem;
  color: #000;
  font-weight: bold;
}

.a_part1 .bgc {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  opacity: 0.35;
}
/* 公司简介 End*/

/* 集团荣誉 Strat */
.a_part2 {
  width: 100%;
  position: relative;
}
.a_part2 .content {
  padding-top: 5%;
}
.a_part2 .content .ny_title {
  width: 70%;
  margin: 0 auto;
}
.a_part2 .award {
  width: 100%;
  position: relative;
  margin-top: 5%;
  padding-bottom: 3%;
  overflow: hidden;
}
.a_part2 .content .award .myswiper {
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

#certify .swiper-container {
  padding-bottom: 80px;
  padding-top: 10px;
  /* overflow: hidden; */
}

#certify .swiper-slide {
  width: 520px;
  background: #fff;
  box-shadow: 0 8px 30px #d2d2d2;
}

#certify .swiper-slide img {
  display: block;
  padding: 12px;
}

#certify .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 3px solid #fff;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #00aadc;
  background-color: #fff;
}

#certify .swiper-button-prev {
  left: -20px;
  width: 30px;
  height: 30px;
  background-color: #174592;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 1px #616167;
  padding: 32px;
  top: 40%;
}

#certify .swiper-button-prev:hover {
  background-position: 0 -46px;
  background-size: 100%;
}

#certify .swiper-button-next {
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: #174592;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 1px #616167;
  padding: 32px;
  top: 40%;
}

#certify .swiper-button-next:hover {
  background-position: 0 -139px;
  background-size: 100%;
}
#certify .swiper-button-next:after,
#certify .swiper-button-prev:after {
  font-size: 2rem !important;
  color: #fff;
}

.a_part2 .content .award .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.a_part2 .content .award_list {
  position: relative;
  background-color: #174592;
  padding: 1% 0 5%;
}
.a_part2 .content .award_list ul {
  width: 70%;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.a_part2 .content .award_list ul li {
  width: 33.3%;
  font-size: 1.2rem;
  color: #fff;
  padding: 10px 20px 10px 42px;
  position: relative;
}
.a_part2 .content .award_list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url("../images/a2_icon1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
}

/* 集团荣誉 End*/

/* 企业资质 Strat */
.a_part3 {
  width: 100%;
  position: relative;
}
.a_part3 .content {
  padding: 5% 0;
}
.a_part3 .ny_title {
  width: 70%;
  margin: 0 auto;
}

.a_part3 .record {
  width: 100%;
  margin: 0 auto;
  margin-top: 5%;
}
.a_part3 .record table {
  width: 100%;
  background: #eeeeee;
}
.a_part3 .record table td {
  width: 33.3%;
  font-size: 1.4rem;
  padding: 1.3% 3%;
  color: #333;
  background-color: #fff;
  text-align: center;
}
.a_part3 .record dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.a_part3 .record dl dd {
  font-size: 1.4rem;
  color: #333;
  position: relative;
  padding-left: 20px;
  width: 28%;
  margin: 10px 0;
  margin-right: 8%;
  display: flex;
  justify-content: space-between;
}
.a_part3 .record dl dd:nth-of-type(3n) {
  margin-right: 0;
}
.a_part3 .record dl dd span {
  font-size: 1.4rem;
  color: #333;
}
.a_part3 .record dl dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border: 2px solid #174592;
  border-radius: 50%;
}
.a_part3 .record dl dd::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid #174592;
  border-radius: 50%;
}
.a_part3 .award {
  width: 75%;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 5%;
  position: relative;
}
.a_part3 .award .swiper-container {
  width: 90%;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
}
.a_part3 .award .swiper-container .swiper-wrapper{
    align-items: center;
}
.a_part3 .award .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
  box-shadow: 0 8px 30px #d2d2d2;
  cursor: pointer;
}

.a_part3 .award .swiper-slide-active,
.a_part3 .award .swiper-slide-duplicate-active {
  transform: scale(1);
}
.a_part3 .award .swiper-button-next,
.a_part3 .award .swiper-button-prev {
  width: 30px;
  height: 30px;
  background-color: #174592;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 1px #616167;
  padding: 32px;
}
.a_part3 .award .swiper-button-next:after,
.a_part3 .award .swiper-button-prev:after {
  font-size: 2rem !important;
  color: #fff;
}
.abt_nav ul {
  width: 50%;
}
.abt_nav ul li {
  width: 20%;
}

/* 初始时弹窗隐藏 */
.a_part3 .content .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明黑色背景 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* 弹窗中的图片样式 */
.a_part3 .content .popup .scale {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a_part3 .content .popup .popup-img {
  width: auto;
  max-height: 90%;
  display: block;
  margin: auto;
  max-width: 90%;
}

.a_part3 .content .popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background-image: url("../images/close.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 32px;
  height: 32px;
}

/* 企业资质 End*/

/* 组织架构 Strat */
.a_part4 {
  position: relative;
  width: 100%;
}
.a_part4 .content {
  width: 80%;
  margin: 5% auto;
}
.a_part4 .content .layout {
  margin-top: 5%;
}
/* 组织架构 End*/

/* 主营施工 Strat */
.industry1 {
  width: 100%;
  margin: 0 auto;
  background-color: #f0f2f7;
  position: relative;
}
.industry .ny_nav ul {
  width: 30%;
}
.industry .ny_nav ul li {
  width: 33.3%;
}
.industry1 .content {
  width: 80%;
  margin: 0 auto;
  padding: 3% 0;
}
.industry1 .content .tit h2 {
  font-size: 3rem;
  color: #000;
  font-weight: bold;
  transition: all 0.3s;
  line-height: 1.5;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.industry1 .content .tit h3 {
  font-size: 2rem;
  color: #174592;
  font-weight: bold;
  text-transform: uppercase;
}
.industry1 .content .part {
  display: flex;
  align-items: center;
  margin-top: 5%;
  margin-bottom: 8%;
  position: relative;
}
.industry1 .content .part:last-of-type {
  margin-bottom: 5%;
}
.industry1 .content .part:nth-of-type(2n) {
  display: flex;
  flex-direction: row-reverse;
}
.industry1 .content .part .msg {
  width: 35%;
  margin-right: -5%;
  z-index: 99;
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2% 3%;
}
.industry1 .content .part:nth-of-type(2n) .msg {
  margin-right: 0;
  margin-left: -5%;
}
.industry1 .content .part .msg .itro p {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 32px;
}
.industry1 .content .part .imgbox {
  width: 70%;
  position: relative;
  z-index: 1;
}
.industry1 .content .part .msg .more1 {
  display: flex;
  justify-content: flex-end;
}
.industry1 .content .part .msg .more1 span {
  font-size: 1.3rem;
  color: #174592;
  display: flex;
  align-items: center;
}
.industry1 .content .part .msg .more1 i {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.industry1 .content .part .num {
  position: absolute;
  left: -5%;
  top: -5%;
}
.industry1 .content .part .num span {
  font-size: 38rem;
  font-family: "num";
  color: #e6e6e6;
  line-height: 1;
}
.industry1 .content .part:nth-of-type(2n) .num {
  right: -5%;
  left: auto;
}
.industry1 .content .part .msg a:hover .tit h2 {
  color: #e62129;
}
.industry1 .content .part .msg a:hover .more1 span i {
  margin-left: 18px;
}

.industry .point {
  position: fixed;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  border-radius: 80px;
  padding: 30px 0;
  transition: all 0.5s;
}
.industry .point.top {
  top: 100%;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.industry .point ul li {
  position: relative;
  margin: 25px 0;
  /* padding-right: 50px; */
}
/* .industry .point ul li a::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid #174592;
  transition: all .3s;
  -webkit-transition: all .3s;
  opacity: 1;
}
.industry .point ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #174592;
  transition: all .3s;
  -webkit-transition: all .3s;
  opacity: 1;
} */
.industry .point ul li a {
  display: block;
  font-size: 1.2rem;
  color: #7b92bb;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 5px;
  padding-left: 15px;
}
.industry .point ul li a.run {
  color: #174592;
  font-size: 1.4rem;
}
/* .industry .point ul li a.run::after{
  opacity: 0;
}
.industry .point ul li a.run::before{
  opacity: 0;
} */
.industry .point ul li .back {
  font-size: 1.8rem;
  color: #7b92bb;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  display: flex;
  align-items: center;
  /* flex-direction: column; */
}
.industry .point ul li .back strong {
  color: #7b92bb;
  font-size: 1rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-right: 10px;
}
.industry .point ul li:hover .back {
  color: #174592;
}
.industry .point ul li:hover .back strong {
  color: #174592;
}
.industry .point ul li:hover a {
  color: #174592;
}
/* 主营施工 End*/

/* 设计咨询 Strat */
.industry2 {
  width: 100%;
  margin: 0 auto;
  background-color: #f6f7f9;
  position: relative;
}
.industry2 .ny_nav ul {
  width: 30%;
}
.industry2 .ny_nav ul li {
  width: 33.3%;
}
.industry2 .content {
  width: 100%;
  overflow: hidden;
}
.industry2 .content .tit h2 {
  font-size: 3rem;
  color: #000;
  font-weight: bold;
  transition: all 0.3s;
}
.industry2 .content .tit h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #174592;
  padding: 10px 0;
}
.industry2 .content .tit h2 span {
  font-size: 1.8rem;
  color: #174592;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}
.industry2 .content .part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 8% 10%;
  position: relative;
  z-index: 1;
}
.industry2 .content .part:nth-of-type(2n) {
  flex-direction: row-reverse;
  background-color: #fff;
}

.industry2 .content .part:nth-of-type(2n):before {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  background-image: url("../images/in1_part2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% 50%;
  opacity: 0.85;
  width: 80%;
  height: 90%;
  z-index: -1;
}
.industry2 .content .aa {
  width: 36%;
}
.industry2 .content .aa .txt {
  margin-top: 8%;
  margin-bottom: 18%;
}
.industry2 .content .aa .txt p {
  font-size: 1.4rem;
  color: #8b8c8d;
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 10px 0;
  text-align: justify;
}

.industry2 .content .part .aa:hover .tit h2 {
  color: #e62129;
}
.industry2 .content .part .aa:hover .more::before {
  height: 100%;
}
.industry2 .content .part .aa:hover .more span {
  color: #fff;
}
.industry2 .content .bb {
  width: 52%;
  overflow: hidden;
}

/* 设计咨询 End*/

/* 设计咨询详情页 Strat */
.industry2_d {
  width: 100%;
  position: relative;
}
.industry2_d .content {
  position: relative;
}
.industry2_d .content .cmpy_itro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 0;
  position: relative;
  z-index: 1;
}
.industry2 .content .part {
  background-color: #f6f7f9;
}

.industry2 .content .part:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.industry2 .content .part:nth-of-type(2n) .aa {
  padding-left: 0;
}
.industry2 .content .part::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/in2_dbgc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.industry2 .content .part:nth-of-type(2n):before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  width: 100%;
  height: 100%;
  background-image: url("../images/in2_dbgc2.jpg") !important;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.industry3_d .content .cmpy_itro::before {
  background-image: url("../images/in3_dbgc.jpg");
}
.industry2_d .content .cmpy_itro .aa {
  padding-left: 10%;
  width: 40%;
}
.industry2_d .content .cmpy_itro .aa .tit h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #174592;
  padding: 10px 0;
}
.industry2_d .content .cmpy_itro .aa .tit p {
  font-size: 3.2rem;
  font-weight: 700;
  color: #000;
  margin-top: 10px;
  margin-bottom: 40px;
}
.industry2_d .content .cmpy_itro .aa .txt p {
  font-size: 1.4rem;
  color: #8b8c8d;
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 10px 0;
}
.industry2_d .content .cmpy_itro .bb {
  width: 50%;
}
.industry2_d .ny_nav {
  position: relative;
  overflow: hidden;
}
.industry2_d .ny_nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 100%;
  height: 100%;
  background-color: #f6f7f9;
  z-index: -1;
}
.industry2_d1 .ny_nav::before {
  background-color: #fff;
}
.industry2_d1 .content .tit {
  position: relative;
  margin: 0 auto;
  border-bottom: 1px solid #b48b54;
  width: 80%;
}
.industry2_d1 .content .tit::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -11.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #b48b54;
  border-radius: 50%;
}
.industry2_d1 .content .tit::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -11.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #b48b54;
  border-radius: 50%;
}
.industry2_d1 .content .tit ul {
  display: flex;
}
.industry2_d1 .content .tit ul li {
  margin: 0 35px 0 15px;
}
.industry2_d1 .content .tit ul li a {
  display: block;
  font-size: 1.6rem;
  color: #666;
  padding: 8px 0px;
  position: relative;
}
.industry2_d1 .content .tit ul li a {
  font-size: 1.6rem;
  color: #666;
}
.industry2_d1 .content .tit ul li.active a {
  color: #174592;
}
.industry2_d1 .content .tit ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  transition: all 0.3s ease-in-out;
  height: 4px;
  background-color: #174592;
}
.industry2_d1 .content .tit ul li.active a::after {
  left: 0;
  right: 0;
}
.industry2_d1 .content .tit ul li:hover a {
  color: #174592;
}
.industry2_d1 .content .tit ul li:hover a::after {
  left: 0;
  right: 0;
}
.industry2_d1 .content .xq_swiper {
  margin-top: 6%;
}
.xq_swiper {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0% auto;
  position: relative;
  justify-content: space-between;
  margin-bottom: 0;
}

.xq_swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xq_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.xq_swiper .swiper {
  width: 100%;
  height: 55rem;
  margin-left: 0;
  margin-right: 0;
}

.xq_swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

.xq_swiper .mySwiper2 {
  width: 75%;
}

.xq_swiper .mySwiper {
  /* height: 100%; */
  box-sizing: border-box;
  width: 20%;
}

.xq_swiper .mySwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.4;
}

.xq_swiper .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.xq_swiper .swiper-button-next,
.xq_swiper .swiper-button-prev {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #174592;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 54px;
}
.xq_swiper .swiper-button-next {
  top: auto;
  bottom: -4%;
  right: 8%;
}
.xq_swiper .swiper-button-prev {
  top: -1%;
  right: 8%;
  left: auto;
}
.xq_swiper .swiper-button-prev:after,
.xq_swiper .swiper-button-next:after {
  font-size: 1.6rem;
  color: #fff;
}

.industry2_d1 .content {
  position: relative;
  margin: 5% auto 5%;
}

.industry2_d1 .content .back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3%;
  position: relative;
}
.industry2_d1 .content .back strong {
  font-size: 1.6rem;
  color: #174592;
  padding: 5px 0;
  letter-spacing: 1px;
  border-bottom: 1px solid #174592;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.industry2_d1 .content .back:hover strong {
  letter-spacing: 5px;
  padding: 5px;
}
/* 设计咨询详情页 End*/

/* 产业布局 Strat */
.industry4 {
  width: 100%;
  position: relative;
}
.industry4 .content {
  width: 70%;
  margin: 5% auto;
}
/* .industry4 .content .ny_title p {
  width: 75%;
  margin: 20px auto 3%;
  text-align: center;
} */
.industry4 .content .flex {
  width: 100%;
  position: relative;
  padding-top: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.industry4 .content .aa {
  width: 30%;
}
.industry4 .content .bb {
  width: 70%;
  position: relative;
}
.industry4 .content .aa .data ul {
  display: flex;
}
.industry4 .content .aa .data ul li {
  margin-right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industry4 .content .aa .data ul .circle {
  display: flex;
  align-items: baseline;
}
.industry4 .content .aa .data ul .circle .counter {
  font-size: 6.4rem;
  color: #174592;
  font-family: "num";
}
.industry4 .content .aa .data ul .circle .unit {
  font-size: 2rem;
  color: #174592;
  display: flex;
  font-weight: bold;
  margin-left: 10px;
}
.industry4 .content .aa .data ul .circle .unit span {
  font-size: 1.6rem;
  color: #174592;
  font-weight: bold;
}
.industry4 .content .aa .data ul .tit {
  font-size: 1.4rem;
  color: #666;
}
.industry4 .content .aa .market {
  margin-top: 15%;
}
.industry4 .content .aa .market .tit {
  margin-bottom: 30px;
}
.industry4 .content .aa .market .tit h2 {
  font-size: 2.4rem;
  color: #000;
  line-height: 1;
}
.industry4 .content .aa .market p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
}
.industry4 .content .bb .img img:first-of-type {
  width: 100%;
}
.industry4 .content .bb .img img:last-of-type {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
}
.industry4 .content .bb ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.industry4 .content .bb ul li {
  position: absolute;
  z-index: 6;
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.industry4 .content .bb ul li i {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url("../images/add.png");
  background-size: 100% 100%;
  transform: scale(0.8);
}
.industry4 .content .bb ul li span {
  position: absolute;
  white-space: nowrap;
  font-size: 1rem;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
  color: #0087ff;
}
.industry4 .content .bb ol {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.industry4 .content .bb ol li {
  position: absolute;
  top: 0;
  right: 0;
  background-size: cover;
  background-position: right top;
}
.industry4 .content .bb ul li:nth-of-type(1) {
  top: 66%;
  right: 13%;
}
.industry4 .content .bb ul li:first-of-type {
  width: 1.75rem;
  height: 1.75rem;
}
.industry4 .content .bb ul li:first-of-type i {
  background: none;
  background-color: #0087ff;
  border-radius: 50%;
}
.industry4 .content .bb ul li:first-of-type i::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #0087ff;
  animation: big 3s linear infinite;
}
.industry4 .content .bb ul li:first-of-type i::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #0087ff;
  animation: big 3s 1.5s linear infinite;
}
@keyframes big {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  75% {
    opacity: 0.4;
    transform: scale(5);
  }
  100% {
    opacity: 0;
    transform: scale(6);
  }
}
.industry4 .content .bb ul li.li7 span {
  top: 10%;
  left: 180%;
}
.industry4 .content .bb ul li.li1 {
  top: 72.4%;
  left: 67%;
}
.industry4 .content .bb ul li.li1 span {
  left: -70%;
  top: 10%;
}
.industry4 .content .bb ol li.dot1 {
  top: 66%;
  right: 15.3%;
  width: 17.5%;
  height: 7.8%;
  background-image: url("../images/line1.png");
  animation: line1 3.5s infinite;
}
@keyframes line1 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 18%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li2 {
  top: 66%;
  left: 69%;
}
.industry4 .content .bb ul li.li2 span {
  left: -70%;
  top: 10%;
}
.industry4 .content .bb ol li.dot2 {
  top: 65.8%;
  right: 16%;
  width: 15%;
  height: 1.7%;
  background-image: url("../images/line2.png");
  animation: line2 3.5s infinite;
}
@keyframes line2 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 15%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li4 {
  left: 72.5%;
  top: 85.5%;
}
.industry4 .content .bb ul li.li4 span {
  top: 15%;
  left: -60%;
}
.industry4 .content .bb ol li.dot4 {
  top: 66%;
  right: 15.2%;
  width: 12%;
  height: 20%;
  background-image: url(../images/line4.png);
  animation: line4 4s infinite;
}
@keyframes line4 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 12%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li10 {
  top: 55.5%;
  left: 79%;
}
.industry4 .content .bb ul li.li10 span {
  top: -25%;
  left: -60%;
}
.industry4 .content .bb ol li.dot10 {
  top: 55%;
  right: 15.2%;
  width: 5.8%;
  height: 12%;
  background-image: url(../images/line10.png);
  animation: line10 3s infinite;
}
@keyframes line10 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 5.8%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li11 {
  top: 60.2%;
  left: 76%;
}
.industry4 .content .bb ul li.li11 span {
  top: 20%;
  left: -60%;
}
.industry4 .content .bb ol li.dot11 {
  top: 61%;
  right: 15.8%;
  width: 8%;
  height: 5%;
  background-image: url(../images/line11.png);
  animation: line11 2.5s infinite;
}
@keyframes line11 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 8%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li14 {
  top: 64.5%;
  left: 51%;
}
.industry4 .content .bb ol li.dot14 {
  top: 65.5%;
  right: 15%;
  width: 34%;
  height: 4%;
  background-image: url(../images/line14.png);
  animation: line14 5s infinite;
}
@keyframes line14 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 34%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li17 {
  top: 83%;
  left: 47%;
}
.industry4 .content .bb ol li.dot17 {
  top: 66%;
  right: 15%;
  width: 38%;
  height: 19%;
  background-image: url(../images/line17.png);
  animation: line17 3s infinite;
}
@keyframes line17 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 38%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li19 {
  top: 49%;
  left: 60.5%;
}
.industry4 .content .bb li.li19 span {
  top: 10%;
  left: -70%;
}
.industry4 .content .bb ol li.dot19 {
  top: 50%;
  right: 15.2%;
  width: 24%;
  height: 16.5%;
  background-image: url(../images/line19.png);
  animation: line19 3s infinite;
}
@keyframes line19 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 24%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li12 {
  top: 61%;
  right: 12.5%;
}
.industry4 .content .bb ul li.li12 span {
  top: 10%;
  left: 160%;
}
.industry4 .content .bb ol li.dot12 {
  top: 62.5%;
  right: 14.9%;
  width: 0.5%;
  height: 3%;
  background-image: url(../images/line12.png);
  animation: line12 2s infinite;
}
@keyframes line12 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 0.5%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li9 {
  top: 48%;
  right: 21.5%;
}
.industry4 .content .bb ul li.li9 span {
  top: 4%;
  left: -70%;
}
.industry4 .content .bb ol li.dot9 {
  top: 49%;
  right: 15%;
  width: 9%;
  height: 16%;
  background-image: url(../images/line9.png);
  animation: line9 3s infinite;
}
@keyframes line9 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 9%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li20 {
  top: 32.9%;
  right: 14.9%;
}

.industry4 .content .bb ol li.dot20 {
  top: 33%;
  right: 14.8%;
  width: 3.1%;
  height: 34%;
  background-image: url(../images/line20.png);
  animation: line20 4s infinite;
}
@keyframes line20 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 3.1%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li6 {
  top: 39.5%;
  right: 22%;
}
.industry4 .content .bb ul li.li6 span {
  top: 4%;
  left: -70%;
}
.industry4 .content .bb ol li.dot6 {
  top: 40%;
  right: 15.2%;
  width: 9%;
  height: 26%;
  background-image: url(../images/line6.png);
  animation: line6 3s infinite;
}
@keyframes line6 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 9%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li13 {
  top: 70%;
  right: 21%;
}
.industry4 .content .bb ul li.li13 span {
  top: 45%;
  left: -70%;
}
.industry4 .content .bb ol li.dot13 {
  top: 65.5%;
  right: 15%;
  width: 9%;
  height: 6%;
  background-image: url(../images/line13.png);
  animation: line13 3s infinite;
}
@keyframes line13 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 9%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li8 {
  top: 77%;
  right: 18%;
}
.industry4 .content .bb ul li.li8 span {
  top: 5%;
  left: -60%;
}
.industry4 .content .bb ol li.dot8 {
  top: 65%;
  right: 15%;
  width: 5.5%;
  height: 12%;
  background-image: url(../images/line8.png);
  animation: line8 3s infinite;
}
@keyframes line8 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 5.5%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li16 {
  top: 77%;
  right: 40.5%;
}
.industry4 .content .bb ul li.li16 span {
  top: 5%;
  left: -60%;
}
.industry4 .content .bb ol li.dot16 {
  top: 66.5%;
  right: 15%;
  width: 28%;
  height: 12%;
  background-image: url(../images/line16.png);
  animation: line16 3s infinite;
}
@keyframes line16 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 28%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li3 {
  top: 57.2%;
  right: 28%;
}
.industry4 .content .bb ul li.li3 span {
  top: 0;
  left: -60%;
}
.industry4 .content .bb ol li.dot3 {
  top: 58%;
  right: 15%;
  width: 16%;
  height: 9%;
  background-image: url(../images/line3.png);
  animation: line3 3s infinite;
}
@keyframes line3 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 16%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li5 {
  top: 96.2%;
  right: 35.5%;
}
.industry4 .content .bb ul li.li5 span {
  top: 15%;
  left: -60%;
}
.industry4 .content .bb ol li.dot5 {
  top: 65%;
  right: 15%;
  width: 23%;
  height: 33%;
  background-image: url(../images/line5.png);
  animation: line5 4s infinite;
}
@keyframes line5 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 23%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li15 {
  top: 63%;
  right: 37.2%;
}
.industry4 .content .bb ul li.li15 span {
  top: 15%;
  left: -60%;
}
.industry4 .content .bb ol li.dot15 {
  top: 63%;
  right: 14.5%;
  width: 25%;
  height: 3.5%;
  background-image: url(../images/line15.png);
  animation: line15 4s infinite;
}
@keyframes line15 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 25%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.industry4 .content .bb ul li.li18 {
  top: 52.3%;
  right: 45.1%;
}
.industry4 .content .bb ul li.li18 span {
  top: 15%;
  left: -60%;
}
.industry4 .content .bb ol li.dot18 {
  top: 53%;
  right: 14.5%;
  width: 33%;
  height: 13.7%;
  background-image: url(../images/line18.png);
  animation: line18 4s infinite;
}
@keyframes line18 {
  0% {
    width: 0;
    opacity: 0;
  }
  80% {
    width: 33%;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* 产业布局 End*/

/* 工程业绩 Strat */
.projects .ny_nav ul {
  width: 25%;
}
.projects .ny_nav ul li {
  width: 50%;
}

.projects {
  width: 100%;
  position: relative;
}
.ry_projects {
  position: relative;
}
.projects .content {
  width: 80%;
  margin: 0 auto;
  padding: 5% 0;
}
.ry_projects .content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ry_projects .content .ry_swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.ry_projects .content .ry_swiper .swiper-wrapper {
  display: flex;
}
.ry_projects .content .ry_swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 58rem;
}
.ry_projects .content .ry_swiper .ryswiper-button-prev,
.ry_projects .content .ry_swiper .ryswiper-button-next {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 48%;
  z-index: 99;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  cursor: pointer;
}
.ry_projects .content .ry_swiper .ryswiper-button-prev {
  background-image: url("../images/lmore_white.png");
  left: 10%;
}
.ry_projects .content .ry_swiper .ryswiper-button-next {
  background-image: url("../images/more_white.png");
  right: calc(20% - 32px);
}
.ry_projects .content .ry_swiper .ryswiper-button-prev:hover {
  background-image: url("../images/lmore_blue.png");
}
.ry_projects .content .ry_swiper .ryswiper-button-next:hover {
  background-image: url("../images/more_blue.png");
}

.ry_projects .content .ry_swiper .swiper-slide img {
  display: block;
  width: 65%;
  height: 100%;
  object-fit: cover;
}
.ry_projects .content .ry_swiper .swiper-slide .txt {
  width: 35%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  padding: 3% 5%;
}
.ry_projects .content .ry_swiper .swiper-slide .txt p {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.75;
}
.ry_projects .content .ry_swiper .swiper-slide .num {
  position: absolute;
  left: 62%;
  top: -5%;
  mix-blend-mode: multiply;
}
.ry_projects .content .ry_swiper .swiper-slide .num span {
  font-family: "num";
  font-size: 24rem;
  color: #e7e2d4;
  opacity: 0.35;
}
.ry_projects .content .ry_swiper .swiper-slide .txt h2 {
  font-size: 2rem;
  color: #174592;
  font-family: "title";
  margin-bottom: 32px;
}
.ry_projects .content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../images/building_vector.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
  opacity: 0.15;
}
.projects .content .public_lists ul li .txt h2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
}
.projects .content .public_lists ul li .txt h1{
  text-align: center;
}
.projects .content .public_lists ul li .txt h1 span{
  font-size: 1.2rem;
  color: #174592;
  margin-left: 10px;
}
.projects .content .tit {
  position: relative;
  /* margin-top: 3%; */
  border-bottom: 1px solid #b48b54;
}
.projects .content .tit::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -11.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #b48b54;
  border-radius: 50%;
}
.projects .content .tit::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -11.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #b48b54;
  border-radius: 50%;
}
.projects .content .tit ul {
  display: flex;
}
.projects .content .tit ul li {
  margin: 0 35px 0 15px;
}
.projects .content .tit ul li a {
  display: block;
  font-size: 1.6rem;
  color: #666;
  padding: 8px 0px;
  position: relative;
}
.projects .content .tit ul li a {
  font-size: 1.6rem;
  color: #666;
}
.projects .content .tit ul li.active a {
  color: #174592;
}
.projects .content .tit ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  transition: all 0.3s ease-in-out;
  height: 4px;
  background-color: #174592;
}
.projects .content .tit ul li.active a::after {
  left: 0;
  right: 0;
}
.projects .content .tit ul li:hover a {
  color: #174592;
}
.projects .content .tit ul li:hover a::after {
  left: 0;
  right: 0;
}
.projects .public_lists {
  padding-top: 6%;
}
.public_lists ul {
  display: flex;
  flex-wrap: wrap;
}
.public_lists ul li {
  width: 31.25%;
  position: relative;
  margin-bottom: 5rem;
}
.public_lists ul li:not(:nth-child(3n)) {
  margin-right: 3.125%;
}
.public_lists ul li .pic {
  overflow: hidden;
  border-radius: 10px;
}
.public_lists ul li .repeat_img {
  padding-bottom: 66.667%;
  transition: 0.3s ease-out;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public_lists ul li .repeat_img img {
  position: absolute;
  left: -1000%;
  width: 100%;
  top: -1000%;
  visibility: hidden;
  object-fit: cover;
}
.public_lists ul li:hover .repeat_img {
  transform: scale(1.1);
}
.public_lists ul li .txt {
  padding-top: 20px;
}
.public_lists ul li .txt h1 {
  font-size: 1.2rem;
  color: #e62129;
}
.public_lists ul li .txt h2 {
  font-size: 1.4rem;
  color: #333;
  margin-top: 5px;
}
.pro_pages {
  margin-top: 3%;
}
.pro_pages ul {
  display: flex;
  justify-content: center;
}
.pro_pages ul li {
  margin: 0 15px;
}
.pro_pages ul li{
  display: block;
  width: 58px;
  height: 58px;
  line-height: 58px;
  background-color: #efefef;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pro_pages ul li  span,.pro_pages ul li a {
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pro_pages ul li.active  {
  background-color: #174592;
}
.pro_pages ul li.active  span {
  color: #fff;
}

.pro_pages ul li:hover  {
  background-color: #174592;
}
.pro_pages ul li:hover  span,.pro_pages ul li:hover a {
  color: #fff;
}
/* 工程业绩 End*/

/* 科技创新 Strat */
.technology {
  width: 100%;
  position: relative;
}
.technology .content {
  width: 100%;
  position: relative;
}
.technology .content .itro {
  width: 100%;
  position: relative;
  padding: 5% 10%;
  z-index: 1;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../images/tcnlg_ysbgc1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.technology .content .itro .aa {
  width: 36%;
}
.technology .content .itro .bb {
  width: 52%;
  overflow: hidden;
}

.technology .content .itro .tit h2 {
  font-size: 3rem;
  color: #000;
  font-weight: bold;
  transition: all 0.3s;
}
.technology .content .itro .tit h2 span {
  display: block;
  font-size: 1.8rem;
  color: #174592;
  font-weight: bold;
  text-transform: uppercase;
}
.technology .content .itro .aa .txt {
  margin-top: 8%;
}
.technology .content .itro .aa .txt p {
  font-size: 1.4rem;
  color: #8b8c8d;
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 10px 0;
  text-align: justify;
}
.technology .content .itro .more2 span {
  font-size: 1.6rem;
  color: #666;
  padding: 20px 50px 20px 30px;
  border: 1px solid #8b8c8d;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.technology .content .itro .more2 span::before {
  content: "";
  width: 0;
  height: 100%;
  background: #174592;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease-out 0.3s;
  z-index: -1;
}
.technology .content .itro .more2 span::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../images/in1_right.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.technology .content .itro .more2:hover span::before {
  width: 100%;
}
.technology .content .itro .more2:hover span::after {
  background-image: url(../images/in1_rightw.png);
}
.technology .content .itro .more2:hover span {
  color: #fff;
}
.technology .content .public_lists {
  padding: 5% 10%;
  background-color: #f9f9f9;
}
.technology .content .public_lists ul li {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.technology .content .public_lists ul li h2 {
  text-align: center;
}
.technology .content .public_lists ul li .txt {
  padding-top: 10px;
}
/* 科技创新 End*/

/* 文化理念 Strat */
.culture {
  width: 100%;
  position: relative;
}
.culture .ny_nav {
  position: relative;
  overflow: hidden;
}

.culture .content {
  width: 100%;
  position: relative;
  padding: 5% 0 0;
}
.culture .content .whln .items {
  display: flex;
  justify-content: center;
  padding: 5% 10%;
}
.culture .content .whln .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.culture .content .whln .items .icon img {
  width: 56px;
  height: 56px;
}
.culture .content .whln .items .item .txt h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #174592;
  margin-top: 20px;
  text-align: center;
}
.culture .content .whln .items .item .txt h4 p{
  font-size: 1.4rem;
  color: #333;
  margin-top: 10px;
}
.culture .content .whhd {
  width: 100%;
  position: relative;
  background-color: #efefef;
  padding: 5% 10% 6%;
}
.culture .xq_swiper {
  width: 100%;
  margin-top: 5%;
}
.culture .xq_swiper .swiper {
  height: 52rem;
}
.culture .xq_swiper .mySwiper2 .swiper-slide{
    flex-direction: column;
}
.culture .xq_swiper .mySwiper2 .swiper-slide h2{
  font-size: 2rem;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 20px;
    bottom: 10px;
}

/* 文化理念 End*/

/* 市政报 Strat */
.culture1 {
  width: 100%;
  position: relative;
}
.culture1 .content {
  width: 100%;
  padding: 5% 15%;
}
.culture1 .content .tit {
  position: relative;
  border-bottom: 1px solid #b48b54;
}
.culture1 .content .tit::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -11.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #b48b54;
  border-radius: 50%;
}
.culture1 .content .tit::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -11.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #b48b54;
  border-radius: 50%;
}
.culture1 .content .tit ul {
  display: flex;
}
.culture1 .content .tit ul li {
  margin: 0 35px 0 15px;
}
.culture1 .content .tit ul li a {
  display: block;
  font-size: 1.6rem;
  color: #666;
  padding: 8px 0px;
  position: relative;
}
.culture1 .content .tit ul li.active a {
  color: #174592;
}
.culture1 .content .tit ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  transition: all 0.3s ease-in-out;
  height: 4px;
  background-color: #174592;
}
.culture1 .content .tit ul li.active a::after {
  left: 0;
  right: 0;
}
.culture1 .content .tit ul li:hover a {
  color: #174592;
}
.culture1 .content .tit ul li:hover a::after {
  left: 0;
  right: 0;
}
.culture1 .content .onePhase > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 8%;
  background-color: #fff;
  box-shadow: 0 0 5px 2px #efefef;
  margin-top: 5%;
  cursor: pointer;
}

.culture1 .content .onePhase .aa {
  width: 28%;
  border-right: 1px solid #efefef;
}
.culture1 .content .onePhase .bb {
  width: 60%;
}
.culture1 .content .onePhase .aa img {
  width: 60%;
}
.culture1 .content .onePhase .bb h2 {
  font-size: 2rem;
  color: #000;
}
.culture1 .content .onePhase .bb .more {
  margin-top: 15%;
}

.culture1 .content .onePhase:hover .bb span {
  color: #fff;
}
.culture1 .content .onePhase:hover .bb .more::before {
  height: 100%;
}

.culture1 .content .lists ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5%;
}
.culture1 .content .lists ul li {
  width: 18%;
  padding: 10px 10px 15px;
  margin-right: 2.5%;
  background-color: #fff;
  box-shadow: 0 0 5px 1px #efefef;
}
.culture1 .content .lists ul li:nth-of-type(5n) {
  margin-right: 0;
}
.culture1 .content .lists ul li h2 {
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  margin-top: 10px;
}
/* 市政报 End*/

/* 宣传片 Strat */
.culture2 {
  width: 100%;
  position: relative;
}
.culture2 .content {
  width: 80%;
  margin: 0 auto;
  padding: 5% 0;
}
.culture2 .content .v_box {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.culture2 .content .v_box .item {
  position: relative;
  width: 48%;
}
.culture2 .content .txt h2 {
  font-size: 1.8rem;
  color: #000;
  text-align: center;
  line-height: 1.75;
  margin-top: 10px;
}
.culture2 .content .video {
  width: 100%;
  height: 100%;
  z-index: 9;
}
.culture2 .content .video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.culture2 .content .v_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(104, 121, 166, 0.3);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  z-index: 9999;
}
.culture2 .content .v_btn img {
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
/* 宣传片 End*/

/* 公司动态 Strat */
.news {
  width: 100%;
  background-color: #f7f8fa;
  position: relative;
}
.news .ny_nav ul {
  width: 30%;
}
.news .ny_nav ul li {
  width: 33.3%;
}
.news .content {
  width: 100%;
  position: relative;
}
.news .content .main {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1% 10% 5%;
}
.news .content .main .swiper-slide a {
  display: flex;
  justify-content: space-between;
}
.news .content .main .swiper-slide .aa {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.news .content .main .swiper-slide .aa img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.news .content .main .swiper-slide .bb {
  width: 50%;
  padding: 3% 5%;
  background-color: #fff;
  position: relative;
}

.news .content .main .swiper-slide .bb h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 7rem;
  line-height: 3.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .content .main .swiper-slide .bb .txt {
  font-size: 1.4rem;
  color: #666;
  margin-top: 5px;
  height: 4.8rem;
  line-height: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10rem;
}
.news .content .main .swiper-slide .bb .more2 {
  padding-top: 6%;
  border-top: 1px solid #ddd;
  position: relative;
}
.news .content .main .swiper-slide .bb .more2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #174592;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .content .main .swiper-slide .bb .more2 span {
  font-size: 1.25rem;
  color: #333;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .content .main .swiper-slide .bb .more2 span::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("../images/b_right.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .content .main .swiper-slide:hover .bb h2 {
  color: #174592;
}
.news .content .main .swiper-slide:hover .bb .more2 span {
  color: #174592;
}
.news .content .main .swiper-slide:hover .bb .more2 span::before {
  right: -45px;
}
.news .content .main .swiper-slide:hover .aa img {
  transform: scale(1.05);
}
.news .content .main .swiper-slide:hover .bb .more2::before {
  width: 100%;
}
.news .content .main .swiper .swiper-pagination {
  left: auto;
  right: 5%;
  top: auto;
  bottom: 10%;
  width: auto;
}
.news .content .main .swiper .swiper-pagination span {
  width: 15px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 0 4px;
}
.news
  .content
  .main
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  width: 24px;
  background-image: linear-gradient(-90deg, #01c7de 0%, #015de7 100%),
    linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
}
.news .content .lists {
  padding: 0 10% 0;
  background-color: #fff;
}
.news .content .lists ul {
  padding-top: 6%;
}
.news .content .lists ul li a .txt {
  position: relative;
  z-index: 1;
}
.news .content .lists ul li a .txt::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #efefef;
  padding: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: -1;
}
.news .content .lists ul li a .txt h1 {
  color: #174592;
  position: relative;
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-end;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.news .content .lists ul li a .txt h1 i {
  display: block;
  width: 28px;
  height: 28px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  opacity: 0;
}
.news .content .lists ul li:hover a .txt h1 i {
  transform: rotate(45deg);
  opacity: 1;
}
/* .news .content .lists ul li a .txt h1::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  background-image: url("../image/right1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
} */
.news .content .lists ul li a .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 5.8rem;
  line-height: 2.7rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  height: 5.8rem;
  line-height: 2.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .content .lists ul li a .pic {
  border-radius: 0;
}
.news .content .lists ul li {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.news .content .lists ul li a .txt {
  padding: 30px 20px;
}
.news .content .lists ul li a .txt p {
  font-size: 1.4rem;
  color: #8b8c8d;
  letter-spacing: 1px;
  margin: 20px 0;
  height: 5rem;
  line-height: 2.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .content .lists ul li:hover a .txt h2 {
  color: #174592;
}
.news .content .lists ul li:hover a .txt::after {
  height: 100%;
}
.news .content .search {
  width: 100%;
  position: relative;
  padding: 2% 10% 0;
}
.news .content .search .search-input-container {
  display: flex;
  justify-content: flex-end;
}
.news .content .search form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  width: 36.875%;
  background-color: #fff;
  box-shadow: 0 0 3px 0 #ddd;
  border-radius: 5px;
  border: 1px solid transparent;
  padding-right: 30px;
}
.news .content .search input {
  padding: 25px 16px;
  font-size: 1.4rem;
  color: #333;
  width: 100%;
}
.news .content input,
.news .content button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
.news .content .search button {
  display: block;
  width: 22px;
  overflow: hidden;
}

.news .content .pro_pages {
  margin-top: 0;
  background-color: #fff;
  margin-bottom: 5%;
}
/* 公司动态 End*/

/* 公司动态详情页 Strat */
.news_d {
  width: 100%;
  position: relative;
}
.news_d .content {
  padding: 5% 15%;
}
.news_d .content .tit h2 {
  font-size: 2.2rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.75;
}
.news_d .content .tit h3 {
  font-size: 1.4rem;
  color: #777;
}
.news_d .content .tit {
  padding-bottom: 30px;
  border-bottom: 3px solid #ddd;
}
.news_d .content .con {
  margin-top: 30px;
}
.news_d .content .con p {
  font-size: 1.4rem;
  color: #8b8c8d;
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 20px 0;
  text-align: justify;
  text-indent: 2em;
}
.news_d .content .con p img {
  width: 50%;
  margin: 0 auto;
}
.news_d .content .other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 3px solid #ddd;
}
.news_d .content .other .aa {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.news_d .content .other .aa a {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_d .content .other .aa a:hover {
  color: #174592;
}
.news_d .content .other .bb span {
  font-size: 1.6rem;
  padding-bottom: 10px;
  color: #174592;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 3px solid #174592;
}
.news_d .content .other .bb:hover span {
  letter-spacing: 10px;
  text-indent: 0.5rem;
}

/* 公司动态详情页 End*/

/* 业界资讯 Strat */
.news2 .lists ul li a {
  display: flex;
  align-items: center;
}
.news2 .lists ul li a .date {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news2 .lists ul li a .date b {
  font-style: normal;
  font-size: 2.8rem;
  color: #174592;
}
.news2 .lists ul li a .date i {
  font-style: normal;
  font-size: 1.8rem;
  color: #174592;
}
.news2 .content .lists ul li a .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: auto;
  line-height: 1.75;
}
.news2 .content .lists ul li a .txt p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: auto;
  line-height: 1.75;
  margin: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news2 .content .lists ul li {
  box-shadow: none;
  position: relative;
}
.news2 .content .lists ul li a {
  padding: 20px 0;
  border-bottom: 3px solid #ddd;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news2 .content .lists ul li a .txt {
  padding: 0;
}
.news2 .content .lists ul li a .txt::after {
  background-color: none;
  width: 0;
}
.news2 .content .lists ul li a::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 35%;
  width: 36px;
  height: 36px;
  background-image: url("../images/toright2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news2 .content .lists ul li a:hover::before {
  opacity: 1;
  right: 3%;
}
.news2 .content .lists ul li a:hover .txt p {
  color: #555;
}
.news2 .content .lists ul li a::after {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 0%;
  background-color: rgba(23, 69, 146, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news2 .content .lists ul li a:hover::after {
  height: 100%;
}
.news2 .lists ul li a:hover .date {
  padding-left: 15px;
}
.news2 .content .lists {
  padding-bottom: 5%;
  padding-top: 3%;
}
/* 业界资讯 End*/

/* 业界资讯详情 Strat */
.news_d .content .fj {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.news_d .content .fj a span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px dashed #174592;
  color: #174592;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news2_d .content .con p:first-of-type {
  text-indent: 0;
}

/* 业界资讯详情 End*/

/* 联系方式 Strat */
.contact {
  width: 100%;
  position: relative;
}
.contact .ny_nav {
  position: relative;
  overflow: hidden;
}
.contact .ny_nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 80%;
  height: 100%;
  background-color: #f6f7f9;
  z-index: -1;
}
.contact .content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contact .content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 0;
  position: relative;
  z-index: 1;
}
.contact .content .info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background-image: url(../images/cnt_dbgc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.contact .content .info .aa {
  padding-left: 10%;
  width: 44%;
}
.contact .content .info .bb {
  width: 52%;
  position: relative;
}
.contact .content .info .tit h1 {
  font-size: 3rem;
  color: #000;
  font-weight: bold;
  transition: all 0.3s;
}
.contact .content .info .tit h2 {
  font-size: 2rem;
  color: #174592;
  font-weight: bold;
  transition: all 0.3s;
  text-transform: uppercase;
}
.contact .content .info .tit p {
  width: 80%;
  margin-top: 8%;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.75;
}
.contact .content .info .items {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.contact .content .info .items ul {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .content .info .items ul li {
  width: 45%;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.contact .content .info .items ul li h2 {
  font-size: 1.4rem;
  color: #000;
  line-height: 2;
}
.contact .content .info .items ul li p {
  font-size: 1.3rem;
  color: #777;
  margin-top: 10px;
}
.contact .content .info .bb {
  height: 100%;
  position: relative;
}
.contact .content .info .bb #mapDiv {
  height: 60vh;
}
.contact .content .leave_msg {
  padding: 5% 24%;
  background-color: #fff;
  position: relative;
  background-image: url("../images/con_ys.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.contact .content .leave_msg .ny_title p {
  margin-top: 10px;
  text-align: center;
}
.contact .content .leave_msg .ny_title {
  margin-bottom: 45px;
}
.contact .content .leave_msg form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5%;
  border: 1px solid #cab599;
  border-radius: 30px;
}
.contact .content .leave_msg input {
  display: block;
  width: 45%;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin-bottom: 16px;
  box-sizing: border-box;
  padding: 0 16px;
  line-height: 45px;
  border-bottom: 1px solid #ddd;
  font-size: 1.4rem;
  color: #333;
  font-family: "myfont";
}
.contact .content .leave_msg input.email {
  width: 100%;
}
.contact .content .leave_msg input::placeholder {
  color: #333; /* 更改颜色为红色 */
}
.contact .content .leave_msg textarea {
  resize: none;
  border: none;
  background: none;
  padding: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 100px;
  padding: 10px 16px;
  font-size: 1.4rem;
  border-bottom: 1px solid #ddd;
  color: #333;
  font-family: "myfont";
}
.contact .content .leave_msg textarea::placeholder {
  color: #333; /* 更改颜色为红色 */
}
.contact .content .leave_msg button {
  width: 140px;
  margin: 6% auto 0;
  color: #fff;
  background: #174592;
  float: none;
  font-size: 1.4rem;
  line-height: 2.8;
  letter-spacing: 1px;
  cursor: pointer;
}
.contact .content .friendly {
  width: 100%;
  position: relative;
  padding: 5% 10%;
  background-color: #fff;
}

.contact .content .friendly .links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5%;
}
.contact .content .friendly .links a {
  width: 22%;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ddd;
  padding: 5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact .content .friendly .links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #174592;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact .content .friendly .links a:not(:nth-child(4n)) {
  margin-right: 4%;
}
.contact .content .friendly .links a {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact .content .friendly .links a:hover {
  color: #174592;
}
.contact .content .friendly .links a:hover::before {
  width: 100%;
}

/* 联系方式 End*/

/* 人才招聘 Strat */
.contact2 {
  width: 100%;
  position: relative;
}
.contact2 .content {
  width: 100%;
  padding: 5% 10%;
  position: relative;
}


.contact2 .content .talent .tit ul {
  display: flex;
  justify-content: space-between;
  border-top: 3px solid #174592;
  border-bottom: 2px solid #ddd;
}
.contact2 .content .talent .tit ul li {
  font-size: 2rem;
  color: #000;
  padding: 20px 0;
  line-height: 45px;
  text-align: center;
}
.contact2 .content .talent .tit ul li.name {
  width: 40%;
  text-align: left;
}
.contact2 .content .talent .tit ul li.level {
  width: 15%;
}
.contact2 .content .talent .tit ul li.num {
  width: 15%;
}
.contact2 .content .talent .tit ul li.date {
  width: 15%;
}
.contact2 .content .talent .tit ul li.other {
  width: 15%;
}
.contact2 .content .talent .con .list ul {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  cursor: pointer;
}
.contact2 .content .talent .con .list ul li {
  font-size: 1.8rem;
  color: #666;
  text-align: center;
  line-height: 40px;
  height: 40px;
}
.contact2 .content .talent .con .list ul li.name {
  width: 40%;
  text-align: left;
}
.contact2 .content .talent .con .list li.level {
  width: 15%;
}
.contact2 .content .talent .con .list li.num {
  width: 15%;
}
.contact2 .content .talent .con .list li.date {
  width: 15%;
}
.contact2 .content .talent .con .list li.other {
  width: 15%;
}
.contact2 .content .talent .con .list ul li.other i {
  width: 20px;
  height: 20px;
  background: url(../images/down.png) no-repeat;
  background-size: cover;
  display: inline-block;
  margin: 0 auto;
}
.contact2 .content .talent .con .list .detail {
  padding: 5% 0;
  border-bottom: 1px solid #ddd;
  display: none;
}
.contact2 .content .talent .con .list .detail p {
  font-size: 1.4rem;
  color: #756969;
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 10px 0;
}
.contact2 .content .talent .con .list .detail p strong {
  font-size: 1.4rem;
  color: #666;
  font-weight: bold;
}
/* 人才招聘 End*/

/* 科技创新详情 Strat */
.technology_d {
  width: 100%;
  position: relative;
}
.technology_d .content {
  padding: 5% 10% 5%;
}
.technology_d .content .lists {
  padding-bottom: 0;
}
.technology_d .content .lists ul li a .txt h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-left: 80px;
  position: relative;
  z-index: 1;
}
.technology_d .content .lists ul li a .txt h2::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 30px;
  height: 30px;
  background-image: url("../images/zcwj.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.technology_d .content .lists ul li a::before {
  width: 24px;
  height: 24px;
}

.technology_d .content .category dl {
  display: flex;
  justify-content: center;
}
.technology_d .content .category dl dd a {
  font-size: 1.8rem;
  color: #fff;
  margin-right: 20px;
  height: 60px;
  line-height: 60px;
  display: block;
  background-color: #174592;
  padding: 0 50px;
  border-radius: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.technology_d .content .category dl dd.active a {
  background-color: #e62129;
}
.technology_d .content .category dl dd:hover a {
  background-color: #e62129;
}
.technology_d .content .items {
  padding-top: 5%;
}

.technology_d .content .items ul li h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 0;
  border-bottom: 2px solid #ddd;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding-left: 70px;
  position: relative;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.technology_d .content .items ul li:hover h2 {
  color: #174592;
}
.technology_d .content .items ul li h2::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 36px;
  height: 36px;
  background-image: url("../images/kjdt.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.technology_d .content .items ul li .sub {
  padding: 5% 0;
  border-bottom: 2px solid #ddd;
  display: none;
}
.technology_d .content .items ul li .sub p {
  font-size: 1.4rem;
  color: #666;
  padding-left: 35px;
  margin-bottom: 30px;
  text-indent: 2em;
}
/* 科技创新详情 End*/

/* 首页补充 Strat */
header .nav_menu .menu_box {
  position: relative;
  z-index: 1;
}
header .nav_menu .menu_box::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 5%;
  width: 90%;
  height: 40%;
  background-image: url(../images/favicon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}
.i_part2 .content .aa .more{
    margin-top: 64px;
}

/* 首页补充 End*/
