单军华
2016-12-30 e05aab7eeb55ede6fe6226e41c65b6bfad65957e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>正在创建支付链接...</title>
        <style>
            *,
            *:before,
            *:after {
                box-sizing: border-box;
            }
        
        *:before {
            content: "";
            display: table;
        }
        
        *:after {
            content: "";
            display: table;
            clear: both;
        }
        
        html, body {
            height: 100%;
            margin: 0;
            overflow: auto;
        }
        .justify {
            position: relative;
            margin: 0 auto;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }
        .text-center {
            text-align: center;
        }
        </style>
    </head>
    <body>
        <div class="justify">
            <p class="text-center">正在创建支付链接...</p>
        </div>
    </body>
</html>