/* 货币选择弹窗 */
.currency-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.45);
}

.currency-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1201;
  transform: translate(-50%, -50%);
  width: min(88vw, 420px);
  max-height: min(70vh, 520px);
  background: var(--theme-card-background, #fff);
  border-radius: min(2.666667vw, 14.4px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.currency-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: min(3.733333vw, 20.16px) min(4vw, 21.6px);
  font-size: min(4vw, 21.6px);
  font-weight: 600;
  color: var(--heading-color, #2d2d2d);
}

.currency-modal-close {
  border: none;
  background: transparent;
  font-size: min(6.4vw, 34.56px);
  line-height: 1;
  color: var(--text-color-3, #999);
  cursor: pointer;
  padding: 0;
}

.currency-modal-status {
  margin: 0;
  padding: min(8vw, 43.2px);
  text-align: center;
  font-size: min(3.466667vw, 18.72px);
  color: var(--text-color-3, #999);
}

.currency-modal-list {
  list-style: none;
  margin: 0;
  padding: min(1.6vw, 8.64px) 0;
  overflow-y: auto;
}

.currency-modal-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(2.133333vw, 11.52px);
  padding: min(3.733333vw, 20.16px) min(4vw, 21.6px);
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.currency-modal-item:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.03);
}

.currency-modal-item.is-active {
  background: rgba(189, 149, 52, 0.08);
}

.currency-modal-item:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.currency-modal-item-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: min(0.8vw, 4.32px);
}

.currency-modal-title {
  font-size: min(3.733333vw, 20.16px);
  font-weight: 600;
  color: var(--heading-color, #2d2d2d);
}

.currency-modal-sub {
  font-size: min(3.2vw, 17.28px);
  color: var(--text-color-3, #999);
}

.currency-modal-meta {
  flex-shrink: 0;
  font-size: min(4.266667vw, 23px);
  color: var(--theme-btn-primary-background, #bd9534);
  font-weight: 600;
}

.currency-modal-check {
  flex-shrink: 0;
  color: var(--theme-btn-primary-background, #bd9534);
  font-size: min(4.266667vw, 23px);
  font-weight: 700;
}

.mine-menu-trailing {
  margin-right: min(1.6vw, 8.64px);
  font-size: min(3.466667vw, 18.72px);
  color: var(--text-color-3, #999);
}

.mine_sub_list .flex_between {
  align-items: center;
}

.mine-menu-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
