zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
#popup_container {
    font-family: Arial, sans-serif;
    font-size: 12px;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    background: #FFF;
    border: solid 2px #3A3A3A;
    color: #000;
    border-radius:5px;/*Ô²½Ç*/    
}
#popup_title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    color: white;
    background: #3A3A3A;
    border: solid 1px #3A3A3A;
    cursor: default;
    padding: 0em;
    margin: 0em;
}
 
#popup_content {
    background: 16px 16px no-repeat url(images/info.gif);
    padding: 1em 1.75em;
    margin: 0em;
}
 
#popup_content.alert {
    background-image: url(images/info.gif);
}
 
#popup_content.confirm {
    background-image: url(images/important.gif);
}
 
#popup_content.prompt {
    background-image: url(images/help.gif);
}
 
#popup_message {
    padding-left: 48px;
    color:black;
    
}
 
#popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}
 
#popup_prompt {
    margin: .5em 0em;
}
 
/* the next css add by yilijian */
#popup_ok,#popup_cancel{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}
 
#popup_ok,#popup_cancel{
color: #FFFFFF;
background-color: #5A5A5A;
border-color: #cccccc;
}
#popup_ok:hover{color: #333333;background-color: #ebebeb;border-color: #adadad;}
#popup_cancel:hover{color: #333333;background-color: #ebebeb;border-color: #adadad;}
input[type="button"]{border: 1px solid transparent;}