38 lines
985 B
HTML
38 lines
985 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<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;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
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;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="main">
|
||
|
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|