1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| // base color
| $bodyBgColor: #ffffff;
|
| $appWidth: 1200px;
|
| // 字体
| $fontBold: SourceHanSansCN-Bold;
| $fontHeavy: SourceHanSansCN-Heavy;
| $fontMedium: SourceHanSansCN-Medium;
|
|
| .wrapper{
| width:$appWidth;
| margin-left: auto;
| margin-right: auto;
| }
|
| .flex{
| display: flex;
| justify-content: space-between;
| align-items:center;
| }
|
|