footermenu_wev8.css
1.95 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
.wev-fm-container{
position: fixed;
z-index: 5000;
top: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
/*
background-color: rgba(0, 0, 0, 0.4);
transition: opacity .282s ease-in-out;
*/
overflow: hidden;
display: none;
}
.wev-fm-mark{
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background-color: #000;
opacity: 0;
z-index: 4000;
-webkit-transition: opacity .282s ease-in-out;
transition: opacity .282s ease-in-out;
}
.wev-fm-mark.show{
opacity: 0.4;
}
.wev-fm-content{
position: absolute;
left: 0px;
bottom: 0px;
width: 100%;
padding: 10px;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
z-index: 4500;
box-sizing: border-box;
}
.wev-fm-content.hide{
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.wev-fm-ul {
margin: 0;
padding: 0;
color: #777;
overflow: hidden;
border-radius: 13px;
}
.wev-fm-ul .menuLi{
height: 46px;
font-size: 16px;
font-weight: 300;
line-height: 46px;
text-align: left;
color: #000;
background-color: #fff;
padding-left: 10px;
position: relative;
-webkit-tap-highlight-color:transparent;
}
.wev-fm-ul .menuLi .menuText{
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */
padding-left: 8px;
height: 46px;
border-bottom: 1px solid rgb(228, 228, 228);
}
.wev-fm-ul .menuLi:last-child .menuText{
border-bottom: none;
}
.wev-fm-ul .menuLi .menuIcon{
position: absolute;
top: 11px;
right: 18px;
width: 24px;
height: 24px;
}
.wev-fm-ul-cancel{
margin: 0;
padding: 0;
margin-top: 10px;
overflow: hidden;
}
.wev-fm-ul-cancel .cancel{
height: 50px;
color: #017afd;
font-size: 20px;
font-weight: 300;
line-height: 50px;
text-align: center;
font-weight: bold;
background-color: #fff;
border-radius: 13px;
-webkit-tap-highlight-color:transparent;
}
.wev-fm-ul .menuLi.active,
.wev-fm-ul-cancel .cancel.active{
background-color: rgb(218, 218, 218);
}