-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.html
105 lines (105 loc) · 2.7 KB
/
state.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
*{
margin:0;
padding:0;
}
.xitong{
margin-top:10px;
margin-left:10px;
margin-bottom:8px;
height: 50px;
background-image: url(img/logo.png);
background-repeat:no-repeat;
background-size:contain;
}
.exit{
border: 1px solid rgb(15,89,164);
font-size: 20px;
height: 50px;
text-align: center;
line-height: 50px;
border-radius: 20px;
color: rgb(15,89,164);
background-color: #F59A43;
transition: 2s;
padding: 1px 50px;
float:right;
margin-right:20px;
}
.exit:hover{
color: white;
background-color: rgb(15,89,164);
box-shadow: 2px 2px 10px #f96520,
-2px 2px 10px #D1F276,
2px -2px 10px #D1F276,
-2px -2px 10px #D1F276;
}
.mid{
background-color:rgb(15,89,164);
opacity: 0.8;
}
.midbox{
height:340px;
}
.boxleft{
width:300px;
height:140px;
background-color:white;
margin-top:80px;
padding:20px;
border-radius:20px;
box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.2);
text-align:center;
border:1px solid #ff9900;
}
.boxmid{
width:300px;
height:140px;
background-color:white;
margin-top:80px;
padding:20px;
border-radius:20px;
box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.2);
text-align:center;
border:1px solid #ff9900;
}
.boxright{
width:300px;
height:140px;
background-color:white;
margin-top:80px;
padding:20px;
border-radius:20px;
box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.2);
text-align:center;
border:1px solid red;
}
.end{
height:30px;
margin-top:56px;
text-align:center;
}
</style>
</head>
<body>
<div class="xitong">
<span style="margin-left: 50px;font-size: 34px;font-family: '华文新魏';font-weight: bold;height: 50px;line-height: 50px;color:rgb(15,89,164);">保研岸 | </span>
<span style="font-size: 29px;font-family: '幼圆';font-weight: bold;height: 50px;line-height: 50px;">模拟推免招生系统</span>
<a href="log.html" class="exit" style="text-decoration:none;">退 出</a>
</div>
<div class="mid" align="center" style="font-size: 49px;font-family: '幼圆';font-weight: bold;height: 250px;line-height: 250px;">
全国优秀大学生推免招生模拟系统
</div>
<div align="center" style="font-size: 36px;font-family: '幼圆';font-weight: bold;height: 250px;line-height: 250px;">
申请状态:<span style="color:red;">已入营</span>
</div>
<div class="end">
<span style="color:#808069;">——保研岸专注保研咨询10年,30万保研学子的黄埔军校——</span>
</div>
</body>
</html>