/*================变量==================*/ @primary-color: #C52733; @dark-color: #333333; @white-color: #fff; /*=====================================*/ .v12-primary{ background-color: @primary-color; background: @primary-color; } .v12-primary-text{ color: @primary-color; } .v12-dark{ background: @dark-color !important; background-color: @dark-color !important; } .v12-dark-text{ color: @dark-color !important; } .v12-white{ background-color: @white-color; background: @white-color; } .v12-white-color{ background-color: @white-color; background: @white-color; } .generateFontSize(@i) when (@i <= 80) { .v12-font-@{i} { font-size: @i * 1rpx !important; } .generateFontSize(@i + 4); } .generateFontSize(20); .v12-font-bold{ font-weight: bold !important; }