/* 图片放大动画 */
.fang {
  overflow: hidden;
  display: flex;
  width: 100%;
}
.fang img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  display: flex;
}
.fang:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.arrowGo {
  animation: arrowGo 2.5s infinite;
  -webkit-animation: arrowGo 2.5s infinite;
}
@keyframes arrowGo {
  0% {
    transform: translate(0, 30%);
  }

  50% {
    transform: translate(0, 0%);
  }

  100% {
    transform: translate(0, 30%);
  }
}
.public_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.public_title:not(.no_center) {
  align-items: center;
}
.public_title_ch {
  font-weight: 700;
  font-size: 0.24rem;
  color: #1a88d6;
}
.public_title_en {
  font-size: 0.32rem;
  color: #222;
  text-transform: uppercase;
}

.page_title {
  width: 100%;
  position: relative;
  margin: 0 0 0.4rem;
}
.page_title_ch {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -10%;
  z-index: 10;
  font-weight: normal;
  font-weight: 700;
  font-size: 0.3rem;
  color: #1a1a1a;
}
.page_title_en {
  width: 100%;
  text-align: center;
  font-size: 0.6rem;
  color: #f5f5f5;
  text-transform: uppercase;
}

.public_more {
  background-color: #1a88d6;
  border-radius: 0.4rem;
  padding: 0.05rem 0.05rem 0.05rem 0.3rem;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.22rem;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.public_more::after {
  content: "";
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  background-image: url(../images/icon_more.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: 0.21rem;
}

.a_more_text {
  padding: 0.08rem 0.4rem 0.1rem;
  font-size: 0.14rem;
  background: #eeeeee;
  border-radius: 20px;
  color: #222;
  line-height: 0.22rem;
}
.a_more_text::after {
  content: "+";
  margin-left: 0.04rem;
}
.flex_j_center {
  display: flex;
  justify-content: center;
}

.content1,
.content2,
.content4,
.content6,
.content7,
.desc_top,
.desc_bottom,
.list_tree,
.culture_list,
.culture_imgs,
.list_team,
.list_social,
.list_table,
.depart_list,
.list_scope,
.list_honor,
.public_list,
.list_case,
.about_map,
.team_detail,
.page_detail,
.search_head {
  padding-left: 7%;
  padding-right: 7%;
}
.content2,
.content4,
.content6,
.desc_bottom,
.public_content:not(.no_bottom) {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.content3,
.public_content {
  padding-top: 0.8rem;
}
.content7,
.desc_top,
.culture_list {
  padding-bottom: 0.8rem;
}
.swiper-button-lock {
  display: block;
}
.swiper-pagination-bullet-active {
  background-color: #1a88d6;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.6;
}
.swiper-advert,
.swiper-partner {
  padding-bottom: 0.2rem;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.dialog .my_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80%;
  display: flex;
  align-items: center;
  z-index: 9999;
}
.dialog .my_video video {
  width: 100%;
}
