47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>支付提示</title>
|
|
<style>
|
|
html,body,div,h1,*{margin:0;padding:0;}
|
|
body{
|
|
background-color:#F7F8FA;
|
|
color:#333;
|
|
font-family:-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Segoe UI,Arial,Roboto,'PingFang SC','miui',sans-serif;
|
|
}
|
|
.container{
|
|
display:flex;
|
|
flex-direction:column;
|
|
align-items:center;
|
|
justify-content:center;
|
|
min-height:100vh;
|
|
padding:20px;
|
|
}
|
|
.icon{
|
|
width:80px;
|
|
height:80px;
|
|
margin-bottom:20px;
|
|
}
|
|
.msg{
|
|
font-size:16px;
|
|
color:#333;
|
|
text-align:center;
|
|
line-height:1.5;
|
|
max-width:300px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<svg class="icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<circle cx="12" cy="12" r="10" stroke="#999" stroke-width="2"/>
|
|
<path d="M12 8v4M12 16h.01" stroke="#999" stroke-width="2" stroke-linecap="round"/>
|
|
</svg>
|
|
<div class="msg">{$msg}</div>
|
|
</div>
|
|
</body>
|
|
</html>
|