You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scene_ticket.html 8.3 KiB

пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <meta name="format-detection" content="telephone=no" />
  7. <title>景点门票</title>
  8. <link rel="stylesheet" type="text/css" href="css/ui-box.css" />
  9. <link rel="stylesheet" type="text/css" href="css/ui-base.css" />
  10. <link rel="stylesheet" type="text/css" href="css/ui-color.css" />
  11. <link rel="stylesheet" type="text/css" href="css/main.css" />
  12. <link rel="stylesheet" type="text/css" href="css/calendar.css" />
  13. <style type="text/css">
  14. body {
  15. moz-user-select: -moz-none;
  16. -moz-user-select: none;
  17. -o-user-select: none;
  18. -khtml-user-select: none;
  19. -webkit-user-select: none;
  20. -ms-user-select: none;
  21. user-select: none;
  22. }
  23. .top_title {
  24. background-color: rgba(44, 45, 58, 0.6);
  25. color: #FFFFFF;
  26. padding-left: 0.12rem;
  27. }
  28. .font_date {
  29. color: #38528a;
  30. }
  31. .font_gray {
  32. color: #80889a;
  33. ;
  34. }
  35. .font_price {
  36. color: #535187;
  37. }
  38. .font_info {
  39. color: #2b3857
  40. }
  41. .do_info {
  42. background-color: #ffffff;
  43. border-bottom: 0.5px solid #e5e5e5;
  44. }
  45. .disney_div {
  46. background-color: #ffffff;
  47. border-bottom: 0.5px solid #e5e5e5;
  48. padding: 0.12rem;
  49. }
  50. .count {
  51. height: 0.22rem;
  52. width: 0.6rem;
  53. text-align: center;
  54. line-height: 0.22rem;
  55. display: block;
  56. color: #535187;
  57. }
  58. .bottom_book {
  59. position: fixed;
  60. left: 0.25rem;
  61. right: 0.25rem;
  62. bottom: 0.25rem;
  63. padding-bottom: 0.12rem;
  64. padding-top: 0.12rem;
  65. border-radius: 100px;
  66. background-color: #2d2e3a;
  67. box-shadow: 0 11px 20px 0 rgba(56, 81, 138, 0.36);
  68. }
  69. .model {
  70. position: absolute;
  71. left: 0;
  72. top: 0;
  73. right: 0;
  74. bottom: 0;
  75. /*background-color: rgba(0, 0, 0, 0.25);*/
  76. background-image: url(images/group_9.png);
  77. z-index: 100;
  78. }
  79. .model_box {
  80. position: fixed;
  81. height: 4.3rem;
  82. bottom: 0;
  83. left: 0;
  84. right: 0;
  85. background-color: #fff;
  86. -webkit-border-top-left-radius: 8px;
  87. -webkit-border-top-right-radius: 8px;
  88. }
  89. .model_la {
  90. width: 0.37rem;
  91. height: 0.05rem;
  92. border-radius: 4px;
  93. background-color: rgba(0, 0, 0, 0.2);
  94. margin-top: 0.06rem;
  95. }
  96. .ui_p_t08 {
  97. padding-top: 0.08rem;
  98. }
  99. .ui_p_b08 {
  100. padding-bottom: 0.08rem;
  101. }
  102. .text_c_80 {
  103. color: #80889a;
  104. }
  105. .text_c_2b {
  106. color: #2b3857;
  107. }
  108. .bor_b_e5 {
  109. border-bottom: 0.5px solid #e5e5e5;
  110. }
  111. .ui_p_t12 {
  112. padding-top: 0.12rem;
  113. }
  114. .ui_p_b12 {
  115. padding-bottom: 0.12rem;
  116. }
  117. .select_hei {
  118. overflow: scroll;
  119. height: 3.8rem;
  120. -webkit-overflow-scrolling: touch;
  121. }
  122. .mod_fil {
  123. -webkit-filter: blur(6px);
  124. filter: blur(6px);
  125. }
  126. .animated {
  127. -webkit-animation-duration: 0.4s;
  128. animation-duration: 0.4s;
  129. -webkit-animation-fill-mode: both;
  130. animation-fill-mode: both;
  131. }
  132. @-webkit-keyframes fadeInUp {
  133. 0% {
  134. /*opacity: 0;*/
  135. -webkit-transform: translate3d(0, 100%, 0);
  136. transform: translate3d(0, 100%, 0);
  137. }
  138. 100% {
  139. /*opacity: 1;*/
  140. -webkit-transform: none;
  141. transform: none;
  142. }
  143. }
  144. @keyframes fadeInUp {
  145. 0% {
  146. /*opacity: 0;*/
  147. -webkit-transform: translate3d(0, 100%, 0);
  148. transform: translate3d(0, 100%, 0);
  149. }
  150. 100% {
  151. /*opacity: 1;*/
  152. -webkit-transform: none;
  153. transform: none;
  154. }
  155. }
  156. .fadeInUp {
  157. -webkit-animation-name: fadeInUp;
  158. animation-name: fadeInUp;
  159. }
  160. @-webkit-keyframes fadeInDown {
  161. 0% {
  162. -webkit-transform: none;
  163. transform: none;
  164. }
  165. 100% {
  166. -webkit-transform: none;
  167. transform: none;
  168. }
  169. }
  170. @keyframes fadeInDown {
  171. 0% {
  172. -webkit-transform: none;
  173. transform: none;
  174. }
  175. 100% {
  176. -webkit-transform: translate3d(0, 100%, 0);
  177. transform: translate3d(0, 100%, 0);
  178. }
  179. }
  180. .fadeInDown {
  181. -webkit-animation-name: fadeInDown;
  182. animation-name: fadeInDown;
  183. }
  184. </style>
  185. </head>
  186. <body class="bg_color" style="display: none;">
  187. <div id="body_mod" class="ub ub-ver" style="margin-bottom: 0.9rem;">
  188. <div id="bg_img" class="ub-img6 ub ub-ae" style="height: 1.5rem;background-size: 100%;">
  189. <div class="ui_p_t05 ui_p_b05 top_title ub-f1">中星君廷大酒店 - 迪士尼乐园</div>
  190. </div>
  191. <!--游玩日期-->
  192. <div id="date_select" class="ub ui_p_t15 ui_p_b15 do_info">
  193. <div class="ub-f1 ub ui_p_l12">
  194. <div class="ub-f1 font_dark ulev1 font_info">游玩日期</div>
  195. <div class="ui_p_r12 ub">
  196. <div id="run_date" class="ulev1 ui_p_r05 font_date"></div>
  197. <img src="images/jiantou.png" style="width: 0.14rem;height: 0.14rem;vertical-align:middle;" />
  198. </div>
  199. </div>
  200. </div>
  201. <!--迪士尼票-->
  202. <div id="tick_type" class="ub ub-ver">
  203. <!--<div class="ub ub-ver disney_div">
  204. <div style="padding-bottom: 0.12rem;">迪士尼乐园成人票</div>
  205. <div class="ub">
  206. <div class="ub-f1 ub">
  207. <img class="cut" style="width: 0.22rem;height: 0.22rem;vertical-align: middle;" src="images/jianhao.png"/>
  208. <span class="ulev3 count aticket" type="text" readonly="true" one_price="100" >0</span>
  209. <img class="add" style="width: 0.22rem;height: 0.22rem;vertical-align: middle;" src="images/jiahao_sel.png"/>
  210. </div>
  211. <div class="ub-f1 ub tx-r">
  212. <div class="ub-f1 ub ub-pe ub-ae font_price" >¥</div>
  213. <div class="ulev3 ub ub-ae font_price" style="line-height: 1;">100</div>
  214. </div>
  215. </div>
  216. </div>
  217. <div class="ub ub-ver disney_div">
  218. <div style="padding-bottom: 0.12rem;">迪士尼乐园儿童票</div>
  219. <div class="ub">
  220. <div class="ub-f1 ub">
  221. <img class="cut" style="width: 0.22rem;height: 0.22rem;vertical-align: middle;" src="images/jianhao.png"/>
  222. <span class="ulev3 count aticket" type="text" readonly="true" one_price="200" >0</span>
  223. <img class="add" style="width: 0.22rem;height: 0.22rem;vertical-align: middle;" src="images/jiahao_sel.png"/>
  224. </div>
  225. <div class="ub-f1 ub tx-r">
  226. <div class="ub-f1 ub ub-pe ub-ae font_price" >¥</div>
  227. <div class="ulev3 ub ub-ae font_price" style="line-height: 1;">200</div>
  228. </div>
  229. </div>
  230. </div>-->
  231. </div>
  232. <!--订票须知-->
  233. <div class="ub ub-ver ui_p_l12 ui_p_t08">
  234. <div class="ub">
  235. <img src="images/tanhao.png" style="width: 0.12rem;height: 0.12rem;vertical-align: top;" />
  236. <div class="font_gray" style="line-height: 1;height: 0.16rem;margin-left:0.02rem;">订票须知:</div>
  237. </div>
  238. <div class="booking_notice">
  239. <!--<div class="font_gray">1.为避免客满情况,请及时预订</div>
  240. <div class="font_gray">2.请按照规定时间到达上车点乘车</div>
  241. <div class="font_gray">3.身高1.2米以上儿童必须购票,不购票将不能乘车</div>-->
  242. </div>
  243. </div>
  244. <!--预订-->
  245. <div onclick="reserve()" class="bottom_book ub ub-ac ub-pc ulev3" style="color: #ffffff;">预 订</div>
  246. </div>
  247. <!--日历-->
  248. <div style="display: none;" class="model">
  249. <div style="display: none;" class="model_box">
  250. <div class="ub ub-ver">
  251. <div class="ub ub-ver">
  252. <div class="ub ub-pc">
  253. <div class="model_la"></div>
  254. </div>
  255. <div class="ub ui_p_l15 ui_p_r15 ui_p_t08 ui_p_b08 ub-ac bor_b_e5">
  256. <div class="ub-f1">
  257. <span class="ulev1 text_c_80">选择游玩日期 — </span>
  258. <span id="sel_date" class="ulev1 text_c_80"></span>
  259. </div>
  260. <div id="make_sure" class="text_c_2b ulev2"></div>
  261. </div>
  262. </div>
  263. <div class="ub ub-ver select_hei">
  264. <div class="calendar">
  265. <div class="month clearfix fire aonelist"></div>
  266. </div>
  267. </div>
  268. </div>
  269. </div>
  270. </div>
  271. <script src="js/jquery-2.2.4.min.js" type="text/javascript" charset="utf-8"></script>
  272. <script src="js/rem.js" type="text/javascript" charset="utf-8"></script>
  273. <script src="js/main.js?v=2.2&t=201705081438" type="text/javascript" charset="utf-8"></script>
  274. <script src="js/calendar.js?v=2.2&t=201705081438" type="text/javascript" charset="utf-8"></script>
  275. <script src="js/scene_ticket.js?v=2.2&t=201705081438" type="text/javascript" charset="utf-8"></script>
  276. </body>
  277. </html>