Blame view

pages/index/newPunch/newPunch.wxss 1.11 KB
aa2980c5   夏洋涛   feat:创建应用
1
/* pages/index/newPunch/newPunch.wxss */
4b6fcb89     feat:部分静态页面调整
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.punch_detail {
  position: absolute;
  width: 100vw;
  min-height: 100vh;
  background-color: #F5F6FA;
}

.title_card {
  margin: 15px 0;
}

.grey_line {
  width: 80vw;
  height: 1px;
}

.box_card {
  width: 100vw;
  min-height: 120px;
  background-color: #fff;
}

.tip_card {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  background-color: #fff;
}

.tip_item {
  width: 70px;
  height: 30px;
  margin-right: 5vw;
}

.pic {
  width: 100%;
  height: 100%;
}

.white_card {
  width: 100vw;
  background-color: #fff;
  padding: 20px 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.bold_font {
  font-weight: bold;
}

.white_card_nopadding {
  width: 100vw;
  background-color: #fff;
  font-weight: bold;
  height: 60px;
  padding-top: 11px;
  box-sizing: border-box;
}

.sm_grey_font {
  padding: 15px 0 15px 20px;
  box-sizing: border-box;
  font-size: 12px;
  color: #999;
}

.clearance {
  width: 100vw;
  height: 20px;
}

.btn {
  width: 100vw;
  height: 80px;
  background-color: #fff;
  padding: 20px 30px 80px;
  box-sizing: border-box;
6be5e8a2     1.4版本
82
}