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
| @charset "utf-8";
|
| * {
| margin: 0;
| padding: 0;
| }
| #shade{
| width:100%;
| height:700px;
| background:gray;
| position: absolute;
| top:0;
| left: 0;
| z-index: 100;
| display: none;
| }
| #container{
| width:400px;
| position:absolute;
| left:50%;
| background:white;
| margin-left: -200px;
| margin-top:120px;
| border:1px solid #3388FF;
| z-index: 400;
| }
| #container .top{
| display: block;
| width:400px;
| padding:10px 0;
| text-align: center;
| background:#0000FF;
| font-size:18px;
| font-weight: bold;
| color:white;
| }
| #container .text{
| font-size: 16px;
| font-weight:bold;
| color:black;
| margin-left:20px;
| }
| #container input{
| width:240px;
| height:30px;
| margin-top:26px;
| padding-left:8px;
| }
| #container a{
| color:white;
| background:#0000FF;
| text-decoration:none;
| margin-left:70px;
| }
| #container .fir{
| padding:8px 10px;
| }
| #container .sec{
| padding:8px 28px;
| }
| #container a:hover{
| background:#0066FF;
| }
| #alert{
| border:1px solid #CCCCCC;
| width:400px;
| position:absolute;
| left:50%;
| margin-left:210px;
| margin-top:200px;
| display: none;
| }
| #alert .alert_top{
| display: block;
| width:360px;
| padding-top:8px;
| padding-bottom:8px;
| padding-left: 40px;
| background:url(../image/alert_top.gif) no-repeat 4px 4px;
| border-bottom:1px solid #3388FF;
| }
| #alert p{
| line-height: 28px;
| margin-left:30px;
| }
|
|