CommunityAPP_UI/bill.html
2025-04-25 15:59:56 +08:00

166 lines
3.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<title>繳費通知 - 社區管理 App</title>
<style>
* {
box-sizing: border-box;
font-family: 'Noto Sans TC', sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: #f7f8fa;
color: #333;
padding-bottom: 80px;
}
header {
background-color: #9eaf9f;
color: #fff;
padding: 16px;
font-size: 20px;
font-weight: bold;
text-align: center;
position: relative;
}
.back-button {
position: absolute;
top: 12px;
left: 16px;
cursor: pointer;
}
.back-button img {
width: 24px;
height: 24px;
filter: brightness(0) invert(1);
}
.section {
background-color: #fff;
margin: 12px 16px;
padding: 16px;
border-radius: 12px;
}
.bill-item {
padding: 12px 0;
border-bottom: 1px solid #eee;
}
.bill-item:last-child {
border-bottom: none;
}
.bill-info {
display: flex;
justify-content: space-between;
font-size: 14px;
margin-bottom: 4px;
}
.bill-info span {
color: #555;
}
.bill-detail {
font-size: 13px;
color: #777;
margin-bottom: 6px;
}
.reminder {
font-size: 13px;
color: #c0392b;
font-weight: bold;
}
.footer-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
border-top: 1px solid #ddd;
display: flex;
justify-content: space-around;
padding: 8px 0;
}
.footer-nav a {
text-decoration: none;
font-size: 12px;
color: #666;
text-align: center;
}
.footer-nav img {
width: 24px;
height: 24px;
margin-bottom: 4px;
}
</style>
</head>
<body>
<header>
<div class="back-button">
<img src="https://img.icons8.com/ios-filled/50/ffffff/left.png" alt="返回" title="回上一頁" onclick="history.back()" />
</div>
繳費通知
</header>
<!-- 繳費通知清單 -->
<section class="section">
<h3 style="font-size: 16px; margin-bottom: 12px;">💰 繳費項目</h3>
<!-- 第二次催繳 -->
<div class="bill-item">
<div class="bill-info">
<span>2025/04/22</span>
<span>管理費 - $1,200</span>
</div>
<div class="bill-detail">繳費截止日2025/04/30</div>
<div class="reminder">第 2 次催繳</div>
</div>
<!-- 第一次通知(不顯示催繳) -->
<div class="bill-item">
<div class="bill-info">
<span>2025/04/20</span>
<span>水費 - $340</span>
</div>
<div class="bill-detail">繳費截止日2025/04/28</div>
</div>
<!-- 第三次催繳 -->
<div class="bill-item">
<div class="bill-info">
<span>2025/04/18</span>
<span>停車費 - $2,000</span>
</div>
<div class="bill-detail">繳費截止日2025/04/25</div>
<div class="reminder">第 3 次催繳</div>
</div>
</section>
<!-- 底部選單 -->
<nav class="navbar fixed-bottom navbar-light bg-light border-top">
<div class="container justify-content-around">
<a class="nav-link text-center" href="main.html"><div>🏠<br>首頁</div></a>
<a class="nav-link text-center" href="#"><div>🚪<br>出入</div></a>
<a class="nav-link text-center" href="message.html"><div>💬<br>訊息</div></a>
<a class="nav-link text-center" href="#"><div>👤<br>住戶</div></a>
</div>
</nav>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>