10646c94
Andy
add
|
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
|
/*单选复选美化*/
.ITD-form-group input[type=checkbox],
.ITD-form-group input[type=radio ]{
width : 28px;
height : 24px;
margin : 0;
padding : 0;
opacity : 0;
filter: "alpha(opacity=0)"; /* IE 8 */
}
.ITD-form-group input[type=checkbox]+ label{
display : inline-block;
margin-left : -28px;
padding-left : 28px;
background : url('../../../img/input-checkexActive.png') no-repeat 0 center;
line-height : 24px;
opacity : 1;
}
.ITD-form-group input[type=checkbox]:hover + label{
background: url('../../../img/input-checkexActive.png') no-repeat 0 center;
}
.ITD-form-group input[type=checkbox]:checked + label{
background: url('../../../img/input-checkbox.png') no-repeat 0 center;
}
.ITD-form-group input[type=checkbox]:checked:hover + label{
background: url('../../../img/input-checkbox.png') no-repeat 0 center;
}
.ITD-form-group input[type=radio] + label{
/*margin-right: 14px;*/
display : inline-block;
margin-left : -28px;
padding-left : 20px;
background : url('../../../img/input-radio.png') no-repeat 0 center ;
line-height : 24px;
}
.ITD-form-group input[type=radio]:hover + label{
background: url('../../../img/input-radio.png') no-repeat 0 center;
}
.ITD-form-group input[type=radio]:checked + label{
background : url('../../../img/input-radio-active.png') no-repeat 0 center;
}
.ITD-form-group input[type=radio]:checked:hover + label{
background: url('../../../img/input-radio-active.png') no-repeat 0 center;
}
/*弹窗 add */
.peccancymanage-daytitImg {
width: 26px;
height: 24px;
top: 5px;
left: 60px;
background: url(../css/img/chargegroup_smallIcon.png) no-repeat;
background-position: -140px -30px;
}
.peccancymanage-nighttitImg {
width: 26px;
height: 24px;
top: 5px;
left: 60px;
background: url(../css/img/chargegroup_smallIcon.png) no-repeat;
background-position: -105px -30px;
}
.peccancymanage-width80{
width: 80px;
}
.peccancymanage-pad5{
padding-left: 5px;
padding-right: 5px;
}
.peccancymanage-poptime{
padding: 0 10px
}
|