

/* 滿版(全螢幕)提示 */
.callFull {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
  background-color: rgba(0, 0, 0, 0.5); 
}

.callFullFinger_ios{
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: url("../icon/button_touch.png");
  max-width: 30%;
  max-height: 30%;
  animation: fingerAnim 1000ms infinite;
  -webkit-animation: fingerAnim 1000ms infinite;
}

.callFullFinger{
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: url("../icon/button_touch.png");
  max-width: 30%;
  max-height: 30%;
  /* animation: fingerAnim 1000ms infinite;
  -webkit-animation: fingerAnim 1000ms infinite; */
}


/** 手指滑動關閉按鈕 */
.callFullClose{
  background-image: url("../icon/btn_close.svg");
  background-repeat:no-repeat;
  width: 40px;
  height: 40px;
  top: 50px;
  right: 40px;
  position: fixed;
  background-size: 40px 40px;  
}

.callFullCloseH{
  position: fixed;
  top: 80px;
  right: 200px;
  display: none;
}

@keyframes fingerAnim {
  0%{
    top: 35%;
  }
  50%{
    top: 30%;
  }
  100%{
    top: 35%;
  }
}
@-webkit-keyframes fingerAnim {
  0%{
    top: 35%;
  }
  50%{
    top: 30%;
  }
  100%{
    top: 35%;
  }
}
