/* flex左右布局居中 */
.flc_zy {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* flex上下布局居中 */
.flc_sx {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* 文本居中 */
.tc {
  text-align: center;
}

/* margin左右居中 */
.mc {
  margin-left: auto;
  margin-right: auto;
}

/* margin靠左 */
.ml {
  margin-right: auto;
}

/* margin靠右 */
.mr {
  margin-left: auto;
}

/* zfl */
.flex {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.jsb {
  justify-content: space-between;
}

.as {
  align-items: start;
}

.share {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  align-items: center;
}
.share p {
}
.share a {
}
.bjf7 {
  background: #f7f7f7;
}
.share a:hover {
  /* background: var(--i_color); */
}
.share a:hover iconify-icon {
  color: var(--i_color);
}
.share iconify-icon {
  font-size: 26px;
  color: #d8d8d8;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.share.share2 iconify-icon {
  font-size: 0.35rem;
}
.share iconify-icon:hover {
}

/* 视频播放窗口 */

.vd_full {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 80%);
  z-index: 99999;
}
.vd_box {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 2;
}
.vd_box::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.close_v {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--i_color);
  z-index: 2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.close_v::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.44rem;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.vd_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .vd_box {
    width: 80%;
  }
  .close_v::before {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .vd_box {
    width: 88%;
  }
  .close_v {
    top: -0.15rem;
    right: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
  .close_v::before {
    font-size: 0.3rem;
  }
}

/* ----------------------- 内页banner  ---------- */

.banner__ {
  font-size: 0;
  overflow: hidden;
  position: relative;
}

.banner__::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: -webkit-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.7));
  position: absolute;
  top: 0;
  left: 0;
}

.banner__ img {
  width: 100vw;
}

.banner__ p {
  color: #ffff;
  font-weight: bold;
  font-size: 0.64rem;
  position: absolute;
  left: 8.5%;
  top: 52%;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .banner__ p {
    font-size: 0.36rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 560px) {
  .banner__ p {
    font-size: 0.2rem;
  }
}

/* Paging */
.in_paging {
  --size: 30px;
  --border_radius: 5px;
  --curr_color: #ff6300;
}
.in_paging ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.in_paging li {
  min-width: var(--size);
  margin: 0 4px;
}
.in_paging a,
.in_paging span {
  display: block;
  padding: 0 10px;
  height: var(--size);
  line-height: calc(var(--size) - 2px);
  font-size: 14px;
  color: #666;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ccc;
  -webkit-border-radius: var(--border_radius);
  border-radius: var(--border_radius);
  overflow: hidden;
}
.in_paging i {
  margin-top: 14px;
  width: 100%;
  font-size: 13px;
  color: #888;
}
.in_paging a:hover,
.in_paging .curr_page a,
.in_paging .curr_page span {
  border-color: var(--curr_color) !important;
  background: var(--curr_color);
  color: #fff !important;
}

/* 地图 */
.c_map {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.c_map::before {
  content: "";
  display: block;
  padding-bottom: 33%;
}
.c_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .c_map::before {
    padding-bottom: 46%;
  }
}
@media screen and (max-width: 560px) {
  .c_map::before {
    padding-bottom: 100%;
  }
}
