| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>RAEX绿洲</title>
- <script src="/static/js/jquery.min.js"></script>
- <link href="/static/css/devices.min.css" rel="stylesheet" />
- <style>
- body,
- html {
- margin: 0;
- padding: 0;
- background-color: #f8f9f9;
- height: 100%;
- width: 100%;
- font-family: -apple-system, SF UI Text, Arial, PingFang SC,
- Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
- }
- body {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center;
- }
- .phone-box {
- width: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .phone {
- margin: 0;
- padding: 0;
- height: 90vh;
- flex-shrink: 0;
- position: relative;
- }
- .phone .bg {
- width: auto;
- height: 100%;
- display: block;
- position: relative;
- z-index: 1;
- }
- .phone .bg-color {
- background-color: #000;
- width: 90%;
- height: 100%;
- position: absolute;
- top: 2%;
- left: 5%;
- z-index: 0;
- overflow: hidden;
- border-radius: 30px;
- }
- .phone iframe {
- border: none;
- outline: none;
- display: block;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 90%;
- height: 90%;
- z-index: 2;
- border-radius: 20px;
- overflow: hidden;
- }
- </style>
- </head>
- <body style="background-image: url(img/bg.png)">
- <div class="phone-box">
- <div class="phone">
- <img src="img/box.png" alt="" class="bg" />
- <div class="bg-color"></div>
- <iframe src="https://www.raex.vip/9th/home" frameborder="0"></iframe>
- </div>
- </div>
- </body>
- </html>
|