* { box-sizing: border-box; }

.recharge-records-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #010406;
  color: rgba(255, 255, 255, .9);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.desktop-recharge-records {
  width: 1200px;
  min-height: 770px;
  margin: 0 auto;
  padding: 24px 0 80px;
  flex: 1 0 auto;
}

.desktop-recharge-records__breadcrumb {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 24px;
}

.desktop-recharge-records__breadcrumb a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
}

.desktop-recharge-records__breadcrumb img {
  display: block;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.desktop-recharge-records__breadcrumb strong { font-weight: 600; }
.desktop-recharge-records__breadcrumb span { color: rgba(255, 255, 255, .35); font-size: 16px; }

.desktop-recharge-records__panel {
  min-height: 399px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 12px;
  background: #0d0f11;
}

.desktop-recharge-records__tabs {
  display: flex;
  height: 40px;
  align-items: flex-start;
  gap: 12px;
}

.desktop-recharge-records__tabs a {
  position: relative;
  display: flex;
  height: 40px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}

.desktop-recharge-records__tabs a.is-active {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

.desktop-recharge-records__tabs a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 16px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: #e9b54b;
}

.desktop-recharge-records__table-head,
.desktop-recharge-records__list article {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  align-items: center;
}

.desktop-recharge-records__table-head {
  height: 42px;
  margin-top: 32px;
}

.desktop-recharge-records__table-head span {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.desktop-recharge-records__list {
  min-height: 96px;
  margin-top: 12px;
}
.desktop-recharge-records__list article {
  position: relative;
  min-height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .035);
}
.desktop-recharge-records__list article > .mobile-coin-records-copy,
.desktop-recharge-records__list article > .mobile-coin-records-value { display: contents; }
.desktop-recharge-records__list article strong,
.desktop-recharge-records__list article time,
.desktop-recharge-records__list article small,
.desktop-recharge-records__list article em {
  grid-row: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 16px;
  line-height: 22px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.desktop-recharge-records__list article strong { grid-column: 1; color: rgba(255, 255, 255, .55); }
.desktop-recharge-records__list article small { grid-column: 2; gap: 10px; color: #ac7e6e; }
.desktop-recharge-records__list .mobile-coin-records-payment-name { display: none; }
.desktop-recharge-records__trade-no {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.desktop-recharge-records__copy {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  border: 0;
  background: url("/static/images/desktop-recharge-copy.svg") center / 18px 18px no-repeat;
  cursor: pointer;
  opacity: .72;
}
.desktop-recharge-records__copy:hover { opacity: 1; }
.desktop-recharge-records__copy:focus-visible {
  border-radius: 3px;
  outline: 2px solid #e9b54b;
  outline-offset: 2px;
}
.desktop-recharge-records__list article time { grid-column: 3; color: rgba(255, 255, 255, .55); }
.desktop-recharge-records__list article .mobile-coin-records-value > b { display: none; }
.desktop-recharge-records__list article em { grid-column: 4; color: rgba(255, 255, 255, .55); }
.desktop-recharge-records__list article em.is-pending { color: #e9b54b; }
.desktop-recharge-records__list article em.is-success { color: #22bb9c; }
.desktop-recharge-records__list article em.is-failed { color: #f52c56; }
.desktop-recharge-records__list .mobile-recharge-records-state {
  display: flex;
  min-height: 160px;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  font-size: 16px;
  line-height: 22px;
}

.recharge-records-page .mobile-recharge-records-more {
  display: block;
  min-width: 112px;
  height: 36px;
  margin: 18px auto 0;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
}
.recharge-records-page .mobile-recharge-records-more[hidden] { display: none; }
.recharge-records-page .mobile-recharge-records-more:disabled { opacity: .55; }

@media (max-width: 1280px) {
  .desktop-recharge-records { width: calc(100% - 48px); }
}
