ticket_info.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title></title>
  6. <style>
  7. *{
  8. padding: 0;
  9. margin: 0;
  10. }
  11. .imgBox {
  12. text-align: center;
  13. position: relative;
  14. }
  15. .bottomInfo {
  16. background-color: #fff;
  17. padding: 20px 10px;
  18. }
  19. .bottomInfo .content {
  20. display: flex;
  21. align-items: center;
  22. line-height: 36px;
  23. font-size: 13px;
  24. }
  25. .bottomInfo .content img {
  26. width: 20px;
  27. height: 20px;
  28. margin-right: 10px;
  29. }
  30. .bottom {
  31. font-size: 13px;
  32. text-align: center;
  33. margin-top: 18px;
  34. }
  35. .signInfo {
  36. background-color: #fff;
  37. border-bottom: 1px dotted #222;
  38. padding: 20px 10px;
  39. }
  40. .signInfo .qrBox {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: center;
  44. align-items: center;
  45. }
  46. .signInfo .qrTitle {
  47. font-size: 16px;
  48. font-weight: bold;
  49. margin-bottom: 12px;
  50. }
  51. .signInfo .qrCode {
  52. width: 211px;
  53. height: 211px;
  54. }
  55. .signInfo .warn {
  56. font-size: 12px;
  57. color: #666666;
  58. }
  59. .signInfo .code {
  60. width: 151px;
  61. height: 40px;
  62. line-height: 40px;
  63. text-align: center;
  64. border-radius: 6px;
  65. border: 1px solid #2A63F3;
  66. font-size: 14px;
  67. color: #2A63F3;
  68. margin: 16px 0 16px;
  69. }
  70. .titleBox {
  71. margin: 10px 0;
  72. padding: 0 10px;
  73. line-height: 39px;
  74. background: #FFFFFF;
  75. border-radius: 10px;
  76. }
  77. .titleBox .title {
  78. font-size: 15px;
  79. font-weight: bold;
  80. }
  81. .tips img {
  82. width: 14px;
  83. height: 14px;
  84. margin-right: 2px;
  85. }
  86. button {
  87. font-size: 18px;
  88. color: #fff;
  89. font-weight: bold;
  90. position: fixed;
  91. bottom: 34px;
  92. left: 50%;
  93. transform: translateX(-50%);
  94. width: 351px;
  95. height: 48px;
  96. line-height: 48px;
  97. text-align: center;
  98. background: #2A63F3;
  99. border-radius: 24px;
  100. }
  101. .info {
  102. padding: 0 12px;
  103. }
  104. .wrap {
  105. width: 100%;
  106. min-height: 100vh;
  107. display: flex;
  108. flex-direction: column;
  109. /* padding: 44px 0 83px; */
  110. box-sizing: border-box;
  111. background-color: #f4f4f4;
  112. }
  113. /* 头部样式 */
  114. .header-wrap {
  115. width: 100%;
  116. height: 44px;
  117. display: flex;
  118. flex-direction: column;
  119. position: fixed;
  120. top: 0;
  121. left: 0;
  122. z-index: 500;
  123. background-color: #ffffff;
  124. }
  125. .header {
  126. width: 100%;
  127. height: 44px;
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. background-color: #ffffff;
  132. z-index: 999;
  133. padding: 0 15px;
  134. position: relative;
  135. box-sizing: border-box;
  136. }
  137. .return-img {
  138. position: absolute;
  139. left: 15px;
  140. top: 50%;
  141. transform: translate(0, -50%);
  142. width: 20px;
  143. height: 20px;
  144. }
  145. .header-title {
  146. /* flex: 1; */
  147. display: -webkit-box;
  148. -webkit-line-clamp: 1;
  149. overflow: hidden;
  150. text-overflow: ellipsis;
  151. -webkit-box-orient: vertical;
  152. color: #333333;
  153. font-size: 18px;
  154. font-weight: bold;
  155. /* position: absolute;
  156. left: 40px;
  157. top: 50%;
  158. transform: translate(0, -50%); */
  159. /* padding-right: 120px; */
  160. box-sizing: border-box;
  161. }
  162. .header-btn-box {
  163. display: flex;
  164. align-items: center;
  165. position: absolute;
  166. right: 12px;
  167. top: 50%;
  168. transform: translate(0, -50%);
  169. }
  170. .header-btn-box>button {
  171. margin-right: 10px;
  172. }
  173. .header-btn-box>button:last-child {
  174. margin-right: 0;
  175. }
  176. .header-btn-box>button>img {
  177. height: 24px;
  178. }
  179. </style>
  180. </head>
  181. <body>
  182. <div class="wrap">
  183. <div class="info">
  184. <div class="titleBox">
  185. <div class="title">
  186. <?php $act_title ?>
  187. </div>
  188. <div class="person">
  189. 参会者: <?php $num ?>
  190. </div>
  191. </div>
  192. <div class="signInfo">
  193. <div class="qrBox">
  194. <div class="qrTitle">
  195. 签到码-用于现场签到
  196. </div>
  197. <div class="imgBox">
  198. <img class="qrCode" src="<?php $qr_code ?>" alt="">
  199. </div>
  200. <div class="code">
  201. 签到码: 123132123
  202. </div>
  203. <div class="warn">
  204. 仅限本人使用
  205. </div>
  206. </div>
  207. </div>
  208. <div>
  209. <div class="bottomInfo">
  210. <div class="content">
  211. <img src="/static/read@2x.png" alt="">
  212. 123
  213. </div>
  214. <div class="content">
  215. <img src="/static/time@2x.png" alt="">
  216. 1213
  217. </div>
  218. <div class="content">
  219. <img src="/static/location@2x.png" alt="">
  220. 123
  221. </div>
  222. </div>
  223. </div>
  224. </div>
  225. <div class="bottom">
  226. 此二维码用于现场签到,请携带至会场
  227. </div>
  228. </div>
  229. </body>
  230. </html>