.template.gtc-dashboard {
  --gtc-dashboard-panel-gap: 16px;
  min-height: 100vh;
  background: var(--gtc-color-canvas, #f5f7f6);
  color: var(--gtc-color-text, #18231e);
  letter-spacing: 0;
}

.template.gtc-dashboard {
  --gtc-dashboard-panel-gap: 20px;
  --gtc-dashboard-border: #e2e9e5;
  --gtc-dashboard-ink: #17382a;
  --gtc-dashboard-muted: #68766f;
}

.template.gtc-dashboard *,
.template.gtc-dashboard *::before,
.template.gtc-dashboard *::after {
  box-sizing: border-box;
}

.gtc-dashboard .el-menu-item.is-active {
  background: #eaf7f0 !important;
  color: #087943 !important;
}

.gtc-dashboard .head-box {
  background: var(--gtc-color-brand, #0a8f4c) !important;
}

.gtc-dashboard__mobile-brand {
  display: none;
}

.template.gtc-dashboard > .el-container > .el-container > .home-main.gtc-dashboard__main,
.template.gtc-dashboard > .el-container > .el-container > .el-main.gtc-dashboard__main {
  width: 100%;
  max-width: 1488px;
  min-width: 0;
  min-height: calc(100vh - var(--gtc-topbar-height, 56px) - 24px);
  margin: 0 auto;
  padding: 28px 32px 48px;
  overflow: visible;
  background: transparent;
}

.gtc-dashboard__welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gtc-dashboard__welcome h1 {
  margin: 0;
  color: var(--gtc-dashboard-ink);
  font-size: 26px;
  font-weight: 680;
  line-height: 1.25;
}

.gtc-dashboard__welcome p {
  margin: 8px 0 0;
  color: var(--gtc-dashboard-muted);
  font-size: 14px;
  line-height: 1.5;
}

.gtc-dashboard__welcome-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gtc-dashboard__welcome-actions a,
.gtc-dashboard__welcome-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #c5d9cc;
  border-radius: 6px;
  background: #ffffff;
  color: var(--gtc-dashboard-ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-decoration: none;
}

.gtc-dashboard__welcome-actions .gtc-dashboard__welcome-primary {
  border-color: var(--gtc-color-brand, #17884f);
  background: var(--gtc-color-brand, #17884f);
  color: #ffffff;
}

.gtc-dashboard__grid {
  display: grid;
  grid-template-areas:
    "main summary"
    "main extras";
  grid-template-columns: minmax(0, 1fr) 316px;
  gap: var(--gtc-dashboard-panel-gap);
  align-items: start;
  width: 100%;
  min-width: 0;
}

.gtc-dashboard__main-column,
.gtc-dashboard__summary-column,
.gtc-dashboard__extras-column {
  display: grid;
  gap: var(--gtc-dashboard-panel-gap);
  min-width: 0;
}

.gtc-dashboard__main-column {
  grid-area: main;
}

.gtc-dashboard__summary-column {
  grid-area: summary;
}

.gtc-dashboard__extras-column {
  grid-area: extras;
}

.gtc-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gtc-dashboard-border);
  border-radius: 8px;
  background: var(--gtc-color-surface, #fff);
  box-shadow: none;
}

.gtc-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-panel__header > div:first-child {
  display: flex;
  align-items: center;
  min-width: 0;
}

.gtc-panel__header h2 {
  margin: 0;
  color: var(--gtc-color-text, #18231e);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.gtc-panel__heading-icon {
  display: none;
}

.gtc-panel__header a,
.gtc-panel__header button,
.gtc-table-action a,
.gtc-credit-limit a,
.gtc-credit-limit button,
.gtc-profile__contacts button,
.gtc-referral__url button,
.gtc-referral__closed button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gtc-color-brand, #0a8f4c);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.gtc-panel__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.gtc-panel__actions a,
.gtc-panel__actions button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.gtc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gtc-dashboard__actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 72px;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.gtc-action-link {
  display: flex;
  min-width: 0;
  min-height: 72px;
  padding: 8px 10px;
  border: 1px solid var(--gtc-dashboard-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--gtc-color-text, #18231e);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gtc-action-link:last-child {
  border-right: 1px solid var(--gtc-dashboard-border);
}

.gtc-action-link__icon {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eaf7f0;
  color: #078a49;
  font-size: 18px;
  place-items: center;
}

.gtc-action-link__icon--blue {
  background: #edf4ff;
  color: #2674dc;
}

.gtc-action-link__icon--amber {
  background: #fff6df;
  color: #b46b00;
}

.gtc-dashboard__table-wrap {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.gtc-data-table {
  width: 100%;
  min-width: 720px;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.gtc-data-table th,
.gtc-data-table td {
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--gtc-color-border, #dfe7e2);
  color: var(--gtc-color-text-muted, #647068);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

.gtc-data-table th {
  height: 38px;
  background: #f7faf8;
  color: var(--gtc-color-text-subtle, #4f5c54);
  font-weight: 550;
}

.gtc-data-table tbody tr:last-child td {
  border-bottom: 0;
}

.gtc-data-table tbody tr:hover td {
  background: #f8fbf9;
}

.gtc-product-name {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--gtc-color-text, #18231e);
  text-decoration: none;
}

.gtc-product-name i {
  flex: 0 0 auto;
  color: #2674dc;
  font-size: 16px;
}

.gtc-product-name span,
.gtc-table-note {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-table-action {
  text-align: right !important;
}

.gtc-text-danger {
  color: #c83b38 !important;
}

.gtc-empty-state {
  display: flex;
  min-height: 220px;
  padding: 28px 20px;
  color: var(--gtc-color-text-muted, #647068);
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gtc-empty-state > i {
  margin-bottom: 10px;
  color: #aeb8b2;
  font-size: 48px;
}

.gtc-empty-state h3,
.gtc-empty-state p {
  margin: 0;
}

.gtc-empty-state h3 {
  color: var(--gtc-color-text, #18231e);
  font-size: 16px;
  line-height: 1.5;
}

.gtc-empty-state p {
  max-width: 420px;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
}

.gtc-empty-state .el-button {
  margin-top: 14px;
}

.gtc-empty-state--compact {
  min-height: 152px;
}

.gtc-empty-state--compact > i {
  font-size: 36px;
}

.gtc-statistics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 20px 8px;
}

.gtc-statistics > * {
  min-width: 0;
  border-right: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-statistics > *:last-child {
  border-right: 0;
}

.gtc-statistic-action,
.gtc-statistic-value {
  display: flex;
  min-height: 64px;
  padding: 0 18px;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gtc-color-text, #18231e);
  font: inherit;
  text-align: left;
  flex-direction: column;
  justify-content: center;
}

.gtc-statistic-action {
  cursor: pointer;
}

.gtc-statistic-action:hover {
  background: #f8fbf9;
}

.gtc-statistic-action__label,
.gtc-finance-metrics dt,
.gtc-referral__metrics dt {
  overflow-wrap: anywhere;
  color: var(--gtc-color-text-muted, #647068);
  font-size: 12px;
  line-height: 1.45;
}

.gtc-statistic-action__value {
  margin-top: 8px;
  color: var(--gtc-color-text, #18231e);
  font-size: 26px;
  font-weight: 650;
  line-height: 1.2;
}

.gtc-statistic-action__value small {
  margin-right: 2px;
  font-size: 13px;
  font-weight: 500;
}

.gtc-row-list,
.gtc-news-list {
  display: grid;
}

.gtc-row-list__item,
.gtc-news-list__item {
  display: grid;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 8px 18px;
  border: 0;
  border-bottom: 1px solid var(--gtc-color-border, #dfe7e2);
  border-radius: 0;
  background: transparent;
  color: var(--gtc-color-text, #18231e);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gtc-row-list__item {
  grid-template-columns: 8px minmax(0, 1fr) auto 16px;
}

.gtc-row-list__item:last-child,
.gtc-news-list__item:last-child {
  border-bottom: 0;
}

.gtc-row-list__item:hover,
.gtc-news-list__item:hover {
  background: #f8fbf9;
}

.gtc-status-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gtc-color-brand, #0a8f4c);
}

.gtc-row-list__body {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gtc-row-list__body strong,
.gtc-news-list__item strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-row-list__body small,
.gtc-row-list__status,
.gtc-news-list__item time {
  color: var(--gtc-color-text-muted, #647068);
  font-size: 12px;
  line-height: 1.4;
}

.gtc-news-list__item {
  grid-template-columns: 70px minmax(0, 1fr) auto 16px;
}

.gtc-news-list__type {
  display: inline-flex;
  width: fit-content;
  max-width: 68px;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid #b9dfca;
  border-radius: 4px;
  background: #edf8f2;
  color: #087943;
  font-size: 12px;
  line-height: 1.3;
  align-items: center;
}

.gtc-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.gtc-profile__avatar {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gtc-color-brand, #0a8f4c) !important;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 650;
  place-items: center;
}

.gtc-profile__identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gtc-profile__identity strong {
  overflow: hidden;
  color: var(--gtc-color-text, #18231e);
  font-size: 15px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-profile__identity span {
  color: var(--gtc-color-text-muted, #647068);
  font-size: 12px;
  line-height: 1.45;
}

.gtc-profile__contacts {
  display: grid;
  margin: 0;
  padding: 0 18px 10px;
}

.gtc-profile__contacts > div,
.gtc-profile__security {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  min-height: 36px;
}

.gtc-profile__contacts dt,
.gtc-profile__contacts dd {
  min-width: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.gtc-profile__contacts dt {
  color: var(--gtc-color-text-muted, #647068);
}

.gtc-profile__contacts dt i {
  width: 18px;
  color: var(--gtc-color-brand, #0a8f4c);
}

.gtc-profile__contacts dd {
  overflow: hidden;
  color: var(--gtc-color-text, #18231e);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-profile__security {
  min-height: 46px;
  padding: 0 18px;
  border-top: 1px solid var(--gtc-color-border, #dfe7e2);
  color: var(--gtc-color-text, #18231e);
  font-size: 13px;
  text-decoration: none;
}

.gtc-profile__security span i {
  margin-right: 7px;
  color: var(--gtc-color-brand, #0a8f4c);
}

.gtc-balance {
  position: relative;
  display: grid;
  padding: 18px;
  gap: 4px;
}

.gtc-balance > span {
  color: var(--gtc-color-text-muted, #647068);
  font-size: 12px;
  line-height: 1.4;
}

.gtc-balance > strong {
  color: var(--gtc-color-text, #18231e);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.gtc-balance > strong small {
  margin-right: 3px;
  font-size: 14px;
  font-weight: 550;
}

.gtc-balance > button {
  position: absolute;
  right: 18px;
  bottom: 20px;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid var(--gtc-color-brand, #0a8f4c);
  border-radius: 4px;
  background: transparent;
  color: var(--gtc-color-brand, #0a8f4c);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.gtc-balance-notice {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-height: 34px;
  padding: 0 18px;
  border-top: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-balance-notice__status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aeb8b2;
}

.gtc-balance-notice__status.is-active {
  background: var(--gtc-color-brand, #0a8f4c);
}

.gtc-balance-notice button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gtc-color-brand, #0a8f4c);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.gtc-finance-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-finance-metrics > div {
  min-width: 0;
  min-height: 72px;
  padding: 13px 16px;
  border-right: 1px solid var(--gtc-color-border, #dfe7e2);
  border-bottom: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-finance-metrics > div:nth-child(2n) {
  border-right: 0;
}

.gtc-finance-metrics dd {
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--gtc-color-text, #18231e);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-credit-limit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-top: 1px solid var(--gtc-color-border, #dfe7e2);
  font-size: 12px;
}

.gtc-credit-limit span {
  color: var(--gtc-color-text-muted, #647068);
}

.gtc-credit-limit strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-support-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 62px;
  padding: 10px 18px;
  border: 0;
  border-bottom: 1px solid var(--gtc-color-border, #dfe7e2);
  border-radius: 0;
  background: transparent;
  color: var(--gtc-color-text, #18231e);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.gtc-support-link:last-child {
  border-bottom: 0;
}

.gtc-support-link__icon {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf8f2;
  color: var(--gtc-color-brand, #0a8f4c);
  font-size: 16px;
  place-items: center;
}

.gtc-support-link > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.gtc-support-link strong,
.gtc-support-link small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-support-link strong {
  font-size: 13px;
  font-weight: 550;
}

.gtc-support-link small {
  color: var(--gtc-color-text-muted, #647068);
  font-size: 11px;
}

.gtc-dashboard__referral > p {
  margin: 0;
  padding: 16px 18px 8px;
  color: var(--gtc-color-text-muted, #647068);
  font-size: 12px;
  line-height: 1.55;
}

.gtc-referral__url {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 8px 18px 16px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--gtc-color-border, #dfe7e2);
  border-radius: 4px;
  background: #f7faf8;
}

.gtc-referral__url span {
  overflow: hidden;
  color: var(--gtc-color-text-muted, #647068);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-referral__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-referral__metrics > div {
  min-width: 0;
  padding: 13px 18px;
}

.gtc-referral__metrics > div + div {
  border-left: 1px solid var(--gtc-color-border, #dfe7e2);
}

.gtc-referral__metrics dd {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--gtc-color-text, #18231e);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtc-referral__closed {
  display: flex;
  min-height: 154px;
  padding: 20px;
  color: var(--gtc-color-text-muted, #647068);
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gtc-referral__closed > i {
  color: #84b99d;
  font-size: 36px;
}

.gtc-referral__closed p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.gtc-referral__closed button {
  margin-top: 10px;
}

.wx-code {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.wx-img {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gtc-color-border, #dfe7e2);
  border-radius: 50%;
  background: #fff;
  color: var(--gtc-color-brand, #0a8f4c);
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 5px 18px rgba(24, 49, 36, 0.12);
  place-items: center;
}

.wx-box {
  text-align: center;
}

.wx-box .img {
  min-height: 160px;
}

.wx-box .img img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.gtc-dashboard a:focus-visible,
.gtc-dashboard button:focus-visible {
  outline: 3px solid rgba(38, 116, 220, 0.38);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .gtc-dashboard__grid {
    grid-template-areas:
      "summary"
      "main"
      "extras";
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .template.gtc-dashboard > .el-container > .el-container > .home-main.gtc-dashboard__main,
  .template.gtc-dashboard > .el-container > .el-container > .el-main.gtc-dashboard__main {
    width: 100%;
    min-height: calc(100vh - var(--gtc-topbar-height, 56px) - 12px);
    margin: 0 auto !important;
    padding: 20px 16px 32px !important;
  }

  .gtc-dashboard__welcome {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .gtc-dashboard__welcome h1 {
    font-size: 22px;
  }

  .gtc-dashboard__welcome-actions {
    width: 100%;
  }

  .gtc-dashboard__welcome-actions a,
  .gtc-dashboard__welcome-actions button {
    flex: 1 1 0;
  }

  .gtc-dashboard__grid {
    grid-template-areas:
      "main"
      "summary"
      "extras";
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .gtc-dashboard__mobile-brand {
    position: fixed;
    top: 9px;
    left: 76px;
    z-index: 1002;
    display: flex;
    width: 84px;
    height: 38px;
    align-items: center;
  }

  .gtc-dashboard__mobile-brand img {
    display: block;
    width: 84px;
    height: 28px;
    object-fit: contain;
  }

  .gtc-panel__header {
    min-height: 48px;
    padding: 0 14px;
  }

  .gtc-panel__header h2 {
    font-size: 15px;
  }

  .gtc-panel__actions {
    gap: 10px;
  }

  .gtc-dashboard__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .gtc-action-link {
    min-height: 60px;
    font-size: 12px;
  }

  .gtc-action-link:last-child {
    grid-column: 1 / -1;
  }

  .gtc-statistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .gtc-statistics > * {
    min-height: 86px;
    border-bottom: 1px solid var(--gtc-color-border, #dfe7e2);
  }

  .gtc-statistics > *:nth-child(2n) {
    border-right: 0;
  }

  .gtc-statistics > *:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .gtc-statistic-action,
  .gtc-statistic-value {
    min-height: 86px;
    padding: 15px 12px;
  }

  .gtc-statistic-action__value {
    font-size: 22px;
  }

  .gtc-row-list__item {
    grid-template-columns: 8px minmax(0, 1fr) 16px;
    padding: 10px 14px;
  }

  .gtc-row-list__status {
    display: none;
  }

  .gtc-news-list__item {
    grid-template-columns: 64px minmax(0, 1fr) 16px;
    padding: 10px 14px;
  }

  .gtc-news-list__item time {
    display: none;
  }

  .gtc-profile {
    padding: 16px 14px;
  }

  .gtc-profile__contacts {
    padding: 0 14px 8px;
  }

  .gtc-profile__security {
    padding: 0 14px;
  }

  .gtc-balance {
    padding: 16px 14px;
  }

  .gtc-balance > button {
    right: 14px;
    bottom: 18px;
  }

  .wx-code {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 360px) {
  .gtc-dashboard__mobile-brand,
  .gtc-dashboard__mobile-brand img {
    width: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gtc-dashboard *,
  .gtc-dashboard *::before,
  .gtc-dashboard *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
