fail.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <style>
  7. html,
  8. body,
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6,
  15. p,
  16. ul,
  17. li,
  18. div,
  19. section {
  20. padding: 0;
  21. margin: 0;
  22. }
  23. html,
  24. body {
  25. width: 100%;
  26. height: 100%;
  27. font-family: "微软雅黑";
  28. }
  29. .full {
  30. position: fixed;
  31. top: 0;
  32. left: 0;
  33. bottom: 0;
  34. right: 0;
  35. }
  36. .end-box {
  37. background: rgba(0, 0, 0, 0.8);
  38. }
  39. .end-box:before {
  40. content: "";
  41. position: absolute;
  42. top: 20vh;
  43. left: 10vw;
  44. width: 80vw;
  45. height: 5vh;
  46. background: url(../img/qus-top.png) no-repeat center top;
  47. background-size: auto 5vh;
  48. }
  49. .end {
  50. margin: 25vh auto 0;
  51. background-color: #fede82;
  52. height: 60vw;
  53. width: 80vw;
  54. border-radius: 5vw;
  55. box-sizing: border-box;
  56. padding: 20vw 5px;
  57. line-height: 10vw;
  58. font-size: 6vw;
  59. text-align: center;
  60. color: #FF5216;
  61. font-weight: bold;
  62. }
  63. </style>
  64. </head>
  65. <body>
  66. <section class="end-box full" id="endBox">
  67. <div class="end" id="fail">很遗憾<br/>你的答题之旅结束了!!!</div>
  68. </section>
  69. </body>
  70. </html>