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
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
@charset "UTF-8";
.popup:before, .popup:after,
.popup-title:before, .popup-title:after {
    display: table;
    content: " ";
}
 
.popup:after, .popup-title:after {
    clear: both;
}
.popup {
    visibility: hidden;
    position: fixed;
    top: -9999px;
    left: 50%;
    margin-left: -180px;
    z-index: 9999;
    width: 360px;
    min-width: 360px;
    height: auto;
    background-color: #FFFFFF;
    overflow-x: hidden;
    border: 1px solid #ccc;
}
.popup.popupW500 {
    width: 500px;
    margin-left: -250px;
}
.popup .popup-title {
    width: 100%;
    background: url(../image/table_th_bg.gif) repeat-x;
}
.popup .popup-title span{
    display: block;
    float:left;
    margin-left: 10px;
    padding: 6px;
    font-weight: bold;
}
.popup .popup-title .close{
    display: block;
    padding: 6px;
    float: right;
    font-size: 16px;
    color: #050505;
    text-decoration: none;
 
}
.popup .popup-title .close:hover{
    color: #FFFFFF;
    background-color: #F88686;
}
 
.popup .popup-content {
    padding: 10px 8px;
}
.popup .popup-content .popup-list {
    padding: 8px 0;
}
.popup .popup-content span {
    font-weight: bold;
}
.popup .popup-content input[type="text"] {
    border: 1px solid #ccc;
    height: 1.5em;
}
.popup .popup-content select {
    border: 1px solid #ccc;
    height: 1.5em;
}
.popup-footer{
    padding: 10px 0;
}
.popup-footer input[type="button"] {
    /*初始化按钮*/
    font-size: 12px;
    text-decoration: none!important;
    font-family: Helvetica, Arial, sans serif;
    padding: 6px 14px;
    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;
    /*按钮的上右下左的距离*/
    margin-left: 20%;
}
.popup-footer 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: #EAF5F8;
}
 
.popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    width: 100%;
    height: 0;
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity = 50);
}