/* 样式初始化 */
@import "./minireset.css";

/* 主题色 */
:root {
  --bgc: rgba(50, 50, 50, 0.2); /*菜单背景色*/
  --bgc_active: rgba(50, 50, 50, 0.2); /*菜单激活背景色*/
  --text: #fff;
  --text_active: rgba(255, 255, 255, 1);
}

.iframe {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 40px - env(safe-area-inset-bottom));
  background: #f0f0f0;
  top: 0;
  left: 0;
  border: none;
  opacity: 0;
}

.iframe.show {
  display: block;
  z-index: 10010;
  opacity: 1;
}

.iframe.showmap {
  display: block;
  z-index: 10010;
  opacity: 1;
}

.menu_main {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  z-index: 23000;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: all 0.5s;
  /* max-width: 768px; */
  /* background-color: var(--bgc); */
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 -1px 2px rgba(255, 255, 255, 0.4);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  --size: 17px;
}

.menu_main.show {
  transform: translate(-50%, 0);
}

.menu_main li {
  display: block;
  float: left;
  z-index: 99999;
  /* background-color: rgba(0,0,0, .85); */
  color: #fff;
  text-align: center;
  height: 40px;
  padding: 5px 0 0;
  flex: 1;
  white-space: nowrap;
  position: relative;
  /* text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); */
  cursor: pointer;
}

.menu_main li [class*="icon-"] {
  display: block;
  width: var(--size);
  height: var(--size);
  margin: 0 auto;
  background: url(../images/icon/icon_menu.svg) no-repeat left top/34px 170px;
}

.menu_main li .icon-quyu {
  background-position: left top;
}

.menu_main li .icon-quanjing {
  background-position: left calc(var(--size) * -1);
}

.menu_main li .icon-yuanlin {
  background-position: left calc(var(--size) * -2);
}

.menu_main li .icon-shangjie {
  background-position: left calc(var(--size) * -3);
}

.menu_main li .icon-shinei {
  background-position: left calc(var(--size) * -4);
}

.menu_main li .icon-frames {
  background-position: left calc(var(--size) * -5);
}

.menu_main li .icon-huxing {
  background-position: left calc(var(--size) * -6);
}

.menu_main li .icon-manyou {
  background-position: left calc(var(--size) * -7);
}

.menu_main li .icon-manyouout {
  background-position: left calc(var(--size) * -8);
}

.menu_main li .icon-shiye {
  background-position: left calc(var(--size) * -9);
}

.menu_main li .icon-more {
  background: none;
  font-size: 16px;
  line-height: 1.2;
}

.menu_main li.active {
  /* background: rgba(0,0,0, .3); */
  /* background-color: var(--bgc_active);
    color: var(--text_active); */
  background: rgba(110, 110, 110, 1);
}

.menu_main li.active .icon-quyu {
  background-position: -17px top;
}

.menu_main li.active .icon-quanjing {
  background-position: -17px calc(var(--size) * -1);
}

.menu_main li.active .icon-yuanlin {
  background-position: -17px calc(var(--size) * -2);
}

.menu_main li.active .icon-shangjie {
  background-position: -17px calc(var(--size) * -3);
}

.menu_main li.active .icon-shinei {
  background-position: -17px calc(var(--size) * -4);
}

.menu_main li.active .icon-frames {
  background-position: -17px calc(var(--size) * -5);
}

.menu_main li.active .icon-huxing {
  background-position: -17px calc(var(--size) * -6);
}

.menu_main li.active .icon-manyou {
  background-position: -17px calc(var(--size) * -7);
}

.menu_main li.active .icon-manyouout {
  background-position: -17px calc(var(--size) * -8);
}

.menu_main li.active .icon-shiye {
  background-position: -17px calc(var(--size) * -9);
}

.menu_main li.active .icon-more {
  background: none;
  font-size: 16px;
  line-height: 1.2;
}

.menu_main li.show .sub-nav {
  transform: scaleY(1);
}

@media all and (min-width: 768px) {
  .menu_main {
    font-size: 14px;
  }

  .menu_main li {
    line-height: 40px;
    padding-top: 2px;
  }

  .menu_main li [class*="icon"] {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 3px;
  }
}

.sub-nav {
  position: absolute;
  left: 0;
  bottom: 41px;
  width: 100%;
  margin: auto;
  justify-content: space-around;
  transform: scaleY(0);
  transform-origin: left bottom;
  transition: all 0.3s;
  max-width: 768px;
}

.sub-nav span {
  text-align: center;
  /* background-color: var(--bgc); */
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 12px;
  display: block;
  padding: 10px 0;
  margin-bottom: 1px;
  white-space: pre-wrap;
}

.sub-nav span.active {
  /* background-color: var(--bgc_active);
    color: var(--text_active); */
  /* background-color: rgba(255,255,255,0.2); */
  background: rgba(110, 110, 110, 1);
  /* background-color: rgba(50,50,50, 1); */
  color: #fff;
}

.sub-nav span b {
  display: block;
  width: 100%;
  line-height: 1;
  padding: 10px 0;
}

.sub-nav span img {
  display: block;
}

.ctrl_sider {
  display: block;
  position: fixed;
  right: 10px;
  top: 10px;
  width: 25px;
  z-index: 20000;
  font-size: 0;
}

.icon_bg {
  display: inline-block;
  width: 26px;
  height: 26px;
  text-align: center;
  padding: 5px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 14px;
}

.icon_bg.active {
  background: #121212;
}

.icon_bg svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: #fff;
}

[class*="icon-"] {
  display: block;
  width: 16px;
  height: 16px;
}

[class*="icon-"] svg {
  display: block;
  width: 100%;
  height: 16px;
  fill: #fff;
}

/* .icon-info svg: {
    fill: #f22;
} */

.icon-music.musicPlaying {
  animation: rotateit 2s linear infinite;
}

@keyframes rotateit {
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes rotateit {
  to {
    transform: rotate(1turn);
  }
}

@media all and (orientation: landscape) {
  .ctrl_sider {
    top: 30px;
  }
}

.map-container,
.info-container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: -20000;
  transform: scale(0);
  transition: all 0.3s;
  opacity: 0;
}

.map-container .sub-content,
.info-container .sub-content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 85vw;
  padding: 40px 20px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 2px 3px 25px rgba(0, 0, 0, 0.6);
  transition: all 0.6s;
  opacity: 0;
}

.map-container.show,
.info-container.show {
  transform: scale(1);
  opacity: 1;
  z-index: 200000;
}

.map-container.show .sub-content,
.info-container.show .sub-content {
  opacity: 1;
}

.info-container {
  color: #333;
  line-height: 2;
}

.info-container .info-content h1 {
  font-size: 1.4em;
  text-align: center;
  color: #000;
}

.info-container .info-content h2 {
  font-size: 1.2em;
  text-align: left;
  color: #111;
  padding-bottom: 10px;
}

.info-container .info-content p {
  margin: 0;
  padding: 0 0 1em 30px;
  line-height: 1.65;
  text-align: left;
}

.info-container .info-content span {
  display: inline-block;
  width: 30px;
  margin-left: -30px;
}

.info-container .info-content .stat {
  max-height: calc(100vh - 300px);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
  padding: 0 10px 0 20px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.info-container a {
  color: #36373b;
  text-decoration: none;
}

.map-container.show {
  background: white;
  z-index: 300000;
}

.quyu-container {
  width: 100vw;
  height: calc(100vh - 40px);
  animation: ani_bg 2s ease-in-out;
  background-position: 100% center;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.quyu-container::-webkit-scrollbar {
  display: none;
}

.quyu-container.show {
  display: block;
}

.quyu {
  opacity: 0;
  overflow: scroll;
  height: calc(100vh - 40px);
}

.quyu img {
  display: block;
  width: auto;
  height: calc(100vh - 40px);
  min-width: 100vw;
  max-width: none;
}

@keyframes ani_bg {
  0% {
    background-position: 100% center;
  }

  100% {
    background-position: 50% center;
  }
}

@media all and (max-width: 768px) {
  .quyu img {
    min-width: 100%;
  }
}

.swiper-container {
  width: 100vw;
  height: 100%;
  margin: 0 auto;
  background: #f1f4f9;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-slide .swiper_target {
  display: inline-block;
  position: absolute;
  left: 10px;
  top: calc(50% - 190px);
  width: 77px;
  height: 138px;
}

.sec {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 100px;
  width: 50px;
  height: 20px;
  line-height: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  color: #111;
  text-align: center;
}

.sec.active {
  background: #fff;
}

.house-content {
  width: 100vw;
  height: calc(100vh - 40px);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  --color: #ba8e4e;
}

.house-content .house-wrap {
  padding-bottom: 80px;
}

.house-content .house-wrap h1 {
  padding: 30px 0;
  margin: 0;
  line-height: 1;
  color: var(--color);
  font-size: 24px;
  text-align: center;
}

.house-content::-webkit-scrollbar {
  display: none;
}

.house-content .tab_item {
  border-left: 6px solid var(--color);
  height: 70px;
  box-shadow: 0px 6px 20px 0px rgba(15, 34, 74, 0.2);
  background: #fff;
  position: relative;
  margin-bottom: 20px;
  font-size: 16px;
}

.house-content .tab_item::before {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color);
  content: attr(data-title);
  line-height: 1;
}

.house-content .tab_item::after {
  position: absolute;
  left: 45%;
  bottom: 11px;
  font-size: 18px;
  color: var(--color);
  content: attr(data-area);
  line-height: 1;
  font-family: "Times New Roman";
}

.house-content .tab_item span:nth-of-type(1) {
  display: inline-block;
  border-left: 0.1vw solid #aaa;
  height: 44px;
  margin: 13px 0 0;
  padding-left: 12px;
  position: absolute;
  left: 22%;
  top: 0;
  color: #555;
  line-height: 1;
  font-size: 16px;
}

.house-content .tab_item span:nth-of-type(1) em {
  display: block;
  font-style: normal;
  padding: 16px 0 0;
  font-size: 12px;
}

.house-content .tab_item span:nth-of-type(2) {
  display: inline-block;
  height: 100%;
  line-height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  color: #333;
  background: url(../images/search.svg) no-repeat right 10px center/14px;
  color: var(--color);
  font-size: 12px;
}

.house-content .tab_item.show + .tab_content {
  padding-bottom: 50px;
  transform: scaleY(1);
  height: auto;
  opacity: 1;
}

.house-content .tab_content {
  overflow: hidden;
  height: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  opacity: 0;
}

.house-content .tab_content img {
  width: 90%;
  margin: 0 auto;
}

.house-content img {
  display: block;
  width: 100%;
}

@media all and (min-width: 1000px) {
  .house-content .house-wrap {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 100px;
  }

  .house-content .house-wrap h1 {
    padding: 55px 0;
    font-size: 45px;
  }

  .house-content .tab_item {
    margin-bottom: 40px;
  }
}

.swiper-slide {
  overflow: hidden;
}

.swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: white;
}

@media all and (min-width: 768px) {
  .swiper-container .swiper-button-next,
  .swiper-container .swiper-button-prev {
    background-size: 28px 44px;
  }
}

.closeit,
.closeit_black {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 10px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23fff'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M14.1%2C12l8.5-8.5c0.6-0.6%2C0.6-1.5%2C0-2.1s-1.5-0.6-2.1%2C0L12%2C9.9L3.5%2C1.4C3%2C0.9%2C2%2C0.9%2C1.4%2C1.4S0.9%2C3%2C1.4%2C3.5L9.9%2C12l-8.5%2C8.5%20c-0.6%2C0.6-0.6%2C1.5%2C0%2C2.1s1.5%2C0.6%2C2.1%2C0l8.5-8.5l8.5%2C8.5c0.6%2C0.6%2C1.5%2C0.6%2C2.1%2C0s0.6-1.5%2C0-2.1L14.1%2C12z%22/%3E%3C%2Fsvg%3E")
    no-repeat center center/50%;
  z-index: 99999;
  cursor: pointer;
}

.closeit_black {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23111'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M14.1%2C12l8.5-8.5c0.6-0.6%2C0.6-1.5%2C0-2.1s-1.5-0.6-2.1%2C0L12%2C9.9L3.5%2C1.4C3%2C0.9%2C2%2C0.9%2C1.4%2C1.4S0.9%2C3%2C1.4%2C3.5L9.9%2C12l-8.5%2C8.5%20c-0.6%2C0.6-0.6%2C1.5%2C0%2C2.1s1.5%2C0.6%2C2.1%2C0l8.5-8.5l8.5%2C8.5c0.6%2C0.6%2C1.5%2C0.6%2C2.1%2C0s0.6-1.5%2C0-2.1L14.1%2C12z%22/%3E%3C%2Fsvg%3E")
    no-repeat center center/50%;
}

.video-container {
  height: 100vh;
}

.video-container h2 {
  display: block;
  text-align: center;
  padding: 1em 0 2em;
  color: #d1b686;
  font-size: 1.4em;
}

.video-container.show {
  display: block;
}

.vid_play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 40px);
  cursor: pointer;
  box-sizing: content-box;
}

.vid_play::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  border: 2px solid white;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D'%23fff'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cpath%20d%3D%22M2.579%2C23.633%20C2.157%2C23.633%201.734%2C23.512%201.352%2C23.291%20C0.668%2C22.868%200.265%2C22.124%200.265%2C21.319%20L0.265%2C2.803%20C0.265%2C1.998%200.668%2C1.254%201.352%2C0.831%20C2.036%2C0.408%202.881%2C0.368%203.606%2C0.73%20L22.121%2C9.988%20C23.269%2C10.572%2023.731%2C11.96%2023.168%2C13.108%20C22.947%2C13.55%2022.584%2C13.913%2022.121%2C14.154%20L3.606%2C23.412%20C3.284%2C23.553%202.922%2C23.633%202.579%2C23.633%20z%22/%3E%3C%2Fsvg%3E")
    no-repeat center center/20px;
  content: "";
  border-radius: 50%;
  display: inline-block;
  filter: drop-shadow(1px 1px 3px #111);
}

.modal-video {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 99999;
}

.modal-video video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100vw;
  max-height: calc(100vh - 40px);
}

.modal-video video::-webkit-media-controls-start-playback-button {
  display: none;
}

.modal-video.active {
  display: block;
}

.modal-video .closeit {
  left: 0;
}

.video_loading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100vw;
  height: calc(100vh - 40px);
  background: url(../images/loading2.svg) no-repeat center center/30px;
}

.info-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 0 50px;
  box-sizing: border-box;
  border-radius: 3px;
  color: white;
  font-size: 14px;
  backdrop-filter: blur(8px);
  z-index: 22000;
}

.info-wrap .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/loading2.svg) no-repeat center center/30px;
}

.info-wrap .img img {
  display: block;
  width: auto;
  height: 100%;
}

.info-wrap p {
  display: block;
  padding: 50px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes shines {
  0% {
    filter: drop-shadow(0 0 0 rgba(0, 135, 255, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 10px #0087ff);
  }

  100% {
    filter: drop-shadow(0 0 0 rgba(0, 135, 255, 0.5));
  }
}

@keyframes showmarks {
  0% {
    transform: translate(0, -1000px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.side-menu-left {
  position: fixed;
  bottom: 100px;
  margin-bottom: env(safe-area-inset-bottom);
  left: 5px;
  z-index: 19999;
  padding: 10px 10px;
  background: rgba(23, 25, 22, 0.7);
  color: #fff;
  display: none;
  border-radius: 5px;
}
.side-menu-left {
  margin-bottom: env(safe-area-inset-bottom);
}

.side-menu-left h2 {
  font-size: 14px;
  margin-bottom: 5px;
  text-align: left;
  color: #fff;
}

.side-menu-left span {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  padding-top: 5px;
  padding-left: 25px;
  text-align: left;
  position: relative;
}

.side-menu-left.xmpt span {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  text-align: left;
  position: relative;
}

.side-menu-left span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 10px;
}
.side-menu-left.xmpt i {
  font-style: normal;
  margin-right: 20px;
  padding: 0px 10px;
  width: 20px;
  height: 20px;
  background-color: #dcaa5d;
}
.side-menu-left.ytfbtuli span:nth-of-type(1)::before {
  background: rgb(134, 161, 206);
}
.side-menu-left.ytfbtuli span:nth-of-type(2)::before {
  background: rgb(147, 100, 167);
}
.side-menu-left.ytfbtuli span:nth-of-type(3)::before {
  background: rgb(202, 115, 101);
}
.side-menu-left.ytfbtuli span:nth-of-type(4)::before {
  background: rgb(210, 187, 96);
}
.side-menu-left.ytfbtuli span:nth-of-type(5)::before {
  background: rgb(92, 195, 188);
}
.side-menu-left.ytfbtuli span:nth-of-type(6)::before {
  background: rgb(151, 176, 135);
}

.side-menu-left.lxfxtuli span:nth-of-type(1)::before {
  background-image: url(dikuchurukou.png);
  background-size: 100% 100%;
}
.side-menu-left.lxfxtuli span:nth-of-type(2)::before {
  background-image: url(guijialiuxian.png);
  background-size: 100% 100%;
}
.side-menu-left.lxfxtuli span:nth-of-type(3)::before {
  background-image: url(guijialiuxian.png);
  background-size: 100% 100%;
}
.side-menu-left.lxfxtuli span:nth-of-type(4)::before {
  background-image: url(qianmolujing.png);
  background-size: 100% 100%;
}
.side-menu-left.lxfxtuli span:nth-of-type(5)::before {
  background-image: url(renxingchurukou.png);
  background-size: 100% 100%;
}

.wcgj {
  left: 5px;
  right: auto;
}

.side-menu-left.roadnet-menu span::after {
  top: 3px;
  height: 10px;
}

.side-menu-left.roadnet-menu span:nth-of-type(1)::after {
  background: #01d6f4;
  width: 10px;
  border-radius: 50%;
}

.side-menu-left.roadnet-menu span:nth-of-type(2)::after {
  background: #f974e0;
  width: 10px;
  border-radius: 50%;
}

.side-menu-left.roadnet-menu span:nth-of-type(3)::after {
  background: #87fe86;
}

.side-menu-left.roadnet-menu span:nth-of-type(4)::after {
  background: #f974e0;
}

/* .js_tel {
    position: fixed !important;
    right: 15px;
    bottom: 220px;
    width: 36px;
    height: 36px;
    background: #000;
} */

.support_ctrl {
  position: fixed;
  right: 11px;
  bottom: 100px;
}

.time_ctrl {
  position: fixed;
  right: 11px;
  bottom: 70px !important;
  margin-bottom: env(safe-area-inset-bottom);
}
.time_ctrl {
  margin-left: env(safe-area-inset-left);
}

.time_ctrl_item,
.support_ctrl_item {
  width: auto;
  min-width: 70px;
  height: 22px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.85);
  font-size: 12px;
  text-align: center;
  padding: 0 5px;
  color: #fff;
  line-height: 22px;
  margin: 5px 0;
  /* text-shadow: 1px 1px 5px rgba(64, 94, 132, 1); */
  cursor: pointer;
}

.disable {
  color: #888 !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: 30px;
  bottom: auto;
  display: flex;
  justify-content: center;
}

.swiper-pagination-yt,
.swiper-pagination-qj {
  top: 60px;
  bottom: auto;
  display: flex;
  justify-content: center;
  width: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-qj {
  top: 90px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 20px;
  border-radius: 10px;
  background-color: rgba(124, 166, 190, 1);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(64, 94, 132, 1);
  opacity: 1;
  border: 1px solid rgb(124, 166, 190);
}

.swiper-pagination-bullet-active {
  background-color: #fff !important;
  color: rgb(124, 166, 190) !important;
  text-shadow: none !important;
  font-weight: bold;
}

.hxt_trigger {
  width: 50%;
  right: 0;
  height: 180px;
  position: fixed;
  opacity: 0;
  background-color: #f00;
  top: 30%;
  z-index: 2;
}

.hxt_container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(119, 155, 178);
  z-index: 3;
}

.hxt_content {
  width: 100%;
  height: 100%;
}

.hxt_yt,
.hxt_qj {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 20px;
  border-radius: 10px;
  background-color: rgba(124, 166, 190, 1);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(64, 94, 132, 1);
  border: 1px solid rgb(124, 166, 190);
  margin: 0 4px;
  opacity: 0;
}

.yt_container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #f0f0f0 url("../images/yangtai/yangtai (1).jpg") center/contain
    no-repeat;
  z-index: 99;
}

.imgbox-new {
  display: none;
  position: absolute;
  left: 5px;
  width: 50vw;
  bottom: 60px;
  margin-bottom: env(safe-area-inset-bottom);
}

.detailBox {
  display: none;
  position: absolute;
  z-index: 99999;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  /* transform: translate(-50%, -50%); */
  border-radius: 5px;
  /* background-color: rgba(0,0,0, .6); */
  background-color: rgba(255, 255, 255, 0.75);
  padding: 10px;
  margin-left: env(safe-area-inset-left);
  margin-bottom: 40px;
}

.content-box {
  color: #111;
  max-width: 25vw;
  max-height: 80vh;
  overflow: hidden;
}

.title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.img {
  text-align: center;
}

.img img {
  width: 100%;
}

.detail {
  text-align: justify;
  font-size: 13px;
}

.detailBox button {
  position: absolute;
  right: 0;
  border-radius: 5px;
  top: -30px;
  outline: none;
  font-size: 18px;
  border: 1px solid white;
  color: #fff;
  background: transparent;
}
/* 客户免责声明 */
/* .disclaimer {
    position: absolute;
    bottom: 40px;
    width: auto;
    height: auto;
    font-size: 8px;
} */

.cls_phone {
  position: absolute;
  right: 30px;
  width: auto;
  height: 50px;
}

.cls_phone a {
  display: block;
  height: 10px;
  width: auto;
}

/* 返回按钮 */
.btn-back {
  display: none;
  position: absolute;
  right: 20px;
  bottom: 100px;
  background: rgba(0, 0, 0, 0.85);
  width: 50px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  margin-bottom: env(safe-area-inset-bottom);
  cursor: pointer;
  font-size: 12px;
}

.mianze {
  display: none;
  position: absolute;
  padding: 5px;
  font-size: 8px;
  bottom: 45px;
  margin-bottom: env(safe-area-inset-bottom);
}

/* 图例 */
.tuli:nth-child(1):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #f6a523;
}
.tuli:nth-child(2):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #194f9e;
}
.tuli:nth-child(3):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #bd4a94;
}
.tuli:nth-child(4):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #49cbe7;
}

.tuli_l2gjc:nth-child(1):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #245ce2;
}
.tuli_l2gjc:nth-child(2):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #cec418;
}
.tuli_l2gjc:nth-child(3):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #ff8349;
}
.tuli_l2gjc:nth-child(4):before {
  content: "可点击";
  position: absolute;
  left: -30px;
}

.tuli_l1dmc:nth-child(1):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #245ce2;
}
.tuli_l1dmc:nth-child(2):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #cec418;
}
.tuli_l1dmc:nth-child(3):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #ff8349;
}
.tuli_l1dmc:nth-child(4):before {
  content: "可点击";
  position: absolute;
  left: -30px;
}

.tuli_b1jc:nth-child(1):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #245ce2;
}
.tuli_b1jc:nth-child(2):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #cec418;
}
.tuli_b1jc:nth-child(3):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #ff8349;
}

.tuli_b1dtc:nth-child(1):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #245ce2;
}
.tuli_b1dtc:nth-child(2):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #cec418;
}
.tuli_b1dtc:nth-child(3):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 22px;
  height: 22px;
  background-color: #ff8349;
}

.tuli_b1dtc:nth-child(4):before {
  content: "可点击";
  position: absolute;
  left: -30px;
}

.time_ctrl_itemsp {
  width: auto;
  min-width: 70px;
  height: 22px;
  background-color: var(--bgc);
  font-size: 10px;
  text-align: center;
  padding: 0 5px;
  color: #fff;
  line-height: 22px;
  margin: 5px 0;
  /* text-shadow: 1px 1px 5px rgba(64, 94, 132, 1); */
  cursor: pointer;
}

/* 一江一河图片换文字 */
.yjyh-detail {
  display: none;
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  height: 20vh;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  margin-bottom: env(safe-area-inset-bottom);
  border-radius: 5px;
  padding-left: 2px;
}


/* IOS无效 */
/* 设置滚动条的样式 */
/* .yjyh-detail::-webkit-scrollbar {
    width: 8px;
    height: 8px;
} */
/* 滚动槽 */
/* .yjyh-detail::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-radius: 8px;
} */
/* 滚动条滑块 */
/* .yjyh-detail::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(190, 172, 130, 1);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.25);
} */
/* 非激活窗口 */
/* .yjyh-detail::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0,255,0,0.4);
} */

.head-title {
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(
    to right,
    rgba(190, 172, 130, 1),
    rgba(190, 172, 130, 0)
  );
}

.sub-head {
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px rgba(199, 173, 118, 1) solid;
}

.mgt {
  margin-top: 5px;
}

.panel-left,
.panel-right {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 20vw;
}
.panel-left {
  left: 0;
}
.panel-right {
  right: 0;
}

.panel {
  display: flex;
  flex-direction: column;
}

.panel img:not(:first-child),
.panel img:not(:first-child) {
  margin-top: 10px;
}

.indoor-title {
  display: none;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  z-index: 10011;
  text-align: center;
}

.current-title {
  color: rgb(177, 146, 91);
  font-size: 25px;
}

.description {
  margin-top: 3px;
  font-size: 12px;
  color: #ccc;
}

/* Overwrite Swiper Styles */
.swiper-button-prev,
.swiper-button-next {
  color: rgb(177, 146, 91) !important;
}

.fz-18 {
  font-size: 20px;
}

.ptlabel {
  width: 20px;
  white-space: pre-line;
  word-break: break-all;
  color: red;
  text-align: center;
  border-radius: 5px;
}

/* hotspotstyle */

.hotspot-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  line-height: normal;
  font-family: Arial, Helvetica, sans-serif;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hotspot-title {
  padding: 2px 3px;
  background: linear-gradient(rgba(171, 159, 122, 1), rgba(171, 159, 122, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: fit-content;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  box-sizing: border-box;
}

.horizontal {
  white-space: nowrap;
}

.hotspot-line {
  background: #fff;
  width: 2px;
  position: relative;
}

.hotspot-radius {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.click_style {
  animation: clickAnim 1s infinite alternate;
}

@keyframes clickAnim {
  from {
    background: rgba(171, 159, 122, 1);
  }

  to {
    background: rgba(171, 159, 122, 0.4);
  }
}

@keyframes labelClick {
  from {
    background: rgba(0, 0, 0, 1);
  }

  to {
    background: rgba(0, 0, 0, 0.4);
  }
}



.tips ,.tipsLeft{
  font-size: 13px;
  background-color: rgba(0,0,0,.8);
  border-radius: 5px;
  padding: 5px;
  bottom: 170px!important;
  right: 5px;
  width: 25px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: env(safe-area-inset-bottom);
  animation: labelClick 1s infinite alternate;
}