Blame view

pages/index/rank/rank.wxss 1.52 KB
aa2980c5   夏洋涛   feat:创建应用
1
/* pages/index/rank/rank.wxss */
4b6fcb89     feat:部分静态页面调整
2
3
4
5
6
7
8
9
10
11
12
13
.rank {
  position: absolute;
  width: 100vw;
  min-height: 100vh;
  background-size: 100% 100%;
  padding: 0 5vw;
  box-sizing: border-box;
}
.rank_time {
  font-size: 4.4vw;
  color: #fff;
  opacity: 0.8;
d46806b9     结构调整
14
  margin-top: 125px;
4b6fcb89     feat:部分静态页面调整
15
16
17
18
  margin-left: 2vw;
}
.white_box{
  width: 90vw;
44101ab3     修改调整
19
  min-height: 70vh;
4b6fcb89     feat:部分静态页面调整
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  margin-top: 40px;
  background-color: #fff;
  border-radius: 4vw;
  padding: 7vw 5vw;
  box-sizing: border-box;
}
.title_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3.9vw;
  font-weight: bold;
  padding: 30px 5vw;
  box-sizing: border-box;
  border-radius: 5vw;
  box-shadow: 1px 1px 1px 1px rgb(207, 206, 206);
}
.title_pic {
  display: flex;
  align-items: center;
}
.pic {
  width: 25px;
  height: 25px;
  border-radius: 25px;
  margin-right: 7px;
}
.red_title {
  color: #FD676A;
}
.grey_title {
  margin: 30px 0;
  font-size: 4.5vw;
  color: #999;
  display: flex;
  justify-content: space-between;
}
.table_L{
  width: 28vw;
  display: flex;
  justify-content: space-between;
d3566844     打卡功能简单版
61
  align-items: center;
8cd16d4b     feat:打卡模板创建
62
63
64
}
.L_box {
    width: 50px;
4b6fcb89     feat:部分静态页面调整
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
}

.table_item {
  margin: 20px 0;
  font-size: 4vw;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table_R {
  width: 45vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grey_R {
  color:#999;
  font-size: 3.9vw;
}
.tem_pic {
  width: 22px;
  height: 28px;
8cd16d4b     feat:打卡模板创建
88
  text-align: center;
d46806b9     结构调整
89
90
91
92
93
94
}
.btn {
    position: fixed;
    bottom: 50px;
    width: 82vw;
    margin-left: 4vw;
4b6fcb89     feat:部分静态页面调整
95
}