.vui-action-sheet {
  --vui-action-sheet-height: 120px;
  --vui-action-sheet-padding-h: var(--vui-h-gap-sl);
  --vui-action-sheet-color: var(--vui-color-text-body);
  --vui-action-sheet-color-highlight: var(--vui-color-primary);
  --vui-action-sheet-color-cancel: var(--vui-color-text-minor);
  --vui-action-sheet-font-size: var(--vui-font-caption-normal);
  --vui-action-sheet-bg: var(--vui-color-bg-inverse);
  --vui-action-sheet-disabled-opacity: var(--vui-opacity-disabled);
  --vui-action-sheet-cancel-gap-bg: var(--vui-color-bg-base);
  --vui-action-sheet-zindex: 1101;
}
.vui-action-sheet {
  color: var(--vui-action-sheet-color);
  -webkit-font-smoothing: antialiased;
}
.vui-action-sheet-content {
  position: relative;
  width: 100%;
  border-radius: 28px 28px 0 0;
  background: var(--vui-action-sheet-bg);
  font-size: 14px;
  text-align: center;
  overflow: auto;
}
.vui-action-sheet-header {
  position: relative;
  padding: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
}
.vui-action-sheet-header::before {
  content: '';
  position: absolute;
  z-index: 2;
  transform-origin: 100% 50%;
  transform: scaleY(0.5) translateY(100%);
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  width: 100%;
  border-bottom: solid 2px var(--vui-color-border-base);
  transform-origin: 50% 100%;
}
@media (min-resolution: 3dppx) {
  .vui-action-sheet-header::before {
    transform: scaleY(0.33) translateY(100%);
  }
}
.vui-action-sheet-list{
  margin: 0;
  padding: 0;
}
.vui-action-sheet-list li{
  list-style: none;
}
.vui-action-sheet-item {
  position: relative;
  padding: 10px 0;
  box-sizing: border-box;
  font-size: 14px;
  transition: background-color 0.3s;
  user-select: none;
  line-height: 30px;
}
.vui-action-sheet-item.active {
  color: var(--vui-action-sheet-color-highlight);
}
.vui-action-sheet-item.disabled .vui-action-sheet-item-section {
  opacity: var(--vui-action-sheet-disabled-opacity);
}
.vui-action-sheet-item:first-of-type .vui-action-sheet-item-wrapper:after {
  display: none;
}
.vui-action-sheet-item:active {
  background-color: var(--vui-color-bg-tap);
}
.vui-action-sheet-item:active.disabled {
  background-color: transparent;
}
.vui-action-sheet-item-wrapper {
  position: relative;
}

.vui-action-sheet-item-wrapper::after {
  content: '';
  position: absolute;
  z-index: 2;
  transform-origin: 100% 50%;
  transform: scaleY(0.5) translateY(-100%);
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100%;
  border-top: solid 2px #e2e4ea;
  transform-origin: 50% 0;
}
@media (min-resolution: 3dppx) {
  .vui-action-sheet-item-wrapper::after {
    transform: scaleY(0.33) translateY(-100%);
  }
}
.vui-action-sheet-cancel {
  line-height: 66px;
  color: var(--vui-action-sheet-color-cancel);
  font-weight: var(--vui-font-weight-medium);
}
.vui-action-sheet-cancel::before {
  display: block;
  content: '';
  height: 12px;
  background: var(--vui-action-sheet-cancel-gap-bg);
}
