forked from nsjcy/frontEnd/nsjcy

liuwh
2020-03-29 9c7c21e8eacda173feb418bdfe739f7f97358233
1
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
/* pages/guideInfo/guideInfo.wxss */
.guideInfo {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
  padding:0 4vh;
}
 
.guideInfo-nav {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
 
.guideInfo-time {
  font-size: 16px;
  color: #333;
  padding-bottom:2vh;
}
 
.guideInfo-title {
  font-size: 14px;
  line-height: 22px;
  padding-bottom:2vh;
}
 
.guideInfo-main {
}
 
.guideInfo-message {
  display: flex;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}
 
.guideInfo-message span:nth-child(1) {
  border-left: 3px solid #2195ff;
}
 
.guideInfo-message span:nth-child(2) {
  padding-left: 1vh;
  font-size: 18px;
  font-weight: bold;
}
 
.guideInfo-img {
  display: flex;
  flex-direction: column;
  width: 90px;
  align-items: center;
}
 
.guideInfo-img-top {
  width: 48px;
  height: 48px;
}
 
.guideInfo-img-bottom {
  font-size: 12px;
  color: #333;
}