/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
.nut-quickenter {
  width: 100%;
  max-height: var(--nutui-quickenter-max-height, 256px);
  background: var(--nutui-quickenter-bg-color, #f5f5f5);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: var(--nutui-quickenter-box-shadow, 0px 8px 16px rgba(141, 153, 167, 0.2), 0px -0.5px 0px rgba(0, 0, 0, 0.05) inset);
}
.nut-quickenter-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 16px 0;
  box-sizing: border-box;
}
.nut-quickenter-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  color: var(--nutui-quickenter-title-color, var(--nutui-color-title));
  font-size: var(--nutui-quickenter-title-font-size, var(--nutui-font-text));
}
.nut-quickenter-close-btn {
  color: var(--nutui-quickenter-close-icon-color, #808080);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nut-quickenter-close-btn svg,
.nut-quickenter-close-btn .nut-icon {
  width: var(--nutui-quickenter-close-icon-size, 12px);
  height: var(--nutui-quickenter-close-icon-size, 12px);
}
.nut-quickenter-content {
  flex: 1;
  padding: 10px 28px;
  overflow-y: hidden;
  box-sizing: border-box;
}
.nut-quickenter-content-scrollable {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nut-quickenter-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
.nut-quickenter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  padding: 0 0 12px 0;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: calc((100% - 224px) / 3);
}
.nut-quickenter-item:nth-child(4n) {
  margin-right: 0;
}
.nut-quickenter-item-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nutui-quickenter-item-icon-bg-color, #ffffff);
  color: var(--nutui-quickenter-item-icon-color, var(--nutui-color-title));
  margin-bottom: 8px;
  flex-shrink: 0;
}
.nut-quickenter-item-icon svg,
.nut-quickenter-item-icon .nut-icon {
  width: 22px;
  height: 22px;
}
.nut-quickenter-item-title {
  font-size: var(--nutui-quickenter-item-title-font-size, var(--nutui-font-text-small));
  color: var(--nutui-quickenter-item-title-color, var(--nutui-color-title));
  text-align: center;
  line-height: 1.4;
  white-space: normal;
  word-wrap: break-word;
  width: 72px;
  margin-left: -8px;
  margin-right: -8px;
}