body {
margin: 0;
font-family: "Segoe UI", "PingFang SC", "Helvetica Neue", sans-serif;
background-color: #fafafa;
color: #333;
}
.wrapper {
max-width: 960px;
margin: 0 auto;
padding: 0;
}
.intro {
text-align: center;
margin-bottom: 30px;
}
.intro span {
font-size: 24px;
margin-top: 0; margin-bottom: 8px;
color: #0a8754;
font-weight: 700;
letter-spacing: 0.5px;
}
.intro p {
font-size: 14px;
color: #555;
line-height: 1.4;
margin-top: 0; }
.charge-section {
text-align: center;
margin-bottom: 40px;
}
.charge-button {
background-color: #0bb27a;
color: white;
padding: 12px 28px;
font-size: 14px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s, box-shadow 0.3s;
font-weight: 600;
box-shadow: 0 3px 8px rgba(11, 178, 122, 0.5);
}
.charge-button:hover {
background-color: #099c69;
box-shadow: 0 5px 14px rgba(9, 156, 105, 0.7);
}
.records-section {
margin-bottom: 40px;
}
.records-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 24px;
text-align: center;
color: #a68d39;
letter-spacing: 1px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smooth: always;
text-shadow: none;
} .record-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); gap: 16px;
} .record-card { border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 8px;
padding: 15px 12px; cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
color: #333;
position: relative;
font-weight: 400;
user-select: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); display: flex; align-items: center; justify-content: space-between;   box-sizing: border-box; } .record-card > div {
box-sizing: border-box;
}
.record-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); z-index: 5;
} .record-card::before {
content: none;
}
.record-sequence {
font-size: 16px; color: #fff;
font-weight: 700;
background-color: #596275; padding: 6px 10px; border-radius: 4px; text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); flex: 0 0 10%; margin-right: 0; }
.record-name {
font-size: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #34495e;
font-weight: 600;
letter-spacing: 0.2px;
flex: 0 0 40%; padding-left: 10px; padding-right: 10px; border-right: 1px solid #eee; text-align: left; }
.record-amount {
display: flex;
justify-content: flex-start; align-items: baseline;
flex: 0 0 25%; padding-left: 10px; padding-right: 10px; border-right: 1px solid #eee; }
.record-amount .currency-symbol {
font-size: 12px;
margin-right: 4px;
font-weight: 400;
color: #333; }
.record-amount .amount-value {
font-size: 14px;
font-weight: 700;
color: #333; }
.record-date {
font-size: 14px;
color: #95a5a6;
flex: 0 0 25%; padding-left: 10px; padding-right: 5px; border-right: none; text-align: right; }
.foot-note {
text-align: center;
font-size: 14px; color: #666;
margin-bottom: 0px;
} .modal-overlay {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.6);
justify-content: center;
align-items: center;
z-index: 999;
} .donate-pagination {
margin-top: 30px;
text-align: center;
}
.donate-pagination .page-numbers {
display: inline-block;
padding: 8px 12px;
margin: 0 4px;
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 4px; color: #333;
text-decoration: none;
transition: background-color 0.3s, border-color 0.3s;
}
.donate-pagination .page-numbers:hover {
background-color: #e0e0e0;
border-color: #bbb;
}
.donate-pagination .page-numbers.current {
background-color: #0bb27a;
border-color: #0bb27a;
color: white;
font-weight: bold;
}
.donate-pagination .page-numbers.dots {
background-color: transparent;
border-color: transparent;
cursor: default;
}
.donate-pagination .page-numbers.dots:hover {
background-color: transparent;
border-color: transparent;
}
.modal-box {
background: white;
padding: 26px 18px;
border-radius: 16px;
max-width: 420px;
width: 90%;
text-align: center;
position: relative;
}
.modal-close {
position: absolute;
top: 8px;
right: 12px;
font-size: 20px;
color: #aaa;
cursor: pointer;
user-select: none;
}
.modal-close:hover {
color: #333;
}
.qrcode-pair {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.qrcode-item {
display: flex;
flex-direction: column;
align-items: center;
}
.qrcode-item img {
width: 140px;
height: 140px;
border-radius: 8px;
margin-bottom: 8px;
}
.qrcode-item span {
font-size: 14px;
color: #555;
}
@media (max-width: 640px) {
.charge-button {
padding: 12px 24px;
}
}
@media (max-width: 400px) {
.qrcode-pair {
flex-direction: column;
}
}