.gif_loading_container_hasmark,
.gif_loading_container_loading {
  position: relative;
  display: block;
}
img.zaker_gif_cache {
  width: 100%;
  width: calc(60vw);
}
.gif_loading_container_hasmark:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.298039);
  background-image: url(/uploads/image/zswimages/icon_gif2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 15px;
  border-radius: 6px;
  content: "";
  z-index: 2;
}
/* .gif_loading_container_loading:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 6px;
    background-size: 34px 6px;
    background-image: url(/uploads/image/zswimages/loading2x.gif);
    -webkit-animation: loading_fadein ease .3s;
    animation: loading_fadein ease .3s;
    z-index: 3;
} */
.gif_loading_progress_outer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.298039);
}
.gif_loading_progress {
  position: relative;
  width: 100px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.gif_loading_progress_in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 95%;
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-animation: gif_loading_progress_in_anime cubic-bezier(0.01, 0.13, 0, 0.99) 20s;
  animation: gif_loading_progress_in_anime cubic-bezier(0.01, 0.13, 0, 0.99) 20s;
}
@-webkit-keyframes gif_loading_progress_in_anime {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
@keyframes gif_loading_progress_in_anime {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
/*鍔ㄧ敾娓愯繘*/
@-webkit-keyframes loading_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
