/* flex布局 */
.dfl {
  display: flex;
}

/* fle纵向布局 */
.cfl {
  display: flex;
  flex-direction: column;
}

/* 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;
}

/* 文本加粗 */
.fb {
  font-weight: bold;
}

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

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

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

/* 视频播放窗口 */
.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;
  }
}

/* Paging */
.in_paging {
  --size: 30px;
  --border_radius: 5px;
  --curr_color: #3b54a4;
}
.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 ul li:not(:first-child):not(:last-of-type) a,
.in_paging ul li:not(:first-child):not(:last-of-type) span {
  border-radius: 50%;
}

.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;
}

/* map */
.c_map {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.c_map::before {
  content: "";
  display: block;
  padding-bottom: 35%;
}
.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%;
  }
}

/* zfl */
.xy {
  display: none;
}

.wz666 {
  color: #666;
}
.wz999 {
  color: #999;
}
.wz333 {
  color: #333;
}

.flex {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.sp {
  justify-content: space-between;
}
.ac {
  align-items: center;
}
.g10 {
  gap: 0 0.1rem;
}
.g20 {
  gap: 0 0.2rem;
}
.va {
  color: var(--i_color);
}
.zwf {
  height: 1rem;
}
.zwf2 {
  height: 0.5rem;
}
.fb900 {
  font-weight: 900;
}
.tc {
  text-align: center;
}
.tda {
  text-transform: capitalize;
}
.jc {
  justify-content: center;
}
.g30 {
  gap: 0 0.3rem;
}
.g40 {
  gap: 0 0.4rem;
}

.fb900 {
  font-weight: 900;
}
.brall {
  border-radius: 11000px;
}

.as {
  align-items: start;
}

.br2 {
  border-radius: 0.2rem;
  overflow: hidden;
}

.va2 {
  color: #ed4141;
}

.lh12 {
  line-height: 1.2;
}
.wz333 {
  color: #333;
}

.mt10 {
  margin-top: 0.1rem;
}

.ttc {
  text-transform: capitalize;
}
.js {
  justify-content: start;
}

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

.cs {
  cursor: pointer;
}

.pl20 {
  padding-left: 0.2rem;
  box-sizing: border-box;
}
.pl30 {
  padding-left: 0.3rem;
  box-sizing: border-box;
}

.yx {
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .yx {
    display: none;
  }

  .g40 {
    gap: 0 20px;
  }

  .pl20 {
    padding-left: 0rem;
    box-sizing: border-box;
  }
  .pl30 {
    padding-right: 0rem;
    box-sizing: border-box;
  }
  .zwf,
  .zwf2 {
    display: none;
  }
  .xy {
    display: block;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

.ptline {
  border-top: 1px solid var(--border_color);
}

.m10 {
  margin: 0 10px;
}

.bjs {
  background: var(--bjs);
}

.w70 {
  width: 70%;
}
