.chargePage .chargeBox {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px;
}
.chargePage .chargeHead {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.chargePage .chargeTit {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}
.chargePage .chargeIntro {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 22px;
}
.chargePage .btnDownload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--main, #0047ba);
  color: #fff;
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}
.chargePage .btnDownload:hover {
  filter: brightness(1.05);
  color: #fff;
}
.chargePage .feeSection {
  margin-top: 28px;
}
.chargePage .feeSection:first-of-type {
  margin-top: 0;
}
.chargePage .feeSectionTit {
  font-size: 18px;
  font-weight: 700;
  color: var(--main, #0047ba);
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--main, #0047ba);
  line-height: 1.4;
}
.chargePage .feeNote {
  font-size: 13px;
  color: #777;
  margin: -8px 0 12px;
}
.chargePage .feeTableWrap {
  overflow-x: auto;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  background: #f8fafc;
}
.chargePage table.feeTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 520px;
}
.chargePage .feeTable thead th {
  background: linear-gradient(180deg, #eef4fb 0%, #e3ebf7 100%);
  color: #0f172a;
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #d8e2ef;
  white-space: nowrap;
}
.chargePage .feeTable tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #edf0f5;
  vertical-align: top;
  background: #fff;
  color: #333;
}
.chargePage .feeTable tbody tr:last-child td {
  border-bottom: 0;
}
.chargePage .feeTable tbody tr:hover td {
  background: #fafcff;
}
.chargePage .feeTable .num {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--main, #0047ba);
  white-space: nowrap;
}
.chargePage .feeTable .muted {
  color: #94a3b8;
}
.chargePage .tips {
  margin-top: 20px;
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .chargePage .chargeTit { font-size: 22px; }
  .chargePage .chargeBox { padding: 16px; }
  .chargePage .feeTable { font-size: 14px; }
  .chargePage .feeTable thead th,
  .chargePage .feeTable tbody td { padding: 10px 12px; }
}
