1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| /* pages/rate/rate.wxss */
| .rate {
| width: 100%;
| display: flex;
| height: 50px;
| line-height: 50px;
| }
|
| .title {
| width: 30%;
| text-align: left;
| padding-left: 10px;
| }
|
| .van-rate {
| width: 60%;
| justify-content: center;
| display: flex;
| }
| .rateItem{
| color: #909399;
| }
|
|