Tab_wev8.css
968 Bytes
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
.tabContainer{
}
.tabTitle{
box-sizing:border-box;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling:touch;
background-color: #fff;
}
.tabTitle ul{
list-style: none;
margin:0;padding:0px;
overflow: hidden;
display: table;
}
.tabTitle ul li{
line-height:34px;
font-size:16px;
color:#444;
cursor: pointer;
padding: 0 8px;
display: table-cell;
position: relative;
color: #a8a8a8;
text-align: center;
font-family: 'Microsoft Yahei', Arial, sans-serif;
border: none;
white-space:nowrap;
-webkit-tap-highlight-color: transparent;
}
.tabTitle ul li.selected{
border-bottom:2px solid rgb(13, 147, 246);color:#017afd;font-weight:normal;
}
.tabTitle img{
position: absolute;
right: 30px;
top: 5px;
}
.tabContainer .tabContent{
}
.tabContainer .tabContent .beTabPage{
opacity: 0;
}
.tabContainer .tabContent .tabPage{
display: none;
opacity: 1;
}
.tabContainer .tabContent .tabPage.selected{
display: block;
}