.mt-16 {
  margin-top: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.pb-16 {
  padding-bottom: 16px;
}

.ya-table-empty-slot {
  height: 100%;
}

.ya-split-panel-container-right {
  overflow: auto;
}

.custom-screen-container .ya-time {
  width: 100%;
  height: 32px;
  background-image: url("../assets/image/screen/icon-screen-time.svg");
  background-size: 100% 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  font-size: 14px;
  padding: 4px;
  box-sizing: border-box;
  // margin-bottom: 20px;
  position: absolute;
  top: 0;
}

.custom-screen-container .ya-time .ya-item {
  cursor: pointer;
  flex: 1;
}

.custom-screen-container .ya-time .ya-item.active {
  // background-color: #00A7C1;
  /* 图片注释---demo */
  // background-image: url("@/assets/image/screen/icon_tab_active.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 12px;
  height: 24px;
  line-height: 24px;
}

.ya-chart-map {
  // flex: 1;
  // padding-bottom: 32px;
  position: relative;
  // width: 900px;
  height: 599px;

  .ya-echart-tip {
    position: absolute;
    pointer-events: none;
    width: 200px;
    height: 100px;
    /* 图片注释---demo */
    // background-image: url("@/assets/image/screen/icon_maptip_bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    // top: 0;
    // left: 0;
    transform: translate(-20px, -80px);
    transition: left 1s cubic-bezier(0.23, 1, 0.32, 1) 0s,
      top 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    .ya_total {
      font-size: 24px;
      font-family: YouSheBiaoTiHei;
      color: #ffffff;
      position: absolute;
      left: 44px;
      top: 9px;
      width: 145px;
      height: 32px;
      display: flex;
      word-break: break-all;
      line-height: 0.8;
      align-items: center;
    }
    .ya_name {
      position: absolute;
      left: 95px;
      top: 40px;
      font-size: 14px;
      font-weight: bold;
      /* font-family: Source Han Sans CN; */
      color: #ffc273;
      display: flex;
      align-items: center;
      img {
        width: 14px;
        height: 18px;
        margin-right: 5px;
      }
      span {
        letter-spacing: 3px;
      }
      /* 图片注释---demo */
      .ya_icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 14px;
        height: 18px;
        /* 图片注释---demo */
        // background-image: url("@/assets/image/screen/icon_top.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        color: #fff;
      }
    }
  }
}
.ya-chart-map .ya-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(74deg);
  bottom: -122px;
  left: -14px;
}
.ya-chart-map .ya-bg img {
  position: absolute;
}
.ya-chart-map .ya-bg .icon_circel_inner {
  width: 63%;
  animation: clockWiseRotate 30s linear infinite;
}
.ya-chart-map .ya-bg .icon_circel_center {
  width: 75%;
  animation: clockWiseRotateReverse 30s linear infinite;
}
// .ya-chart-map .ya-bg .icon_circel_out {
//   width: 100%;
//   animation: clockWiseRotate 30s linear infinite;
// }
.ya-chart-map .ya-map-bg {
  width: 719px;
  margin: 0 auto;
  padding-top: 28px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.ya-chart-map .ya-map-bg.anhui {
  top: -82px;
  width: 581px;
  height: 556px;
  img {
    height: 100%;
  }
}
.ya-chart-map .ya-map-bg img {
  width: 100%;
}
.ya-chart-map .ya-echart {
  width: 900px;
  height: 600px;
  position: absolute;
  top: -62px;
  left: 50%;
  transform: translateX(-50%);
}
.ya-chart-map .ya-echart.anhui {
  top: -147px;
  // left: 47px;
  width: 730px;
  height: 730px;
}
@keyframes clockWiseRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes clockWiseRotateReverse {
  0% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(-180deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
  }
}

// 大屏
.custom-screen-container {
  width: 1920px;
  height: 1080px;
  background-size: 100% 100%;
  flex-direction: column;
  box-sizing: border-box;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  overflow: hidden;
  transform-origin: left top;
  z-index: 999;
  .custom-screen-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex: 1;
    width: 100%;
    padding: 0 32px;
    margin-top: 10px;
    overflow: hidden;
    box-sizing: border-box;
    color: #fff;
  }
}
