1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
@charset "UTF-8";
/*查询条件内容样式*/
#searchOpt{
    width: 100%;
}
#searchOpt .change-tbl {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    background: url(../image/table_th_bg.gif) repeat-x;
}
#searchOpt .change-tbl:hover {
    color: #6158F0;
}
/*查询条件表格的定义*/
#searchOpt table{
    width: 100%;
    border-collapse: collapse;
}
#searchOpt table th{
    padding: 8px 0;
    border:1px solid #ccc;
}
#searchOpt table td{
    border: 1px solid #ccc;
}
#searchOpt table td input[type="text"] {
    width: 100%;
    height: 30px;
    border: none;
}
#searchOpt table td input[type="button"] {
    /*初始化按钮*/
    font-size: 12px;
    text-decoration: none!important;
    font-family: Helvetica, Arial, sans serif;
    padding: 6px 16px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: inset 0px 0px 2px #fff;
    -o-box-shadow: inset 0px 0px 2px #fff;
    -webkit-box-shadow: inset 0px 0px 2px #fff;
    -moz-box-shadow: inset 0px 0px 2px #fff;
    /*定义颜色和样式*/
    color: #41788c;
    border: 1px solid #6fb1c7;
    background-image: -moz-linear-gradient(#aae5f7, #73d0f1);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#73d0f1), to(#aae5f7));
    background-image: -webkit-linear-gradient(#aae5f7, #73d0f1);
    background-image: -o-linear-gradient(#aae5f7, #73d0f1);
    text-shadow: 1px 1px 1px #bfeafb;
    background-color: #73d0f1;
}
#searchOpt table td input[type="button"]:hover {
    border: 1px solid #4690ad;
    background-image: -moz-linear-gradient(#73d0f1, #aae5f7);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#aae5f7), to(#73d0f1));
    background-image: -webkit-linear-gradient(#73d0f1, #aae5f7);
    background-image: -o-linear-gradient(#73d0f1, #aae5f7);
    background-color: #aae5f7;
}
#searchOpt table td select {
    width: 100%;
    height: 30px;
    border: none;
}
/*分页样式*/
#paging{
    padding:6px 0;
    font-size: 14px;
    background:url(../image/table_th_bg.gif) repeat-x;
    text-align: center;
}
#paging input{
    width:28px;
    height:24px;
    border:1px solid #00FFFF;
}
#paging span{
    margin-left:20px;
}
#paging a{
    margin-left:10px;
}
#paging .input_container{
    width:100%;
}