59 lines
2.1 KiB
HTML
59 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start; /* 内容靠上居中 */
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
h1 {
|
|
margin: 20px 0; /* 添加标题上下边距 */
|
|
}
|
|
.image-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20px;
|
|
}
|
|
.image-container {
|
|
text-align: center;
|
|
border: 2px solid #ccc;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
|
transition: transform 0.3s;
|
|
flex: 1;
|
|
max-width: 300px;
|
|
}
|
|
.image-container:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.image-caption {
|
|
font-size: 16px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
<title>捐助与远程协助</title>
|
|
</head>
|
|
<body>
|
|
<h1>捐助作者,持续开发</h1> <!-- 添加标题 -->
|
|
<div class="image-row">
|
|
<div class="image-container">
|
|
<img src="img/danote.png" alt="Image 1">
|
|
<p class="image-caption">作者赞赏码<br /><br />作者“神雕”开发的固件和提供的个人网站,为了持续维护和进步,呼吁有能力的网友支持本站持续运作和固件持续开发更新。不甚感激!您的捐助将用于本站的服务器架设和固件升级维护.</p>
|
|
</div>
|
|
<div class="image-container">
|
|
<img src="img/weixin.png" alt="Image 2">
|
|
<p class="image-caption">扫码或微信号" teasiu "<br /><br /> 可以抽出时间为小白网友提供付费远程协助,包括刷机,运维,疑难解决等需求。已组建微信群,加微信注明入群将定期邀请加入。</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|