:root,
page {
  --nut-scale-f: 1;
  --nut-scale-font: var(--nut-scale-f, 1);
  --nut-scale-icon: var(--nut-scale-f, 1);
  --nut-icon-height: calc(16px * var(--nut-scale-icon, var(--nut-scale-f, 1))) !important;
  --nut-icon-width: calc(16px * var(--nut-scale-icon, var(--nut-scale-f, 1))) !important;
  --nut-icon-line-height: calc(16px * var(--nut-scale-icon, var(--nut-scale-f, 1))) !important;
}

/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
.nut-pickerview {
  position: relative;
  display: flex;
  width: 100%;
  height: calc(var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1))) * 7);
  overflow: hidden;
}
.nut-pickerview-mask, .nut-pickerview-indicator {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}
.nut-pickerview-mask {
  top: 0;
  bottom: 0;
  background-image: var(--picker-mask-background, linear-gradient(180deg, var(--nutui-white-12), var(--nutui-white-7)), linear-gradient(0deg, var(--nutui-white-12), var(--nutui-white-7)));
  background-position: top, bottom;
  background-size: 100% calc((var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1))) * 7 - var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)))) / 2);
  background-repeat: no-repeat;
  transform: translateZ(0);
}
.nut-pickerview-indicator {
  top: calc((var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1))) * 7 - var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)))) / 2);
  height: var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)));
  border: var(--nutui-picker-item-active-line-border, calc(1px * var(--nut-scale-f, 1)) solid var(--nutui-color-border, rgba(0, 0, 0, 0.06)));
  border-left: 0;
  border-right: 0;
  box-sizing: border-box;
}
.nut-pickerview-list {
  position: relative;
  flex: 1;
  height: calc(var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1))) * 7);
  overflow: hidden;
  touch-action: none;
}
.nut-pickerview-roller {
  position: absolute;
  top: calc((var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1))) * 7 - var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)))) / 2);
  width: 100%;
  height: var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)));
  z-index: 1;
  transform-style: preserve-3d;
}
.nut-pickerview-roller-placeholder {
  height: var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)));
}
.nut-pickerview-roller-item {
  position: absolute;
  top: 0;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.nut-pickerview-roller-item-hidden {
  visibility: hidden;
  opacity: 0;
}
.nut-pickerview-roller-item, .nut-pickerview-roller-item-tiled {
  width: 100%;
  height: var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)));
  line-height: var(--nutui-picker-item-height, calc(36px * var(--nut-scale-f, 1)));
  color: var(--nutui-picker-item-text-color, var(--nutui-color-title, #1a1a1a));
  font-size: var(--nutui-picker-item-text-font-size, var(--nutui-font-size-base, calc(14px * var(--nut-scale-font, var(--nut-scale-f, 1)))));
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}