/* 产业地图样式 start */
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.index05 .canva {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  /* background: #f8f8f8 */
  /* background: url("./material/images/map_bg_jin.png") center center no-repeat; */
  /* background-size: 100% 100%; */
}

.index05 canva {
  width: 100%;
  height: 100%;
}

.index05 .cont_tit {
  color: #fff;
}

.index05 .map-top-box {
  position: absolute;
  top: 80px;
  right: 18%;
  padding: 0 15px;
  width: 15%;
  height: 40px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;

  color: #fff;
  background: #333;
  border-radius: 20px;
  z-index: 100;
}

.index05 .map-top-box div {
  cursor: pointer;
}

.index05 .map-top-box div:before {
  content: '';
  display: inline-flex;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #fff;
}

.index05 .map-top-box div.active {
  color: #cc9966
}

.index05 .map-top-box div.active:before {
  background: #cc9966;
}

.swiper-slide-active>.map-top-box {
  animation: slideAndFadeIn 1s;
}

.tooltip {
  width: 310px;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.tooltip .item .img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 50px 10px #ffffff inset;
}

.tooltip .item .img {
  position: relative;
  width: 100%;
  height: 160px;
}

.tooltip .item .img img {
  width: 100%;
  height: 160px;
}

.tooltip .item .title {
  color: #000;
  font-size: 15px;
  /* padding: 15px 20px 8px; */
  width: 270px;
  white-space: wrap;
  /* text-overflow: ellipsis;
  overflow: hidden; */
}

.tooltip .item .citys {
  color: #999;
  font-size: 14px;
  /* padding: 0 20px 10px; */
  width: 270px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tooltip .item .url {
  position: relative;
  display: block;
  color: #fff;
  font-size: 12px;
  text-indent: 15px;
  width: 60px;
  height: 30px;
  line-height: 30px;
  margin-left: 20px;
  margin-bottom: 10px;
  background-image: linear-gradient(90deg,
      rgba(241, 211, 151, 1) 50%,
      rgba(206, 155, 53, 1) 100%);
}

.tooltip .item .arrow {
  margin-left: 10px;
  position: absolute;
  top: 10px;
  right: 4px;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

/* 轮播图样式 */
.tooltip .swiper-button-prev,
.tooltip .swiper-button-next {
  color: #fff;
  top: 40%;
}

.tooltip>.swiper-pagination-bullets {
  bottom: 8px
}

.tooltip .swiper-pagination-fraction {
  color: #333;
  line-height: 40px;
  bottom: 8px;
  right: 20px;
  left: auto;
  width: 30%;
  text-align: right;
}

.tooltip .swiper-pagination-fraction .swiper-pagination-current {
  color: #cc9966;
}

/* 地图-基金板块-提示框 */
.jj-tooltip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 200px;
  background: transparent;
  background: url("../images/jj_bg.png") center center no-repeat;
}

.jj-tooltip .title {
  /* display: none; */
}

.jj-tooltip .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.jj-tooltip .item .img{
  display: none;
}

.jj-tooltip .item .img:after {
  display: none;
}

.jj-tooltip .item .title{
  margin: -10px 0 10px;
  width: 180px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  white-space: wrap;
}

.jj-tooltip .item .citys {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 24px;
}

.jj-tooltip .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.jj-tooltip .swiper-pagination-fraction{
  bottom: 25px;
}

.jj-tooltip .swiper-pagination-fraction .swiper-pagination-current,
.jj-tooltip .swiper-pagination-fraction {
  color: #fff;
}

/* 轮播图样式 */
.jj-tooltip .swiper-button-prev,
.jj-tooltip .swiper-button-next {
  top: 48%;
}

.jj-tooltip .swiper-button-next:after,
.jj-tooltip .swiper-button-prev:after {
  font-size: 24px;
}

.es-map-in {
  animation: slideAndFadeIn 1s;
}

.es-map-out {
  animation: slideAndFadeOut 1s;
}

@keyframes slideAndFadeIn {
  0% {
    transform: translateY(218px) scale(0.75);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideAndFadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}