fix: 修改限流页面

This commit is contained in:
zhangds 2024-04-09 09:22:37 +08:00
parent 9fc23defc8
commit e239bbdc5d
1 changed files with 14 additions and 11 deletions

View File

@ -3,8 +3,15 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>活动</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>领取详情</title>
<script>
var docEl = document.documentElement;
docEl.style.fontSize = 100 / 375 * docEl.clientWidth + 'px';
window.addEventListener('resize', function () {
docEl.style.fontSize = 100 / 375 * docEl.clientWidth + 'px';
});
</script>
<style>
* {
margin: 0;
@ -12,23 +19,19 @@
}
.main {
width: 100%;
height: 100vh;
background: url("https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/combining/hbhbhb.png") no-repeat;
width: 2.03rem;
height: 2.44rem;
margin: 1.33rem auto 0 auto;
background: url("https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/combining/default_img_hb.png") no-repeat;
background-size: 100%;
text-align: center;
}
.main p {
padding-top: 230px;
font-size: 20px;
}
</style>
</head>
<body>
<div class="main">
<p>活动过于火爆,请稍后再试。</p>
</div>
</body>