﻿@charset "utf-8";

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
}

.pc_container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}

@media (max-width:1800px) {

  .container {
    padding: 0 60px;
  }

}

@media (max-width:1680px) {

  .container {
    padding: 0 90px;
  }

  .pc_container {
    padding: 0 90px;
  }
}


@media (max-width:1580px) {

  .container {
    padding: 0 90px;
  }

  .pc_container {
    padding: 0 130px;
  }
}

@media (max-width:1366px) {

  .container {
    padding: 0 90px;
  }

  /* .pc_container {
    padding: 0 90px;
  } */
}

@media (max-width:1280px) {

  .container {
    padding: 0 80px;
  }

  /* .pc_container {
    padding: 0 80px;
  } */
}

@media (max-width:1024px) {
  .container {
    padding: 0 80px;
  }

}

@media (max-width:991px) {

  .container {
    padding: 0 30px;
  }

  .pc_container {
    padding: 0 30px;
  }
}

@media (max-width:767px) {

  .container {
    max-width: 100%;
    padding: 0 16px
  }

  .pc_container {
    max-width: 100%;
    padding: 0 16px
  }
}

/* 内页公共 */
.height100 {
  height: 100px;
  width: 100%;
}

.page_banner {
  position: relative;
  height: 480px;
  width: 100%;
}

.page_banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #000;
}

.page_banner .ban_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page_banner .ban_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_banner .page_ban_text {
  width: 100%;
  height: 100%;
}

.page_banner .page_ban_text {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  z-index: 9;
}

.page_banner .page_ban_text h2 {
  color: var(--white-color);
  font-weight: 700;
  line-height: 1.2;
}

.page_banner .page_ban_text h3 {
  padding-top: 10px;
  color: var(--white-color);
  font-weight: 290;
  line-height: 1.2;
}

.location {
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location a {
  margin-right: 10px;
  line-height: 20px;
}

.location a:first-child {
  width: 18px;
  height: 18px;
  background-image: url(../images/home_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  font-size: 0;
}

.location a:nth-child(n + 2) {
  padding-right: 18px;
  color: rgba(255, 255, 255, 0.80);
  background-image: url(../images/arrow_right.svg);
  font-size: 14px;
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: right;
  background-size: 8px 13px;
}

.location a:nth-child(n + 2):hover {
  color: rgba(255, 255, 255, 1);
}

.location a:last-child {
  margin-right: 0;
  padding-right: 0;
  background-image: none;
}

.page_menu {
  position: relative;

  background-color: var(--white-color);
  overflow: hidden;
  z-index: 99;
}

.page_menu.sticky {
  border-top: 1px solid #DDD;
}

.page_menu:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #DDD;
  z-index: -1;
}

.page_menu>.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_menu_list ul {
  margin-left: -24px;
  margin-right: -24px;
  display: flex;
  flex-wrap: wrap;

}

.page_menu_list ul li {
  padding: 0 24px;
}

.page_menu_list ul li a {
  position: relative;
  display: block;
  padding-top: 24px;
  padding-bottom: 25px;
  color: rgba(51, 51, 51, 0.80);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.page_menu_list ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-color);
  opacity: 0;
  transition: all 0.5s;

}

.page_menu_list ul li.active a,
.page_menu_list ul li a:hover {
  color: var(--blue-color);
}

.page_menu_list ul li.active a::before,
.page_menu_list ul li a:hover::before {
  width: 100%;
  opacity: 1;
}

.content {
  min-height: 30vh;
}

@media (max-width:1280px) {
  .page_menu_list ul {
    margin-left: -16px;
    margin-right: -16px;
  }

  .page_menu_list ul li {
    padding: 0 16px;
  }

}

@media (max-width:1100px) {
  .page_menu_list ul {
    margin-left: -10px;
    margin-right: -10px;
  }

  .page_menu_list ul li {
    padding: 0 10px;
  }

}

@media (max-width:991px) {
  .page_banner {
    height: 380px;
  }
}

@media (max-width:767px) {
  .page_banner .page_ban_text h3 {
    max-width: 300px;
    margin: 0 auto;
    font-size: 18px;
  }

  .page_menu_list ul li a {
    padding-top: 16px;
    padding-bottom: 15px;
  }

  .location a {
    margin-right: 6px;
  }

  .location a:nth-child(n + 2) {
    padding-right: 12px;
  }

  .page_menu_list ul {
    margin-left: -15px;
    margin-right: -15px;

  }

  .page_menu_list ul li {
    padding: 0 15px;
  }
}

@media (max-width:767px) {
  .height100 {
    height: 80px;
  }

  .page_banner {
    height: 320px;
  }
}

/* about */
.about_infor {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about_icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  z-index: -1;
}

.title_j {
  display: flex;
  line-height: 1.4;
  color: var(--black-color);
  font-weight: 400;
}

.t_left {
  flex-flow: column;

}

.t_center {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.title_j strong {
  position: relative;
  padding-right: 19px;
  font-weight: 400;
}

.title_j strong:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 10px;
  background-image: url(../images/title_top_icon.svg);

}

.title_j div:nth-child(2) {
  padding-top: 10px;
}

.title_j div:nth-child(2) span {
  color: var(--blue-color);
}

.about_top {
  padding-top: 75px;
  padding-bottom: 75px;
}

.about_top .left {
  padding-right: 50px;
  width: 50%;
}

.about_top .right {
  padding-left: 50px;
  width: 50%;
  overflow: hidden;
}

.about_top .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about_top .text {
  padding-top: 40px;
}

.about_top .text p {
  padding-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
}

.about_top .text p:last-child {
  padding-bottom: 0;
}

.about_mid {
  overflow: hidden;
}

.about_mid ul {
  margin-left: -35px;
  margin-right: -35px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
}

.about_mid ul li {
  padding: 35px;
  max-width: 33%;
}

.about_mid .icon {
  width: 86px;
}

.about_mid .mid_right {
  flex: 1;
  padding-left: 30px;
  color: var(--black-color);

  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about_mid .mid_right .num {
  display: flex;
}

.about_mid .mid_right span {
  line-height: 1;
}

.about_mid .mid_right span.counter {
  font-family: 'Archivo';
  line-height: 0.8;
}

.about_mid .mid_right em {
  margin-left: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.about_mid .mid_right p {
  padding-top: 10px;
  color: var(--black-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.7;
}

.about_bottom {
  padding-top: 85px;
  padding-bottom: 110px;
}

.about_bottom .right {
  padding-right: 50px;
  padding-left: 0;
}

.about_bottom .left {
  padding-left: 50px;
  padding-right: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.page_more {
  padding-top: 40px;
  display: flex;
}

.page_more a {
  position: relative;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.00);
  backdrop-filter: blur(4px);
  color: var(--dark-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
  transition: all .3s;
}

.page_more a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all .3s;
}

.page_more a:hover::before {
  transform: scaleX(1);
}

.page_more a svg {
  margin-left: 10px;
}

.page_more a:hover {
  background: var(--main-color);
  color: #fff;
}

.page_more a:hover svg path {
  stroke: #fff;
}

.about_last {
  position: relative;
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #F5F8FB;
  overflow: hidden;
  z-index: 1;
}

.khal_bg {
  position: absolute;
  left: 0;
  top: 170px;
  width: 100%;
  height: calc(100% - 170px);
  background-color: #F5F8FB;
  background-image: url(../images/about_last_bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: -1;
}

.blue_more a {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white-color);
}

.partner_list {
  padding-top: 36px;
}

.partner_list ul {
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  flex-wrap: wrap;
}

.partner_list ul li {
  width: 14.28%;
  float: left;
  padding: 10px 12px;
}

.partner_list .bg {
  position: relative;
  background-color: var(--white-color);
  transition: all 0.3s;
  overflow: hidden;
}

.partner_list .bg img:first-child {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  width: 85%;
  height: 60%;
  max-width: 146px;
  max-height: 76px;
}

.partner_list .bg:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 20px 0px rgba(0, 104, 183, 0.10);
}

.about_last .blue_more {
  padding-top: 50px;
}

@media (max-width:1366px) {
  .about_top .left {
    padding-right: 30px;
  }

  .about_top .right {
    padding-left: 30px;
  }

  .about_bottom .right {
    padding-right: 30px;
    padding-left: 0;
  }

  .about_bottom .left {
    padding-left: 30px;
    padding-right: 0;
  }
}

@media (max-width:1280px) {
  .about_top .left {
    padding-right: 25px;
  }

  .about_top .right {
    padding-left: 25px;
  }

  .about_bottom .right {
    padding-right: 25px;
    padding-left: 0;
  }

  .about_bottom .left {
    padding-left: 25px;
    padding-right: 0;
  }

  .about_mid ul {
    margin-left: -25px;
    margin-right: -25px;
  }

  .about_mid ul li {
    padding: 35px 25px;
  }

  .partner_list ul li {
    width: 16.66%;
  }
}

@media (max-width:1100px) {
  .about_mid ul li {
    width: 50%;
    max-width: inherit;
  }

}

@media (max-width:1200px) {
  .about_top {
    flex-flow: column;
  }

  .about_top .left {
    padding-right: 0;
    width: 100%;
  }

  .about_top .right {
    padding-top: 30px;
    width: 100%;
    padding-left: 0;
  }

  .about_bottom .right {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .about_bottom .left {
    padding-top: 30px;
    padding-left: 0;
  }

}

@media (max-width:991px) {


  .about_mid ul {
    margin-left: -35px;
    margin-right: -35px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
  }

  .about_mid ul li {
    padding: 35px;
  }

  .about_mid ul li {
    max-width: inherit;
    width: 50% !important;
  }



  .partner_list ul li {
    width: 20%;
  }
}

@media (max-width:767px) {
  .about_top {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about_icon {
    width: 40px;
  }

  .about_mid .mid_right span.counter {
    font-size: 30px;
  }

  .about_mid .mid_right span {
    font-size: 22px;
    line-height: 1.2;
  }

  .about_mid ul {
    margin-left: -15px;
    margin-right: -15px;
  }

  .about_mid ul li {
    padding: 20px 15px;
    text-align: center;
    /* width: 100% !important; */
  }

  .about_mid ul li>div:first-child {
    flex-flow: column;
    align-items: center;
  }

  .about_mid .icon {
    width: 56px;
    margin-bottom: 10px;
  }

  .about_mid .mid_right .num {
    justify-content: center;
  }

  .about_mid .mid_right {
    padding-left: 0;
  }

  .about_bottom {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  .about_mid ul li {
    width: 100% !important;
  }

}

@media (max-width:767px) {
  .about_bottom .page_more {
    justify-content: center;
  }

  .partner_list ul {
    margin-left: -8px;
    margin-right: -8px;
  }

  .partner_list ul li {
    width: 33.33%;
    padding: 8px;
  }

  .partner_list .bg img:first-child {
    max-width: 85%;
    max-height: 70%;
  }

  .about_last {
    padding-top: 50px;
    padding-bottom: 50px;
  }

}

/* culture */
.culture_yj {
  padding: 100px 0;
  overflow: hidden;
}

.culture_yj .left {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 50%;
  padding-right: 100px;
}

.culture_yj .right {
  flex: 1;
  padding-left: 12px;
}

.culture_yj .left>div:first-child {
  position: relative;
  height: 100%;
  padding-bottom: 100px;
}

.culture_yj .text {
  padding-top: 55px;
}

.culture_yj .text .small_title {
  color: var(--black-color);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.culture_yj .text .small_title span {
  color: var(--blue-color);
}

.culture_yj p {
  padding-top: 20px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 28px;
}

.culture_yj .yin {
  position: absolute;
  right: 0;
  bottom: 0;
}

.culture_title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--blue-color);
  border-radius: 50%;
}

.culture_title .title {
  padding-top: 20px;
  color: var(--black-color);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.culture_mb {
  position: relative;
  padding-top: 125px;
  padding-bottom: 110px;
  overflow: hidden;
  z-index: 1;
}

.culture_mb .culture_mb_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.culture_mb .culture_mb_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture_mb .container {
  display: flex;
  justify-content: flex-end;
}

.culture_mb .left {
  position: relative;
  padding-bottom: 110px;
  width: 50%;
  max-width: 690px;
}

.culture_mb .text {
  padding-top: 50px;
}

.culture_mb .text .small_title {
  color: var(--white-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.culture_mb p {
  padding-top: 20px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 28px;
}

.culture_mb .yin {
  position: absolute;
  right: 0;
  bottom: 0;
}

.culture_mb .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--blue-color);
  border-radius: 50%;
}

.culture_mb .title {
  padding-top: 24px;
  color: var(--white-color);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.culture_value {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  z-index: 1;
}

.culture_value:after {
  content: '';
  position: absolute;
  top: -150px;
  right: 0;
  width: 30%;
  height: 30%;
  max-width: 300px;
  max-height: 300px;
  background-image: url(../images/jzg_right_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}

.culture_value .text {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 750px;
  color: #333;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
}

.value_box {
  padding-top: 80px;
}

.value_box .thumb {
  width: 50%;
  padding-right: 50px;
}

.value_box .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.value_box .right_list {
  padding-left: 10px;
  width: 50%;
}

.right_list ul {
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.right_list ul li {
  padding: 12px;
  width: 50%;
}

.right_list .bg {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 30px 40px;
  align-items: center;
  border-radius: 16px 16px 1px 16px;

  background: var(--white-color);
  overflow: hidden;
  z-index: 1;
}

.right_list .bg .border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 1px 16px;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.right_list .bg:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/jzg_jt.svg);
  background-repeat: no-repeat;
  z-index: 20;
}

.right_list .title {
  flex: 1;
  margin-left: 30px;
  color: var(--dark-color);
  font-style: normal;
  font-weight: 290;
}

.right_list .bg::before {
  content: '';
  z-index: -1;
  position: absolute;

  bottom: 0;
  right: 0;
  border-radius: 16px 16px 1px 16px;
  background-color: var(--blue-color);
  width: 0;
  height: 0;
  transition: all 0.25s ease-in-out;
}

.right_list .bg:hover {
  border-color: var(--blue-color);
}

.right_list .bg:hover:after {
  opacity: 0;
}

.right_list .bg:hover::before {
  width: 100%;
  height: 100%;
}

.right_list .bg:hover .title {
  color: var(--white-color);
}

@media (max-width:1440px) {
  .culture_yj .left>div:first-child {
    padding-bottom: 60px;
  }

  .culture_yj .left {
    padding-right: 80px;
  }

  .culture_yj .right {
    padding-left: 0;
  }

  .culture_yj .text {
    padding-top: 35px;
  }

  .culture_mb .left {
    padding-bottom: 80px;
  }

  .culture_mb .text {
    padding-top: 30px;
  }

  .right_list .bg {
    padding: 30px 30px;
  }

}


@media (max-width:1366px) {
  .culture_yj .left {
    padding-right: 60px;
  }

  .culture_yj .left>div:first-child {
    padding-bottom: 40px;
  }

  .culture_mb .left {
    padding-bottom: 40px;
  }

  .right_list .icon {
    width: 55px;
  }

  .right_list .title {
    margin-left: 20px;
  }

}

@media (max-width:1280px) {
  .right_list .bg {
    padding: 30px 20px;
  }

  .right_list .title {
    font-size: 18px;
    margin-left: 16px;
  }

  .culture_mb .culture_mb_bg img {
    object-position: left;
  }

}
@media (min-width: 768px) and (max-width: 1280px) {
 
  .culture_mb .culture_mb_bg::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(270deg, #0D4DA1 0%, rgba(13, 77, 161, 0.00) 100%);
  }
}
@media (max-width:991px) {
  .culture_yj {
    padding: 80px 0;
  }

  .culture_yj>.container {
    flex-flow: column;
  }

  .culture_yj .left {
    padding-top: 0;
    width: 100%;
    padding-right: 0;
  }

  .culture_yj .right {
    margin-top: 25px;
    width: 100%;
  }

  .culture_mb .left {
    width: 100%;
  }

  .value_box {
    padding-top: 40px;
    flex-flow: column;
  }

  .value_box .thumb {
    width: 100%;
    padding-right: 0;
  }

  .value_box .right_list {
    padding-left: 0;
    padding-top: 30px;
    width: 100%;
  }



}

@media (max-width:767px) {
  .culture_yj {
    padding: 50px 0;
  }

  .culture_mb {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .right_list ul li {
    width: 100%;
  }

  .culture_value {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .culture_value:after {
    top: -100px;
    width: 24%;
    height: 30%;
    max-width: 90px;
    max-height: 200px;
  }


}

/* 发展历程 */
.his_content {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
  overflow: hidden;
}

.his_content:after {
  content: '';
  position: absolute;
  top: -170px;
  right: 0;
  width: 30%;
  height: 50%;
  max-width: 181px;
  max-height: 356px;
  background-image: url(../images/his_r_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}

.his_box .mySwiper2 {
  position: relative;
  z-index: 1;
}

.his_box .mySwiper2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 20;
}

.his_box .mySwiper2:after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 20;
}

.year_loop span {
  color: #C3C3C3;
  text-align: center;
  font-family: 'Archivo';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.his_box {
  padding-top: 110px;
  overflow: hidden;
}

.year_text {
  position: relative;
  display: flex;
  flex-flow: column;
  padding-left: 42px;
  height: 480px;
}

.year_text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #DDD;
}

.year_num {
  color: #000;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.year_num span {
  font-family: 'Archivo';
  font-size: 36px;
}

.year_des {
  margin-top: 20px;
  margin-bottom: 20px;
  flex: 1;
  /* height: 205px; */
  overflow-y: auto;
}

.year_des p {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
}

.year_des p:last-child {
  margin-bottom: 0;
}

.year_des p::before {
  content: '·';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.year_loop {
  position: relative;
  margin-top: 60px;
}

.year_loop::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #F0F0F0;

}

.his-prev,
.his-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 72px;
  height: 72px;
  background-color: #F7F8FA;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9;
}

.his-prev {
  left: 0;
}

.his-next {
  right: 0;
}

.his-prev:hover,
.his-next:hover {
  background-color: var(--blue-color);
}

.his-prev:hover svg path,
.his-next:hover svg path {
  stroke: var(--white-color);
}

.year_loop .pr {
  padding-top: 17px;
  padding-left: 72px;
  padding-right: 72px;
  overflow: hidden;
}

.year_loop .mySwiper {
  overflow: hidden;
}

.year_loop i {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
}

.year_loop i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/his_play.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: all .3s;
}

.year_loop span {
  padding-top: 18px;
  display: block;
}

.year_loop .swiper-slide {
  display: flex;
  flex-flow: column;
  align-items: center;
  cursor: pointer;
}

.year_loop .swiper-slide-active span {
  color: var(--blue-color);
  font-size: 36px;
}

.year_loop .swiper-slide-active i::after {
  background-image: url(../images/his_play_active.svg);

}

.year_img img {
  border-radius: 10px;
}

@media (max-width:991px) {
  .year_text {
    padding-left: 30px;
    height: 450px;
  }

}


@media (max-width:767px) {
  .his_content:after {
    top: -100px;
    width: 22%;
    height: 200px;
  }

  .his_content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .year_text {
    padding-left: 20px;
  }

  .his_box {
    padding-top: 60px;
  }

  .year_loop::before {
    top: 25px;
  }

  .his-prev,
  .his-next {
    width: 50px;
    height: 50px;
  }

  .year_des {
    height: 235px;
  }

  .year_loop span {
    padding-top: 10px;
  }

  .year_loop .swiper-slide-active span {
    font-size: 30px;
  }

  .year_loop span {
    font-size: 20px;
  }

  .year_loop i {
    width: 32px;
    height: 32px;
  }

  .year_loop .pr {
    padding-top: 10px;
    padding-left: 55px;
    padding-right: 55px;
  }

  .year_loop i::after {
    background-size: 16px;
  }

  .year_loop .swiper-slide-active i::after {
    background-size: 32px;
  }

}

/* 研发制造 */
.rd_top {
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: #F9F9F9;
  overflow: hidden;
}

.rd_top .white_bg {
  border-radius: 20px;
  background: var(--white-color);
  overflow: hidden;
}

.rd_top .white_bg .left {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  width: 50%;
}

.rd_top .white_bg .right {
  padding-left: 50px;
  width: 50%;
}

.rd_top .white_bg .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd_top .text {
  margin-top: 30px;
  color: var(--dark-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
}

.rd_honor {
  margin-top: 20px;
}

.rd_honor ul {
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.rd_honor ul li {
  padding: 10px;
  width: 25%;
}

.rd_honor span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 22px;
  padding-right: 22px;
  color: var(--black-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
  min-height: 52px;
  z-index: 1;
}

.rd_honor span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 21px;
  height: 50px;
  background-image: url(../images/ms_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.rd_honor span::after {

  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 21px;
  height: 50px;
  background-image: url(../images/ms_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.rd_top_bottom {
  padding-top: 90px;
}

.rd_top_bottom .loop ul {
  justify-content: center;
  margin-left: -50px;
  margin-right: -50px;
}

.rd_top_bottom .loop ul li {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  color: var(--black-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.rd_top_bottom .loop ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #DDD;
}

.rd_top_bottom .loop ul li:last-child:before {
  display: none;
}

.rd_top_bottom .loop .icon {
  margin-right: 20px;
  width: 44px;
}

.rd_num {
  padding-top: 70px;
}

.rd_num ul {
  display: flex;

}

.rd_num ul li {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-flow: column;
  width: 16.66%;
  border-right: 1px solid #EEE;
  text-align: center;
}

.rd_num ul li:last-child {
  border-right: none;
}

.rd_num span {
  color: var(--blue-color);
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
}

.rd_num em {
  margin-left: 10px;
  color: #3E3A39;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rd_num p {
  margin-top: 20px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: normal;
}

.rd_mid {
  padding-top: 100px;
  padding-bottom: 88px;
  background-color: var(--white-color);
  overflow: hidden;
}

.rd_mid .rd_title span {
  color: var(--blue-color);
}

.rd_mid_list {
  padding-top: 48px;
}

.rd_mid_list ul {
  display: flex;
  align-items: stretch;
  margin-left: -12px;
  margin-right: -12px;
}

.rd_mid_list ul li {
  width: 25%;
  padding: 12px;
}

.rd_mid_list .bg {
  display: flex;
  flex-flow: column;
  padding: 32px;
  height: 100%;
  border-radius: 24px;
  background-color: #F7F8FA;
}

.rd_mid_list .bg .no {
  display: flex;
  justify-content: center;
}

.rd_mid_list .bg .no span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  width: 81px;
  height: 80px;
  color: #162849;
  text-align: center;
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100;
  background-image: url(../images/rd_cicle.svg);
  background-repeat: no-repeat;
}

.rd_mid_list .title {
  margin-top: 15px;
  color: var(--blue-color);
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.rd_mid_list .text {
  margin-top: 24px;
  padding: 32px;
  border-radius: 10px;
  background: var(--white-color);
}

.rd_mid_list .text p {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
}

.rd_mid_list .text p::before {
  content: '·';
  position: absolute;
  top: 0;
  left: 0;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.rd_mid_list .text p:last-child {
  margin-bottom: 0;
}

.rd_bottom {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #F5F5F5;
  overflow: hidden;
}

.rd_bottom_title .left {
  flex: 1;
  margin-right: 50px;
}

.rd_bottom_title .text {
  margin-top: 30px;
  color: var(--black-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 290;
  line-height: 36px;
}

.rd_bottom_title .right {
  align-items: flex-end;
}

.rd_bottom_title .right>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: var(--white-color);
  border-radius: 50%;
  cursor: pointer;
}

.rd_bottom_title .right>div:first-child {
  margin-right: 30px;
}

.rd_bottom_title .right>div:hover svg path {
  stroke: var(--blue-color);
}

.man_swiper {
  margin-top: 80px;
  overflow: visible;
}

.swiper-mask {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 20;

}

.right-mask {
  background-image: url(../images/man_r_bg.svg);
  background-repeat: no-repeat;
  background-position: left;
}

.right-mask:after {
  content: "";
  position: absolute;
  top: 0;
  left: 160px;
  width: calc(100% - 160px);
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.man_swiper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  z-index: 20;
}

.man_swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}

.man_swiper .thumb {
  position: relative;
  overflow: hidden;
}

.man_swiper .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.man_swiper .title {
  padding: 30px 5px;
  background: #FFF;
  color: var(--black-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.man_swiper .thumb img:first-child {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.man_swiper .swiper-slide:hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

@media (max-width:1680px) {
  .rd_honor ul li {
    width: 33.33%;
  }
}

@media (max-width:1439px) {
  .rd_top .white_bg .left {
    padding-left: 40px;
  }

  .rd_top .white_bg .right {
    padding-left: 40px;
  }

}

@media (max-width:1439px) {
  .rd_honor ul li {
    width: 50%;
  }
}

@media (max-width:1279px) {

  .rd_top_bottom .loop ul {
    margin-left: -30px;
    margin-right: -30px;
  }

  .rd_top_bottom .loop ul li {
    padding-left: 30px;
    padding-right: 30px;

  }

  .rd_top_bottom .loop .icon {
    margin-right: 16px;
  }

  .rd_top_bottom .loop ul li {
    font-size: 18px;
  }

  .rd_mid_list .bg {
    padding: 25px 20px;
  }

  .rd_mid_list .text {
    padding: 25px 20px;
  }
}

@media (max-width:1200px) {

  .rd_top_bottom .loop ul {
    margin-left: -20px;
    margin-right: -20px;
  }

  .rd_top_bottom .loop ul li {
    padding-left: 20px;
    padding-right: 20px;

  }

  .rd_top_bottom .loop .icon {
    margin-right: 10px;
    width: 34px;
  }
}

@media (max-width:991px) {
  .rd_top .white_bg {
    flex-flow: column;
  }

  .rd_top .white_bg .left {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }

  .rd_top .white_bg .right {
    padding-left: 0;
    width: 100%;
  }

  .rd_top_bottom .loop ul {
    flex-flow: column;
  }

  .rd_top_bottom .loop ul li {
    padding-bottom: 20px;
    flex-flow: column;
    align-items: flex-start;
    line-height: 1.5;
  }

  .rd_mid_list ul {
    flex-wrap: wrap;
  }

  .rd_mid_list ul li {
    width: 50%;
  }

  .rd_num {
    padding-top: 50px;
  }

}

@media (max-width:767px) {
  .rd_top {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .rd_top .white_bg .left {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rd_bottom_title .text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 30px;
  }

  .rd_honor ul li {
    width: 100%;
  }

  .rd_mid_list ul li {
    width: 100%;
  }

  .rd_num {
    padding-top: 30px;
  }

  .rd_num ul {
    flex-wrap: wrap;
  }

  .rd_num ul li {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 50%;
  }

  .rd_num ul li:nth-child(2n) {
    border-right: none;
  }

  .rd_top_bottom {
    padding-top: 50px;
  }

  .rd_num span {
    font-size: 28px;
  }

  .rd_num p {
    margin-top: 10px;
  }

  .rd_mid {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .rd_mid_list {
    padding-top: 30px;
  }

  .rd_bottom {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .rd_bottom_title {
    flex-flow: column;
  }

  .rd_bottom_title .left {
    flex: inherit;
    margin-right: 0;
    width: 100%;
  }

  .rd_bottom_title .right {
    padding-top: 20px;
    width: 100%;
    justify-content: flex-end;
  }

  .rd_bottom_title .right>div {
    width: 50px;
    height: 50px;
  }

  .man_swiper {
    margin-top: 40px;
  }

  .man_swiper .title {
    padding: 22px 5px;
    font-size: 18px;
  }


}

/* honor */
.honor_top {
  padding-top: 100px;
  padding-bottom: 74px;
  position: relative;
  background-color: var(--white-color);
  z-index: 1;
  overflow: hidden;
}

.honor_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 41.8%;
  height: 100%;
  background-color: #F4F9FF;
  z-index: -1;
}

.honor_top .left {
  padding-right: 88px;
  width: 40%;
}

.honor_top .right {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 60%;
  padding-left: 50px;
  padding-bottom: 40px;
}

.honor_t_left {
  margin-top: 50px;
}

.honor_t_left .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.honor_t_left .bg {
  position: relative;
  overflow: hidden;
}

.honor_t_left .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honor_t_left .thumb img:nth-child(2) {
  width: 100%;
}

.honor_t_left .title {
  margin-top: 25px;
  color: var(--dark-color);
  /* text-align: center; */
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.honor_t_left .text {
  margin-top: 10px;
  color: #666;
  /* text-align: center; */
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
  text-align: justify;
}

.honor_swiper {
  margin-top: 38px;
}

.honor_swiper .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.honor_swiper .bg {
  position: relative;
  overflow: hidden;
}

.honor_swiper .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honor_swiper .title {
  margin-top: 12px;
  margin-bottom: 12px;
  color: var(--black-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.honor_button {
  justify-content: flex-end;
}

.honor_button>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid #EEE;
  cursor: pointer;
}

.honor_button>div:first-child {
  margin-right: 30px;
}

.honor_button>div:hover svg path {
  stroke: var(--blue-color);
}

.title_j .eng {
  color: #666;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  text-transform: uppercase;
}

.mobile_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #F4F9FF;
  opacity: 0;
  z-index: -1;
}

.honor_mid {
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: var(--white-color);
  background-image: url(../images/honor_mid_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.hb_swiper {
  margin-top: 50px;
}

.hb_swiper .thumb {
  position: relative;
  padding: 12px;
  border: 1px solid #F1F1F1;
  background: var(--white-color);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.hb_swiper .thumb img:first-child {
  position: absolute;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: cover;
}

.hb_swiper .title {
  margin-top: 20px;
  overflow: hidden;
  color: var(--dark-color);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  min-height: 52px;
}

.honor_mid_top {
  align-items: flex-end;
}

.hb_swiper .swiper-slide .box {
  margin-left: -25px;
  margin-right: -25px;
}

.hb_swiper .swiper-slide .loop {
  padding: 12px 25px;
}

.honor_last {
  position: relative;
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: var(--white-color);
  overflow: hidden;
  z-index: 1;
}

.honor_last::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-image: url(../images/honor_last_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/* pic hover */
.honor_swiper .thumb img:first-child {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.honor_swiper .loop:hover .thumb img:first-child {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.hb_swiper .thumb img:first-child {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.hb_swiper .loop:hover .thumb img:first-child {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

@media (min-width:768px) {
  .honor_swiper .box {
    margin-left: -9px;
    margin-right: -9px;
    display: flex;
    flex-wrap: wrap;
  }

  .honor_swiper .swiper-slide .loop {
    padding: 9px;
    width: 33.33%;
    cursor: pointer;
  }

  .hb_swiper .swiper-slide .box {
    display: flex;
    flex-wrap: wrap;
  }

  .hb_swiper .swiper-slide .loop {
    width: 16.66%;
    cursor: pointer;
  }

}

@media (max-width:1279px) {

  .honor_top .left {
    padding-right: 50px;
  }

  .hb_swiper .swiper-slide .box {
    margin-left: -15px;
    margin-right: -15px;
  }

  .hb_swiper .swiper-slide .loop {
    padding: 5px 15px;
  }

}

@media (max-width:991px) {
  .honor_top::before {
    display: none;
  }

  .mobile_bg {
    opacity: 1;
  }

  .honor_top .container {
    flex-flow: column;
  }

  .honor_top .left {
    padding-right: 0;
    width: 100%;
  }

  .honor_t_left .text {
    padding-bottom: 50px;

  }

  .honor_top .right {
    margin-top: 50px;
    width: 100%;
    padding-left: 0px;
    padding-bottom: 0;
  }

  .hb_swiper .swiper-slide .box {
    margin-left: -10px;
    margin-right: -10px;
  }

  .hb_swiper .swiper-slide .loop {
    padding: 5px 10px;
  }
}

@media (max-width:767px) {
  .honor_top .right {
    margin-top: 30px;
  }

  .honor_mid {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .honor_button {
    padding-top: 20px;
  }

  .title_j .eng {
    padding-top: 5px;
    font-size: 18px;
  }

  .honor_button>div {
    width: 50px;
    height: 50px;
  }

  .honor_top {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .honor_button>div:first-child {
    margin-right: 16px;
  }

  .hb_swiper {
    margin-top: 35px;
  }

  .honor_last {
    padding-top: 50px;
    padding-bottom: 40px;
  }

}

/* product list */
.pro_title {
  padding-top: 80px;
  overflow: hidden;
}

.pro_text {
  max-width: 580px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;

}

.pro_list {
  padding-top: 68px;
  padding-bottom: 50px;
  overflow: hidden;
}

.pro_list ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.pro_list ul li {
  padding: 10px;
  width: 50%;
}

.pro_list .bg {
  position: relative;
  padding: 50px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-image: url(../images/pro_list_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.pro_list .bg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background-image: url(../images/pro_bg_icon2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  opacity: 0;
  transition: all .4s;

  z-index: -1;
}

.pro_list .bottom {
  width: 50%;
}

.pro_list .bottom .title {
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pro_list .text {
  margin-top: 30px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
}

.pro_list .thumb {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 53%;
  height: 100%;
  z-index: 1;
}

.pro_list .thumb img {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.pro_list .detail {
  margin-top: 30px;
  padding-left: 15px;
  flex-wrap: wrap;
  border-left: 1px solid #CCC;
}

.pro_list .detail>div {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding-right: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.pro_list .detail>div:last-child {
  padding-right: 0;
}

.pro_list .detail .s_t {
  color: var(--black-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.pro_list .detail .number {
  color: var(--blue-color);
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pro_list .detail .number em {
  margin-left: 8px;
  color: var(--blue-color);
  font-family: "Microsoft YaHei";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.pro_china {
  color: var(--blue-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.p_list_more {
  margin-top: 50px;
}

.p_list_more span {
  display: flex;
  align-items: center;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.00);
  backdrop-filter: blur(4px);
  color: var(--dark-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
}

.p_list_more span svg {
  margin-left: 10px;
}

.pro_list a:hover .bg::before {
  width: 43.5%;
  opacity: 1;
}

.pro_list a:hover .p_list_more span {
  background-color: var(--green-color);
  border-color: var(--green-color);
  color: var(--white-color);
}

.pro_list a:hover .p_list_more span svg path {
  stroke: var(--white-color);
}

.pro_list a:hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

@media (max-width:1679px) {
  .pro_list .detail>div {
    padding-right: 20px;
  }
}

@media (max-width:1580px) {
  .pro_list .detail>div {
    padding-right: 10px;
  }
}

@media (max-width:1279px) {
  .pro_list .bg {
    padding: 40px;
  }

  .p_list_more {
    margin-top: 40px;
  }

  .pro_list .text {
    margin-top: 20px;
  }

}

@media (max-width:991px) {
  .pro_title {
    flex-flow: column;
  }

  .pro_text {
    padding-top: 20px;
  }

  .pro_list ul li {
    width: 100%;
  }
}

@media (max-width:767px) {
  .pro_title {
    padding-top: 50px;
  }

  .pro_list {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .pro_list .bg {
    padding: 40px 25px 0 25px;
    flex-flow: column;
  }

  .pro_list .bottom {
    width: 100%;
  }

  .pro_list .thumb {
    position: relative;
    top: inherit;
    bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .pro_list .bg::before {
    width: 58%;
  }

  .pro_list .detail>div {
    width: 100%;
  }

  .pro_list .detail>div:first-child {
    padding-right: 0;
    padding-bottom: 15px;
  }

  .p_list_more span {
    padding: 14px 16px;
  }

}


/* paged */
.paged {
  padding-bottom: 50px;
}

.paged .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.paged ul li {
  margin: 0 4px;
}

.paged span,
.paged a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 10px;
  font-size: 16px;
  background-color: transparent !important;
  color: rgba(51, 51, 51, 0.50);
  font-weight: 400;
}

.page-item:last-child .page-link {
  background-color: transparent !important;
  border: none !important;
}

.paged .active {
  background-color: var(--main-color);
  border-color: var(--main-color);
  border-radius: 4px;
}

.paged .active span,
.paged .active a {
  color: var(--white-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width:767px) {

  .paged span,
  .paged a {
    width: 40px;
    height: 40px;
    padding: 4px;
    font-size: 14px;
  }

  .paged ul li:first-child span,
  .paged ul li:last-child a,
  .paged ul li:first-child a,
  .paged ul li:last-child span {
    width: 40px;
    height: 40px;
  }
}

/* product detail */
.left_menu {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.left_menu.hidden {
  opacity: 0;
  transform: translateY(10px);
  /* 轻微下沉效果 */
  pointer-events: none;
}


.left_menu {
  position: fixed;
  left: 10px;
  top: 30%;
  z-index: 9;
}

.left_menu ul {
  /* margin-top: -20px;
  margin-bottom: -20px; */
}

.left_menu ul li {
  position: relative;
  padding-bottom: 40px;
}

.left_menu ul li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 32px;
  width: 1px;
  height: calc(100% - 32px);
  border-left: 1px dashed #666;
}

.left_menu ul li:last-child {
  padding-bottom: 0;
}

.left_menu ul li:last-child:before {
  display: none;
}

.left_menu ul li a {
  position: relative;
  padding-left: 32px;
  display: inline-block;
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
}

.left_menu ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 23px;
  background-image: url(../images/pro_d.svg);
  background-repeat: no-repeat;
  background-size: 22px 23px;
  background-position: center;
  transition: all .2s;
}

.left_menu ul li.active a,
.left_menu ul li a:hover {
  color: var(--main-color);
}

.left_menu ul li.active a::before,
.left_menu ul li a:hover::before {
  background-image: url(../images/pro_d_hover.svg);
  background-size: 20px 16px;
  background-position: center;
}

.pro_d_top {
  padding-top: 135px;
  padding-bottom: 150px;
  background-image: url(../images/pro_d_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.d_top_cont {}

.d_top_cont .pro_d_left {
  width: 50%;
  padding-right: 130px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.pro_d_right {
  display: flex;
  align-items: center;
  width: 50%;
}

.pro_d_right .pr {
  width: 100%;
}

.pro_d_left .d_more {
  padding-top: 70px;
  padding-left: 33px;
}

.pro_d_left .d_more div:first-child {
  margin-right: 16px;
}

.black_more .span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 15px;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  border-radius: 10px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.00);
  backdrop-filter: blur(4px);
  color: var(--dark-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
  transition: all .3s;
}

.black_more a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all .3s;
}

.black_more a svg {
  margin-left: 10px;
}

.black_more a:hover::before {
  transform: scaleX(1);
}

.black_more a:hover {
  background: var(--main-color);
  color: #fff;
}

.black_more a:hover svg path {
  stroke: #fff;
}

.blue_bg_more .span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  backdrop-filter: blur(4px);
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
  transition: all .3s;
}

.blue_bg_more a svg {
  margin-left: 10px;
}

.pro_d_box {
  margin-top: -30px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 40px 40px 0 0;
  background-color: var(--white-color);
}

.p_d_title {
  display: flex;
  justify-content: center;
}

.p_d_title strong {
  padding-bottom: 20px;
  background-image: url(../images/pro_d_line.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pro_d_text .top {
  padding-left: 30px;
  border-left: 3px solid var(--main-color);
}

.pro_d_text .bottom {
  padding-top: 70px;
  padding-left: 30px;
  border-left: 3px solid #CCC;
}

.pro_d_text .bottom ul {
  margin-left: -50px;
  /* margin-right: -50px; */
  flex-wrap: wrap;
  align-items: stretch;
}

.pro_d_text .bottom li {
  padding-left: 50px;
  padding-right: 0;
  padding-bottom: 20px;
  width: 50%;
}

.pro_d_text .bottom .list {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}

.pro_d_text .bottom .s_t {
  color: var(--black-color);
}

.pro_d_text .bottom .number {
  margin-top: 10px;
  color: var(--main-color);
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.pro_d_text .bottom .number em {
  color: var(--main-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.pro_d_text .title {
  color: var(--main-color);

  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pro_d_text .des {
  margin-top: 20px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
}

.pro_d_swiper {
  position: relative;
}

.pro_d_swiper .swiper-slide img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pro_d_swiper .num01 {
  position: absolute;
  right: 0;
  top: 0;
}

.pro_d_swiper .num {
  color: #666;
  font-family: 'Archivo';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}

.pro_d_swiper .num em {
  margin-right: 4px;
  margin-left: 2px;
}

.pro_d_prev,
.pro_d_next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background-color: #F7F8FA;
  border-radius: 50%;
  cursor: pointer;
}

.pro_d_prev {
  left: -72px;
}

.pro_d_next {
  right: -72px;
}

.pro_d_prev:hover,
.pro_d_next:hover {
  background-color: var(--main-color);
}

.pro_d_prev:hover svg path,
.pro_d_next:hover svg path {
  stroke: var(--white-color);
}

/* mid */
.d_box_title {
  margin-top: 50px;
  display: flex;
  padding: 16px 10px;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  color: var(--white-color);

  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.d_adv_list {
  padding-top: 40px;
  margin-bottom: -10px;
}

.d_adv_list ul {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.d_adv_list ul li {
  padding: 40px 20px;
  width: 25%;
}

.d_adv_list ul li>div {
  max-width: 300px;
}

.d_adv_list .icon {}

.d_adv_list .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: 2px solid var(--main-color);
  z-index: 1;
}

.d_adv_list .icon span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--main-color);
  z-index: -1;
}

.d_adv_list .title {
  margin-top: 20px;
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.d_adv_list .text {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 26px;
}

.pro_d_last {
  padding-top: 80px;
  padding-bottom: 165px;
  background-color: #F5F7FA;
}

.pro_d_last .big_title {
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.xg_swiper {
  margin-top: 50px;
}

.xg_swiper1 ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.xg_swiper1 ul li {
  padding: 8px;
  width: 33.33%;
}

.xg_swiper1 ul li a {
  display: block;
}


.xg_swiper .swiper-slide {
  padding: 30px 50px 40px 50px;
  border-radius: 26px;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #EBEBEB 100%);
}

.xg_swiper .thumb {
  position: relative;
  overflow: hidden;
}

.xg_swiper .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xg_swiper .title {
  margin-top: 10px;
  color: var(--black-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pro_d_last .xg_box {
  padding-left: 116px;
  padding-right: 116px;
}

.xg_prev,
.xg_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  padding: 16px;
  align-items: flex-start;
  border-radius: 70px;
  border: 2px solid #999;
  transition: all .3s;
  cursor: pointer;
}

.xg_prev {
  left: 0;
}

.xg_next {
  right: 0;
}

.xg_prev:hover,
.xg_next:hover {
  border-color: var(--main-color);
}

.xg_prev:hover svg path,
.xg_next:hover svg path {
  stroke: var(--main-color);
}

.table {
  padding-top: 10px;
}

.table table {
  border-collapse: collapse;
  width: 100%;
}

.table table thead tr th {
  min-width: 100px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.table table th {
  background-color: var(--green-color);
  color: white;
  text-align: center;
  padding: 10px;
}

.table table tbody td {
  padding: 15px 10px;
  text-align: center;
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 290;
  line-height: normal;
}
@media (max-width:1800px) {


.left_menu {
  left: 5px;
  max-width: 125px;
}

.left_menu ul li a {
  padding-left: 28px;
}

.pro_d_text .bottom ul {
  margin-left: -30px;
}

.pro_d_text .bottom li {
  padding-left: 30px;
}

}

@media (max-width:1679px) {
  .left_menu {
    max-width: 135px;
  }
  .d_top_cont .pro_d_left {
    width: 54%;
    padding-right: 100px;
  }
  
  .pro_d_right {
    width: 46%;
  }
}

@media (max-width:1580px) {


  .d_top_cont .pro_d_left {
    width: 54%;
    padding-right: 100px;
  }
  
  .pro_d_right {
    width: 46%;
  }
  

}
@media (max-width:1365px) {

.d_top_cont .pro_d_left {
  padding-right: 80px;
}
.d_top_cont .pro_d_left {
  width: 56%;
  padding-right: 80px;
}

.pro_d_right {
  width: 44%;
}


}

@media (max-width:1280px) {

  .d_top_cont .pro_d_left {
    width: 60%;
    padding-right: 60px;
  }
  
  .pro_d_right {
    width: 40%;
  }

  
}


@media (max-width:1279px) {
  .pro_d_text .bottom ul {
    margin-left: -20px;
    /* margin-right: -20px; */
  }

  .pro_d_text .bottom li {
    padding-left: 20px;
  }
  .xg_swiper .swiper-slide {
    padding: 30px 30px 30px 30px;
}

}

@media (max-width:1200px) {
  .d_top_cont .pro_d_left {
    width: 60%;
  }

  .pro_d_right {
    width: 40%;
  }

  .pro_d_last .xg_box {
    padding-left: 80px;
    padding-right: 80px;
  }

  .xg_prev,
  .xg_next {
    padding: 10px;
  }

  .xg_swiper .swiper-slide {
    padding: 20px 30px 20px 30px;
  }

  .table {
    overflow-x: auto;
  }

  .table table tbody td {
    white-space: nowrap;
  }
}

@media (max-width:1200px) {
  .pro_d_last .xg_box {
    padding-left: 60px;
    padding-right: 60px;
  }

  .xg_prev,
  .xg_next {
    padding: 6px;
  }

  .xg_prev svg,
  .xg_next svg {
    width: 30px;
    height: 30px;
  }

  .xg_swiper .swiper-slide {
    padding: 20px 20px 20px 20px;
  }

  .d_top_cont {
    flex-wrap: wrap;
  }

  .pro_d_top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .d_top_cont .pro_d_left {
    width: 100%;
    padding-right: 0;
  }

  .d_top_cont .pro_d_right {

    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .d_adv_list ul li {
    width: 33.33%;
  }

}

@media (max-width:991px) {
  .left_menu {
    left: 0;
    top: 100px;
    background-color: var(--white-color);
    width: 100%;
    max-width: inherit;
    padding: 10px 20px;
    border-top: 1px solid #DDD;
  }

  .left_menu ul {
    display: flex;
    flex-wrap: wrap;
  }

  .left_menu ul li {
    position: relative;
    padding-bottom: 0;
    padding-right: 10px;
  }

  .left_menu ul li::before {
    display: none;
  }



}

@media (max-width:767px) {
  .left_menu {
    top: 80px;
  }

  .pro_d_top {
    padding-top: 55px;
    padding-bottom: 50px;
  }

  .pro_d_text .top {
    padding-left: 20px;
  }

  .pro_d_text .bottom li {
    width: 100%;
  }

  .pro_d_text .bottom {
    padding-left: 20px;
    padding-top: 40px;
  }

  .pro_d_left .d_more {
    padding-top: 30px;
    padding-left: 20px;
    justify-content: space-between;
  }

  .pro_d_left .d_more>div {
    width: calc(50% - 10px);
  }

  .pro_d_left .d_more>div .span {
    padding: 18px 5px;
    min-width: inherit;
    width: 100%;
  }

  .pro_d_left .d_more div:first-child {
    margin-right: 0;
  }

  .pro_d_right .pr {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pro_d_prev {
    left: -10px;
  }

  .pro_d_next {
    right: -10px;
  }

  .pro_d_prev,
  .pro_d_next {
    z-index: 8;
  }

  .pro_d_prev,
  .pro_d_next {
    width: 50px;
    height: 50px;
  }

  .pro_d_box {
    margin-top: -20px;
    padding-top: 50px;
    padding-bottom: 60px;
    border-radius: 20px 20px 0 0;
  }

  .d_adv_list ul {
    margin-left: -10px;
    margin-right: -10px;
  }

  .d_adv_list ul li {
    padding: 20px 10px;
    width: 100%;
  }

  .pro_d_last {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .left_menu ul li a {
    padding-left: 32px;
    font-size: 16px;
    font-weight: 400;
  }

  .table table tbody td {
    padding: 13px 10px;
    font-size: 16px;
  }

  .xg_swiper .title {
    font-size: 16px;
  }

  .xg_swiper1 ul li {
    width: 100%;
  }

  .d_adv_list ul li>div {
    max-width: inherit;
  }


}

/* 工程建设 */
.yj_list {
  padding-top: 40px;
  padding-bottom: 80px;
}

.project_text {
  max-width: 786px;
}

.yj_list .term_box {
  display: block;
  margin-bottom: 40px;
}

.yj_list .term_box:last-child {
  margin-bottom: 0;
}

.yj_item {
  border-radius: 20px;
  overflow: hidden;
}

.yj_item_left .yj_item_leftmb {
  visibility: hidden;
  width: 100%;
}

.yj_item_leftcon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: .3s;
}

.yj_item_leftcon>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yj_item {
  display: flex;
  transition: .3s;
}

.yj_item_left {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.yj_item_right {
  width: 50%;
  background: var(--white-color);
  padding: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: .3s;
}

.yj_item_rightxq2 {
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.2;
  margin: 24px 0;
}

.yj_item_rightxq3 {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 290;
  line-height: 32px;
  max-height: 128px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.yj_item_rightbuttonx {
  margin-top: 40px;
  display: inline-flex;
  padding: 16px 22px 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: var(--white-color);
}

.yj_item_rightbuttonx span {
  margin-right: 8px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.yj_list .term_box:nth-child(even) .yj_item {
  flex-direction: row-reverse;
}

.yj_item_rightxq1 img {
  width: 50px;
}

.yj_item_rightxq1 img:nth-child(2) {
  display: none;
}

.yj_item:hover .yj_item_leftcon {
  transform: scale(1.1);
  transition: .3s;
}

.yj_item:hover .yj_item_rightxq1 img:nth-child(1) {
  display: none
}

.yj_item:hover .yj_item_rightxq1 img:nth-child(2) {
  display: block;
}

.yj_item:hover .yj_item_right {
  background: var(--main-color);
  transition: .3s;
}

.yj_item:hover .yj_item_rightxq2 {
  color: var(--white-color);
}

.yj_item:hover .yj_item_rightxq3 {
  color: var(--white-color);
}

.yj_item:hover .yj_item_rightbuttonx {
  background: rgba(255, 255, 255, 0.50);
}

.yj_item:hover .yj_item_rightbuttonx span {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.yj_item:hover .yj_item_rightbuttonx svg path {
  stroke: var(--white-color);
}

@media (max-width:1580px) {
  .yj_item_right {
    padding: 60px;
  }
}

@media (max-width:1440px) {
  .yj_item_right {
    padding: 60px;
  }
}

@media (max-width:1366px) {
  .yj_item_right {
    padding: 50px;
  }
}

@media (max-width:1279px) {
  .yj_item_right {
    padding: 40px 50px;
  }
}

@media (max-width:991px) {
  .yj_item_right {
    padding: 40px;
  }

  .yj_item_rightxq1 img {
    width: 40px;
  }

  .yj_item_rightxq2 {
    margin: 16px 0 26px 0;
  }
}

@media (max-width:767px) {

  .yj_list {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .yj_item_rightxq1 img {
    width: 36px;
  }

  .yj_item {
    display: block;
  }

  .yj_item_left {
    width: 100%;
  }

  .yj_item_right {
    width: 100%;
    height: auto;
    padding: 30px 25px;
  }


  .yj_item_rightbuttonx {
    padding: 10px 16px 10px 25px;
  }

  .yj_item_rightxq3 {
    font-size: 16px;
    line-height: 28px;
    max-height: 112px;
  }
}

/* 工程详情 */
.grey_location {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
}

.grey_location a {
  margin-right: 10px;
  line-height: 20px;
}

.grey_location a:first-child {
  width: 18px;
  height: 18px;
  background-image: url(../images/home_icon2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  font-size: 0;
}

.grey_location a:nth-child(n + 2) {
  padding-right: 18px;
  color: rgba(0, 0, 0, 0.20);
  background-image: url(../images/arrow_right2.svg);
  font-size: 14px;
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: right;
  background-size: 8px 13px;
}

.grey_location a:nth-child(n + 2):hover {
  color: rgba(0, 0, 0, 0.50);
}

.grey_location a:last-child {
  margin-right: 0;
  padding-right: 0;
  background-image: none;
}

.yj_content .white_bg {
  position: relative;
  padding: 50px;
  background-color: var(--white-color);
  border-radius: 20px;
}

.pro_xq_back {
  position: absolute;
  left: -76px;
  top: 0px;
  z-index: 9;
}

.pro_xq_back.on {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
}

.pro_xq_back a {
  display: inline-flex;
  padding: 16px;
  align-items: center;
  border-radius: 10px;
  background: var(--white-color);
  transition: all 0.3s;
}

.pro_xq_back a:hover svg path {
  stroke: var(--white-color);
}

.pro_xq_back a:hover {
  background-color: var(--main-color);
}

.gc_d_box .title {
  padding-bottom: 24px;
  color: var(--dark-color);

  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.gc_d_box .text {
  padding-top: 32px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.gc_d_box .text p {
  padding-bottom: 32px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.gc_d_box .text p:last-child {
  padding-bottom: 0;
}

.gc_d_box .text img {
  display: block;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;
}
.gc_d_box .text video {
  display: block;
  max-width: 100%;
  /* width: auto !important; */
  height: auto !important;
  margin: 0 auto;
}

.gc_last {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: transparent;
}

.gc_last .d_more {
  padding-top: 70px;
  justify-content: center;
}

.gc_last .d_more>div:nth-child(2) {
  margin-left: 30px;
}

.gc_pro_list {
  padding-top: 40px;
}

.gc_pro_list ul {
  margin-left: -11px;
  margin-right: -11px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.gc_pro_list ul li {
  padding: 11px;
  width: 25%;
}

.gc_pro_list .thumb {
  position: relative;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}

.gc_pro_list .thumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
  z-index: -1;
}

.gc_pro_list .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.gc_pro_list .text {
  padding-top: 26px;
}

.gc_pro_list .text .title {
  overflow: hidden;
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gc_pro_list .text .des {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.gc_pro_list .thumb img {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.gc_pro_list a:hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

@media (max-width:991px) {
  .pro_xq_back {
    left: 0;
  }

  .yj_content .white_bg {
    padding: 60px 40px 50px 40px;
  }

}

@media (max-width:767px) {
  .yj_content .white_bg {
    padding: 60px 20px 30px 20px;
  }

  .gc_pro_list ul li {
    width: 50%;
  }

  .gc_pro_list .text {
    padding-top: 16px;
  }

  .gc_last .d_more {
    flex-flow: column;
  }

  .gc_last .d_more>div {
    margin-bottom: 10px;
  }

  .gc_last .d_more>div:nth-child(2) {
    margin-left: 0;
  }

  .gc_last {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .gc_last .d_more {
    padding-top: 40px;
  }

}

/* 案例中心列表 */
.case_top {
  position: relative;
  padding-top: 100px;
  padding-bottom: 90px;
  background-image: url(../images/case_one_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.new_swiper {
  position: relative;
  margin-top: 50px;
  border-radius: 20px;
  background: var(--white-color);
  overflow: hidden;
}

.new_swiper .swiper-wrapper {
  align-items: stretch;
}

.new_swiper .swiper-slide {
  height: auto;
}

.new_top_bg .swiper-container-cube .swiper-cube-shadow {
  opacity: .1;
}

.new_swiper .new_big {
  width: 100%;
  height: 100%;
}

.new_swiper .new_big a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #FFFFFF;
}

.new_swiper .new_big .thumb {
  position: absolute;
  overflow: hidden;
  width: 50%;
  height: 100%;
}

.new_swiper .new_big .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.new_swiper .new_big_r {
  position: relative;
  float: right;
  width: 50%;
  padding: 50px;
  padding-bottom: 135px;
}

.new_swiper .new_big_r .title {
  margin-top: 24px;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.5;
}

.new_swiper .case_logo {
  max-height: 56px;
}

.new_swiper .case_logo img {
  max-height: 100%;
}

.new_swiper .new_big_r .des {
  margin-top: 10px;
  color: #666;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
  height: 90px;
  -webkit-line-clamp: 3;
}

.new_swiper .line {
  margin-top: 30px;
  padding-left: 30px;
  border-left: 1px solid var(--blue-color);
}

.new_swiper .line .p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 32px;
}

.new_swiper .line_01 .t {
  color: var(--black-color);
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.new_swiper .line_02>div:first-child {
  margin-left: -25px;
  margin-right: -25px;
}

.new_swiper .line_02 .loop {
  padding-left: 25px;
  padding-right: 25px;
}

.new_swiper .line_02 .t {
  color: var(--blue-color);
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.new_swiper .line_02 .t em {
  color: var(--black-color);
  text-align: right;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.new_swiper .anan {
  position: absolute;
  right: 56px;
  bottom: 56px;
  display: flex;
  align-items: center;
  z-index: 9;
}

.new_swiper .anan div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  background-color: var(--white-color);
  border: 1px solid #EEE;
  border-radius: 50%;
  cursor: pointer;
}

.new_swiper .anan div:first-child {
  margin-right: 30px;
}

.new_swiper .anan div:hover svg path {
  stroke: var(--blue-color);
}

.new_swiper a:hover .new_big_r .title {
  color: var(--blue-color);
}

.new_swiper .new_big a:hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.all_case_box {
  padding-top: 100px;
  padding-bottom: 30px;
}

.bg_case_list {
  padding-bottom: 100px;
}

.bg_case_list ul {
  margin-left: -13px;
  margin-right: -13px;
}

.bg_case_list ul li {
  padding: 20px 13px;
  width: 25%;
}

@media (max-width:1279px) {
  .new_swiper .new_big_r {
    padding: 40px;
    padding-bottom: 135px;
  }

  .new_swiper .anan {
    right: 40px;
    bottom: 40px;
  }

  .new_swiper .line_02>div:first-child {
    margin-left: -15px;
    margin-right: -15px;
  }

  .new_swiper .line {
    padding-left: 20px;
  }

  .new_swiper .line_02 .loop {
    padding-left: 15px;
    padding-right: 15px;
  }

}

@media (max-width:991px) {
  .new_swiper .new_big_r {
    padding: 40px 30px;
    padding-bottom: 100px;
  }

  .new_swiper .anan {
    right: 30px;
    bottom: 30px;
  }

  .new_swiper .anan div {
    width: 50px;
    height: 50px;
  }

  .new_swiper .anan div:first-child {
    margin-right: 20px;
  }

  .new_swiper .line .p {
    line-height: 26px;
  }

}

@media (max-width:767px) {
  .case_top {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .new_swiper {
    margin-top: 30px;
  }

  .new_swiper .new_big a {
    flex-flow: column;
  }

  .new_swiper .new_big .thumb {
    position: relative;
    width: 100%;
    height: auto;
  }

  .new_swiper .new_big_r {
    width: 100%;
    padding: 30px 26px;
    padding-bottom: 100px;
  }

  .new_swiper .anan {
    right: 26px;
    bottom: 30px;
  }

  .all_case_box {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .bg_case_list ul li {
    width: 100%;
  }

  .bg_case_list {
    padding-top: 20px;
  }

  .bg_case_list {
    padding-bottom: 30px;
  }

  .new_swiper .line {
    padding-left: 16px;
  }

  .new_swiper .new_big_r .des {
    line-height: 28px;
  }

}

/* service center*/
.service_top {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #F7FAFB;
}

.service_top .left {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 500px;
}

.service_top .left .text {
  margin-top: 30px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 28px;
}

.after_list {}

.cards-container {
  margin-left: 60px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.card {
  position: relative;
  margin-left: 20px;
  border-radius: 20px;
  background: var(--white-color);
  padding: 50px;
  flex: 1;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  position: absolute;
  left: 50px;
  top: 0;
  width: 38px;
  height: 5px;
  border-radius: 20px;
  background: var(--blue-color);
}

.card-number {
  color: var(--blue-color);
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  line-height: 0.8;
}

.card-title {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #333;
}

.card-content {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 28px;
}

.cooperative_box {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: var(--white-color);
  overflow: hidden;
}

.cooperative_box .left-panel {
  position: relative;
  width: 50%;
}

.left-panel img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperative_box .right-panel {
  flex: 1;
  padding-left: 95px;
}

.cooperation-modes {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  margin-left: -20px;
  margin-right: -20px;
}

.cooperation-modes .mode-item {
  padding: 20px;
  width: 33.33%;
}

.mode-item {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.mode-icon {
  width: 76px;
  height: 76px;
  background-color: #F7F7F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.mode-text {
  margin-top: 16px;
  color: #333;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 1440px) {
  .card {
    padding: 40px;
  }

  .cooperative_box .right-panel {
    padding-left: 60px;
  }
}

@media (max-width: 1366px) {
  .card {
    padding: 30px;
  }

  .card-header {
    left: 30px;
  }

  .service_top .left {
    width: 40%;
  }

  .cards-container {
    flex: 1;
  }

  .cooperative_box .right-panel {
    padding-left: 50px;
  }


}

@media (max-width: 1280px) {
  .mode-text {
    max-width: 116px;
  }

  .cooperation-modes {
    margin-left: -15px;
    margin-right: -15px;
  }

  .cooperation-modes .mode-item {
    padding: 20px 15px;
  }


}

@media (max-width: 1200px) {
  .cards-container {
    margin-left: 20px;
  }

}

@media (max-width: 991px) {
  .service_top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .service_top .container>div:first-child {
    flex-flow: column;
  }

  .service_top .left {
    width: 100%;
    max-width: inherit;
  }

  .cards-container {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    flex: inherit;
  }

  .cards-container .card:first-child {
    margin-left: 0;
  }

  .cooperative_box {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cooperative_box>.container {
    flex-flow: column;
  }

  .cooperative_box .left-panel {
    width: 100%;
  }

  .cooperative_box .right-panel {
    padding-left: 0;
    padding-top: 50px;
  }

  .mode-text {
    max-width: inherit;
  }


}

@media (max-width: 767px) {
  .service_top {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cards-container {
    margin-top: 30px;
    flex-flow: column;
  }

  .card {
    padding: 30px 20px;
    margin-left: 0;
    margin-top: 20px;
  }

  .card-header {
    left: 20px;
    width: 30px;
    height: 3px;
  }

  .cooperative_box {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .mode-icon {
    padding: 8px;
    width: 50px;
    height: 50px;

  }

  .cooperation-modes {
    margin-left: -10px;
    margin-right: -10px;
  }

  .cooperation-modes .mode-item {
    padding: 20px 10px;
    width: 50%;
  }

  .mode-text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }



}



/* message */
.contact_last {
  position: relative;
  padding-top: 130px;
  padding-bottom: 45px;
  overflow: hidden;
  z-index: 1;
}

.bg_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 520px;
  z-index: -1;
}

.bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact_last .white_bg {
  padding: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: var(--white-color);
  overflow: hidden;
}

.contact_last .white_bg .title {
  color: var(--dark-color);

  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.contact_last .white_bg .p {
  padding-top: 16px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.message_form .item_right {
  padding-top: 18px;
  margin-left: -12px;
  margin-right: -12px;
  overflow: hidden;
}

.message_form .col-3 {
  width: 33.33%;
  float: left;
  padding: 16px 12px;
}

.message_form .colw100 {
  float: left;
  width: 100%;
  padding: 16px 12px;
}

.message_form .col_z>span {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.message_form .col_z>span>em {
  margin-left: 8px;
  color: var(--blue-color);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.message_form .input-container {
  margin-top: 16px;
  position: relative;
  background: #FAFAFA;
}

.message_form .input-container input {
  outline: none;
  z-index: 1;
  padding: 12px 20px;
  position: relative;
  background: none;
  width: 100%;
  height: 64px;
  border: 0;
  color: #333;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  text-align: left;
}

.message_form .input_select_box .span input {
  padding-right: 40px;
  cursor: pointer;
}

.message_form .input_select_box .icon {
  width: 24px;
  height: 24px;
  right: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/chevron-down.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.message_form .input_select_box .drop_down_ {
  position: absolute;
  left: 0;
  top: 64px;
  width: 100%;
  background: #F5F6F8;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-top: none;
  padding-bottom: 10px;
  z-index: 9;
}

.message_form .input_select_box .drop_down_ p {
  padding: 8px 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.message_form .input-container textarea {
  outline: none;
  z-index: 1;
  position: relative;
  background: none;
  width: 100%;
  height: 230px;
  padding: 20px;
  line-height: 26px;
  border: 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  resize: none;
  font-family: "Microsoft YaHei";
}

.message_form .yanz {
  padding-top: 16px;
}

.message_form .yanz .input-container {
  margin-top: 0;
  width: 294px;
}

.message_form .message_code {
  margin-left: 16px;
}

.message_form .message_code img {
  height: 64px;
}

.message_form .text-area label {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: var(--main-color);
}

.message_form_text {
  padding-top: 28px;
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.message_form .last_button {
  padding-top: 40px;
}

.more_n button {
  display: flex;
  width: 160px;
  height: 58px;
  padding: 16px 48px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.00);
  backdrop-filter: blur(4px);
  color: #333;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}

.mess_submit {
  margin-left: 16px;
  width: 160px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-color);
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}

.more_n button span,
.mess_submit span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.more_n button span svg,
.mess_submit svg {
  margin-left: 10px;
}

.message_form .input-container input::-webkit-input-placeholder,
.message_form textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
  font-family: "Microsoft YaHei";
}

.message_form .input-container input::-moz-placeholder,
.message_form textarea::-moz-placeholder {
  color: #999;
  font-size: 16px;
  font-family: "Microsoft YaHei";
}

.message_form .input-container input::-ms-input-placeholder,
.message_form textarea::-ms-input-placeholder {
  color: #999;
  font-size: 16px;
  font-family: "Microsoft YaHei";
}

@media (max-width:991px) {
  .message_form .col-3 {
    width: 50%;
  }

}

@media (max-width:767px) {
  .contact_box_bottom {
    margin-top: 20px;
    padding-bottom: 30px;
  }

  .contact_last .white_bg {
    padding: 40px 20px;
  }

  .bg_img {
    height: 400px;
  }

  .message_form .item_right {
    margin-left: 0;
    margin-right: 0;
  }

  .message_form .col-3 {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .message_form .yanz {
    display: block;
  }

  .message_form .yanz .input-container {
    width: 100%;
  }

  .message_form .message_code {
    margin-left: 0;
    margin-top: 30px;
  }

  .message_form .mess_submit {
    height: 50px;
  }

  .message_form .more_n button {
    width: 100%;
    height: 50px;
    padding: 10px 12px;
  }

  .message_form .last_button .more_n,
  .mess_submit {
    width: calc(50% - 10px);
  }

  .message_form .last_button .more_n a {
    display: block;
    width: 100%;
  }

  .message_form .input-container textarea {
    height: 200px;
  }

  .message_form .input-container input::-webkit-input-placeholder,
  .message_form textarea::-webkit-input-placeholder {
    font-size: 14px;
  }

  .message_form .input-container input::-moz-placeholder,
  .message_form textarea::-moz-placeholder {
    font-size: 14px;
  }

  .message_form .input-container input::-ms-input-placeholder,
  .message_form textarea::-ms-input-placeholder {
    font-size: 14px;
  }

  .message_form .input-container input {
    height: 58px;
  }

  .message_form .message_code img {
    height: 58px;
  }

  .message_form .input_select_box .drop_down_ {
    top: 58px;
  }

  .contact_last {
    padding-bottom: 10px;
  }

  .bg_img .index_five_img>div:first-child {
    display: none;
  }

  .box_list01 .two_t {
    font-size: 18px;
    line-height: 1.2;
  }
}

/* list */
.new_box {
  padding-top: 100px;
  padding-bottom: 40px;
}

.new_box .left {
  flex: 1;
  padding-right: 85px;
}

.new_box .right {
  order: 2;
}

.new_box .right .grey_bg {
  padding: 50px;
  width: 435px;
  border-radius: 10px;
  background: #F5F5F5;
}

.new_box .right .grey_bg .title {
  color: #000;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* 搜索 */
.formsear {
  margin-top: 45px;
}

.formsear .form-control {
  font-size: 16px;
  color: #888888;
}

.formsear select.form-control {
  position: relative;
  border: none;
  box-shadow: none;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.selwork:hover {
  background: url(../images/select02.png) no-repeat right;
}

.selwork.mm {
  background: url(../images/select02.png) no-repeat right;
}

.selwkuang {
  position: relative;
  height: 1px;
  width: 100%;
  z-index: 999;
}

.selwse {
  display: none;
  position: absolute;
  background: var(--white-color);
  border-top: none;
  padding: 16px;
  top: 0px;
  width: 100%;
  left: 0;
  border-radius: 0 0 10px 10px;

}

.selwse li {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  cursor: pointer;
}

.serbuton {
  background-color: var(--blue-color);
  color: #fff;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  height: 58px;
  border: none;
  border-radius: 10px;
  -webkit-appearance: none;
  /* 移除iOS默认样式 */
  -moz-appearance: none;
  appearance: none;

}

@supports (-webkit-touch-callout: none) {
  .serbuton {
    -webkit-tap-highlight-color: transparent;
  }
}

.serch2 {
  margin-bottom: 20px;
  font-size: 16px;
  width: 100%;
  display: block;
  border-radius: 10px;
  background: var(--white-color);
  border: none;
  height: 58px;
  color: var(--black-color);
  line-height: 26px;
  padding: 16px;
}

.serch2::-webkit-input-placeholder {
  color: rgba(101, 113, 136, 0.50);

  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}


.serch2 .input-container input::-ms-input-placeholder {
  color: rgba(101, 113, 136, 0.50);

  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.selectk {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
  border: none;
  box-shadow: none;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/select.svg) no-repeat 95%;
  border-radius: 10px;
  background-color: var(--white-color);
  font-size: 16px;
  color: #888888;
  height: 58px;
  cursor: pointer;
}

.selwork {
  font-size: 16px;
  color: rgba(101, 113, 136, 0.50);

  padding: 16px;
  border: none;
  border-radius: 0;
  line-height: 26px;
  outline: 0;
  box-shadow: none !important;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.selwork.selected {
  color: var(--black-color);
}

.selwkuang {
  position: relative;
  height: 1px;
  width: 100%;
  transition: height 0.5s;
  z-index: 999;
}

.show .selwkuang {
  height: auto;

}

.show .selwkuang .selwse {
  display: block;
  max-height: 234px;
  overflow-y: auto;
}

.selectk.show {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.new_list {
  padding-bottom: 70px;
}

.new_list ul li a {
  position: relative;
  padding: 32px 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

.new_list ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.10);
  width: 100%;
  height: 1px;
}

.new_list ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--main-color);
  width: 0;
  height: 2px;
  transition: width 0.8s ease-in-out;
}

.new_list .thumb {
  position: relative;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.new_list .thumb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.20);
  opacity: 0;
  z-index: 1;
}

.new_list .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.new_list .thumb .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: 2;
}

.new_list .thumb .icon>i {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.new_list .thumb .icon>i img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
  width: 22px;
  height: 22px;
  transition: left .4s;
}

.new_list .icon>i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: var(--white-color);
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.new_list .new_list_r {

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(100% - 300px);
  padding-left: 40px;
  transition: all 0.4s ease;
}

.new_list .new_list_r>div:first-child {
  width: 100%;
}

.new_list .new_list_r .time {
  color: var(--blue-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 290;
}

.new_list .new_list_r .time strong {
  position: relative;
  padding-right: 16px;
  margin-right: 16px;
  font-weight: 290;
}

.new_list .new_list_r .time strong::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--blue-color);
}

.new_list .new_list_r .time span {
  font-family: 'Archivo';
  font-weight: 300;
  line-height: normal;
}

.new_list .new_list_r .title {
  color: var(--dark-color);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.new_list .new_list_r .text {
  margin-top: 16px;
  overflow: hidden;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.new_list a:hover .thumb>i {
  transform: scale(1.05);
}

.new_list a:hover .new_list_r .title {
  color: var(--blue-color);
}

.new_list a:hover .new_list_r .time {
  color: #999;
}

.new_list a:hover .time strong::before {
  background-color: #999;
}

.new_list ul li a:hover::before {
  opacity: 0;
}

.new_list ul li a:hover::after {
  width: 100%;
}

.new_list a:hover .thumb::before {
  opacity: 1;
}

.new_list a:hover .thumb .icon {
  opacity: 1;
}

.new_list a:hover .thumb .icon>i::before {
  width: 100%;
  height: 100%;
}

.new_list a:hover .thumb .icon>i img {
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}


@media (max-width:1440px) {
  .new_box .right .grey_bg {
    padding: 40px;
    width: 400px;
  }

}

@media (max-width:1440px) {
  .new_box .right .grey_bg {
    padding: 30px;
    width: 350px;
  }

}


@media (max-width:1280px) {
  .new_box .left {
    padding-right: 50px;
    width: calc(100% - 300px);
  }

  .new_box .right .grey_bg {
    width: 300px;
  }


}

@media (max-width:1200px) {

  .new_list .thumb {
    width: 250px;
  }

  .new_list .new_list_r {
    width: calc(100% - 250px);
    padding-left: 30px;
  }

}

@media (max-width:991px) {
  .new_box .left {
    padding-right: 50px;
    width: calc(100% - 250px);
  }

  .new_list .thumb {
    width: 200px;
  }

  .new_list .new_list_r {
    width: calc(100% - 200px);
    padding-left: 30px;
  }

  .new_box .right .grey_bg {
    padding: 30px 20px;
    width: 250px;

  }

}


@media (max-width:767px) {

  .new_box {
    padding-top: 50px;
    padding-bottom: 0;
    flex-flow: column;
  }

  .new_list_box {
    padding: 50px 0 30px 0;
  }

  .new_box .right .grey_bg {
    padding: 30px 20px;
    width: 100%;
  }

  .new_list {
    padding-bottom: 40px;
  }

  .new_list ul li a {
    padding-top: 32px;
    padding-bottom: 20px;
  }

  .new_list a {
    flex-wrap: wrap;
  }

  .new_box .left {
    padding-right: 0;
    width: 100%;
  }

  .new_list .thumb {
    order: inherit;
    width: 100%;
  }

  .new_list .new_list_r {
    padding-left: 0;
    padding-top: 25px;
    width: 100%;
  }

  .new_box .right {
    order: inherit;
  }

  .new_list .new_list_r .time {
    padding-top: 20px;
    font-size: 16px;
  }

}

/* article */
.pb80 {
  padding-bottom: 80px;
}

.article_n .article_left {
  float: left;
  width: calc(100% - 432px);
  padding-right: 56px;
  margin-right: 56px;
  border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.article_n .article_right {
  float: left;
  width: 376px;
  position: sticky;
  top: 0;
  z-index: 9;
}

.article_n .article_right .s_t {
  padding-bottom: 24px;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.5;
}

.article_left .article_title {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.article_left .article_title .title {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.5;
}

.article_left .article_title .mid {
  padding-top: 16px;
}

.article_left .article_title .mid .left {
  font-family: 'Archivo';
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.article_left .article_title .mid .left img {
  margin-right: 8px;
}

.article_left .article_title .mid .left .line {
  margin-left: 19px;
  margin-right: 19px;
  width: 1px;
  height: 10px;

  background-color: rgba(0, 0, 0, 0.10);
}

.article_left .article_title .right .share_button i {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
}

.share_button .i {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  cursor: pointer;
}

.share_button .i:last-child {
  margin-right: 0;
}

.share_button .bigger {
  background-image: url(../images/big_jia.svg);
}

.share_button .smaller {
  background-image: url(../images/big_jian.svg);
}

.share_button .share_btn {
  background-image: url(../images/new_xq_share.svg);
}

.share_button .i:hover {
  background-color: #EAEAEA;
  opacity: 1;
}

.share_button .bigger:hover {
  background-image: url(../images/big_jia_red.svg);
}

.share_button .smaller:hover {
  background-image: url(../images/big_jian_red.svg);
}

.share_button .share_btn:hover {
  background-image: url(../images/new_xq_share_red.svg);
}


.article_text {
  padding-top: 32px;
}

.article_left .article_text p {
  padding-bottom: 30px;

  color: #666;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;

}

.article_left .article_text p:last-child {
  padding-bottom: 0;
}

.article_left .article_text p img {
  display: block;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;
}

.article_right .thumb {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.article_right .thumb i {

  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-transform 1.3s;
  transition: -webkit-transform 1.3s;
  -o-transition: transform 1.3s;
  transition: transform 1.3s;
  transition: transform 1.3s, -webkit-transform 1.3s;
  -webkit-transition: transform 1.3s;
}

.article_right .thumb .article_r_text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.article_right .thumb .article_r_text .time span {
  color: rgba(255, 255, 255, 0.5);
  font-family: Archivo;
  font-size: 16px;
  padding-left: 26px;
  background-image: url(../images/new_xq_r_time.svg);
  background-size: 18px 18px;
  background-position: left center;
  background-repeat: no-repeat;
}

.article_right .thumb .article_r_text .t {
  margin-top: 8px;
  color: var(--white-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.article_right .thumb a:hover i {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.article_right .ul li {
  padding-top: 24px;
}

.article_right .ul li a {
  display: block;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.article_right .ul .time span {
  color: rgba(102, 102, 102, 0.5);
  font-family: Archivo;
  font-size: 16px;
  padding-left: 26px;
  background-image: url(../images/new_xq_r_time2.svg);
  background-size: 18px 18px;
  background-position: left center;
  background-repeat: no-repeat;
}

.article_right .ul .t {
  margin-top: 8px;
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  height: 64px;
}

.article_right .ul a:hover .t {
  color: var(--main-color);
}


.article_right .up_ {
  padding-top: 32px;
}

.article_right .up_ a {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.article_right .up_ a:last-child {
  margin-bottom: 0;
}

.article_right .up_ .t {
  flex: 1;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.article_right .up_ a:hover .t {
  color: var(--main-color);
}

/* 分享 */

.share_mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  z-index: 1111;
  display: none;
}

.share_box {
  position: fixed;
  top: 50%;
  width: 298px;
  padding: 0 20px;
  border-radius: 24px;
  background: #FFF;
  left: 50%;
  z-index: 11111;
  display: none;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
}

.share_box .share_list {
  padding-top: 46px;
  padding-bottom: 30px;
}

.share_box .sub {
  text-align: center;
  color: var(--dark);
  font-family: "Rubik";
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.share_box .share_list ul {
  display: flex;
  justify-content: space-around;
}

.share_box .share_list ul li {
  padding-top: 22px;
  width: 33%;
  cursor: pointer;
}

.share_box .share_list ul li p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 8px;
  line-height: 24px;
  text-align: center;
}

.cancel_share {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  font-size: 0;
  background-image: url(../images/share_close.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  z-index: 9;
}

.share_bg {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--main-color);
  margin: 0 auto;
  text-align: center;
}

@media (max-width:1365px) {
  .article_n .article_left {
    width: calc(100% - 356px);
    padding-right: 56px;
    margin-right: 56px;
  }

  .article_n .article_right {
    width: 300px;
  }

}

@media (max-width:1280px) {
  .article_n .article_left {
    width: calc(100% - 340px);
    padding-right: 40px;
    margin-right: 40px;
  }

  .article_n .article_right {
    width: 300px;
  }

}

@media (max-width:1200px) {
  .article_n .article_left {
    width: calc(100% - 310px);
    padding-right: 40px;
    margin-right: 40px;
  }

  .article_n .article_right {
    width: 270px;
  }

}

@media (max-width:991px) {

  .article_cont .white_bg {
    padding: 50px 30px;
  }

  .article_n .article_left {
    width: calc(100% - 230px);
    padding-right: 30px;
    margin-right: 30px;
  }

  .article_n .article_right {
    width: 200px;
  }

  .article_left .article_title .mid .left .line {
    margin-left: 10px;
    margin-right: 10px;
  }

}

@media (max-width:767px) {
  .new_bottom {
    padding-top: 50px;
  }

  .article_cont {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .article_cont .white_bg {
    padding: 40px 20px 30px 20px;
  }

  .article_n .article_left {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .article_n .article_right {
    padding-top: 30px;
    width: 100%;
    position: relative;
  }

  .article_n {
    padding-top: 0;
  }

  .article_left .article_title .mid {
    padding-top: 16px;
    flex-wrap: wrap;
  }

  .article_left .article_title .mid .left {
    width: 100%;
    padding-bottom: 15px;
  }

  .article_left .article_title {
    padding-bottom: 16px;
  }

  .article_right .ul .t {
    font-size: 16px;
    line-height: 26px;
    height: auto;
  }

  .fen {
    font-size: 20px;
  }

  .article_right .thumb .article_r_text .t {
    line-height: 26px;
  }
}

/* video */
.video_top {
  position: relative;
  margin-top: 70px;
  padding-top: 175px;
  padding-bottom: 175px;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}

.video_top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, #000 100%);
  z-index: -1;
}

.video_top .video_k {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.video_top video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_top .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 115px;
  width: 100%;
}

.video_top .text .big_t {
  color: var(--white-color);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.video_top .text .small_t {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.video_top .play_video {
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video_top .play_video span {
  position: relative;
  width: 16px;
  z-index: 1;
}

.video_top .play_video span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.video_top .play_video span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.play_video span::after {
  animation: breathBefore 1.4s infinite;
}

.play_video span::before {
  animation: breathBefore 1.3s infinite;
}


@keyframes breathBefore {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.video_box {
  padding-bottom: 20px;
  overflow: hidden;
}

.video_list {
  padding-top: 36px;
  padding-bottom: 30px;
  overflow: hidden;
}

.video_list ul {
  margin-left: -42px;
  margin-right: -42px;
  display: flex;
  flex-wrap: wrap;
}

.video_list ul li {
  width: 33.33%;
  padding: 42px;
}

.video_list a {
  display: block;
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: var(--white-color);
  transition: background-color .4s;
  overflow: hidden;
}

.video_list .sca {
  position: relative;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 1;
  overflow: hidden;
}

.video_list .sca::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .1);
  z-index: 1;
}

.video_list .sca .i {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transition: transform .3s;
}

.video_list .sca .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  z-index: 2;
}

.video_list .sca .icon img {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.video_list .bottom {
  padding: 32px 0;
  width: 100%;
}

.video_list .bottom .t {
  flex: 1;
  margin-right: 8px;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.video_list .bottom .video_time {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.video_list .line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.10);
}

.video_list .line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  transition: width 0.6s;
}

.video_list a:hover .line::before {
  width: 100%;
}

.video_list a:hover .sca .i {
  -webkit-transform: translate(-50%, -50%) scale(1.03);
  -ms-transform: translate(-50%, -50%) scale(1.03);
  transform: translate(-50%, -50%) scale(1.03);
}

.video_list a:hover .sca .icon img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width:1366px) {

  .video_list ul {
    margin-left: -32px;
    margin-right: -32px;
  }

  .video_list ul li {
    padding: 32px;
  }

  .video_top .text {
    padding: 0 100px;
  }

  .video_top {
    padding-top: 150px;
    padding-bottom: 150px;
  }

}

@media (max-width:1280px) {
  .video_top .text {
    padding: 0 80px;
  }

  .video_top .play_video {
    width: 100px;
    height: 100px;
  }

  .video_top .play_video span::before {
    width: 80px;
    height: 80px;
  }

  .video_top .play_video span::after {
    width: 100px;
    height: 100px;
  }

  .video_list ul {
    margin-left: -25px;
    margin-right: -25px;
  }

  .video_list ul li {
    padding: 25px;
  }


}

@media (max-width:991px) {
  .video_top {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .video_top .text {
    padding: 0 60px;
  }

  .video_top .play_video {
    width: 90px;
    height: 90px;
  }

  .video_top .play_video span::before {
    width: 70px;
    height: 70px;
  }

  .video_top .play_video span::after {
    width: 90px;
    height: 90px;
  }

  .video_list .sca .icon {
    width: 40px;
    height: 40px;
  }

  .video_list ul {
    margin-left: -16px;
    margin-right: -16px;
  }

  .video_list ul li {
    padding: 16px;
  }

  .video_list .bottom {
    padding: 25px 0;
  }



}

@media (max-width:767px) {
  .video_top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .video_top .text {
    flex-wrap: wrap;
    justify-content: center;
  }

  .video_top .text {
    padding: 0 20px;
    text-align: center;
  }

  .video_top .text .big_t {
    max-width: 290px;
    margin: 0 auto;
    font-size: 24px;
  }

  .video_top .text .small_t {
    max-width: 290px;
    margin: 0 auto;
    margin-top: 4px;
  }

  .video_list ul li {
    width: 50%;
  }

  .video_top .play_video {
    margin-top: 50px;
    width: 60px;
    height: 60px;
  }

  .video_top .play_video span::before {
    width: 45px;
    height: 45px;
  }

  .video_top .play_video span::after {
    width: 60px;
    height: 60px;
  }

  .video_top .play_video span {
    width: 10px;
  }

}

@media (max-width:540px) {

  .video_list ul li {
    width: 100%;
  }

}

/* job 培养晋升*/
.pyjs_top {
  padding-top: 100px;
}

.pyjs_text {
  max-width: 725px;
  margin: 0 auto;
  margin-top: 16px;
  color: rgba(51, 51, 51, 0.80);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
}

.pyjs_top_list {
  padding-top: 50px;
  padding-bottom: 20px;
}

.pyjs_top_list .box {
  display: flex;
  justify-content: space-between;
}

.pyjs_top_list .tx_pic {
  position: relative;
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
}

.pyjs_top_list .tx_pic img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pyjs_top_list ul li {
  padding-bottom: 80px;
}

.pyjs_top_list .tx_cont {
  width: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.tx_cont .line {
  margin-top: 30px;
  border-bottom: 1px solid #DDD;
}

.tx_cont .tx_title {
  align-items: flex-end;
}

.tx_cont .tx_title .right {
  width: 60px;
}

.tx_cont .tx_title .number {
  color: #EDEFF2;
  font-family: 'Archivo';
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.8;
}

.tx_cont .tx_title .title {
  margin-top: 10px;
  color: var(--black-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tx_cont .tx_text {
  padding-top: 50px;

}

.tx_cont .tx_text .top p {
  padding-bottom: 20px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.tx_cont .tx_text .top p:last-child {
  padding-bottom: 0;
}

.tx_cont .tx_text .tx_loop p {
  position: relative;
  padding-left: 16px;
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.tx_cont .tx_text .tx_loop p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #666;
}

.pyjs_top_list ul li:nth-child(odd) .tx_cont {
  padding-left: 50px;
}

.pyjs_top_list ul li:nth-child(even) .tx_cont {
  padding-right: 50px;
}

.pyjs_top_list ul li:nth-child(even) .tx_pic {
  order: 2;
}

.pyjs_bottom {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F5F7FA;
}

.pyjs_bottom .background {
  position: relative;
  margin-top: 50px;
  display: flex;
  align-items: flex-end;
  padding-top: 36rem;
  border-radius: 20px;
  max-height: 880px;
  overflow: hidden;
  z-index: 1;
}

.pro_infor .background .bg_pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pro_infor .background .bg_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.pyjs_bottom .bottom {
  position: relative;
  padding: 120px 50px 50px 50px;
  width: 100%;
  z-index: 1;

}

.pyjs_bottom .bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  opacity: 0.5;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
  z-index: -1;
}

.infor_swiper .swiper-slide {
  height: auto;
  /* cursor: pointer; */
}

.infor_swiper .white_bg {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(8px);
}

.infor_swiper .white_bg .title {
  color: var(--dark-color);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.infor_swiper .white_bg .text {
  margin-top: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.infor_swiper .white_bg:hover {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(0px);
}

.infor_button {
  padding-top: 32px;
  justify-content: center;
}

.infor_button .infor_b {
  display: flex;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  cursor: pointer;
}

.infor_button .infor-pagination {
  position: relative;
  margin-left: 24px;
  margin-right: 24px;
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.20);
}

.infor_button .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--blue-color);
}

.infor_button .infor_b:hover {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
}

.infor_button .infor_b.swiper-button-disabled {
  cursor: default;
  pointer-events: none;
}

@media (max-width:1680px) {

  .tx_cont .tx_title .number {
    font-size: 92px;
  }

}

@media (max-width:1580px) {

  .tx_cont .tx_title .number {
    font-size: 86px;
  }

}

@media (max-width:1440px) {
  .pyjs_bottom .background {
    padding-top: 26rem;
  }

  .tx_cont .tx_title .number {
    font-size: 76px;
  }

}

@media (max-width:1366px) {
  .pyjs_bottom .background {
    padding-top: 26rem;
  }

  .tx_cont .tx_title .number {
    font-size: 66px;
  }

}


@media (max-width:1280px) {
  .infor_swiper .white_bg {
    padding: 30px;
  }

  .infor_swiper .white_bg .text {
    font-size: 16px;
  }

  .pyjs_bottom .background {
    padding-top: 20rem;
  }

}

@media (max-width:1279px) {
  .pyjs_bottom .background {
    padding-top: 16rem;
  }

  .tx_cont .tx_title .right {
    width: 50px;
  }

  .tx_cont .tx_text {
    padding-top: 30px;
  }


}

@media (max-width:991px) {
  .pyjs_top {
    padding-top: 80px;
  }

  .pyjs_bottom .background {
    padding-top: 10rem;
  }

  .pyjs_bottom .bottom {
    padding: 100px 30px 30px 30px;
  }

  .pyjs_top_list .box {
    flex-flow: column;
  }

  .pyjs_top_list ul li {
    padding-bottom: 30px;
  }

  .pyjs_top_list .tx_pic,
  .pyjs_top_list .tx_cont {
    width: 100%;
  }

  .pyjs_top_list .tx_cont {
    padding-top: 30px;
  }

  .pyjs_top_list ul li:nth-child(odd) .tx_cont {
    padding-left: 0px;
  }

  .pyjs_top_list ul li:nth-child(even) .tx_cont {
    padding-right: 0;
  }

  .pyjs_top_list ul li:nth-child(even) .tx_pic {
    order: inherit;
  }

}


@media (max-width:767px) {
  .pyjs_top {
    padding-top: 50px;
  }

  .tx_cont .line {
    margin-top: 20px;
  }

  .tx_cont .tx_title .number {
    font-size: 46px;
  }

  .pyjs_bottom {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .infor_swiper .white_bg {
    padding: 30px 20px;
  }

  .infor_swiper .white_bg .text {
    margin-top: 16px;
  }

  .tx_cont .tx_title .right {
    width: 40px;
  }

  .pyjs_bottom .bottom {
    padding: 60px 20px 30px 20px;
  }


}

/* job list */
.job_box {
  padding-top: 80px;
}

.job_menu {}

.job_menu ul {
  display: flex;
  justify-content: center;
}

.job_menu ul li {
  padding: 10px;
}

.job_menu ul li a {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #666;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: all .3s;
}

.job_menu .active a,
.job_menu ul li a:hover {
  border-color: var(--blue-color);
  background: var(--blue-color);
  color: var(--white-color);
}


.job_loop {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  background-color: #F4F4F4;
  display: none;
  overflow: hidden;
  transition: max-height 0.5s ease 0.5s;
}

.job_list {
  padding-top: 30px;
  padding-bottom: 50px;
}

.job_list .no1 {
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
}

.job_list .job_title {
  position: relative;
  padding: 32px 40px;
  background: #F4F4F4;
  cursor: pointer;
}

.job_list .job_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: var(--blue-color);
}

.job_title .people {
  min-width: 200px;
}

.job_title .job_position {
  min-width: 45%;
  color: var(--black-color);
  font-weight: 700;
}

.job_title .job_addess {
  font-size: 16px;
  font-weight: 400;
}


.job_list .no1 .job_title:hover .job_jt span img:nth-child(2) {
  left: 0;
}

.job_list .job_jt span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.10);
  transition: all 0.4s;
  overflow: hidden;
}

.job_list .job_jt span img:nth-child(2) {
  display: none;
}

.job_list .no1 .job_title:hover .job_jt span,
.job_list .no1.active .job_jt span {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
}

.job_list .no1 .job_title:hover .job_jt span img:first-child,
.job_list .no1.active .job_jt span img:first-child {
  display: none;
}

.job_list .no1 .job_title:hover .job_jt span img:nth-child(2),
.job_list .no1.active .job_jt span img:nth-child(2) {
  display: block;
}

.job_loop .accordion-body {
  padding: 48px;
}

.job_loop .accordion-body .accordion-body-title {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.job_loop .accordion-body .accordion-body-list {
  padding-top: 16px;
  padding-bottom: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.job_loop .public_button {
  position: relative;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.00);
  backdrop-filter: blur(4px);
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  line-height: 26px;
  z-index: 1;
}

.job_loop .public_button svg {
  margin-left: 10px;
}

.job_loop .public_button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--blue-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.job_loop .public_button:hover:before {
  width: 100%;
}

.job_loop .public_button:hover svg path {
  stroke: var(--white-color);
}

.job_loop .public_button:hover {
  color: var(--white-color);
  border-color: var(--main-color);
}

@media (max-width:1279px) {
  .job_title .job_position {
    min-width: 30%;
  }

  .job_title .people {
    min-width: 150px;
  }

}

@media (max-width:991px) {
  .job_list .job_title {
    padding-left: 30px;
    padding-right: 30px;
  }

  .job_loop .accordion-body {
    padding: 30px;
  }

  .job_title .job_position {
    font-size: 20px;
  }

  .job_title .job_addess {
    font-size: 16px;
  }

  .job_title .people {
    min-width: 120px;
  }

}

@media (max-width:767px) {
  .job_box {
    padding-top: 40px;
  }

  .job_list {
    padding-bottom: 30px;
  }

  .job_list .job_title {
    flex-wrap: wrap;
    padding-left: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .job_title .job_position {
    font-size: 18px;
  }

  .job_title .job_addess {
    padding-top: 8px;
    font-size: 14px;
    flex-wrap: wrap;

  }

  .job_title .people {
    width: 100%;
  }

  .job_title .job_jt {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .job_list .job_jt span {
    width: 36px;
    height: 36px;
  }

  .job_loop .accordion-body {
    padding: 30px 20px;
  }

  .job_loop .accordion-body .accordion-body-list {
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 20px;
  }

  .job_loop .public_button {
    padding: 12px 24px;
    font-size: 16px;

  }

  .job_list .job_title::before {
    top: 30px;
    transform: inherit;
  }
}

/* job form */
.job_form {
  position: relative;
  padding-top: 0px;
  z-index: 1;
}

.job_form::before {
  content: '';
  position: absolute;
  top: 0;
  height: 30%;
  width: 100%;
  background-color: #F7F9FA;
  z-index: -1;
}

.job_form::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 70%;
  width: 100%;
  background-color: #FFFFFF;
  z-index: -1;
}

.job_form_top {
  padding-top: 10px;
}

.job_form_top .s_t {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.job_form_top .b_t {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.5;
}

.job_form_top .right a {
  display: flex;
  align-items: center;
  padding: 16px 33px;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #D2D2D2;
  transition: all .3s;
}

.job_form_top .right span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: #666;
}

.job_form_top .right span svg {
  margin-right: 8px;
}

.job_form_top .right a:hover {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
}

.job_form_top .right a:hover span {
  color: var(--white-color);
}

.job_form_top .right a:hover span svg path {
  stroke: var(--white-color);
}

.job_form_cont {
  margin-top: 40px;
  padding: 56px;
  border-radius: 20px;
  background: var(--white-color);
  overflow: hidden;
}

.job_form_cont .job_form_item {
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  ;
}

.job_form_cont .job_form_item.job_form_last {
  border-bottom: none;
  margin-bottom: 0;
}

.job_form_cont .job_form_item .item_left {
  width: 30%;
  color: var(--dark-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.job_form_cont .job_form_item .item_right {
  width: 70%;
}

.item_right {
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  flex-wrap: wrap;
}

.item_right .col {
  width: 50%;
  padding: 16px 12px;
  float: left;
}

.item_right .colw100 {
  width: 100%;
  padding: 16px 12px;
}

.item_right .col_z>span {
  display: block;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.item_right .col_z>span>em {
  margin-left: 8px;
  color: var(--blue-color);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.item_right .input-container {
  margin-top: 16px;
  position: relative;
  background-color: #FAFAFA;
  border-radius: 6px;

}

.item_right .input-container input {
  outline: none;
  z-index: 1;
  padding: 12px 20px;
  position: relative;
  background: none;
  width: 100%;
  height: 56px;
  border: 0;
  color: #333;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  text-align: left;
}

.item_right .input-container .date_bir {
  background-size: 24px;
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  background-image: url(../images/chevron-down.svg);
}

.item_right .input-container input[type="date"] {
  -webkit-appearance: none;
  text-align: left;
}

.input_select_box .icon {
  width: 24px;
  height: 24px;
  right: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/chevron-down.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.input_select_box .drop_down_ {
  position: absolute;
  left: 0;
  top: 56px;
  width: 100%;
  background: #FAFAFA;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-top: none;
  padding-bottom: 10px;
  z-index: 9;
}

.input_select_box .drop_down_ p {
  padding: 8px 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.item_right .input-container textarea {
  outline: none;
  z-index: 1;
  position: relative;
  background: none;
  width: 100%;
  height: 160px;
  padding: 20px;
  line-height: 26px;
  border: 0;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 400;
  resize: none;
  font-family: "Microsoft YaHei";
}

.text-area label {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: var(--blue-color);
}

.job_form_item .input-container input::-webkit-input-placeholder,
.job_form_item textarea::-webkit-input-placeholder {
  color: #C5C5C5;
  font-size: 16px;
  font-family: "Microsoft YaHei";
}

.job_form_item .input-container input::-moz-placeholder,
.job_form_item textarea::-moz-placeholder {
  color: #C5C5C5;
  font-size: 16px;
  font-family: "Microsoft YaHei";
}

.job_form_item .input-container input::-ms-input-placeholder,
.job_form_item textarea::-ms-input-placeholder {
  color: #C5C5C5;
  font-size: 16px;
  font-family: "Microsoft YaHei";
}

.item_right .yanz {
  padding-top: 16px;
}

.item_right .yanz .input-container {
  margin-top: 0;
  width: 348px;
}

.item_right .message_code {
  margin-left: 16px;
}

.item_right .message_code img {
  width: 128px;
  height: 56px;
}

.item_right .job_index_more {
  padding: 16px 8px;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 58px;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  cursor: pointer;
}

.item_right .border_grey {
  border: 1px solid var(--dark-color);
  background: rgba(255, 255, 255, 0.00);
  backdrop-filter: blur(4px);
  color: var(--dark-color);
}

.item_right .border_black {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  backdrop-filter: blur(4px);
  color: #FAFAFA;

}

.item_right .pt0 {
  padding-top: 0;
}

@media (max-width:991px) {
  .job_form_cont {
    padding: 50px 40px;
  }

}

@media (max-width:767px) {
  .job_form_top>div:first-child {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .job_form_top>div:first-child .right {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .job_form_cont {
    padding: 40px 20px 10px 20px;
  }

  .job_form_top .s_t {
    font-size: 16px;
  }

  .job_form_cont .job_form_item {
    flex-wrap: wrap;
  }

  .job_form_cont .job_form_item .item_left {
    width: 100%;
  }

  .job_form_cont .job_form_item .item_right {
    width: 100%;
    padding-top: 20px;
  }

  .job_form_cont .job_form_item .item_right>.col:first-child {
    padding-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .job_form_cont .job_form_item.job_form_last .item_right {
    padding-top: 0;
  }

  .item_right {
    margin: 0;
  }

  .item_right .col,
  .item_right .colw100 {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .item_right .yanz {
    flex-wrap: wrap;
  }

  .item_right .yanz .input-container {
    width: 100%;
  }

  .item_right .message_code {
    margin-left: 0;
    margin-top: 20px;
  }

  .job_form_top .right a {
    padding: 10px 20px;
  }

  .job_form_top .right span {
    font-size: 16px;
    background-size: 20px 20px;
  }

  .job_form_cont .job_form_item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .last_button {
    justify-content: space-between;
  }

  .item_right .index_more {
    width: calc(50% - 10px);
    margin-right: 0;
    padding: 10px 8px;
  }

  .job_form_cont .more_n,
  .mess_submit {
    width: calc(50% - 10px);
  }

  .job_form_cont .more_n button {
    width: 100%;
    padding: 10px 12px;
  }

  .job_form_cont .job_form_item .item_left {
    font-size: 22px;
  }

  .item_right .col_z>span {
    font-size: 16px;
    line-height: 28px;
  }

  .job_form_item .input-container input::-webkit-input-placeholder,
  .job_form_item textarea::-webkit-input-placeholder {
    font-size: 14px;
  }

  .job_form_item .input-container input::-moz-placeholder,
  .job_form_item textarea::-moz-placeholder {
    font-size: 14px;
  }

  .job_form_item .input-container input::-ms-input-placeholder,
  .job_form_item textarea::-ms-input-placeholder {
    font-size: 14px;
  }

}

/* contact */
.contact_box {
  position: relative;
  margin-bottom: 70px;
  overflow: hidden;
}

.contact_top_box {
  position: relative;
  padding-top: 6px;
  z-index: 1;
}

.contact_top_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  max-width: 907px;
  background-image: url(../images/contact_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: -1;
}

.contact_cont {
  padding-top: 75px;
  padding-bottom: 90px;
}

.contact_left {
  flex: 1;
  padding-right: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact_left .left_top {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.contact_left .left_top div:first-child {
  padding-right: 80px;
}

.contact_left .left_top p:nth-child(2) {
  margin-top: 8px;
  color: var(--blue-color);
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  line-height: 0.8;
}

.contact_left .left_top p:nth-child(2) a {
  font-family: inherit;
  color: inherit;
}

.contact_left .left_top p:first-child,
.contact_left .left_bottom p:first-child {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.contact_left .left_top p:first-child img,
.contact_left .left_bottom p:first-child img {
  width: 32px;
  margin-right: 8px;
}

.contact_left .left_top p:nth-child(2),
.contact_left .left_bottom p:nth-child(2) {
  padding-left: 40px;
}

.contact_left .left_bottom p:nth-child(2) {
  color: var(--dark-color);
  font-family: "Microsoft YaHei";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.contact_left .left_bottom {
  margin-top: 40px;
}

.contact_code {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -12px;
}

.contact_code div {
  padding: 0 12px;
}

.contact_code img {
  max-width: 146px;
}

.contact_code p {
  padding-top: 8px;
  color: var(--dark-color);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.contact_map {
  position: relative;
  width: 100%;
  height: 697px;
}

.contact_map .map_box {
  width: 100%;
  height: 100%;
}

.message_title {
  color: var(--dark-color);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width:1580px) {
  .contact_left .left_top div:first-child {
    padding-right: 40px;
  }

}

@media (max-width:1439px) {
  .contact_left .left_top div:first-child {
    padding-right: 30px;
  }

  .contact_left .left_top p:nth-child(2),
  .contact_left .left_bottom p:nth-child(2) {
    font-size: 28px;
  }
}

@media (max-width:1365px) {

  .contact_left .left_top p:nth-child(2),
  .contact_left .left_bottom p:nth-child(2) {
    font-size: 26px;
  }

  .contact_map {
    height: 600px;
  }
}

@media (max-width:1280px) {
  .contact_left .left_top {
    flex-wrap: wrap;
  }

  .contact_left .left_top div {
    width: 100%;
    padding-bottom: 15px;
  }

  .contact_left .left_top div:first-child {
    padding-right: 0;
  }

  .contact_left .left_bottom {
    margin-top: 0;
  }

  .contact_map {
    height: 550px;
  }

  .contact_cont {
    padding-top: 50px;
    padding-bottom: 60px;
  }


}

@media (max-width:991px) {
  .contact_cont {
    flex-wrap: wrap;
  }

  .contact_left {
    flex: inherit;
    width: 100%;
    padding-right: 0;
  }

  .contact_code {
    padding-top: 20px;
    padding-left: 32px;
  }

  .contact_top_box::before {
    background-position: right 40%;
  }

  .contact_map {
    height: 500px;
  }
}

@media (max-width:767px) {
  .contact_cont {
    padding-bottom: 40px;
  }

  .contact_top_box .eng {
    font-size: 16px;
  }

  .contact_left .left_top p:nth-child(2),
  .contact_left .left_bottom p:nth-child(2) {
    font-size: 20px;
  }

  .contact_code img {
    max-width: 100px;
  }

  .contact_code div {
    text-align: center;
  }

  .contact_code p {
    font-size: 14px;
    line-height: 22px;
  }

  .contact_map .map_box {
    width: 100%;
  }

  .contact_map {
    height: 350px;
  }


}

/* 员工风采 */
.staff_job {
  padding: 100px 0;
  overflow: hidden;
}

.staff_job_title {
  align-items: flex-end;
}

.life_button {}

.life_button div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  background-color: var(--white-color);
  border: 1px solid #EEE;
  border-radius: 50%;
  cursor: pointer;
}

.life_button div:first-child {
  margin-right: 30px;
}

.life_button div:hover svg path {
  stroke: var(--blue-color);
}

.staff_job_loop {
  padding-top: 50px;
}

.staff_job_item {
  display: flex;
  align-items: stretch;
  margin-left: -8px;
  margin-right: -8px;
}

.staff_job_item .item_loop {
  padding: 0 8px;
}

.staff_job_item .item_loop .thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.staff_job_item .item_loop:first-child .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff_job_item .item_loop:first-child,
.staff_job_item .two_loop {
  width: 38%;
}

.staff_job_item .item_loop:nth-child(3) {
  width: 24%;
}

.staff_job_item .item_loop:nth-child(1) .thumb,
.staff_job_item .item_loop:nth-child(3) .thumb {
  width: 100%;
  height: 100%;
}

.staff_job_item .item_loop:nth-child(1) .thumb img,
.staff_job_item .item_loop:nth-child(3) .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.staff_job_item .two_loop {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.two_loop .big_pic {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  width: 100%;
  height: 54%;

}

.two_loop .small_pic {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  width: 50%;
  height: 46%;

}

.two_loop .big_pic .img img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.staff_job_item .two_loop .img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.staff_job_item .two_loop .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transition: transform .4s;
}

.item_loop .mask {
  position: absolute;
  padding: 20px 20px 40px 20px;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.item_loop .mask::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
  z-index: -1;
}

.item_loop .mask {
  color: var(--white-color);
  font-weight: 700;
  line-height: 40px;
}

.staff_job_item .item_loop:first-child:hover .thumb img,
.staff_job_item .item_loop:nth-child(3):hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.staff_job_item .two_loop .img:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.staff_life {
  padding-bottom: 100px;
  overflow: hidden;
}

.life_list ul {}

.life_list ul li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.life_list ul li:hover .thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

@media (max-width:1440px) {
  .item_loop .mask {
    padding: 20px 20px 30px 20px;

  }

}

@media (max-width:1366px) {
  .item_loop .mask {
    padding: 20px 20px 25px 20px;
  }
}

@media (max-width:991px) {
  .item_loop .mask {
    padding: 20px 15px 20px 15px;
  }

  .item_loop .mask .title {
    font-size: 18px;
  }
}

@media (max-width:991px) {

  .life_button div {
    width: 56px;
    height: 56px;
  }

}

@media (max-width:767px) {
  .staff_job {
    padding: 60px 0;
  }

  .staff_job_title {
    flex-flow: column;
    align-items: flex-start;
  }

  .staff_job_title .right {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    width: 100%;
  }

  .life_button div:first-child {
    margin-right: 16px;
  }

  .life_button div {
    width: 50px;
    height: 50px;
  }

  .staff_job_item .item_loop:first-child,
  .staff_job_item .two_loop {
    width: 100%;
  }

  .item_loop .mask {
    padding: 20px 15px 15px 15px;
    line-height: 1.5;
  }

  .staff_life {
    padding-bottom: 50px;
  }

  .gc_pro_list {
    padding-top: 20px;
  }
}

/* 体系建设 */
.tx_top_box {
  position: relative;
  background-image: url(../images/tx_bg01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.tx_top_box .container {
  align-items: center;
}

.tx_top_box .left {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 47.5%;
  padding-right: 30px;
}

.tx_top_box .right {
  flex: 1;
}

.tx_top_box .text {
  padding-top: 50px;
}

.tx_top_box .text p {
  padding-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
}
.tx_top_box .text p:last-child {
  padding-bottom: 0;
}
.tx_bottom_box {
  position: relative;
  padding: 90px 0;
  min-height: calc(100vh - 200px);
  background-color: #F7F8FA;
  overflow: hidden;
  z-index: 1;
}

.tx_bottom_box .tx_b_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.tx_bottom_box .tx_b_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tx_b_right .scoll {
  /* padding-right: 10px;
  height: calc(100vh - 380px);
  overflow-y: auto; */
}

.guide_table_left {
  position: relative;
  float: right;
  padding-left: 45px;
  width: calc(50% - 45px);
}

.guide_table_left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 30px;
  opacity: 0.05;
  background: #000;

}

.guide_table_left ul li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  cursor: pointer;
}

.guide_table_left ul li:first-child {
  padding-top: 0;
}

.guide_table_left ul li .title {

  position: relative;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  opacity: 0.5;
}

.guide_table_left ul li.active .title {
  opacity: 1;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 5px;
  border-radius: 30px;
  background: var(--blue-color);
  transition: height 0.3s ease;
}

.guide_table_left ul li .text p {
  margin-top: 10px;
  position: relative;
  padding-left: 14px;
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 290;
  line-height: 30px;
}

.guide_table_left ul li .text p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.guide_table_left ul li .text p strong {
  font-weight: 700;
}

.guide_table_left ul li.active .title::before {
  right: 0;
  opacity: 1;
}

.guide_table_left ul li.active .text {
  min-height: 100px;
}


.guide_table_left ul li .text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .2s, max-height 0.5s ease;

}

.guide_table_left ul li.active .text {
  max-height: inherit;
  opacity: 1;
}

@media (max-width:1279px) {
  .tx_top_box .left {
    padding-bottom: 30px;
}
  .tx_top_box .container {
    align-items: flex-end;
  }
}


@media (max-width:991px) {
  .tx_top_box .container {
    flex-flow: column;
    align-items: flex-start;
  }

  .tx_top_box .left {
    padding-top: 50px;
    padding-bottom: 30px;
    width: 100%;
    padding-right: 0px;
  }

  .tx_top_box .right {
    flex: inherit;
    width: 100%;
  }

  .guide_table_left {
    padding-left: 30px;
    width: calc(50% - 45px);
  }


}

@media (max-width:1200px) {
  .tx_top_box .text {
    padding-top: 30px;
  }

  .tx_bottom_box {
    padding: 60px 0;
    padding-bottom: 0;
  }

  .tx_bottom_box .tx_b_bg {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .tx_b_right .scoll {
    padding-right: 0;
    height: auto;
  }

  .guide_table_left {
    margin-bottom: 30px;
    float: left;
    padding-left: 30px;
    width: 100%;
  }


}

/* 工程 */
.project_bottom {
  position: relative;

  overflow: hidden;
}
.project_bottom>ul {
  position: absolute;
  left: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
.project_bottom>ul>li {
  width: 50%;
  height: 100%;
}
.project_bottom .bg {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project_bottom .bg .background {
  width: 100%;
  height:100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.project_bottom .bg::before {
  content: '';
  position: absolute;
    left: 0;
    top: 0;
  width: 100%;
  height: 100%;

}
.project_bottom .mask {
  display: none;
}
.project_bottom ul li:nth-child(1) .bg::before {
  background: linear-gradient(85deg, #FFF 0.9%, rgba(255, 255, 255, 0.00) 102.42%);
}
.project_bottom ul li:nth-child(2) .bg::before {
  opacity: 0.5;
background: linear-gradient(90deg, #000E5D 0%, rgba(0, 14, 93, 0.00) 101.3%);
}
.project_bottom .project_b_text {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.project_b_text ul {
  display: flex;
  padding-top: 60px;
  padding-bottom: 50px;
}
.project_b_text ul li {
  width: 50%;
}
.project_bottom .t{
  font-style: normal;
  font-weight: 700;
  line-height: 1.7; 
}
.project_bottom .white .t {
  color:var(--white-color);
}
.project_bottom .black .t {
  color:#231F20;
}
.project_bottom .des {
padding-top: 10px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; 
}
.project_bottom .black .des {
  color:#231F20;
}
.project_bottom .white .des {
  color:var(--white-color);
}
.project_bottom .s_more {
  margin-top: 50px;
  display: flex;
}
.project_b_text .black {
  padding-right: 60px;
}
.project_b_text .white {
  padding-left: 60px;
}
.white_more .span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 15px;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  background: var(--white-color);
  color: var(--dark-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
  transition: all .3s;
}

.white_more a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all .3s;
}

.white_more a svg {
  margin-left: 10px;
}

.white_more a:hover::before {
  transform: scaleX(1);
}
.white_more a:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
}

.white_more a:hover svg path {
  stroke: #fff;
}

@media (max-width:991px) {
  .project_bottom>ul {
    flex-flow: column;
  }
.project_bottom>ul>li {
  width: 100%;
  height: 100%;
}
.project_b_text {
  display: none !important;
}
.project_bottom > ul {
  position: relative;
}
.project_bottom .mask {
  display: block;
  position: absolute;
  padding: 0 26px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-flow: column;
}
.project_bottom .bg .background {
  min-height: 350px;
}
}
@media (max-width:767px) {

.project_bottom .t {
  font-size: 20px;
}
.project_bottom .bg .background {
  min-height: 300px;
}
.project_bottom .s_more {
  margin-top: 30px;
}
}