landjj321
2021-03-24 7a40618acb00bf5864ae0314e13aeb84e07e80ec
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;
}