.bottom-ios-prompt {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  height: 88px;

  background: #272727;
  box-shadow: 0 -3px 18px 4px rgba(0, 0, 0, 0.56);
}
.bottom-ios-prompt.show {
  display: flex;
}
.bottom-ios-prompt .prompt-inner {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 88px;
  margin: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}
.prompt-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  flex: 0 0 44px;
  object-fit: cover;
}
.prompt-texts {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.prompt-title {
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prompt-desc {
  font-size: 12px;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prompt-actions-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prompt-action {
  background: #3E7DFF;
  border: none;
  width: 68px;
  height: 38px;
  border-radius: 19px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
}
.prompt-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 8px;
  line-height: 1;
}

@media (min-width: 825px) {
  .bottom-ios-prompt {
    display: none !important;
  }
}
