/*
 * @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-tips {
  background: #474747;
  border-radius: 4px;
  color: #fff;
  font-size: 1.14em;
  padding: 20px;
  min-width: 160px;
  max-width: 400px;
  min-height: 24px;
  overflow: hidden;
  text-align: center;
  position: fixed;
  top: 40%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s linear, visibility 0.3s linear;
}
.gd-tips-fade-enter-active {
  transition: all 0.3s ease;
}
.gd-tips-fade-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
.gd-tips-fade-enter,
.gd-tips-fade-leave-to {
  opacity: 0;
}
