

/* 加载中动画  开始 */
.spinnerLoad {
    margin: 17px auto 3px auto;
    width: 28px;
    height: 28px;
    position: relative;
  }
   
  .containerLoad1 > div, .containerLoad2 > div, .containerLoad3 > div {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 100%;
    position: absolute;
    -webkit-animation: mapLoadDelay 1.2s infinite ease-in-out;
    animation: mapLoadDelay 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
   
  .spinnerLoad .spinnerLoad-container {
    position: absolute;
    width: 100%;
    height: 100%;
  }
   
  .containerLoad2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
   
  .containerLoad3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
  }
   
  .circleLoad1 { top: 0; left: 0; }
  .circleLoad2 { top: 0; right: 0; }
  .circleLoad3 { right: 0; bottom: 0; }
  .circleLoad4 { left: 0; bottom: 0; }
   
  .containerLoad2 .circleLoad1 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
   
  .containerLoad3 .circleLoad1 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
   
  .containerLoad1 .circleLoad2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
   
  .containerLoad2 .circleLoad2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
  }
   
  .containerLoad3 .circleLoad2 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
  }
   
  .containerLoad1 .circleLoad3 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
  }
   
  .containerLoad2 .circleLoad3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
   
  .containerLoad3 .circleLoad3 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
  }
   
  .containerLoad1 .circleLoad4 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
  }
   
  .containerLoad2 .circleLoad4 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
  }
   
  .containerLoad3 .circleLoad4 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
  }
   
  @-webkit-keyframes mapLoadDelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
  }
   
  @keyframes mapLoadDelay {
    0%, 80%, 100% {
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 40% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }
/* 加载中动画  结束 */


/* 关闭内部元素撑开父级元素*/
.hiddenOverflow{
  text-overflow: ellipsis;
  /* overflow: hidden; */
  white-space: nowrap;
}

/* 运动曲线1 */
.motionCurve1{
  transition: all 300ms  cubic-bezier(0.4, 0.0, 0.2, 1) ;
}



/* 地图加载中 */
.guideCtrl_loadMapOver {
  position: absolute;
  top: 45vw;
  left: calc(50vw - 40px);
  width: 80px;
  height: 80px;
  /* border: 1px solid #ccc; */
  border-radius: 6px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  font: normal bold 12px/32px "PingFang-SC-Bold";
  color: rgba(255, 255, 255, 1);
  letter-spacing: 2px;
}


.box-shadow{
    box-shadow: 0 1.6px 3.6px 0 rgba(0,0,0,.132), 0 0.3px 0.9px 0 rgba(0,0,0,.108);
}
*:not(input,textarea){
    -webkit-touch-callout:none;        /*阻止长按图片之后呼出菜单提示复制的行为*/
    -webkit-user-select:none;       /*不可复制*/
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-text-size-adjust: none;   /*禁用Webkit内核浏览器的文字大小调整功能。*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);  /*避免点击a标签或者注册了click事件的元素时产生高亮*/  
}

input, textarea {
    -webkit-user-select: auto!important;
    -khtml-user-select: auto!important;
    -moz-user-select: auto!important;
    -ms-user-select: auto!important;
    -o-user-select: auto!important;
    user-select: auto!important;
}

.ProgressBarCon{
    position: absolute;
    background: #FFFFFF;
    height: 100vh;
    width: 100%;
    z-index: 2003;
}
.ProgressBarItem{
    position: absolute;
    top: 29%;
    left: 50%;
    transform: translateX(-50%);
}


.leaveConfirm_content_body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    white-space: initial;
}

.leaveConfirm_backdrop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 12;
}