tom
2023-12-06 9e968679ed2e6937aeb7b50a6c450d5d19251f42
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*++++++++ A ++++++++++*/
 
.tab-A {
    position: relative;
    width: 100%;
    height: 100%;
}
 
.tab-A-headerOuter {
    position: relative;
    width: 100%;
    margin-top: 1px;
    height: 22px;
    line-height: 22px;
    border-bottom: 1px solid #e0e0e0;
}
 
.tab-A-goleft {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 24px;
    height: 100%;
    cursor: pointer;
    text-align: center;
    background-color: #ebf1ed;
    color: #e1d4d4;
}
 
.tab-A-goright {
    position: absolute;
    top: 0px;
    width: 24px;
    right: 0px;
    height: 100%;
    cursor: pointer;
    text-align: center;
    background-color: #ebf1ed;
    color: #e1d4d4;
}
 
.tab-A-header {
    position: absolute;
    left: 24px;
    right: 24px;
    height: 100%;
    overflow: hidden;
}
 
.tab-A-header-inner {
    height: 100%;
}
 
.tab-A-body {
    position: absolute;
    top: 23px;
    width: 100%;
    bottom: 0px;
}
 
.tab-A-item-header {
    width: 110px;
    border: 2px solid #a4dddb80;
    border-radius: 10px 10px 0px 0px;
    background: #ffffff;
    float: left;
    /* width: 160px; */
    height: 100%;
    margin-left: 3px;
    color: gray;
    text-align: center;
    /* background-image: url("../img/tab_gray_unactive.png"); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    overflow: hidden;
    cursor: pointer;
    font-size: 13px;
    line-height: 20px;
}
 
.closeTab {
    /* background-image: url("../img/Colosed_1.png"); */
    background-size: cover;
    display: inline-block;
    height: 18px;
    width: 18px;
    float: right;
    color: gray;
    margin-right: 5px;
    /* margin-top: 2px; */
}
 
#closeBtn:hover {
    /* background-image: url("../img/closed_color.png"); */
    background-size: cover;
    display: inline-block;
    height: 18px;
    width: 18px;
    float: right;
    color: #333333;
    /*   margin-right: 5px;
   margin-top: 2px; */
}
 
.tab-A-item-selectedHeader {
    color: black;
    background-color: #a0fecc40;
    /* background-image: url("../img/tab_gray_active.png"); */
    overflow: hidden;
}
 
.tab-A-item-headerImg {
    font-size: 8px;
    margin-right: 3px;
    margin-left: 5px;
}
 
.tab-A-item-iframe {
    height: 100%;
    width: 100%;
    border: none;
    z-index: 10;
}
 
.tab-A-subitem-iframe {
    height: 100%;
    width: 100%;
    margin-left: -100%;
    border: 1px solid #d8d8d8;
    z-index: 10;
}
 
.tab-A-item-div {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}