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
.container{
margin:0 auto;
max-width:768px;
height: 100vh;
}
.container .header{
position: relative;
z-index: 10;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
height: 44px;
color: #333;
background-color: #fff;
font-size: 18PX;
text-align: center;
}
.header .seller-info{
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
-webkit-box-align: center;
align-items: center;
-webkit-box-flex: 1;
flex: 1;
overflow: hidden;
}
.header .back{
background: #333;
background-size: 20PX 20PX;
background-position: 50%;
float: left;
width: 40PX;
height: 20px;
cursor: pointer;
}
.header .seller-info>i{
display: inline-block;
margin-right: 7px;
-webkit-box-flex: 0;
flex: 0 0 24px;
vertical-align: middle;
height: 24px;
border-radius: 14px;
background-size: cover;
background-repeat: no-repeat;
}
.header .share-icon{
width: 40PX;
float: right;
background: url(https://n1image.hjfile.cn/res7/2019/01/22/cdb7fff….png) no-repeat;
background-size: 20PX 20PX;
background-position: 50%;
cursor: pointer;
}
.intro{
position: relative;
margin-top: 40px;
padding: 20px;
background: #f2f3f7;
font-size: 16px;
color: #54677d;
line-height: 30px;
word-break: break-all;
word-wrap: break-word;
white-space: pre-wrap;
box-sizing: border-box;
}
.intro::before{
position: absolute;
top: 0;
left: 10px;
display: block;
content: "";
height: 31px;
width: 48px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
background: url('../images/quto.png') no-repeat 50%/cover;
}
.go-back{
padding:0 30px;
height: 28px;
line-height: 28px;
background: #2f5aff;
color:#fff;
border-radius: 20px;
display: table;
margin:0 auto;
margin-top:20px;
cursor: pointer;
user-select: none;
}