88 lines
2.0 KiB
HTML
88 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>绑定结果页面</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.payment-container {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
.payment-success {
|
|
color: #28a745;
|
|
}
|
|
|
|
.payment-failure {
|
|
color: #dc3545;
|
|
}
|
|
|
|
.payment-container button {
|
|
background-color: #007BFF;
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.payment-container button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
.success-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background-color: #28a745;
|
|
border-radius: 50%;
|
|
margin: 0 auto 20px;
|
|
position: relative;
|
|
animation: scaleIn 0.4s ease 0.2s both;
|
|
}
|
|
|
|
.success-icon::before {
|
|
content: "";
|
|
width: 20px;
|
|
height: 40px;
|
|
border: 3px solid white;
|
|
border-top: none;
|
|
border-left: none;
|
|
transform: rotate(45deg);
|
|
position: absolute;
|
|
top: 15px;
|
|
left: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="payment-container">
|
|
<div class="success-icon"></div>
|
|
<div class="{{.style}}">
|
|
<h1>{{.title}}</h1>
|
|
<p>{{.message}}</p>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|