/*
 * @Author: 天吾
 * @Date: 2019-01-23 16:29:55
 * @Last Modified by: 天吾
 * @Last Modified time: 2019-04-27 19:55:52
 */
/*
    size 统一用  sm base lg  表示,  对于不能满足的情况, 仿照衣服尺寸加上 x(EXTRA) 比如  font-size-xlg 表示特大
*/
.gd-lazy-image {
  display: flex;
  position: relative;
}
.gd-lazy-image--loaded .gd-lazy-image__bg {
  opacity: 0;
}
.gd-lazy-image img {
  width: 100%;
  object-fit: contain;
}
.gd-lazy-image img[src=""],
.gd-lazy-image img:not([src]):not(.gd-lazy-image--color) {
  opacity: 0;
}
.gd-lazy-image__bg {
  transition: all ease 0.2s;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
