/*
 * @filename numberAnimate.js
 * @author fy[2016-9-18 17:09:00]
 * @update fy[2016-9-18 17:09:00]
 * @version v1.0
 * @description 页面数字滚动插件
 * @基于jquery
 */
.mt-number-animate {
  font-family: '微软雅黑';
  line-height: 68px;
  height: 68px; /*设置数字显示高度*/;
  font-size: 66px; /*设置数字大小*/
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.mt-number-animate .mt-number-animate-dot {
  width: 15px; /*设置分割符宽度*/
  line-height: 68px;
  float: left;
  text-align: center;
}

.mt-number-animate .mt-number-animate-dom {
  width: 39px; /*设置单个数字宽度*/
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}

.mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
