1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- <style>
- html,
- body,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- ul,
- li,
- div,
- section {
- padding: 0;
- margin: 0;
- }
-
- html,
- body {
- width: 100%;
- height: 100%;
- font-family: "微软雅黑";
- }
-
- .full {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
-
- .end-box {
- background: rgba(0, 0, 0, 0.8);
- }
-
- .end-box:before {
- content: "";
- position: absolute;
- top: 20vh;
- left: 10vw;
- width: 80vw;
- height: 5vh;
- background: url(../img/qus-top.png) no-repeat center top;
- background-size: auto 5vh;
- }
-
- .end {
- margin: 25vh auto 0;
- background-color: #fede82;
- height: 60vw;
- width: 80vw;
- border-radius: 5vw;
- box-sizing: border-box;
- padding: 20vw 5px;
- line-height: 10vw;
- font-size: 6vw;
- text-align: center;
- color: #FF5216;
- font-weight: bold;
- }
-
- </style>
- </head>
- <body>
- <section class="end-box full" id="endBox">
- <div class="end" id="fail">很遗憾<br/>你的答题之旅结束了!!!</div>
- </section>
- </body>
- </html>
|