pc.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>RAEX绿洲</title>
  8. <script src="/static/js/jquery.min.js"></script>
  9. <link href="/static/css/devices.min.css" rel="stylesheet" />
  10. <style>
  11. body,
  12. html {
  13. margin: 0;
  14. padding: 0;
  15. background-color: #f8f9f9;
  16. height: 100%;
  17. width: 100%;
  18. font-family: -apple-system, SF UI Text, Arial, PingFang SC,
  19. Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  20. }
  21. body {
  22. display: flex;
  23. align-items: center;
  24. justify-content: flex-end;
  25. background-repeat: no-repeat;
  26. background-size: cover;
  27. background-position: center;
  28. }
  29. .phone-box {
  30. width: 50%;
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. .phone {
  36. margin: 0;
  37. padding: 0;
  38. height: 90vh;
  39. flex-shrink: 0;
  40. position: relative;
  41. }
  42. .phone .bg {
  43. width: auto;
  44. height: 100%;
  45. display: block;
  46. position: relative;
  47. z-index: 1;
  48. }
  49. .phone .bg-color {
  50. background-color: #000;
  51. width: 90%;
  52. height: 100%;
  53. position: absolute;
  54. top: 2%;
  55. left: 5%;
  56. z-index: 0;
  57. overflow: hidden;
  58. border-radius: 30px;
  59. }
  60. .phone iframe {
  61. border: none;
  62. outline: none;
  63. display: block;
  64. position: absolute;
  65. top: 50%;
  66. left: 50%;
  67. transform: translate(-50%, -50%);
  68. width: 90%;
  69. height: 90%;
  70. z-index: 2;
  71. border-radius: 20px;
  72. overflow: hidden;
  73. }
  74. </style>
  75. </head>
  76. <body style="background-image: url(img/bg.png)">
  77. <div class="phone-box">
  78. <div class="phone">
  79. <img src="img/box.png" alt="" class="bg" />
  80. <div class="bg-color"></div>
  81. <iframe src="https://www.raex.vip/9th/home" frameborder="0"></iframe>
  82. </div>
  83. </div>
  84. </body>
  85. </html>