public.less 897 Bytes
//颜色参数
@bg-b: #333;
@bg-b-s:#444;
@black-line:#191919;
@gray-line:#666;
@light-line:#ddd;
@main-font-color:#fff;
@secondary-font-color:#999;
@gold-color-light:#FFD04B;
@gold-color: #a18430;

//公共类
.fl-r{
  float: right;
}
.main-block{
  margin: 5px;
  background: white;
  padding: 5px;
}
html{
  font-family: "Helvetica Neue",
  Helvetica,
  "PingFang SC",
  "Hiragino Sans GB",
  "Microsoft YaHei",
  "微软雅黑",
  Arial,
  sans-serif;
}
.clear-both{
  &:after{
    content: '';
    display: block;
    clear: both;
  }
}
//滚动条样式
::-webkit-scrollbar-track-piece { //滚动条凹槽的颜色,还可以设置边框属性
  border-radius: 10px;
}
::-webkit-scrollbar {//滚动条的宽度
  width:5px;
  height:5px;
}
::-webkit-scrollbar-thumb {//滚动条的设置
  background-color:@secondary-font-color;
  border-radius: 10px;
  height: 10px;
  min-height:10px;
}