// 该文档用于定义简单的混入方法，用于替代公用的class

// 清除浏览器默认样式
s-reset()
  outline 0
  user-select none
  background-image none
  touch-action manipulation

// 文体超出部分省略号
s-ellipsis()
  overflow hidden
  white-space nowrap
  text-overflow ellipsis

// 伪类
s-pseudo()
  content ''
  position absolute
  top -1px
  left -1px
  bottom -1px
  right -1px
  border-radius inherit
  z-index 1
  display none

// 文字类

// 大号1 L1
s-font-h1()
  s-set-font(40px, 64px)
// 大号2 L2
s-font-h2()
  s-set-font(32px, 52px)

// 标题1 H1
s-font-title1()
  s-set-font(20px, 32px)
// 标题2 H2
s-font-title2()
  s-set-font(16px, 26px)
// 标题3 H3
s-font-title3()
  s-set-font(14px, 22px)

// 正文 Body
s-font-body()
  s-set-font(12px, 20px)

// 说明 Caption
s-font-caption()
  s-set-font(12px, 20px)










