-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbook_finish.html
122 lines (117 loc) · 4.12 KB
/
book_finish.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>预定航班-旅客信息</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/comment.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/myflight.css">
<link rel="stylesheet" type="text/css" href="css/book_ticket.css">
<link rel="stylesheet" type="text/css" href="css/book_finish.css">
</head>
<body>
<!-- S=标题 -->
<header id="title">
<div class="title_content">
<div class="float_l ">
<ul >
<li><a href="#" class="login">已登录</a></li>
<li><a href="#" class="register_btn">注册</a></li>
</ul>
</div>
<div class="float_r">
<ul>
<li><a href="myflight.html">我的航班</a></li><span class="title_line"></span>
<li><a href="#">帮助</a></li>
</ul>
</div>
</div>
</header>
<!-- E=标题 -->
<!-- S-搜索栏 -->
<div id="search">
<div class="search_wrapper float_r">
<input type="text" name="" value="" placeholder="请输入关键字" class="search_bar float_l"><input type="submit" name="" value="搜索" class="search_btn white float_l">
</div>
</div>
<!-- E-搜索栏 -->
<!-- S-导航栏 -->
<nav id="nav">
<ul class="font16px">
<li class="nav_tag"><a href="index.htm" class="home">首页</a></li><li class="nav_tag">
<a href="#">预定行程</a></li><li class="nav_tag">
<a href="#">服务大厅</a></li><li class="nav_tag">
<a href="#">停班时间</a></li><li class="nav_tag">
<a href="#">购票安全</a></li><li class="nav_tag">
<a href="#">出行帮助</a></li>
</ul>
</nav>
<!-- E-导航栏 -->
<!-- S-进度条 -->
<div class="progressBar">
<ul class="font16px">
<li>
<div class="barNum white font18px">
1
</div>
航班查询
<div class="progressLine">
</div>
</li>
<li>
<div class="barNum white font18px">
2
</div>
航班选择
<div class="progressLine font18px">
</div>
</li>
<li>
<div class="barNum white font18px" >
3
</div>
旅客信息
<div class="progressLine">
</div>
</li>
<li>
<div class="barNum white font18px">
4
</div>
支付订单
<div class="progressLine">
</div>
</li>
<li>
<div class="barNum white font18px" style="background:red;">
5
</div>
完成支付
</li>
</ul>
</div>
<!-- E-进度条 -->
<div class="finish">
<span class="font25px blue">支付完成</span><br><br>
<span class="font20px deepGray">将在 <span id="turn_time" class="red font18px">5</span> 秒后返回主页,若系统没有反应,请直接按<a class="backHome" href="index.htm">跳转</a></span>
</div>
<!-- S-翻页 -->
<div class="pageTurn">
<a href="book_imformation.html" class="pageTurn_prev white font18px">上一步</a>
<a class="pageTurn_next white font18px">下一步</a>
</div>
<!-- E-翻页 -->
<!-- S-撑大盒子 -->
<div style="height: 200px; width: 1200px; margin: 0 auto;">
</div>
<!-- E-撑大盒子 -->
<!-- S-页脚 -->
<footer class="footer">
Copyright(C)1997-2017 胜利航空股份有限公司 版权所有 粤ICP备05053330号
</footer>
<script src="js/jquery-3.0.0.min.js"></script>
<script src="js/book_finish.js"></script>
</body>
</html>