zero-buy.page.css
1.55 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
@import '~bootstrap-daterangepicker';
.search-wrap {
padding-bottom: 20px;
}
.action-wrapper .btn {
margin-top: 5px;
}
.error-message {
margin-top: 5px;
color: #f5222d;
}
.search-wrap > * {
display: inline-block;
max-width: 50%;
vertical-align: middle;
margin-bottom: 0;
margin-right: 20px;
}
.cover-img {
width: 160px;
}
.floor-view-box {
min-height: 300px;
border: 1px solid #ccc;
border-radius: 4px;
margin-top: 30px;
margin-bottom: 30px;
padding: 0;
}
.floor-item {
position: relative;
min-height: 100px;
background-color: #eee;
}
.option-btns {
position: absolute;
top: 0;
right: 10px;
font-size: 20px;
}
.option-btns > * {
display: inline-block;
width: 30px;
text-align: center;
cursor: pointer;
}
.del-item-btn {
position: absolute;
top: 0;
right: -60px;
line-height: 30px;
width: 60px;
background-color: #d44950;
color: #fff;
text-align: center;
display: none;
cursor: pointer;
}
.floor-item > textarea {
position: absolute;
top: 28px;
left: 0;
right: 0;
bottom: 0;
}
.floor-item > img,
.floor-item > video {
width: 100%;
}
.floor-item > p {
padding: 30px 10px;
text-align: center;
word-break: break-all;
}
.floor-item:hover .del-item-btn {
display: block;
}
.input-switch-group .tip-group,
.input-switch-group .link-group{
display: none;
}
.input-switch-group.type-tip .tip-group{
display: block;
}
.input-switch-group.type-link .link-group{
display: block;
}