/*
 * @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-fade-enter {
  opacity: 0;
}
.gd-fade-enter-active {
  transition: opacity 0.3s ease;
}
.gd-fade-leave-active {
  transition: opacity 0.3s ease;
}
.gd-fade-leave-to {
  opacity: 0;
}
.gd-nps__items {
  display: flex;
}
.gd-nps__item {
  width: 34px;
  height: 34px;
  background: #f7faff;
  border-radius: 2px;
  border: 1px solid #95beff;
  cursor: pointer;
  font-size: 12px;
  color: #5c99ff;
  line-height: 34px;
  margin-right: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.gd-nps__item:hover {
  background: #95beff;
  border-radius: 2px;
  color: white;
}
.gd-nps__item--active:hover,
.gd-nps__item--active {
  background: #106AFF;
  border-color: #106AFF;
  color: white;
}
.gd-nps__item:last-child {
  margin-right: 0;
}
.gd-nps__tips {
  font-size: 12px;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}
