_rating.css
3.05 KB
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
.service-chat {
/* 评价 */
.comment {
display: none;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.5);
&-inner {
position: absolute;
bottom: 0;
width: 100%;
background: #fff;
padding: 0 30px;
.intro {
height: 90px;
text-align: center;
color: #444;
font-size: 32px;
line-height: 90px;
border-bottom: 1px solid #e0e0e0;
span {
float: right;
min-width: 80px;
text-align: right;
}
}
.stars {
padding: 50px 0 40px;
text-align: center;
i {
display: inline-block;
height: 50px;
width: 53px;
margin-left: 40px;
background: resolve("service/chat/star-trans.png");
background-size: 100% 100%;
}
i:nth-child(1) {
margin: 0;
}
i.rated {
background: resolve("service/chat/star-yellow.png");
background-size: 100% 100%;
}
}
.rank {
text-align: center;
font-size: 32px;
color: #b0b0b0;
}
.cause {
font-size: 0;
span {
position: relative;
display: inline-block;
margin: 10px;
width: 328px;
width: calc(50% - 20px);
font-size: 28px;
border: 1px solid #000;
line-height: 70px;
text-align: center;
border-radius: 5px;
}
.select:after {
position: absolute;
bottom: -1px;
right: -1px;
width: 30px;
height: 30px;
content: "";
display: inline-block;
background: resolve("service/chat/cause-select.png");
background-size: cover;
}
}
.words-to-say {
height: 110px;
width: 100%;
margin: 10px 0 0;
padding: 16px;
resize: none;
border: 1px solid #e0e0e0;
border-radius: 5px;
}
.submit {
height: 85px;
width: 100%;
margin: 25px 0;
color: #fff;
background: #444;
font-size: 32px;
text-align: center;
line-height: 85px;
border-radius: 5px;
}
}
}
}