// variable.less 定义less变量

//定义公共变量
@baseColor:#7BBEED;
@headerBg:red;
@contentBg:blue;
@footerBg:green;
// 定义公共样式
.base-text-color{
  color:@baseColor;
}
.base-bg-color{
  background:@baseColor;
}
.base-border-b-color{
  border-bottom:2px solid @baseColor!important;
}
.swiper-pagination-bullet-active{
  background:@baseColor!important;
}