question-list.page.scss
1.83 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
.nav-home {
display: none !important;
}
.qs-list-page {
font-size: 28px;
$borderColor: #ececec;
.qs-list {
line-height: 90px;
color: #444;
padding-left: 30px;
border-bottom: 1px solid $borderColor;
> li {
border-top: 1px solid $borderColor;
}
}
.empty-list {
font-size: 24px;
color: #bbb;
text-align: center;
padding-top: 360px;
line-height: 2;
}
.tip-dialog {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
z-index: 10;
&:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
z-index: -1;
}
.dg-wrap {
width: 70%;
background: #fff;
border-radius: 6px;
position: absolute;
left: 15%;
top: 50%;
margin-top: -95px;
}
.dg-content {
height: 140px;
line-height: 140px;
> p {
width: 100%;
line-height: 1.4;
display: inline-block;
text-align: center;
vertical-align: middle;
}
}
.dg-btns {
border-top: 1px solid #efefef;
> * {
width: 50%;
line-height: 60px;
text-align: center;
display: block;
float: left;
cursor: pointer;
}
}
.dg-btns .sure-btn {
width: 100%;
}
.share-btn {
border-left: 1px solid #efefef;
box-sizing: border-box;
color: #d90005;
}
}
}