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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
| .home {
| .welcome-card {
| height: 180px;
| overflow: hidden;
| position: relative;
|
| .left {
| display: flex;
| padding: 24px;
| height: 100%;
| justify-content: center;
| flex-direction: column;
| z-index: 1;
|
| .user {
| display: flex;
| margin-bottom: 10px;
| z-index: 1;
|
| .avator-img {
| padding: 5px;
| background-color: #f8f8fb;
| border: 1px solid #f6f6f6;
| border-radius: 50%;
| margin-right: 15px;
| }
|
| .avator-icon {
| margin-right: 15px;
| }
|
| .info {
| display: flex;
| flex-direction: column;
| justify-content: space-around;
| height: 60px;
|
| .username {
| color: #2d8cf0;
| font-size: 16px;
| font-weight: 500;
| }
| }
| }
|
| .list {
| color: #74788d;
| font-size: 12px;
| z-index: 1;
|
| .p {
| margin-bottom: 3px;
| height: 16px;
| display: flex;
| align-items: center;
| }
|
| .dot {
| width: 5px;
| height: 5px;
| background-color: #2d8cf0;
| border-radius: 50%;
| display: inline-block;
| margin-right: 10px;
| }
| }
| }
|
| .pic {
| position: absolute;
| right: 20px;
| top: 30px;
| width: 100px;
| z-index: 0;
| }
| }
|
| .timeline-content {
| height: 265px;
| overflow: auto;
| }
|
| .buy-content {
| height: 459px;
| overflow: auto;
|
| .qr {
| display: flex;
| flex-direction: column;
| align-items: center;
| margin-bottom: 10px;
|
| .des {
| text-align: center;
| font-size: 12px;
| line-height: 16px;
| margin: 10px 0;
| }
| }
|
| .flex {
| margin: 10px 0;
| }
|
| .rmb {
| margin-left: 0;
| line-height: 30px;
| color: #d7282d;
| font-size: 18px;
| font-weight: 700;
| }
|
| .price {
| font-size: 28px;
| line-height: 30px;
| margin-left: 2px;
| color: #d7282d;
| font-weight: 700;
| margin-right: 8px;
| }
|
| .origin {
| font-size: 13px;
| color: #999;
| line-height: 24px;
| }
|
| .ps {
| line-height: 25px;
| font-size: 12px;
| display: inline-block;
| background: #f7f7f7;
| margin: 0 3px;
| padding: 1px 5px;
| border-radius: 3px;
| color: #666;
| border: 1px solid #eee;
| }
|
| .light {
| color: #2d8cf0;
| }
| }
|
| .comment-container {
| height: 457px;
| overflow: auto;
| }
|
| .comment-container::-webkit-scrollbar {
| display: none;
| }
| }
|
|