.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 40, 50, 0.72);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  display: flex; /* 始终为 flex */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-dialog {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 70vh;
  max-height: 92vh;
  background: #18181b;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 32px 0 rgba(0, 0, 0, 0.18);
  border: 1px solid transparent;
  border-image: linear-gradient(
      to bottom,
      rgba(228, 25, 54, 0.7),
      rgba(228, 25, 54, 0.3)
    )
    1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay.active .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  padding: 12px 12px 0 12px;
  background: transparent;
}
.modal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-title {
  font-size: 16px;
  color: #fff;
  font-family: "Magnita", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.modal-close {
  width: 24px;
  height: 24px;
  background: url("/v2/mobile/images/close_icon.png") no-repeat center center;
  background-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.modal-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 24px 12px;
  color: #fff;
  box-sizing: border-box;
  scrollbar-width: thin;
}
.modal-content::-webkit-scrollbar {
  width: 6px;
  background: #232228;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #b1002f;
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-track {
  background: #232228;
}

.modal-content-item {
  margin-bottom: 24px;
}
.modal-content-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.modal-content-item-title {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.01em;
}
.modal-content-item-detail {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.7;
}
