@charset "UTF-8";
/*
  线条
  @component line
  @style
  @display Line
  @chinese 线条
  @family style
 */
:root {
  /*
    @desc line-0
    @semantic 无线条
    @group line.width
    @type number
    @unconfigurable
   */
  --line-zero: 0vw;
  /*
    @desc line-1
    @semantic 线条1
    @group line.width
    @type number
   */
  --line-1: 1px;
  /*
    @desc line-2
    @semantic 线条2
    @group line.width
    @type number
   */
  --line-2: 0.26666666666666666vw;
  /*
    @desc line-3
    @semantic 线条3
    @group line.width
    @type number
   */
  --line-3: 0.5333333333333333vw;
  /*
    @desc line-solid
    @semantic 实线
    @group line.style
    @unconfigurable
    @type line-style
   */
  --line-solid: solid;
  /*
    @desc line-dashed
    @semantic 虚线
    @group line.style
    @unconfigurable
    @type line-style
   */
  --line-dashed: dashed;
  /*
    @desc line-dotted
    @semantic 点线
    @group line.style
    @unconfigurable
    @type line-style
   */
  --line-dotted: dotted;
}