@charset "UTF-8";
/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
.nut-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--nutui-overlay-bg-color, var(--nutui-color-mask, rgba(0, 0, 0, 0.7)));
}

.nut-overflow-hidden {
  overflow: hidden !important;
}

@keyframes nut-fade-in {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nut-fade-out {
  0% {
    opacity: 1;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.nut-overlay-slide-enter-active, .nut-overlay-slide-appear-active {
  animation-fill-mode: both;
  animation-name: nut-fade-in;
  animation-duration: var(--nutui-overlay-animation-duration, 0.3s);
}
.nut-overlay-slide-exit-active {
  animation-fill-mode: both;
  animation-name: nut-fade-out;
  animation-duration: var(--nutui-overlay-animation-duration, 0.3s);
}

[dir=rtl] .nut-overlay,
.nut-rtl .nut-overlay {
  left: auto;
  right: 0;
}

.nut-popup {
  position: fixed;
  min-height: 26%;
  max-height: 100%;
  background-color: var(--nutui-overlay-content-bg-color, var(--nutui-color-background-overlay, #ffffff));
  -webkit-overflow-scrolling: touch;
  font-size: var(--nutui-font-size-base, 14px);
}
.nut-popup-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: var(--nutui-popup-title-border-bottom, 0);
  padding: var(--nutui-popup-title-padding, 16px);
  position: relative;
}
.nut-popup-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nut-popup-title-title {
  color: var(--nutui-color-title, #1a1a1a);
  font-weight: var(--nutui-font-weight-bold, 600);
  font-size: var(--nutui-popup-title-font-size, var(--nutui-font-size-xl, 18px));
  line-height: var(--nutui-popup-title-font-size, var(--nutui-font-size-xl, 18px));
}
.nut-popup-title-description {
  color: var(--nutui-color-text, #505259);
  font-size: var(--nutui-popup-description-font-size, var(--nutui-font-size-base, 14px));
  font-weight: var(--nutui-font-weight, 400);
}
.nut-popup-title-description-gap {
  margin-top: var(--nutui-popup-description-spacing, var(--nutui-spacing-base, 8px));
}
.nut-popup-title-left {
  position: absolute;
  top: var(--nutui-popup-title-padding, 16px);
  left: var(--nutui-popup-title-padding, 16px);
}
.nut-popup-title-right {
  position: absolute;
  top: var(--nutui-popup-title-padding, 16px);
  right: var(--nutui-popup-title-padding, 16px);
  z-index: 1;
  width: var(--nutui-popup-icon-size, 20px);
  height: var(--nutui-popup-icon-size, 20px);
  color: var(--nutui-color-title, #1a1a1a);
  cursor: pointer;
}
.nut-popup-title-right:active {
  opacity: 0.7;
}
.nut-popup-title-right-top-left {
  top: var(--nutui-popup-title-padding, 16px);
  left: var(--nutui-popup-title-padding, 16px);
}
.nut-popup-title-right-bottom-left {
  bottom: var(--nutui-popup-title-padding, 16px);
  left: var(--nutui-popup-title-padding, 16px);
}
.nut-popup-title-right-bottom-right {
  right: var(--nutui-popup-title-padding, 16px);
  bottom: var(--nutui-popup-title-padding, 16px);
}
.nut-popup-center {
  top: 50%;
  left: 50%;
  min-height: 10%;
  max-width: 295px;
  transform: translate(-50%, -50%);
}
.nut-popup-center.nut-popup-round {
  border-radius: var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px));
}
.nut-popup-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.nut-popup-bottom.nut-popup-round {
  border-radius: var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px)) var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px)) 0 0;
}
.nut-popup-bottom-top {
  position: absolute;
}
.nut-popup-right {
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
}
.nut-popup-right.nut-popup-round {
  border-radius: var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px)) 0 0 var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px));
}
.nut-popup-left {
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
}
.nut-popup-left.nut-popup-round {
  border-radius: 0 var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px)) var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px)) 0;
}
.nut-popup-top {
  top: 0;
  left: 0;
  width: 100%;
}
.nut-popup-top.nut-popup-round {
  border-radius: 0 0 var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px)) var(--nutui-popup-border-radius, var(--nutui-radius-xl, 12px));
}
.nut-popup-slide {
  /* 从顶部滑出 */
  /* 从右侧滑出 */
  /* 从底部滑出 */
  /* 从左侧滑出 */
}
@keyframes popup-scale-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popup-scale-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
.nut-popup-slide-none-enter-active {
  animation-fill-mode: both;
  animation-name: popup-scale-fade-in;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-none-exit-active {
  animation-fill-mode: both;
  animation-name: popup-scale-fade-out;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
@keyframes popup-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popup-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.nut-popup-slide-center-enter-active {
  animation-fill-mode: both;
  animation-name: popup-fade-in;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-center-exit-active {
  animation-fill-mode: both;
  animation-name: popup-fade-out;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
@keyframes popup-slide-top-enter {
  from {
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translate3d(0, 0%, 0);
  }
}
@keyframes popup-slide-top-exit {
  to {
    transform: translate3d(0, -100%, 0);
  }
}
.nut-popup-slide-top-enter-active, .nut-popup-slide-top-appear-active {
  transform: translate3d(0, 0%, 0);
  animation-fill-mode: both;
  animation-name: popup-slide-top-enter;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-top-exit-active {
  animation-fill-mode: both;
  animation-name: popup-slide-top-exit;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
@keyframes popup-slide-right-enter {
  from {
    transform: translate3d(100%, 0, 0);
  }
  to {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes popup-slide-right-exit {
  to {
    transform: translate3d(100%, 0, 0);
  }
}
.nut-popup-slide-right-enter-active, .nut-popup-slide-right-appear-active {
  transform: translate3d(0, 0, 0);
  animation-fill-mode: both;
  animation-name: popup-slide-right-enter;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-right-exit {
  animation-fill-mode: both;
  animation-name: popup-slide-right-exit;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
@keyframes popup-slide-bottom-enter {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0%, 0);
  }
}
@keyframes slide-bottom-exit {
  to {
    transform: translate3d(0, 100%, 0);
  }
}
.nut-popup-slide-bottom-enter-active, .nut-popup-slide-bottom-appear-active {
  transform: translate(0, 0);
  animation-fill-mode: both;
  animation-name: popup-slide-bottom-enter;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-bottom-exit {
  animation-fill-mode: both;
  animation-name: slide-bottom-exit;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
@keyframes popup-slide-left-enter {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes popup-slide-left-exit {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.nut-popup-slide-left-enter-active, .nut-popup-slide-left-appear-active {
  transform: translate(0, 0);
  animation-fill-mode: both;
  animation-name: popup-slide-left-enter;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-left-exit-active, .nut-popup-slide-left-exit-done {
  animation-fill-mode: both;
  animation-name: popup-slide-left-exit;
  animation-duration: var(--nutui-popup-animation-duration, 0.3s);
}
.nut-popup-slide-none-exit-done.nut-popup, .nut-popup-slide-center-exit-done.nut-popup, .nut-popup-slide-left-exit-done.nut-popup, .nut-popup-slide-right-exit-done.nut-popup, .nut-popup-slide-top-exit-done.nut-popup, .nut-popup-slide-bottom-exit-done.nut-popup {
  display: none;
}
.nut-popup .nut-overflow-hidden {
  overflow: hidden;
}

[dir=rtl] .nut-popup-title-left,
.nut-rtl .nut-popup-title-left {
  left: auto;
  right: var(--nutui-popup-title-padding, 16px);
}
[dir=rtl] .nut-popup-title-right,
.nut-rtl .nut-popup-title-right {
  right: auto;
  left: var(--nutui-popup-title-padding, 16px);
}
[dir=rtl] .nut-popup-title-right-top-left,
.nut-rtl .nut-popup-title-right-top-left {
  left: auto;
  right: var(--nutui-popup-title-padding, 16px);
}
[dir=rtl] .nut-popup-title-right-bottom-left,
.nut-rtl .nut-popup-title-right-bottom-left {
  left: auto;
  right: var(--nutui-popup-title-padding, 16px);
}
[dir=rtl] .nut-popup-title-right-bottom-right,
.nut-rtl .nut-popup-title-right-bottom-right {
  right: auto;
  left: var(--nutui-popup-title-padding, 16px);
}
[dir=rtl] .nut-popup-title .nut-icon-ArrowLeft,
.nut-rtl .nut-popup-title .nut-icon-ArrowLeft {
  transform: rotate(180deg);
}
[dir=rtl] .nut-popup-center,
.nut-rtl .nut-popup-center {
  left: auto;
  right: 50%;
  transform: translate(50%, -50%);
}
[dir=rtl] .nut-popup-bottom,
.nut-rtl .nut-popup-bottom {
  left: auto;
  right: 0;
}
[dir=rtl] .nut-popup-top,
.nut-rtl .nut-popup-top {
  left: auto;
  right: 0;
}

.nut-popover {
  position: absolute;
  display: inline-block;
  word-break: normal;
}
.nut-popover-arrow {
  position: absolute;
  width: 8px;
  height: 4px;
}
.nut-popover-arrow .nut-icon-ArrowRadius {
  position: absolute;
  color: var(--nutui-popover-content-background-color, #ffffff);
}
.nut-popover-arrow-top {
  bottom: -4px;
}
.nut-popover-arrow-bottom {
  top: -4px;
}
.nut-popover-arrow-left {
  right: -6px;
  transform-origin: center top;
}
.nut-popover-arrow-left.nut-popover-arrow-left {
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
}
.nut-popover-arrow-left.nut-popover-arrow-left-top {
  top: 16px;
  right: -8px;
  transform: rotate(90deg) translateY(0%);
}
.nut-popover-arrow-left.nut-popover-arrow-left-bottom {
  top: auto;
  bottom: 16px;
  right: -8px;
  transform: rotate(90deg) translateY(0%);
}
.nut-popover-arrow-right {
  transform-origin: center top;
}
.nut-popover-arrow-right.nut-popover-arrow-right {
  top: 50%;
  left: -6px;
  transform: rotate(-90deg) translateY(-50%);
}
.nut-popover-arrow-right.nut-popover-arrow-right-top {
  top: 16px;
  left: -8px;
  transform: rotate(-90deg) translateY(0%);
}
.nut-popover-arrow-right.nut-popover-arrow-right-bottom {
  bottom: 16px;
  left: -8px;
  transform: rotate(-90deg) translateY(0%);
}
.nut-popover .nut-popover-content {
  position: absolute;
  background: var(--nutui-popover-content-background-color, #ffffff);
  border-radius: var(--nutui-popover-border-radius, var(--nutui-radius-xs, 4px));
  font-size: var(--nutui-popover-font-size, var(--nutui-font-size-s, 12px));
  color: var(--nutui-popover-text-color, var(--nutui-color-mask, rgba(0, 0, 0, 0.7)));
  line-height: 28px;
  max-height: initial;
  overflow-y: initial;
}
.nut-popover .nut-popover-content-group {
  padding: 0 var(--nutui-popover-padding, 8px);
}
.nut-popover .nut-popover-content .nut-popover-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--nutui-popover-divider-color, var(--nutui-color-border, rgba(0, 0, 0, 0.06)));
  max-width: var(--nutui-popover-item-width, 160px);
  word-wrap: break-word;
}
.nut-popover .nut-popover-content .nut-popover-item:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.nut-popover .nut-popover-content .nut-popover-item-icon, .nut-popover .nut-popover-content .nut-popover-item-action-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--nutui-font-size-s, 12px);
  height: var(--nutui-font-size-s, 12px);
  font-size: var(--nutui-font-size-s, 12px);
}
.nut-popover .nut-popover-content .nut-popover-item-icon .nut-icon, .nut-popover .nut-popover-content .nut-popover-item-action-icon .nut-icon {
  width: var(--nutui-font-size-s, 12px);
  height: var(--nutui-font-size-s, 12px);
  font-size: var(--nutui-font-size-s, 12px);
}
.nut-popover .nut-popover-content .nut-popover-item-icon {
  margin-right: var(--nutui-spacing-xxs, 4px);
}
.nut-popover .nut-popover-content .nut-popover-item-name {
  width: calc(100% - 34px);
  word-break: keep-all;
  flex: 1;
}
.nut-popover .nut-popover-content .nut-popover-item-action-icon {
  color: var(--nutui-color-text, #505259);
  margin-left: var(--nutui-spacing-base, 8px);
}
.nut-popover .nut-popover-content .nut-popover-item.nut-popover-item-disabled {
  color: var(--nutui-popover-disable-color, var(--nutui-color-text-disabled, #c2c4cc));
  cursor: not-allowed;
}
.nut-popover .nut-popover-content .nut-popover-item.nut-popover-taroitem {
  display: flex;
}
.nut-popover .nut-popover-content-top .nut-popover-arrow-top {
  left: 50%;
  transform-origin: center left;
  transform: rotate(180deg) translateX(-50%);
}
.nut-popover .nut-popover-content-top-right {
  right: 0;
}
.nut-popover .nut-popover-content-top-right .nut-popover-arrow-top-right {
  right: 16px;
  bottom: -3.5px;
  transform: rotate(180deg) translateX(0%);
}
.nut-popover .nut-popover-content-top-left {
  left: 0;
}
.nut-popover .nut-popover-content-top-left .nut-popover-arrow-top-left {
  left: 16px;
  bottom: -3.5px;
  transform: rotate(180deg) translateX(0%);
}
.nut-popover .nut-popover-content-bottom .nut-popover-arrow-bottom {
  left: 50%;
  transform: translateX(-50%);
}
.nut-popover .nut-popover-content-bottom-right {
  right: 0;
}
.nut-popover .nut-popover-content-bottom-right .nut-popover-arrow-bottom-right {
  right: 16px;
  transform: translateX(0%);
}
.nut-popover .nut-popover-content-bottom-left {
  left: 0;
}
.nut-popover .nut-popover-content-bottom-left .nut-popover-arrow-bottom-left {
  left: 16px;
  transform: translateX(0%);
}
.nut-popover .nut-popover-content-left-bottom {
  bottom: 0;
}
.nut-popover .nut-popover-content-left-top {
  top: 0;
}
.nut-popover .nut-popover-content-right-bottom {
  bottom: 0;
}
.nut-popover .nut-popover-content-right-top {
  top: 0;
}

.nut-popover-dark {
  background: var(--nutui-popover-text-color, var(--nutui-color-mask, rgba(0, 0, 0, 0.7)));
  color: var(--nutui-popover-content-background-color, #ffffff);
}
.nut-popover-dark .nut-popover-arrow .nut-icon-ArrowRadius {
  color: var(--nutui-popover-text-color, var(--nutui-color-mask, rgba(0, 0, 0, 0.7)));
}
.nut-popover-dark .nut-popover-content {
  background: var(--nutui-popover-text-color, var(--nutui-color-mask, rgba(0, 0, 0, 0.7))) !important;
  color: var(--nutui-popover-content-background-color, #ffffff) !important;
}
.nut-popover-dark .nut-popover-content .nut-popover-item-action-icon {
  color: rgba(255, 255, 255, 0.8);
}

[dir=rtl] .nut-popover .nut-popover-content .nut-popover-item-name,
.nut-rtl .nut-popover .nut-popover-content .nut-popover-item-name {
  margin-left: 0;
  margin-right: 4px;
}
[dir=rtl] .nut-popover .nut-popover-content .nut-popover-item-action-icon,
.nut-rtl .nut-popover .nut-popover-content .nut-popover-item-action-icon {
  right: auto;
}
[dir=rtl] .nut-popover .nut-popover-content-top .nut-popover-arrow-top,
.nut-rtl .nut-popover .nut-popover-content-top .nut-popover-arrow-top {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
[dir=rtl] .nut-popover .nut-popover-content-top-right,
.nut-rtl .nut-popover .nut-popover-content-top-right {
  right: auto;
  left: 0;
}
[dir=rtl] .nut-popover .nut-popover-content-top-right .nut-popover-arrow-top-right,
.nut-rtl .nut-popover .nut-popover-content-top-right .nut-popover-arrow-top-right {
  right: auto;
  left: 16px;
}
[dir=rtl] .nut-popover .nut-popover-content-top-left,
.nut-rtl .nut-popover .nut-popover-content-top-left {
  left: auto;
  right: 0;
}
[dir=rtl] .nut-popover .nut-popover-content-top-left .nut-popover-arrow-top-left,
.nut-rtl .nut-popover .nut-popover-content-top-left .nut-popover-arrow-top-left {
  left: auto;
  right: 16px;
}
[dir=rtl] .nut-popover .nut-popover-content-bottom .nut-popover-arrow-bottom,
.nut-rtl .nut-popover .nut-popover-content-bottom .nut-popover-arrow-bottom {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
[dir=rtl] .nut-popover .nut-popover-content-bottom-right,
.nut-rtl .nut-popover .nut-popover-content-bottom-right {
  right: auto;
  left: 0;
}
[dir=rtl] .nut-popover .nut-popover-content-bottom-right .nut-popover-arrow-bottom-right,
.nut-rtl .nut-popover .nut-popover-content-bottom-right .nut-popover-arrow-bottom-right {
  right: auto;
  left: 16px;
}
[dir=rtl] .nut-popover .nut-popover-content-bottom-left,
.nut-rtl .nut-popover .nut-popover-content-bottom-left {
  left: auto;
  right: 0;
}
[dir=rtl] .nut-popover .nut-popover-content-bottom-left .nut-popover-arrow-bottom-left,
.nut-rtl .nut-popover .nut-popover-content-bottom-left .nut-popover-arrow-bottom-left {
  left: auto;
  right: 16px;
}

.nut-popover-enter-from,
.nut-popover-leave-active {
  transform: scale(0.8);
  opacity: 0;
}

.nut-popover-enter-active {
  transition-timing-function: ease-out;
}

.nut-popover-leave-active {
  transition-timing-function: ease-in;
}

.nut-popover-content-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 999;
}

[dir=rtl] .nut-popover-content-bg,
.nut-rtl .nut-popover-content-bg {
  left: auto;
  right: 0;
}

.nut-popover-wrapper {
  display: inline-block;
}

.nut-popover-content-copy {
  position: absolute;
  top: -99999px;
}