39 lines
921 B
HTML
39 lines
921 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>技术支持</title>
|
||
<style>
|
||
* {
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
.bootom {
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
background: #30312C;
|
||
color: #fff;
|
||
font-size: 0.71rem;
|
||
text-align: center;
|
||
padding: 1rem 0;
|
||
}
|
||
p{
|
||
margin-bottom: 0.3rem;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
<img src="./bg.png" alt="" width="100%">
|
||
<div class="bootom">
|
||
<p>公司主体:南宁冰创网络科技有限公司</p>
|
||
<p>联系地址:中国(广西)自由贸易试验区南宁片区庆林路16号天誉花园4号地块5号楼三层3442号</p>
|
||
</div>
|
||
</body>
|
||
|
||
</html> |