*,
*::before,
*::after { box-sizing: border-box; }

.coin-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-coin-records {
  width: min(1200px, calc(100% - 48px));
  min-height: 804px;
  margin: 0 auto;
  padding: 24px 0 24px;
  flex: 1 0 auto;
}

.desktop-coin-records__breadcrumb {
  display: flex;
  width: 100%;
  height: 48px;
  padding: 0 10px;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 24px;
}
.desktop-coin-records__breadcrumb a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  align-items: center;
  justify-content: center;
}
.desktop-coin-records__breadcrumb img {
  display: block;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.desktop-coin-records__breadcrumb strong { font-weight: 600; }
.desktop-coin-records__breadcrumb span {
  color: rgba(255, 255, 255, .35);
  font-size: 16px;
  line-height: 22px;
}

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

.desktop-coin-records__tabs {
  display: flex;
  height: 40px;
  align-items: flex-start;
  gap: 12px;
}
.desktop-coin-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-coin-records__tabs a.is-active {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}
.desktop-coin-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-coin-records__filters {
  display: flex;
  height: 32px;
  margin-top: 32px;
  align-items: center;
  gap: 36px;
}
.desktop-coin-records__filters button {
  min-width: 64px;
  height: 32px;
  padding: 6px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  font: 500 14px/20px "PingFang SC", "Microsoft YaHei", sans-serif;
  white-space: nowrap;
}
.desktop-coin-records__filters button.is-active {
  background: #e9b54b;
  color: #000;
}
.desktop-coin-records__filters button:focus-visible {
  outline: 2px solid rgba(233, 181, 75, .68);
  outline-offset: 3px;
}

.desktop-coin-records__table-head,
.desktop-coin-records__list article {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  align-items: center;
}
.desktop-coin-records__table-head {
  height: 42px;
  margin-top: 28px;
}
.desktop-coin-records__table-head span {
  display: flex;
  height: 42px;
  padding: 11px 27px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.desktop-coin-records__list { min-height: 394px; }
.desktop-coin-records__list article {
  position: relative;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .035);
}
.desktop-coin-records__list article span,
.desktop-coin-records__list article time {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .55);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.desktop-coin-records__list article .is-income { color: #22bb9c; font-weight: 600; }
.desktop-coin-records__list article .is-expense { color: #ff4d4d; font-weight: 600; }
.desktop-coin-records__state {
  display: flex;
  min-height: 240px;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
.desktop-coin-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;
}
.desktop-coin-records__more[hidden] { display: none; }
.desktop-coin-records__more:disabled { opacity: .55; cursor: wait; }
