.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
/*提示框*/
#tip-panel-wrap {
  position: fixed;
  top: 200px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  z-index: 999;
  font-size: 16px;
}
#tip-panel-wrap .tip-panel-item {
  margin-bottom: 5px;
  background: #fff;
  color: #282828;
  padding: 15px 60px;
  border: 1px #ccc solid;
  border-radius: 5px;
  box-shadow: 0 0 5px #ccc;
}
#tip-panel-wrap .tip-panel-item.info {
  background-color: #fec04e;
  color: #fff;
}
#tip-panel-wrap .tip-panel-item.success {
  background-color: #46b0f3;
  color: #fff;
}
#tip-panel-wrap .tip-panel-item.warning {
  background-color: #ff6666;
  color: #fff;
}
#tip-panel-wrap p {
  height: 30px;
  line-height: 30px;
}
#tip-panel-toast {
  position: fixed;
  z-index: 9999999999;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 40px;
  text-align: center;
  color: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px 0 rgba(0, 10, 30, 0.2);
}
#tip-panel-toast.uploading {
  background-color: #566173;
  opacity: 0.9;
}
#tip-panel-toast.uploadSuccess {
  background-color: #47bea6;
  opacity: 0.9;
  font-weight: bold;
}
#tip-panel-toast.uploadFail {
  background-color: #f7705e;
  font-weight: bold;
  opacity: 0.9;
}
.icon-check:before {
  content: "\e909";
  font-size: 15px;
  padding-right: 10px;
}
.icon-cross:before {
  content: "\e939";
  font-size: 15px;
  padding-right: 10px;
}
.icon-loading {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  top: -3px;
  animation: animation_rotate 2s infinite linear;
  background: url("https://cdn.lofty.com/image/fs/servicetool/2025429/6/original_bcf4521cf40a464f.png") center / 100% auto no-repeat;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.load-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
}
.load {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.load .load-icon {
  position: absolute;
  top: 14px;
  left: 44px;
  width: 32px;
  height: 32px;
  animation: loadRotate 1.5s infinite forwards;
}
.load .load-icon .dot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
}
.load .load-icon .dot:nth-child(1) {
  transform: translate(-50%, -50%) rotate(30deg);
}
.load .load-icon .dot:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.load .load-icon .dot:nth-child(3) {
  transform: translate(-50%, -50%) rotate(150deg);
}
.load .load-icon .dot:before,
.load .load-icon .dot:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.load p {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
.load-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  opacity: 0;
  z-index: 3000;
}
@keyframes loadRotate {
  100% {
    transform: rotate(360deg);
  }
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
/*表单验证提示*/
.error {
  position: absolute;
  z-index: 2;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  padding: 15px 10px;
  background-color: white;
  font-size: 14px;
  color: #282828;
  box-shadow: 0 1px 2px #ccc;
  min-width: 180px;
}
.error-left span:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 7px solid #ececec;
}
.error-right span:before {
  content: "";
  position: absolute;
  top: -7px;
  right: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 7px solid #ececec;
}
.error.error-left:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}
.error.error-right:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}
.error:before {
  content: "!";
  display: inline-block;
  background-color: #faa832;
  font-size: 16px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: white;
  border-radius: 2px;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 5px;
  vertical-align: middle;
}
.error span {
  display: inline-block;
  vertical-align: top;
  line-height: 18px;
}

.chime-primary-color[data-v-439cddfe] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-439cddfe]:hover {
  text-decoration: underline;
}
.com-popover-container[data-v-439cddfe] {
  display: inline-block;
  position: fixed;
  box-sizing: border-box;
  z-index: 2100;
  top: var(--top);
  left: var(--left);
  opacity: var(--opacity);
  transition: opacity var(--duration);
}
.com-popover-container[data-v-439cddfe]::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + var(--interval));
  height: calc(100% + var(--interval));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chime-primary-color[data-v-4ec52f40] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-4ec52f40]:hover {
  text-decoration: underline;
}
.com-icon-cell-wrapper[data-v-4ec52f40] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--borderRadius);
  cursor: pointer;
  box-sizing: border-box;
}
.com-icon-cell-wrapper i[data-v-4ec52f40] {
  color: var(--color);
  font-size: var(--fontSize);
}
.com-icon-cell-wrapper.interval + .interval[data-v-4ec52f40] {
  margin-left: var(--interval);
}
.com-icon-cell-wrapper.disabled[data-v-4ec52f40] {
  cursor: not-allowed;
  opacity: 0.4;
}
.com-icon-cell-wrapper.common[data-v-4ec52f40] {
  width: 26px;
  height: 26px;
}
.com-icon-cell-wrapper.tiny[data-v-4ec52f40] {
  width: 20px;
  height: 20px;
}
.com-icon-cell-wrapper.small[data-v-4ec52f40] {
  width: 24px;
  height: 24px;
}
.com-icon-cell-wrapper.big[data-v-4ec52f40] {
  width: 36px;
  height: 36px;
}
.com-icon-cell-wrapper.giant[data-v-4ec52f40] {
  width: 40px;
  height: 40px;
}
.com-icon-cell-wrapper.has-border[data-v-4ec52f40] {
  border: 1px solid #e1e2e6;
  background-color: #ffffff;
}
.com-icon-cell-wrapper:not(.disabled).has-border[data-v-4ec52f40]:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 10, 30, 0.1);
}
.com-icon-cell-wrapper:not(.disabled).has-border[data-v-4ec52f40]:active {
  background-color: #ebecf1;
}
.com-icon-cell-wrapper:not(.disabled).has-border.border-theme.primary[data-v-4ec52f40]:hover,
.com-icon-cell-wrapper:not(.disabled).has-border.border-theme.primary.is-active[data-v-4ec52f40] {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.1);
}
.com-icon-cell-wrapper:not(.disabled).has-border.border-theme.primary:hover i[data-v-4ec52f40],
.com-icon-cell-wrapper:not(.disabled).has-border.border-theme.primary.is-active i[data-v-4ec52f40] {
  color: var(--primary-color);
}
.com-icon-cell-wrapper:not(.disabled).has-border.border-theme.primary[data-v-4ec52f40]:active {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).primary[data-v-4ec52f40]:hover,
.com-icon-cell-wrapper:not(.disabled):not(.has-border).primary.is-active[data-v-4ec52f40] {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).primary:hover i[data-v-4ec52f40],
.com-icon-cell-wrapper:not(.disabled):not(.has-border).primary.is-active i[data-v-4ec52f40] {
  color: var(--primary-color);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).primary[data-v-4ec52f40]:active {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).warn[data-v-4ec52f40]:hover,
.com-icon-cell-wrapper:not(.disabled):not(.has-border).warn.is-active[data-v-4ec52f40] {
  background-color: rgba(240, 69, 76, 0.1);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).warn:hover i[data-v-4ec52f40],
.com-icon-cell-wrapper:not(.disabled):not(.has-border).warn.is-active i[data-v-4ec52f40] {
  color: #f0454c;
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).warn[data-v-4ec52f40]:active {
  background-color: rgba(240, 69, 76, 0.2);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).green[data-v-4ec52f40]:hover,
.com-icon-cell-wrapper:not(.disabled):not(.has-border).green.is-active[data-v-4ec52f40] {
  background-color: rgba(32, 196, 114, 0.1);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).green:hover i[data-v-4ec52f40],
.com-icon-cell-wrapper:not(.disabled):not(.has-border).green.is-active i[data-v-4ec52f40] {
  color: #20c472;
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).green[data-v-4ec52f40]:active {
  background-color: rgba(32, 196, 114, 0.2);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).yellow[data-v-4ec52f40]:hover,
.com-icon-cell-wrapper:not(.disabled):not(.has-border).yellow.is-active[data-v-4ec52f40] {
  background-color: rgba(255, 166, 0, 0.1);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).yellow:hover i[data-v-4ec52f40],
.com-icon-cell-wrapper:not(.disabled):not(.has-border).yellow.is-active i[data-v-4ec52f40] {
  color: #ffa600;
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).yellow[data-v-4ec52f40]:active {
  background-color: rgba(255, 166, 0, 0.2);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).blue[data-v-4ec52f40]:hover,
.com-icon-cell-wrapper:not(.disabled):not(.has-border).blue.is-active[data-v-4ec52f40] {
  background-color: rgba(59, 92, 222, 0.1);
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).blue:hover i[data-v-4ec52f40],
.com-icon-cell-wrapper:not(.disabled):not(.has-border).blue.is-active i[data-v-4ec52f40] {
  color: #3b5cde;
}
.com-icon-cell-wrapper:not(.disabled):not(.has-border).blue[data-v-4ec52f40]:active {
  background-color: rgba(59, 92, 222, 0.2);
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.show {
  visibility: visible !important;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.common-record {
  display: flex;
  padding: 0 10px;
  height: 40px;
  align-items: center;
  box-sizing: border-box;
  background-color: #FFFFFF;
  margin-top: 8px;
  width: 100%;
}
.common-record.has-border {
  border: solid 1px #ebecf1;
  border-radius: 4px;
}
.common-record audio {
  display: none;
}
.common-record .audio-time {
  color: #A0A3AF;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  flex-shrink: 0;
  display: inline-block;
  margin-left: 10px;
}
.common-record .play-download {
  margin-left: 10px;
  flex-shrink: 0;
}
.common-record .volume-controller-icon {
  margin-left: 10px;
  flex-shrink: 0;
}
.common-record .play-control {
  flex: 1;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
.common-record .play-bar {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: rgba(32, 36, 55, 0.05);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  box-sizing: border-box;
}
.common-record .loaded-bar {
  max-width: 100%;
  background-color: #cfcfcf;
  height: 4px;
  width: 0;
  border-radius: 5px;
}
.common-record .runed-bar {
  max-width: 100%;
  background-color: var(--primary-color);
  height: 4px;
  min-width: var(--playBarWidth);
  border-radius: 4px;
}
.common-record .played-flag {
  width: 24px;
  height: 24px;
  position: absolute;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 2;
  border-radius: 100%;
  background-color: rgba(32, 36, 55, 0.05);
  transform: translate(-50%, -50%);
  top: 50%;
  left: var(--playBarLeft);
}
.common-record .played-flag::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
}
.common-record .played-flag:hover,
.common-record .played-flag.active {
  background-color: rgba(var(--primary-color-rgb), 0.05);
}
.common-record .played-flag:hover::before,
.common-record .played-flag.active::before {
  background-color: var(--primary-color);
}
.common-record .stop {
  pointer-events: none;
}
.common-record .record-text {
  text-align: center;
  line-height: 100%;
  color: #787878;
  font-size: 14px;
}
.common-record .record-loading {
  width: 16px;
  height: 16px;
  margin-left: 12px;
  position: relative;
}
.common-record .record-loading span {
  position: absolute;
  padding: 2px;
  border-radius: 50%;
  background: #828285;
  margin-right: 10px;
  animation: load 1.2s ease infinite;
  -webkit-animation: load 1.2s ease infinite;
}
.common-record .record-loading span:nth-child(1) {
  transform: translate(6px, 0px);
  -webkit-animation-delay: 0.2s;
}
.common-record .record-loading span:nth-child(2) {
  transform: translate(12px, 3px);
  -webkit-animation-delay: 0.4s;
}
.common-record .record-loading span:nth-child(3) {
  transform: translate(12px, 9px);
  -webkit-animation-delay: 0.6s;
}
.common-record .record-loading span:nth-child(4) {
  transform: translate(6px, 12px);
  -webkit-animation-delay: 0.8s;
}
.common-record .record-loading span:nth-child(5) {
  transform: translate(0px, 9px);
  -webkit-animation-delay: 1s;
}
.common-record .record-loading span:nth-child(6) {
  transform: translate(0px, 3px);
  -webkit-animation-delay: 1.2s;
}
.common-record .play-switch {
  margin-right: 10px;
  flex-shrink: 0;
}
.common-record .vol-control {
  height: 100%;
  position: relative;
  width: 25px;
  margin-bottom: 2px;
}
.volume-record-controller-dropdown .volume-controller-wrapper {
  width: 40px;
  height: 130px;
  background-color: #FFFFFF;
  position: relative;
  box-sizing: border-box;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.volume-record-controller-dropdown .volume-controller-wrapper .volume-bar {
  width: 4px;
  height: 100%;
  background-color: rgba(32, 36, 55, 0.05);
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}
.volume-record-controller-dropdown .volume-controller-wrapper .volume-bar .volume-size {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 4px;
  height: var(--volumeHeight);
  background-color: var(--primary-color);
  cursor: pointer;
}
.volume-record-controller-dropdown .volume-controller-wrapper .volume-bar .volume-controller {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--primary-color);
  cursor: pointer;
  position: absolute;
  left: -4px;
  bottom: var(--volumeBottom);
  z-index: 2;
}

.chime-primary-color[data-v-35ff466f] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-35ff466f]:hover {
  text-decoration: underline;
}
.com-dropdown-menu[data-v-35ff466f] {
  max-width: 300px;
  padding: 6px 0;
}

.chime-primary-color[data-v-538464c6] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-538464c6]:hover {
  text-decoration: underline;
}
.com-dropdown-item[data-v-538464c6] {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #515666;
  padding: 0 20px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.com-dropdown-item[data-v-538464c6]:hover {
  background-color: #f6f7fb;
}

.chime-primary-color[data-v-0dc134f0] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-0dc134f0]:hover {
  text-decoration: underline;
}
._tab-pane[data-v-0dc134f0] {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
._tab-pane .label[data-v-0dc134f0] {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #515666;
  font-family: "SF UI Text";
}
._tab-pane.active .label[data-v-0dc134f0] {
  color: var(--primary-color);
}
._tab-pane.is-disabled .label[data-v-0dc134f0] {
  cursor: not-allowed;
  opacity: 0.4;
}
._tab-pane[data-v-0dc134f0]::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 50%;
  bottom: 0;
  background: var(--primary-color);
  transition: all 0.3s;
}
._tab-pane[data-v-0dc134f0]:not(.is-disabled):hover {
  color: var(--primary-color);
}
._tab-pane[data-v-0dc134f0]:not(.is-disabled):hover::after,
._tab-pane:not(.is-disabled).active[data-v-0dc134f0]::after {
  left: 0;
  width: 100%;
}

.chime-primary-color[data-v-5b4948b7] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-5b4948b7]:hover {
  text-decoration: underline;
}
.__tabs[data-v-5b4948b7] {
  display: flex;
  align-items: stretch;
}
.__tabs[data-v-5b4948b7] ._tab-pane + ._tab-pane {
  margin-left: 30px;
}

:root {
    /* // 蓝色默认主题色 */
    --primary-color: #3B5CDE;
    --primary-color-1: #29409B;
    --primary-color-2: #2F4AB2;
    --primary-color-3: #3553C8;
    --primary-color-4: var(--primary-color);
    --primary-color-5: #4F6CE1;
    --primary-color-6: #768DE8;
    --primary-color-7: #9DADEE;
    --primary-color-8: #C4CEF5;
    --primary-color-9: #D8DEF8;
    --primary-color-10: #EBEFFC;

    /* 主题色的rgb表示 */
    --primary-color-rgb: 59, 92, 222;
    --primary-color-1-rgb: 41, 64, 155;
    --primary-color-2-rgb: 47, 74, 178;
    --primary-color-3-rgb: 53, 83, 200;
    --primary-color-4-rgb: var(--primary-color-rgb);
    --primary-color-5-rgb: 79, 108, 225;
    --primary-color-6-rgb: 118, 141, 232;
    --primary-color-7-rgb: 157, 173, 238;
    --primary-color-8-rgb: 196, 206, 245;
    --primary-color-9-rgb: 216, 222, 248;
    --primary-color-10-rgb: 235, 239, 252;

    --error-color-rgb: 240, 69, 76;

    --border-color: #ebecf1;
    --label-color: #202437;
    --border-radius-base: 4px;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.mr-20 {
  margin-right: 20px;
}
.ml-20 {
  margin-left: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mr-10 {
  margin-right: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.align-right {
  text-align: right;
}
.mr-7 {
  margin-right: 7px;
}
.chime-link {
  border: var(--primary-color);
}
.opacity-disabled {
  opacity: 0.4;
}
.chime-card {
  border-radius: var(--border-radius-base);
  border: 1px solid var(--border-color);
}
.xss-hightlight {
  color: var(--primary-color) !important;
  display: inline !important;
}
.dropdown-label-wrap {
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  box-sizing: border-box;
}
.dropdown-label-wrap.small {
  height: 30px;
  line-height: 30px;
}
.dropdown-label-wrap.large {
  height: 36px;
  line-height: 36px;
}
.com-focus {
  border-color: var(--primary-color) !important;
}
.com-empty-text {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #797e8b;
  font-size: 14px;
}
.chime-delete-icon {
  color: #797e8b;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  width: 26px;
  height: 26px;
  display: inline-block;
  line-height: 26px;
  text-align: center;
}
.chime-delete-icon.disable,
.chime-delete-icon.disabled {
  cursor: not-allowed !important;
  color: #a0a3af !important;
}
.chime-delete-icon:not(.disabled):hover {
  background: rgba(240, 69, 76, 0.1);
  color: #f0454c;
}
.chime-primary-icon {
  color: #797e8b;
  font-size: 16px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}
.chime-primary-icon:not(.disabled) {
  cursor: pointer;
}
.chime-primary-icon.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.chime-primary-icon.need-events {
  pointer-events: initial !important;
}
.chime-primary-icon:not(.disabled):hover {
  display: inline-block;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  border-radius: 4px;
}
/*
<button class="disabled" class="chime-btn default">
    <span class="icon2017 icon-add_bold"></span>
</button>
*/
.chime-btn {
  --pure-blue: var(--primary-color);
  --pure-white: #ffffff;
  --warning-red: #f0454c;
  --warning-red-rgb: 240, 69, 76;
  min-width: 100px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
  vertical-align: middle;
  transition: background-color 0.2s;
  background-color: #fff;
  font-weight: normal;
  border: none;
}
.chime-btn.border {
  background: #ffffff;
  border: 1px solid #e1e2e6;
}
.chime-btn.border:hover {
  box-shadow: 0px 1px 3px rgba(0, 10, 30, 0.1);
}
.chime-btn.border:active {
  background: #ebecf1;
}
.chime-btn .icon2017 {
  margin-right: 5px;
  vertical-align: middle;
}
.chime-btn:focus {
  outline: none;
}
.chime-btn[disabled],
.chime-btn.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.chime-btn.default {
  border: 1px solid #e1e2e6;
}
.chime-btn.default:hover,
.chime-btn.default:active {
  background-color: #fcfcfc;
}
.chime-btn.default.chime-btn--is-plain {
  border: solid 2px #fff;
  color: #fff;
  font-weight: 600;
  background: #515666;
}
.chime-btn.default.chime-btn--is-plain:hover {
  background-color: #626775;
}
.chime-btn.default.chime-btn--is-plain:active {
  background-color: #858994;
}
.chime-btn.lighten {
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.chime-btn.lighten:hover {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.chime-btn.lighten:active {
  background-color: rgba(var(--primary-color-rgb), 0.3);
}
.chime-btn.lighten[disabled],
.chime-btn.lighten.disabled {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: rgba(var(--primary-color-rgb), 0.4);
  cursor: not-allowed;
}
.chime-btn.lighten.warning {
  color: var(--warning-red);
  background-color: rgba(var(--warning-red-rgb), 0.1);
}
.chime-btn.lighten.warning:hover {
  background-color: rgba(var(--warning-red-rgb), 0.2);
}
.chime-btn.lighten.warning:active {
  background-color: rgba(var(--warning-red-rgb), 0.3);
}
.chime-btn.lighten.warning[disabled],
.chime-btn.lighten.warning.disabled {
  color: rgba(var(--warning-red-rgb), 0.4);
  background-color: rgba(var(--warning-red-rgb), 0.1);
}
.chime-btn.lighten.white {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.chime-btn.lighten.white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.chime-btn.lighten.white:active {
  background-color: rgba(255, 255, 255, 0.3);
}
.chime-btn.lighten.white[disabled],
.chime-btn.lighten.white.disabled {
  color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.1);
}
.chime-btn.primary {
  color: #fff;
  background-color: var(--primary-color);
}
.chime-btn.primary:not(.disabled):not([disabled]):hover {
  background-color: var(--primary-color-5);
}
.chime-btn.primary:not(.disabled):not([disabled]):active {
  background-color: var(--primary-color-3);
}
.chime-btn.primary.chime-btn--is-plain {
  border: solid 2px var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  background-color: rgba(36, 146, 252, 0.1);
}
.chime-btn.primary.chime-btn--is-plain:hover {
  background-color: #e9f4fe;
}
.chime-btn.primary.chime-btn--is-plain:active {
  background-color: #bddefe;
}
.chime-btn.warning {
  color: #fff;
  background-color: var(--warning-red);
}
.chime-btn.warning:hover {
  background-color: #f1575e;
}
.chime-btn.warning:active {
  background-color: #d73d44;
}
.chime-btn.warning.chime-btn--is-plain {
  border: solid 2px var(--warning-red);
  color: var(--warning-red);
  font-weight: 600;
  background-color: rgba(240, 69, 76, 0.1);
}
.chime-btn.warning.chime-btn--is-plain:hover {
  background-color: #fdeced;
  border-width: 1;
}
.chime-btn.warning.chime-btn--is-plain:active {
  background-color: #fac7c9;
}
.chime-btn.alert-btn {
  color: #fff;
  background-color: #ffa600;
}
.chime-btn.alert-btn:not(.disabled):not([disabled]):hover {
  background-color: #ffaf19;
}
.chime-btn.alert-btn:not(.disabled):not([disabled]):active {
  background-color: #e69500;
}
.chime-btn.ghost-btn {
  border: 1px dashed var(--primary-color);
  color: var(--primary-color);
  background-color: #fff;
}
.chime-btn.ghost-btn.lighten {
  background: rgba(var(--primary-color-rgb), 0.05);
}
.chime-btn.ghost-btn:not(.disabled):not([disabled]):hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.chime-btn.ghost-btn:not(.disabled):not([disabled]):active {
  background-color: rgba(var(--primary-color-rgb), 0.3);
}
.chime-btn.ghost-blue {
  border: solid 2px var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}
.chime-btn.ghost-blue:not(.disabled):hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.chime-btn.ghost-blue:not(.disabled):active {
  background-color: rgba(var(--primary-color-rgb), 0.3);
}
.chime-btn.ghost-blue.thin {
  border-width: 1px;
  font-weight: normal;
}
.chime-btn.ghost-red {
  border: solid 2px var(--warning-red);
  color: var(--warning-red);
  font-weight: 600;
}
.chime-btn.ghost-red:hover {
  background-color: #fdeced;
}
.chime-btn.ghost-red:active {
  background-color: #fac7c9;
}
.chime-btn.ghost-white {
  border: solid 2px #fff;
  color: #fff;
  background: #515666;
}
.chime-btn.ghost-white:hover {
  background-color: #626775;
}
.chime-btn.ghost-white:active {
  background-color: #858994;
}
.chime-btn.ghost-transparent {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}
.chime-btn.ghost-transparent:not(.disabled):not([disabled]):hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.chime-btn.ghost-transparent:not(.disabled):not([disabled]):active {
  background-color: rgba(var(--primary-color-rgb), 0.3);
}
.chime-btn.ghost-white-transparent {
  border: solid 2px #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0);
}
.chime-btn.ghost-white-transparent:hover {
  background: rgba(255, 255, 255, 0.1);
}
.chime-btn.ghost-white-transparent:active {
  background: rgba(255, 255, 255, 0.3);
}
.chime-btn.ghost-white-transparent.disabled {
  background: rgba(255, 255, 255, 0);
  opacity: 0.4;
}
.chime-btn.thin {
  border-width: 1px;
  font-weight: normal;
}
.chime-btn.dashed {
  border-style: dashed;
}
.chime-btn.solid {
  border-style: solid;
}
.chime-btn.invisible {
  color: #797e8b;
  border: none;
  outline: none;
  background-color: transparent;
}
.chime-btn.invisible:hover {
  background-color: rgba(198, 200, 209, 0.1);
}
.chime-btn.invisible:active {
  background-color: rgba(198, 200, 209, 0.3);
}
.chime-btn.invisible-primary {
  color: #797e8b;
  border: none;
  outline: none;
  background-color: transparent;
}
.chime-btn.invisible-primary:hover {
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.chime-btn.invisible-primary:active {
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.chime-btn.small {
  height: 36px;
}
.chime-btn.mini {
  padding: 0 15px;
  height: 30px;
  min-width: 60px;
}
.chime-btn.extra-mini {
  padding: 0 10px;
  font-size: 12px;
  height: 24px;
  min-width: 40px;
}
.chime-btn.chime-btn--is-round {
  border-radius: 20px;
}
.chime-btn.round {
  border-radius: 20px;
}
.chime-btn.medium {
  height: 40px;
  line-height: 40px;
}
.chime-btn.gray {
  background: #f6f7fb;
  color: #a0a3af;
}
.chime-btn.gray:hover {
  background-color: #ebecf1;
}
.chime-btn.gray:active {
  background-color: #e1e2e6;
}
.chime-btn.gray.disabled {
  background: #f6f7fb;
  cursor: not-allowed;
}
.white-btn {
  height: 36px;
  line-height: 36px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: solid 1px #e1e2e6;
  text-align: center;
  font-size: 14px;
  color: #515666;
  cursor: pointer;
  padding: 0 20px;
  box-sizing: border-box;
}
.white-btn:not(.disabled):not([disabled]):hover {
  box-shadow: 0 1px 3px 0 rgba(0, 10, 30, 0.1);
}
.white-btn:not(.disabled):not([disabled]):active {
  background-color: #ebecf1;
}
.white-btn:not(.disabled):not([disabled]).chime-btn--disabled {
  cursor: not-allowed;
  color: #c6c8d1;
}
.white-btn .icon2017 {
  margin-right: 10px;
}
.white-btn.right .icon2017 {
  margin-left: 20px;
}
.white-btn.left .icon2017 {
  margin-right: 10px;
}
.white-btn[disabled],
.white-btn.disabled {
  cursor: not-allowed;
  color: #c6c8d1;
}
.white-btn:focus {
  outline: inherit;
}
/*
    <input class="chime-input full-width large" type="text" value="This is a demo">
*/
.chime-input {
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  background-color: #fff;
  color: #202437;
  box-sizing: border-box;
  border: solid 1px #c6c8d1;
  font-size: 14px;
  outline: none;
  width: 200px;
}
.chime-input.full-width {
  width: 100%;
}
.chime-input:hover {
  border-color: #a0a3af;
}
.chime-input:focus {
  border-color: var(--primary-color);
}
.chime-input.middle {
  height: 32px;
}
.chime-input.small {
  height: 24px;
}
.chime-input.flat {
  box-shadow: none;
}
.chime-input.warn {
  border-color: #f0454c;
  color: #f0454c;
}
.chime-input[disabled],
.chime-input.disabled {
  border-color: #e1e2e6;
  background-color: #f6f7fb;
  color: #a0a3af;
  cursor: not-allowed;
}
.chime-input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #c6c8d1;
}
.chime-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #c6c8d1;
}
.chime-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c6c8d1;
}
.chime-input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #c6c8d1;
}
/*
    <div class="chime-icon-input">
        <span class="icon2017 icon-search_01"></span>
        <input class="chime-input full-width" type="text" placeholder="Filter by Address">
    </div>
*/
.chime-icon-input {
  position: relative;
}
.chime-icon-input .icon2017 {
  position: absolute;
  font-size: 14px;
  color: #c6c8d1;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.chime-icon-input .icon2017:before {
  display: block;
}
.chime-icon-input .chime-input {
  padding-left: 30px;
}
.chime-select-button {
  height: 30px;
  box-shadow: inset 0 2px 4px 0 rgba(0, 10, 30, 0.1);
  border-radius: 4px;
  background-color: #fff;
  color: #202437;
  box-sizing: border-box;
  border: solid 1px #c6c8d1;
  font-size: 14px;
  outline: none;
  width: 200px;
}
.chime-select-button.full-width {
  width: 100%;
}
.chime-select-button.large {
  height: 36px;
}
.chime-select-button.small {
  height: 24px;
}
.com-select {
  font-size: 14px;
}
.com-select.isInlineBlock {
  display: inline-block;
}
.com-select.middle .com-dropdown-label:not(.noborder) {
  height: 32px;
  line-height: 30px;
}
.com-select.middle30 .com-dropdown-label:not(.noborder) {
  height: 30px;
  line-height: 30px;
}
.com-select.large .com-dropdown-label:not(.noborder) {
  height: 36px;
  line-height: 34px;
}
.com-select.small .com-dropdown-label:not(.noborder) {
  height: 24px;
  line-height: 22px;
}
.com-select.open .com-dropdown-label {
  border-color: var(--primary-color);
}
.com-select.open .com-select:not(.open) .com-dropdown-label {
  border-color: #c6c8d1;
}
.com-select.disabled .com-dropdown-label:not(.noborder) {
  background-color: #f6f7fa;
  border: solid 1px #e1e2e6;
  cursor: not-allowed;
  color: #a0a3af;
}
.com-select.disabled .com-dropdown-label:not(.noborder) .com-dropdown-text-input {
  background-color: initial;
}
.com-select.disabled .com-dropdown-label:not(.noborder) .com-dropdown-text {
  color: #a0a3af;
}
.com-select .com-dropdown-placeholder {
  color: #c6c8d1;
}
.com-select .com-dropdown-label .clear-btn {
  position: absolute;
  right: 40px;
  font-size: 12px;
  color: #495060;
  cursor: pointer;
  opacity: 0;
}
.com-select .com-dropdown-label .clear-label {
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.com-select .com-dropdown-label:hover .clear-btn {
  opacity: 1;
}
.com-select .com-dropdown-label .prefix-icon-box {
  color: #c6c8d1;
  font-size: 14px;
}
.com-select .com-dropdown-label.flex-align-center {
  display: flex;
  align-items: center;
}
.com-dropdown-text-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: inherit;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  color: #202437;
  padding: 0;
}
.com-dropdown-text-input::-moz-placeholder {
  color: #c6c8d1;
}
.com-dropdown-text-input::placeholder {
  color: #c6c8d1;
}
.com-dropdown-text-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #c6c8d1;
}
.com-dropdown-text-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #c6c8d1;
}
.com-dropdown-text-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c6c8d1;
}
.com-dropdown-text-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c6c8d1;
}
.dropdown-select {
  max-height: calc(100vh - 70px);
}
.dropdown-select input::-moz-placeholder {
  color: #c6c8d1;
}
.dropdown-select input::placeholder {
  color: #c6c8d1;
}
.dropdown-select input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #c6c8d1;
}
.dropdown-select input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #c6c8d1;
}
.dropdown-select input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #c6c8d1;
}
.dropdown-select input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c6c8d1;
}
.dropdown-select.maxw300 {
  max-width: 300px;
}
.dropdown-select.width-300 {
  width: 300px;
}
.dropdown-select.multi .drag-move {
  transition: transform 0.3s;
}
.dropdown-select.multi .can-drag {
  cursor: move;
}
.dropdown-select.multi .com-select-item {
  padding: 0 15px;
}
.dropdown-select.multi .com-select-item .com-select-item-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #c6c8d1;
  margin-right: 6px;
  padding: 0;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 4px;
  background: #fafafd;
  overflow: hidden;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.dropdown-select.multi .com-select-item.active {
  color: #515666;
}
.dropdown-select.multi .com-select-item.active .com-select-item-checkbox:before {
  font-family: "chime";
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4em;
  content: "\E93C";
  position: relative;
  top: -1px;
  left: 1px;
}
.dropdown-select.multi .com-select-item.active:before {
  display: none;
}
.dropdown-select .com-select-item {
  font-size: 14px;
  position: relative;
  line-height: 2.22;
  padding: 0 37px 0 15px;
  text-align: left;
  color: #515666;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown-select .com-select-item.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.dropdown-select .com-select-item.active:before {
  font-family: "chime";
  content: "\E93D";
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.dropdown-select .com-select-item:hover {
  background: #f6f7fb;
}
.dropdown-select .com-select-item .com-select-item-text {
  vertical-align: middle;
}
.dropdown-select .com-select-item .com-select-item-desc {
  color: #a0a3af;
  font-size: 12px;
  line-height: 14px;
  padding-left: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  white-space: nowrap;
  margin-bottom: 10px;
}
.dropdown-select .com-select-item .com-select-item-desc.single {
  padding-left: 0;
}
.dropdown-select .com-select-item.active {
  color: var(--primary-color);
}
.dropdown-select.no-width .dyn-scroll-item {
  min-width: -moz-max-content;
  min-width: max-content;
}
.dropdown-select.no-width .com-select-item {
  max-width: 300px;
}
.dropdown-select .com-select-category {
  position: relative;
  line-height: 2.67;
  padding-left: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #515666;
}
.dropdown-select .com-select-category ~ .com-select-item {
  padding-left: 20px;
}
.dropdown-select .com-select-search {
  position: relative;
}
.dropdown-select .com-select-search .icon-search_01 {
  position: absolute;
  left: 15px;
  color: #c6c8d1;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
}
.dropdown-select .com-select-search .search-key {
  background-color: #fff;
  padding: 0 10px 0 40px;
  height: 36px;
  font-size: 14px;
  color: #515666;
  border: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  caret-color: var(--primary-color);
}
.dropdown-select .com-select-search .search-key.hideSearchIcon {
  padding-left: 10px;
}
.dropdown-select .com-select-list {
  max-height: 250px;
  overflow: auto;
  padding: 6px 0;
}
.dropdown-select .com-select-list .v-scroller {
  height: 100%;
  max-height: 220px;
}
.dropdown-select .com-select-list::-webkit-scrollbar {
  width: 10px;
}
.dropdown-select .com-select-list::-webkit-scrollbar-thumb {
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: rgba(32, 36, 55, 0.2);
}
.dropdown-select .com-select-list.noPaddingBottome {
  padding-bottom: 0;
}
.dropdown-select .com-select-list.noPaddingTop {
  padding-top: 0;
}
.dropdown-select .empty-data,
.dropdown-select .empty {
  height: 32px;
  text-align: center;
  line-height: 32px;
  color: #c6c8d1;
  padding: 0px 20px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 6px;
}
.dropdown-select .more {
  color: var(--primary-color);
  text-align: center;
  height: 32px;
  line-height: 32px;
  background: #fff;
  cursor: pointer;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-bottom: 6px;
}
.dropdown-select .more:hover {
  background: #f6f7fb;
}
.com-dropdownbox {
  position: relative;
}
.com-dropdownbox.disabled {
  cursor: not-allowed;
}
.com-dropdownbox .com-dropdown-body {
  height: 100%;
}
.com-dropdownbox .com-dropdown-label {
  position: relative;
  padding: 0 30px 0 10px;
  height: 100%;
  border: solid 1px #c6c8d1;
  border-radius: 4px;
  color: var(--label-color);
  text-align: left;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-dropdownbox .com-dropdown-label .com-dropdown-text {
  vertical-align: top;
  font-size: 14px;
}
.com-dropdownbox .com-dropdown-label .com-dropdown-text.empty:before {
  content: attr(placeholder);
  color: #C6C8D1;
  font-size: 14px;
}
.com-dropdownbox .com-dropdown-label .icon {
  position: absolute;
  font-size: 12px;
  top: 50%;
  transform: rotate(0deg) translateY(-50%);
}
.com-dropdownbox .com-dropdown-label .icon.right {
  right: 10px;
}
.com-dropdownbox .com-dropdown-label .icon.left {
  margin-left: 10px;
}
.com-dropdownbox .com-dropdown-label .icon.none {
  display: none;
}
.com-dropdownbox .com-dropdown-label.noborder {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.com-dropdownbox .com-dropdown-label.no-icon {
  padding-right: 10px;
}
.com-dropdownbox.open .icon.icon-sel-triangle,
.com-dropdownbox.open .icon.triangle-icon {
  transform: rotate(-180deg) translateY(50%);
}
.com-dropdownbox.open .com-dropdown-body {
  position: relative;
  z-index: 11;
}
.com-dropdownbox.open .com-dropdownbox:not(.open) .icon.icon-sel-triangle,
.com-dropdownbox.open .com-dropdownbox:not(.open) .icon.triangle-icon {
  transform: rotate(0deg) translateY(-50%);
}
.com-dropdownbox .com-dropdown-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.icon-sel-triangle:before {
  font-family: "chime";
  content: "\E90B";
  color: #a0a3af;
}
.com-dropdown[x-placement^="bottom"] {
  padding-top: 4px;
}
.com-dropdown[x-placement^="bottom"] .has-arrow {
  margin-top: 5px;
}
.com-dropdown[x-placement^="bottom"] .arrow {
  transform: rotate(-45deg);
}
.com-dropdown[x-placement^="top"] {
  padding-bottom: 4px;
}
.com-dropdown[x-placement^="top"] .has-arrow {
  margin-bottom: 5px;
}
.com-dropdown[x-placement^="top"] .arrow {
  transform: rotate(135deg);
  bottom: 4px;
}
.com-dropdown[x-placement^="left"] .has-arrow {
  margin-right: 5px;
}
.com-dropdown[x-placement^="left"] .arrow {
  transform: rotate(0deg);
}
.com-dropdown[x-placement^="right"] .has-arrow {
  margin-left: 5px;
}
.com-dropdown[x-placement^="right"] .arrow {
  transform: rotate(180deg);
}
.com-dropdown .arrow {
  width: 9px;
  height: 9px;
  position: absolute;
  border: solid 1px #dddee3;
  z-index: 2;
  background: #fff;
  border-left: none;
  border-bottom: none;
}
.com-dropdown-content {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 10, 30, 0.1);
  border: 1px solid #e1e2e6;
  position: relative;
}
.com-dropdown-content::-webkit-scrollbar {
  width: 10px;
}
.com-dropdown-content::-webkit-scrollbar-thumb {
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: rgba(32, 36, 55, 0.2);
}
.com-dropdown-content:nth-child(n) {
  z-index: 1;
}
.com-checkbox {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-checkbox .com-checkbox-checked {
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.4em;
  position: relative;
  top: -1px;
  left: -1px;
  font-family: "icon-font";
  content: "\E9F5";
}
.com-checkbox.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.com-checkbox.full-click {
  cursor: pointer;
}
.com-checkbox .cursor-pointer {
  cursor: pointer;
}
.com-checkbox.small .checkbox-label {
  font-size: 12px;
}
.com-checkbox.small .checkbox-check {
  margin-right: 5px;
}
.com-checkbox.large .checkbox-label {
  font-size: 16px;
}
.com-checkbox.flex-layout {
  display: flex;
}
.com-checkbox.flex-layout.noWrap .checkbox-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.com-checkbox.flex-layout .checkbox-check {
  flex-shrink: 0;
  position: relative;
  top: 2px;
  box-sizing: border-box;
}
.com-checkbox.flex-layout .checkbox-label {
  flex: 1;
  white-space: wrap;
  word-wrap: break-word;
  line-height: 20px;
}
.com-checkbox .checkbox-label {
  vertical-align: middle;
  font-weight: 400;
  font-size: 14px;
  color: #515666;
}
.com-checkbox .checkbox-label.auto-width {
  width: auto !important;
  cursor: default;
}
.com-checkbox .checkbox-check {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #c6c8d1;
  margin-right: 10px;
  padding: 0;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 4px;
  background: #fafafd;
  overflow: hidden;
  line-height: 1;
  text-align: left;
  flex-shrink: 0;
}
.com-checkbox .checkbox-check.checked::before {
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.4em;
  position: relative;
  top: -1px;
  left: -1px;
  font-family: "icon-font";
  content: "\E9F5";
}
.com-checkbox .checkbox-check.checked-custom::before {
  font-size: 12px;
  line-height: var(--lineHeihgt);
  position: relative;
  top: -1px;
  left: var(--left);
  font-family: "icon-font";
  content: "\E9F5";
}
.com-checkbox .checkbox-check.halfchecked::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.com-checkbox .indeterminate::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--indeterminate);
  transform: translate(-50%, -50%);
}
.com-datatable {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #e1e2e6;
  min-height: 100px;
}
.com-datatable .table-cell {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
  word-wrap: break-word;
}
.com-datatable .table-cell .cell {
  width: 100%;
  line-height: 20px;
  box-sizing: border-box;
  text-align: left;
  color: #515666;
}
.com-datatable .table-cell.table-check-cell {
  padding: 0;
  width: 56px;
  justify-content: center;
  flex-shrink: 0;
}
.com-datatable .table-cell.table-check-cell .checkbox {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border: solid 1px #c6c8d1;
  background: #fafafd;
  padding: 0;
  box-sizing: border-box;
  border-radius: 4px;
  line-height: 1;
  cursor: pointer;
}
.com-datatable .table-cell.table-check-cell .checkbox.checked:before {
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.4em;
  position: relative;
  top: -1px;
  left: -1px;
  font-family: "icon-font";
  content: "\E9F5";
}
.com-datatable .infinity-load {
  position: absolute;
  text-align: center;
  padding: 10px;
  color: #ccc;
  font-size: 16px;
  width: 100%;
  background: #fff;
  transition: all 300ms linear;
  bottom: -100px;
  z-index: 9;
}
.com-datatable .infinity-load.show {
  bottom: 0;
}
.com-datatable.h-scroll-bar .com-datatable-empty-wrap {
  height: calc(100% - (40px + 17px));
}
.com-datatable .left-cols,
.com-datatable .right-cols {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
  display: flex;
  align-items: stretch;
}
.com-datatable .right-cols {
  right: 0;
}
.com-datatable-border .com-datatable-header.is-group .table-cell,
.com-datatable-border .table-cell {
  border-right: 1px solid var(--border-color);
}
.com-datatable-border .table-cell:last-child {
  border-right: none;
}
.com-datatable-border .left-cols .table-cell:last-child {
  border-right: 1px solid var(--border-color);
}
.com-datatable-border .table-cell + .right-cols {
  border-left: 1px solid var(--border-color);
}
.com-datatable-border .table-cell:has(+ .right-cols) {
  border-right: none;
}
.com-datatable-header-wrap {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #fff;
}
.com-datatable-header-wrap .head-cell .cell {
  color: #202437;
}
.com-datatable-header-wrap .head-cell.overflow-omitted .cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-datatable-header-wrap .head-cell.overflow-omitted .cell .sort {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-datatable-header {
  flex: none;
  z-index: 1;
  box-sizing: border-box;
}
.com-datatable-header .cell {
  font-weight: 600;
  padding: 12px 20px;
}
.com-datatable-header th {
  min-height: 40px;
}
.com-datatable-header .sort-head {
  display: inline-block;
}
.com-datatable-header .sort {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-right: 20px;
  max-width: 100%;
  box-sizing: border-box;
}
.com-datatable-header .sort:before {
  content: "";
  border: 5px solid transparent;
  border-bottom: 5px solid #e1e2e6;
  position: absolute;
  right: 0;
  top: calc(50% - 13px);
}
.com-datatable-header .sort:after {
  content: "";
  border: 5px solid transparent;
  border-top: 5px solid #e1e2e6;
  position: absolute;
  right: 0;
  top: calc(50% + 3px);
}
.com-datatable-header .sort.asc:before {
  border-bottom: 5px solid #797e8b;
}
.com-datatable-header .sort.desc:after {
  border-top: 5px solid #797e8b;
}
.com-datatable-header thead {
  width: 100%;
}
.com-datatable-header.is-group {
  display: table;
}
.com-datatable-header.is-group tr {
  display: table-row;
}
.com-datatable-header.is-group .head-cell {
  display: table-cell;
}
.com-datatable-header:not(.is-group) {
  display: flex;
}
.com-datatable-header:not(.is-group) colgroup {
  display: none;
}
.com-datatable-header:not(.is-group) tr {
  width: 100%;
  display: flex;
}
.com-datatable-main {
  display: flex;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.com-datatable-main .freeze-left {
  height: 100%;
}
.com-datatable-main .table-cell {
  background-color: #fff;
}
.com-datatable-body-wrap {
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
}
.com-datatable-body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100px;
}
.com-datatable-body .cell {
  padding: 16px 20px;
}
.com-datatable-body .com-datatable-row {
  display: flex;
}
.com-datatable-body .com-datatable-row.active:not(.disabled) .table-cell {
  background: #f6f7fb;
}
.com-datatable-body .com-datatable-row.disabled .checkbox {
  opacity: 0.4;
  cursor: not-allowed;
}
.com-datatable-body .com-datatable-row.drag {
  border-top: 1px solid var(--border-color);
}
.com-datatable-body .com-datatable-sub-row {
  display: flex;
}
.com-datatable-freeze-wrap {
  position: absolute;
  left: 0;
  top: 0;
  overflow: auto;
}
.com-datatable-footer-wrap {
  position: relative;
  flex-shrink: 0;
}
.com-datatable-footer {
  width: 100%;
  flex: none;
  display: flex;
  min-height: 40px;
  z-index: 1;
  box-sizing: border-box;
  border-top: 1px solid #ebecf1;
}
.com-datatable-footer .cell {
  padding: 16px 20px;
}
.com-datatable-empty-wrap {
  position: absolute;
  top: 40px;
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.com-datatable-empty-wrap > * {
  pointer-events: initial;
}
.com-datatable-empty-wrap .empty-text {
  max-height: 100%;
  font-size: 14px;
  color: #ccc;
}
.table-sort-head-dropdown .sort-menu-wrap {
  font-size: 14px;
  padding: 8px 0;
  background-color: #fff;
  border-radius: 2px;
}
.table-sort-head-dropdown .sort-menu-item {
  position: relative;
  line-height: 40px;
  white-space: nowrap;
  padding: 0 19px 0 35px;
  color: #282828;
  font-weight: normal;
  cursor: pointer;
}
.table-sort-head-dropdown .sort-menu-item:before {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  border-bottom: 5px solid #e1e2e6;
  left: 10px;
  top: calc(50% - 13px);
}
.table-sort-head-dropdown .sort-menu-item:after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  border-top: 5px solid #e1e2e6;
  left: 10px;
  top: calc(50% + 3px);
}
.table-sort-head-dropdown .sort-menu-item:hover {
  background-color: #f6f7fb;
}
.table-sort-head-dropdown .sort-menu-item.asc:before {
  border-bottom: 5px solid #797e8b;
}
.table-sort-head-dropdown .sort-menu-item.desc:after {
  border-top: 5px solid #797e8b;
}
.no-left-freeze {
  overflow-x: auto !important;
}
.no-left-freeze .com-datatable-header-wrap {
  min-width: -moz-min-content;
  min-width: min-content;
}
.no-left-freeze .com-datatable-body-wrap {
  overflow: inherit;
  overflow-y: auto;
}
.no-left-freeze .infinity-load {
  padding: 10px;
  width: calc(100% - 20px);
  text-align: center;
  font-size: 16px;
  background: #fff;
  transition: all 300ms linear;
  z-index: 9;
  color: #ccc;
  position: static;
  bottom: 0;
}
.com-pagination {
  display: inline-flex;
  flex-wrap: nowrap;
  height: 36px;
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #e1e2e6;
  border-radius: 4px;
  color: #515666;
  background-color: #fff;
}
.com-pagination .curpage {
  color: var(--primary-color);
  font-weight: 600;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
}
.com-pagination .page-list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 4px);
  padding: 2px;
  margin: 0;
}
.com-pagination .page-list.border {
  border-left: 1px solid #ebecf1;
  border-right: 1px solid #ebecf1;
  padding: 2px 8px;
}
.com-pagination li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  padding: 0 5px;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.com-pagination li:hover {
  background-color: #f6f7fb;
  border-radius: 4px;
}
.com-pagination i {
  font-size: 12px;
}
.com-pagination .active {
  color: var(--primary-color);
  font-weight: 600;
}
.com-pagination .arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 50px;
  color: #a0a3af;
  cursor: pointer;
}
.com-pagination .arrow:hover {
  background-color: #f6f7fb;
}
.com-pagination .arrow.small {
  width: 30px;
}
.com-pagination .more-page {
  width: 20px;
  height: 100%;
}
.com-pagination .more-page .icon {
  display: none;
}
.com-pagination .more-page .com-dropdown-label {
  display: inline-flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
}
.com-pagination .more-page .com-dropdown-label:hover {
  background-color: #f6f7fb;
}
.com-pagination .operator {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 8px;
}
.com-pagination .operator .com-dropdown-label {
  border-radius: 4px;
  box-shadow: none;
  line-height: 24px;
  padding: 0 25px 0 10px;
}
.com-pagination .operator .com-dropdown-label .icon {
  right: 6px;
}
.com-pagination .line {
  width: 1px;
  height: calc(100% - 10px);
  margin: 0 8px;
  background: #ebecf1;
}
.com-pagination .per-label {
  font-size: 12px;
  color: #797e8b;
  margin-left: 5px;
}
.com-pagination .go {
  width: 36px;
  margin-right: 8px;
  padding: 0 5px;
}
.com-pagination-dropdown {
  width: 50px;
  max-height: 180px;
  overflow: auto;
  color: #515666;
  margin: 5px 0;
  -webkit-overflow-scrolling: touch;
}
.com-pagination-dropdown a {
  display: inline-block;
  width: 100%;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
.com-pagination-dropdown a:hover {
  background-color: #f6f7fb;
}
.com-popwin {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.com-popwin.drawer {
  justify-content: flex-end;
}
.com-popwin.drawer .pop-container {
  border-radius: 0;
  height: 100%;
  max-height: 100%;
  justify-content: space-between;
}
.com-popwin.drawer .pop-container .pop-body {
  flex: 1;
}
.com-popwin.pop-top {
  z-index: 9999;
}
.com-popwin.confirm-pop .pop-title {
  border-bottom: none;
  padding: 20px 40px 10px 20px;
  height: auto;
  line-height: inherit;
}
.com-popwin.confirm-pop .pop-title .icon-cancel_bold {
  top: 16px;
  font-size: 16px;
  line-height: 16px;
}
.com-popwin.no-title .pop-title {
  height: 30px;
  box-sizing: border-box;
}
.com-popwin.no-title .pop-title .icon-cancel_bold {
  top: 15px;
}
.com-popwin.hide-mask-cls {
  left: unset;
}
.com-popwin .pop-container {
  position: relative;
  max-height: calc(100% - 60px);
  border-radius: 4px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 4px 10px 0 rgba(0, 10, 30, 0.1);
}
.com-popwin .pop-container.disabled:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: transparent;
}
.com-popwin .pop-container.enableDeaultStyle .pop-body {
  padding: 20px 30px;
}
.com-popwin .pop-container.enableDeaultStyle .pop-footer__default {
  padding: 20px 30px;
  display: flex;
  justify-content: flex-end;
}
.com-popwin .pop-container.enableDeaultStyle .pop-footer__default > button {
  display: block;
}
.com-popwin .pop-container.enableDeaultStyle .pop-footer__default button + button {
  margin-left: 10px;
}
.com-popwin .pop-title {
  position: relative;
  font-family: "SF UI Text";
  letter-spacing: normal;
  flex-shrink: 0;
  height: 48px;
  line-height: 50px;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  padding: 0 40px 0 20px;
  color: #202437;
  font-weight: 600;
}
.com-popwin .pop-title .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.com-popwin .pop-title .icon-cancel_bold {
  top: 0;
  right: 20px;
  position: absolute;
  font-size: 16px;
  cursor: pointer;
  vertical-align: middle;
  color: #a0a3af;
}
.com-popwin .pop-title .icon-cancel_bold:hover {
  color: var(--primary-color);
}
.com-popwin .pop-title.no-border {
  border-bottom: none;
}
.com-popwin .pop-body {
  flex-shrink: 1;
  display: flex;
}
.com-popwin .pop-body.scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.com-popwin .pop-footer {
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}
.com-popwin .pop-footer .footer {
  padding: 20px 30px;
}
.com-popwin .pop-footer .footer .chime-btn + .chime-btn {
  margin-left: 10px;
}
.com-popwin .confirm {
  margin: 0 30px 20px;
  text-align: center;
  font-size: 16px;
}
.com-popwin .confirm.no-title {
  margin: 0 35px 20px 35px;
}
.com-popwin .confirm .desc {
  margin-bottom: 10px;
  color: #515666;
  line-height: 1.5;
  text-align: left;
}
.com-popwin .confirm .chime-btn {
  line-height: 40px;
}
.com-popwin .confirm .chime-btn + .chime-btn {
  margin-left: 10px;
}
.com-popwin::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}
.pop-container.fadeInOut-enter-active {
  animation: popwin-fade-in 0.3s linear;
}
.pop-container.fadeInOut-leave-active {
  animation: popwin-fade-out 0.1s linear forwards;
}
.pop-container.bottomToUp-enter-active,
.pop-container.bottomToUp-leave-active {
  transition: transform ease 0.2s;
}
.pop-container.bottomToUp-enter,
.pop-container.bottomToUp-leave-to {
  transform: translate(0, 100%);
}
.pop-container.rightToLeft-enter-active,
.pop-container.rightToLeft-leave-active {
  transition: transform ease 0.2s;
}
.pop-container.rightToLeft-enter,
.pop-container.rightToLeft-leave-to {
  transform: translate(100%, 0);
}
@keyframes popwin-fade-in {
  0% {
    transform: translate(0, -30px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes popwin-fade-out {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 0.3;
    transform: translate3d(0, 30px, 0);
  }
}
.com-query-select {
  display: inline-block;
  position: relative;
}
.com-query-select .content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 1px #c6c8d1;
  padding: 0 10px;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: text;
}
.com-query-select .content.dropdownMode {
  padding: 0;
}
.com-query-select .content.disabled {
  background-color: #f6f7fb;
  border-color: #e1e2e6;
  cursor: not-allowed;
}
.com-query-select .content.disabled .input-wrap input {
  cursor: not-allowed;
  color: #a0a3af;
}
.com-query-select .content:not(.disabled):hover {
  border-color: #a0a3af;
}
.com-query-select .content.focus {
  border-color: var(--primary-color) !important;
}
.com-query-select .content.noBorder {
  border: none;
  box-shadow: none;
}
.com-query-select .icon-search_01 {
  cursor: default;
  line-height: 1;
  margin-right: 8px;
  font-size: 14px;
  color: #c8c8c8;
}
.com-query-select .selected-list {
  width: 100%;
  height: 100%;
  line-height: 36px;
  overflow-x: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.com-query-select .selected-list .warpper {
  height: 100%;
  white-space: nowrap;
  display: flex;
}
.com-query-select .selected-list .flex-wrap {
  flex-wrap: wrap;
  white-space: normal;
}
.com-query-select .selected-list::-webkit-scrollbar {
  display: none;
}
.com-query-select .selected {
  height: 26px;
  background: var(--primary-color-10);
  font-size: 12px;
  color: var(--primary-color);
  display: inline-flex;
  vertical-align: top;
  margin-right: 4px;
  padding: 6px 8px;
  border-radius: 4px;
  align-items: center;
  box-sizing: border-box;
}
.com-query-select .selected .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 10px;
  max-width: 60px;
  color: var(--primary-color);
}
.com-query-select .selected .icon-cancel_bold {
  line-height: 1;
  font-size: 12px;
  transform: scale(0.83);
  color: rgba(var(--primary-color-rgb), 0.4);
  cursor: pointer;
}
.com-query-select .selected .icon-cancel_bold:hover {
  color: var(--primary-color);
}
.com-query-select .input-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
}
.com-query-select .input-wrap .com-dropdown-body {
  padding: 0 10px;
}
.com-query-select .input-wrap .com-dropdown-body .placeholder {
  padding: 0 10px;
}
.com-query-select .input-wrap .enter {
  width: calc(100% - 18px);
  height: unset;
  outline: none;
  border: none;
  box-shadow: none;
  padding: 0;
  font-size: 1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.com-query-select .input-wrap .enter:disabled {
  background-color: transparent;
}
.com-query-select .input-wrap .placeholder {
  position: absolute;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0;
  color: #c6c8d1;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.com-query-select .input-wrap > input::-moz-placeholder {
  color: #c6c8d1;
  font-size: 14px;
}
.com-query-select .input-wrap > input::placeholder {
  color: #c6c8d1;
  font-size: 14px;
}
.com-query-select .input-wrap .delete-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  line-height: 1;
  color: #c6c8d1;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}
.com-query-select .input-wrap .delete-btn:hover {
  color: #a0a3af;
}
.com-query-select .results {
  position: absolute;
  display: block;
  top: 100%;
  margin-top: 3px;
  margin-left: -10px;
  width: 100%;
  max-height: 180px;
  padding: 6px 0;
  border: 1px #d2d2d2 solid;
  border-radius: 3px;
  background: #fff;
  box-shadow: 2px 0 5px 0 rgba(0, 10, 30, 0.1);
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 2;
}
.com-query-select .results::-webkit-scrollbar {
  width: 10px;
}
.com-query-select .results::-webkit-scrollbar-thumb {
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: rgba(32, 36, 55, 0.2);
}
.com-query-select .results.diffLeft {
  margin-left: -34px;
}
.com-query-select .results .item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-query-select .results .result {
  padding: 0 10px;
  height: 32px;
  line-height: 32px;
  cursor: pointer;
}
.com-query-select .results .result .keyword {
  float: left;
  max-width: calc(100% - 102px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-query-select .results .result .tag {
  margin-top: 7px;
  float: right;
  padding: 0 3px;
  color: #fff;
  line-height: 16px;
  border-radius: 3px;
  background-color: #2c9af7;
}
.com-query-select .results .result:hover {
  background-color: #f6f7fb;
}
.com-query-select .results .no-result {
  padding-left: 20px;
  font-size: 12px !important;
  color: #c6c8d1 !important;
}
.com-query-select .results .loading {
  text-align: center;
  font-size: 12px !important;
  color: #c6c8d1 !important;
}
.com-tip {
  position: fixed;
  font-size: 12px;
  box-sizing: border-box;
  padding: 8px 12px;
  border-radius: 3px;
  background-color: rgba(32, 36, 55, 0.95);
  box-shadow: 0 4px 8px 0 rgba(0, 10, 30, 0.2);
  color: #c6c8d1;
  z-index: 9999;
  transition: opacity 0.15s linear;
  opacity: 0;
  word-break: break-word;
}
.com-tip.show {
  opacity: 1;
}
.com-tip:has(.com-tip-html) {
  padding: 0;
}
.com-tip.not-padding {
  padding: 0;
}
.com-tip.not-padding .com-tip-html {
  padding: 10px 20px;
  line-height: 20px;
}
.com-tip-html {
  padding: 8px 20px;
}
.com-tip-html.plain-text {
  white-space: pre-wrap;
}
.com-tip.error-tip .com-tip-html {
  padding: 0;
}
.com-tip .tip-arrow {
  position: absolute;
  display: inline-block;
  border: 5px solid;
}
.com-tip[x-placement="top-start"] .tip-arrow,
.com-tip[x-placement="bottom-start"] .tip-arrow {
  left: 20px;
}
.com-tip[x-placement="top-end"] .tip-arrow,
.com-tip[x-placement="bottom-end"] .tip-arrow {
  left: calc(100% - 20px);
}
.com-tip[x-placement="left-start"] .tip-arrow,
.com-tip[x-placement="right-start"] .tip-arrow {
  top: 20px;
}
.com-tip[x-placement="left-end"] .tip-arrow,
.com-tip[x-placement="right-end"] .tip-arrow {
  top: calc(100% - 20px);
}
.com-tip[x-placement^="top"],
.com-tip[x-placement^="bottom"] {
  margin: 8px 0;
}
.com-tip[x-placement^="left"],
.com-tip[x-placement^="right"] {
  margin: 0 8px;
}
.com-tip[x-placement^="top"] .tip-arrow {
  border-color: rgba(32, 36, 55, 0.95) transparent transparent transparent;
  border-top-color: rgba(32, 36, 55, 0.95);
  bottom: -9px;
}
.com-tip[x-placement^="left"] .tip-arrow {
  border-color: transparent transparent transparent rgba(32, 36, 55, 0.95);
  border-left-color: rgba(32, 36, 55, 0.95);
  right: -10px;
}
.com-tip[x-placement^="right"] .tip-arrow {
  border-color: transparent rgba(32, 36, 55, 0.95) transparent transparent;
  border-right-color: rgba(32, 36, 55, 0.95);
  left: -10px;
}
.com-tip[x-placement^="bottom"] .tip-arrow {
  border-color: transparent transparent rgba(32, 36, 55, 0.95) transparent;
  border-bottom-color: rgba(32, 36, 55, 0.95);
  top: -10px;
}
.com-tip.dark-mode {
  color: #202437;
  background: rgba(255, 255, 255, 0.95);
}
.com-tip.dark-mode[x-placement^="top"] .tip-arrow {
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
  border-top-color: rgba(255, 255, 255, 0.95);
  bottom: -9px;
}
.com-tip.dark-mode[x-placement^="left"] .tip-arrow {
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  border-left-color: rgba(255, 255, 255, 0.95);
  right: -10px;
}
.com-tip.dark-mode[x-placement^="right"] .tip-arrow {
  border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
  border-right-color: rgba(255, 255, 255, 0.95);
  left: -10px;
}
.com-tip.dark-mode[x-placement^="bottom"] .tip-arrow {
  border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
  border-bottom-color: rgba(255, 255, 255, 0.95);
  top: -10px;
}
.com-tip.error-tip {
  padding: 10px;
  padding-left: 33px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 4px 8px 0 rgba(0, 10, 30, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  line-height: initial;
  text-align: initial;
  font-weight: normal;
}
.com-tip.error-tip.dark-mode {
  font-size: 12px;
  background-color: rgba(32, 36, 55, 0.95);
  color: #c6c8d1;
}
.com-tip.error-tip.dark-mode::before {
  background-color: #c6c8d1;
  color: rgba(32, 36, 55, 0.95);
  border-radius: 9px;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
}
.com-tip.error-tip::before {
  content: "!";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #faa832;
  font-size: 16px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: white;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
}
.com-tip.error-tip[x-placement^="top"] .tip-arrow {
  border-color: #fff transparent transparent transparent;
  border-top-color: #fff;
}
.com-tip.error-tip[x-placement^="top"].dark-mode .tip-arrow {
  border-color: rgba(32, 36, 55, 0.95) transparent transparent transparent;
  border-top-color: rgba(32, 36, 55, 0.95);
}
.com-tip.error-tip[x-placement^="left"] .tip-arrow {
  border-color: transparent transparent transparent #fff;
  border-left-color: #fff;
}
.com-tip.error-tip[x-placement^="left"].dark-mode .tip-arrow {
  border-color: transparent transparent transparent rgba(32, 36, 55, 0.95);
  border-left-color: rgba(32, 36, 55, 0.95);
}
.com-tip.error-tip[x-placement^="right"] .tip-arrow {
  border-color: transparent #fff transparent transparent;
  border-right-color: #fff;
}
.com-tip.error-tip[x-placement^="right"].dark-mode .tip-arrow {
  border-color: transparent rgba(32, 36, 55, 0.95) transparent transparent;
  border-right-color: rgba(32, 36, 55, 0.95);
}
.com-tip.error-tip[x-placement^="bottom"] .tip-arrow {
  border-color: transparent transparent #fff transparent;
  border-bottom-color: #fff;
}
.com-tip.error-tip[x-placement^="bottom"].dark-mode .tip-arrow {
  border-color: transparent transparent rgba(32, 36, 55, 0.95) transparent;
  border-bottom-color: rgba(32, 36, 55, 0.95);
}
.com-radiobox {
  cursor: pointer;
  color: #515666;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.com-radiobox .com-radiobox-active {
  content: "";
  display: block;
  width: 8px;
  top: 3px;
  height: 8px;
  position: relative;
  background: var(--primary-color);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  left: 3px;
}
.com-radiobox.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.com-radiobox.large .radio-label {
  font-size: 16px;
}
.com-radiobox.small .radio-label {
  font-size: 12px;
  margin-left: 5px;
}
.com-radiobox .radio-input {
  display: block;
  width: 16px;
  height: 16px;
  border: solid 1px #c6c8d1;
  padding: 0;
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 1;
  background-color: #fafafd;
  flex-shrink: 0;
}
.com-radiobox .radio-input.checked:before,
.com-radiobox .radio-input[checked]:before {
  content: "";
  display: block;
  width: 8px;
  top: 3px;
  height: 8px;
  position: relative;
  background: var(--primary-color);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  left: 3px;
}
.com-radiobox .radio-label {
  font-weight: 400;
  margin-left: 10px;
  font-size: 14px;
  color: #515666;
  line-height: 20px;
}
.com-radiobox .radio-label.single-line-omitted {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-keyword {
  display: flex;
  position: relative;
}
.com-keyword .tag-list {
  display: inline-block;
  max-width: calc(100% - 80px);
  overflow-x: scroll;
  vertical-align: top;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.com-keyword .tag-list::-webkit-scrollbar {
  display: none;
}
.com-keyword .tag-list .warpper {
  height: 100%;
  white-space: nowrap;
}
.com-keyword .tag-list .warpper .tag {
  background: var(--primary-color-10);
  border: solid 1px var(--primary-color-9);
  font-size: 12px;
  color: var(--primary-color);
  display: inline-block;
  padding: 2px 3px;
  border-radius: 2px;
  line-height: 12px;
  margin-right: 3px;
  margin-top: -5px;
  vertical-align: middle;
}
.com-keyword .tag-list .warpper .tag .text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 50px;
}
.com-keyword .tag-list .warpper .tag .text.showfull {
  max-width: none;
}
.com-keyword .tag-list .warpper .tag .icon-cancel {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
}
.com-keyword .tag-list .warpper .tag.invalid {
  color: red;
}
.com-keyword .input-wrap {
  flex: 1;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.com-keyword .input-wrap .enter {
  display: block;
  box-shadow: none;
}
.com-keyword .input-wrap .placeholder {
  position: absolute;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0;
  color: rgba(40, 40, 40, 0.2);
  left: 10px;
  width: 100%;
  line-height: initial;
}
.com-scroll-loader-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.com-scroll-loader-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.com-scroll-wrap {
  position: relative;
  overflow: hidden;
}
.com-scroll-loading {
  width: 12px;
  height: 12px;
  animation: loading 1.2s infinite linear;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.com-slide-top-enter-active,
.com-slide-bottom-enter-active {
  transition: all 0.3s ease;
}
.com-slide-top-leave-active,
.com-slide-bottom-leave-active {
  transition: all 0.8s ease;
}
.com-slide-top-enter,
.com-slide-top-leave-to {
  transform: translateY(-20px);
  opacity: 0;
}
.com-slide-bottom-enter,
.com-slide-bottom-leave-to {
  transform: translateY(20px);
  opacity: 0;
}
.com-date-picker {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.com-date-picker .picker-header {
  display: flex;
  flex-direction: row;
  flex: 1;
}
.com-date-picker .picker-header .picker-input {
  position: relative;
  font-size: 14px;
  width: 100%;
}
.com-date-picker .picker-header .picker-input input {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555;
  height: 30px;
  line-height: 30px;
  display: block;
  margin: 0 0 5px 0;
  padding: 0 6px 0 28px;
  width: 100%;
  box-sizing: border-box;
}
.com-date-picker .picker-header .picker-input input:active,
.com-date-picker .picker-header .picker-input input:focus {
  border: 1px solid #08c;
  border-radius: 4px;
}
.com-date-picker .picker-header .picker-input i {
  position: absolute;
  left: 8px;
  top: 7px;
}
.com-date-picker .picker-header .picker-input.range {
  padding-right: 12px;
}
.com-date-picker .picker-body {
  display: flex;
  flex-direction: row;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.com-date-picker .picker-body.has-footer {
  flex-direction: column;
}
.com-date-picker .picker-footer {
  display: flex;
  height: 40px;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;
  border-top: 1px solid #ddd;
}
.com-date-picker .picker-footer .picker-footer-btn {
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  min-width: 0;
  margin: 0;
  padding: 0 10px;
}
.com-date-picker .picker-footer .picker-footer-btn.fl {
  float: right;
}
.com-calendar-table {
  flex: 1;
  background-color: #fff;
  font-size: 14px;
  max-width: 350px;
  min-width: 220px;
}
.com-calendar-table.picker-left {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 6px;
}
.com-calendar-table.picker-right {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 6px;
}
.com-calendar-table.picker-center {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-right: 6px;
  padding-left: 6px;
}
.com-calendar-table .header-wrap {
  height: 45px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ebecf1;
}
.com-calendar-table .header-wrap .prev,
.com-calendar-table .header-wrap .next {
  margin: 0 12px;
  cursor: pointer;
  font-size: 12px;
  color: #c6c8d1;
}
.com-calendar-table .header-wrap .prev.available:not(.disabled):hover,
.com-calendar-table .header-wrap .next.available:not(.disabled):hover {
  color: var(--primary-color);
}
.com-calendar-table .header-wrap .prev.disabled,
.com-calendar-table .header-wrap .next.disabled {
  color: #e1e2e6;
  cursor: not-allowed;
}
.com-calendar-table .select-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.com-calendar-table .select-wrap .com-select {
  margin-bottom: 2px;
  flex: 1;
  height: 24px;
  line-height: 22px;
}
.com-calendar-table .select-wrap .com-select .com-dropdown-label {
  height: unset !important;
  line-height: unset !important;
}
.com-calendar-table .select-wrap .com-select .com-dropdown-label .com-dropdown-text {
  color: #202437;
}
.com-calendar-table .select-wrap .com-select + .com-select {
  margin-left: 10px;
}
.com-calendar-table table {
  margin: 4px;
  width: calc(100% - 8px);
  table-layout: fixed;
  border-collapse: collapse;
}
.com-calendar-table table tbody td {
  color: #515666;
  border-style: hidden;
}
.com-calendar-table table th,
.com-calendar-table table td {
  text-align: center;
  height: 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  min-width: 32px;
  cursor: pointer;
}
.com-calendar-table table td {
  white-space: nowrap;
  text-align: center;
}
.com-calendar-table table .prev-month,
.com-calendar-table table .next-month {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}
.com-calendar-table table .prev-month:hover,
.com-calendar-table table .next-month:hover {
  background-color: #eee;
  border-color: transparent;
}
.com-calendar-table table .available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}
.com-calendar-table table .disabled {
  color: #999;
  cursor: not-allowed;
  opacity: 0.35;
}
.com-calendar-table table .disabled:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}
.com-calendar-table table .today {
  color: var(--primary-color);
  font-weight: bold;
}
.com-calendar-table table .start-date,
.com-calendar-table table .end-date,
.com-calendar-table table .current {
  position: relative;
  background-color: var(--primary-color);
  border-color: transparent;
  color: #fff;
}
.com-calendar-table table .current {
  border-radius: 4px;
  background-color: var(--primary-color);
}
.com-calendar-table table .current:hover {
  background-color: var(--primary-color);
  border-color: transparent;
  color: #fff;
  border-radius: 4px;
}
.com-calendar-table table .in-range {
  background-color: var(--primary-color-10);
  border-color: transparent;
  color: #000;
  border-radius: 0;
}
.com-calendar-table table .in-range:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}
.com-calendar-table table .start-date {
  border-radius: 4px 0 0 4px;
}
.com-calendar-table table .start-date:hover {
  border-radius: 4px 0 0 4px;
  background-color: var(--primary-color-5);
  border-color: transparent;
  color: #fff;
}
.com-calendar-table table .start-date.end-date {
  border-radius: 4px;
}
.com-calendar-table table .end-date {
  border-radius: 0 4px 4px 0;
}
.com-calendar-table table .end-date:hover {
  border-radius: 0 4px 4px 0;
  background-color: var(--primary-color-5);
  border-color: transparent;
  color: #fff;
}
.com-calendar-table select {
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: bold;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 2px 5px;
}
.com-calendar-table select:hover {
  border: 1px #dcdcdc solid;
}
.com-calendar-table .com-calendar-select {
  min-width: 104px;
}
.com-date-picker.com-date-picker-v2 {
  width: auto;
}
.com-date-picker.com-date-picker-v2 .header-wrap {
  height: 54px;
  padding: 0 12px;
  align-items: center;
}
.com-date-picker.com-date-picker-v2 .header-wrap .select-wrap .com-select {
  height: 30px;
  line-height: 28px;
}
.com-date-picker.com-date-picker-v2 .header-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  height: 32px;
  border-top: 1px solid #EBECF1;
  border-bottom: 1px solid #EBECF1;
}
.com-date-picker.com-date-picker-v2 .header-btn .date-text {
  color: #202437;
  font-size: 14px;
  font-weight: 600;
}
.com-date-picker.com-date-picker-v2 .header-btn i {
  color: #C6C8D1;
  cursor: pointer;
}
.com-date-picker.com-date-picker-v2 .picker-footer {
  height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EBECF1;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.com-date-picker.com-date-picker-v2 .picker-footer .chime-btn {
  height: 30px;
}
.com-date-picker.com-date-picker-v2 .com-calendar-table {
  width: 280px;
}
.com-date-picker.com-date-picker-v2 .com-calendar-table table {
  width: calc(100% - 20px);
  margin: 15px 10px;
}
.com-date-picker.com-date-picker-v2 .com-calendar-table table thead {
  margin-bottom: 10px;
}
.com-date-picker.com-date-picker-v2 .com-calendar-table table th,
.com-date-picker.com-date-picker-v2 .com-calendar-table table td {
  width: 34px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
}
.com-select-datepicker.open .com-dropdown-label {
  border-color: var(--primary-color);
}
.com-select-datepicker .com-dropdown-label .com-dropdown-text {
  font-size: 14px;
  color: #C6C8D1;
}
.com-select-datepicker .com-dropdown-label .icon {
  font-size: 14px;
}
.com-select-datepicker .com-dropdown-label .icon.right {
  right: 12px;
}
.com-select-datepicker .com-dropdown-label .icon.left {
  left: 0;
}
.com-select-datepicker .com-dropdown-label .icon-calendar_02 {
  color: #a0a3af;
}
.com-select-datepicker .com-dropdown-label .icon-prefix-icon {
  left: 10px;
  font-size: 14px;
}
.com-select-datepicker .com-dropdown-label.range {
  padding-left: 30px;
}
.com-select-datepicker .com-dropdown-label.icon-right {
  padding: 0 35px 0 15px;
}
.com-select-datepicker .com-dropdown-label.icon-right .icon {
  right: 12px;
}
.com-select-datepicker .com-dropdown-label.icon-left {
  padding: 0 15px 0 35px;
}
.com-select-datepicker .com-dropdown-label.icon-left .icon {
  left: 11px;
}
.com-select-datepicker .com-dropdown-label.hasPrefixIcon {
  padding-left: 34px;
  margin-top: 1px;
}
.com-select-datepicker .com-dropdown-label input {
  border: none;
  width: 100%;
  height: 100%;
}
.com-select-datepicker .com-dropdown-label .delete-btn {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  line-height: 1;
  color: #c6c8d1;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}
.com-select-datepicker .com-dropdown-label .delete-btn:hover {
  color: #000;
}
.com-select-datepicker .com-dropdown-label:hover .delete-btn {
  display: block;
}
.com-select-datepicker .com-dropdown-label:hover .delete-btn + .icon-sel-triangle,
.com-select-datepicker .com-dropdown-label:hover .delete-btn + .icon-calendar_02 {
  display: none;
}
.com-video-pop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s linear;
}
.com-video-pop .video-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  min-width: 800px;
}
.com-video-pop .video-container .video-header {
  position: relative;
  height: 32px;
  padding: 14px 20px;
  background-color: #f5f5f5;
}
.com-video-pop .video-container .video-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #424242;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}
.com-video-pop .video-container .video-header .icon-cancel_bold {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  color: #757575;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  border-radius: 14px;
  font-size: 14px;
  font-weight: bold;
}
.com-video-pop .video-container .video-header .icon-cancel_bold:hover {
  color: #fff;
  background-color: #e53935;
}
.com-video-pop .video-container .video-body {
  background: #fff;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 0;
}
.com-progress {
  position: relative;
  line-height: 1;
}
.com-progress.is-fail .progress-bar-inner {
  background-color: #f56c6c;
}
.com-progress.is-success .progress-bar-inner {
  background-color: #2cd781;
}
.com-progress.is-fail .progress-text {
  color: #f56c6c;
}
.com-progress.is-success .progress-text {
  color: #2cd781;
}
.com-progress.progress-circle {
  display: inline-block;
}
.com-progress.progress-circle .progress-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  transform: translateY(-50%);
}
.com-progress.progress-right .progress-bar {
  padding-right: 50px;
}
.com-progress.progress-right .progress-text {
  margin-left: 10px;
}
.com-progress.progress-left .progress-text {
  margin-right: 10px;
}
.com-progress .progress-bar {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-right: -55px;
  box-sizing: border-box;
}
.com-progress .progress-bar-outer {
  height: 6px;
  border-radius: 20px;
  background-color: #ebecf1;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}
.com-progress .progress-bar-inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
  text-align: right;
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
}
.com-progress .progress-bar-inner::after {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}
.com-progress .progress-bar-innerText {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 12px;
  margin: 0 5px;
}
.com-progress .progress-text {
  font-size: 14px;
  color: #606266;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.com-progress .progress-text i {
  display: block;
}
.com-video-player .vjs-big-play-centered .vjs-big-play-button {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 10, 30, 0.1);
  background-color: #fff;
  margin: 0;
  transform: translate(-50%, -50%);
}
.com-video-player .vjs-big-play-centered .vjs-big-play-button:focus {
  outline: none;
}
.com-video-player:hover .vjs-control-bar {
  opacity: 1 !important;
  transition: none !important;
}
.com-video-player .vjs-icon-placeholder {
  color: #515666;
}
.com-video-player .video-js {
  border-radius: 4px;
}
.com-video-player .video-js .vjs-tech {
  border-radius: 4px;
}
.com-video-player .video-js .vjs-control-bar {
  background: rgba(0, 0, 0, 0.5);
}
.com-video-player .video-js .vjs-control-bar:hover {
  opacity: 1;
  transition: none;
}
.com-video-player .video-js .vjs-duration {
  display: block;
}
.com-video-player .video-js .vjs-playback-rate.vjs-button {
  width: 44px;
  margin-right: 13px;
}
.com-video-player .video-js .vjs-playback-rate.vjs-button > button {
  display: none;
}
.com-video-player .video-js .vjs-playback-rate-value {
  height: 16px !important;
  border-radius: 10px;
  border: 1px solid #fff;
  line-height: 16px;
  margin: 7px 8px;
  font-size: 12px !important;
  position: relative;
}
.com-video-player .video-js .vjs-big-play-button,
.com-video-player .video-js .video-js .vjs-big-play-button:focus {
  background-color: var(--primary-color);
  opacity: 1;
}
.com-video-player .video-js .vjs-icon-placeholder {
  color: #fff;
  opacity: 1;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu {
  background: rgba(0, 0, 0, 0.6);
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  width: 240px;
  right: -50px;
  border-radius: 4px 4px 0 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 0;
  padding-top: 0;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content .rate-title {
  height: 40px;
  text-align: left;
  line-height: 40px;
  padding-left: 15px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content::-webkit-scrollbar {
  width: 0;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content:hover::-webkit-scrollbar {
  width: 8px;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content li.vjs-menu-item {
  height: 32px;
  line-height: 32px;
  padding-left: 15px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content li.vjs-menu-item:not(.vjs-selected):hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.com-video-player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content li.vjs-menu-item.vjs-selected {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.com-video-player .vjs-poster::before {
  content: "";
  left: 0;
  top: 0;
  border-radius: 4px;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.com-video-player .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\e9ba";
  font-family: "chime";
  font-size: 16px;
  margin-left: 1px;
}
.com-video-player .video-js:not(.vjs-playing) .vjs-tech {
  background: #202437;
  opacity: 0.45;
}
.com-time-picker .com-dropdown-label {
  height: 36px;
  line-height: 36px;
  width: 120px;
}
.dropdown-time-picker {
  width: 230px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.dropdown-time-picker .tp-header {
  display: flex;
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid #ebecf1;
}
.dropdown-time-picker .tp-header .tab-item {
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  color: #797e8b;
  min-width: 60px;
  line-height: 14px;
  text-align: center;
  padding-bottom: 9px;
}
.dropdown-time-picker .tp-header .tab-item.active {
  color: var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}
.dropdown-time-picker .tp-header .tab-item + .tab-item {
  margin-left: 30px;
}
.dropdown-time-picker .tp-body {
  display: flex;
  justify-content: center;
}
.dropdown-time-picker .tp-footer {
  display: flex;
  justify-content: center;
}
.com-time-spinner {
  text-align: center;
}
.com-time-spinner i {
  color: #a0a3af;
  display: inline-block;
  transform: scale(0.84);
  cursor: pointer;
}
.com-time-spinner i.time-spinner__down {
  transform: rotate(-180deg);
}
.com-time-spinner i:hover {
  color: var(--primary-color);
}
.com-time-spinner .time-spinner__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: 150px;
  margin: 8px 0;
}
.com-time-spinner .time-spinner__scroll::-webkit-scrollbar {
  display: none;
}
.com-time-spinner .time-spinner__list::before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
}
.com-time-spinner .time-spinner__list::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
}
.com-time-spinner .scroll-wrapper {
  position: relative;
}
.com-time-spinner .time-spinner__item.active-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  border: 1px solid #c6c8d1;
  box-shadow: inset 0px 2px 4px rgba(0, 10, 30, 0.1);
  border-radius: 4px;
  color: #515666;
  line-height: 28px;
  width: 78px;
  z-index: -1;
}
.com-time-spinner .time-spinner__item {
  width: 80px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
}
.com-time-spinner .time-spinner__item.active-0 {
  color: #515666;
}
.com-time-spinner .time-spinner__item.active-1 {
  color: #a0a3af;
}
.com-time-spinner .time-spinner__item.active-2 {
  color: #c6c8d1;
}
.com-map {
  position: relative;
  --tool-size: 40px;
}
.com-map .map-box {
  width: 100%;
  height: 100%;
}
.com-map .tool-right-bottom {
  position: absolute;
  bottom: 20px;
  right: 15px;
  display: flex;
  flex-direction: column;
}
.com-map .tool-right-bottom .map-tool {
  font-size: 16px;
  width: var(--tool-size);
  color: #797e8b;
  background: #ffffff;
  box-shadow: 0px 2px 5px rgba(32, 36, 55, 0.1);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}
.com-map .tool-right-bottom .map-tool + .map-tool {
  margin-top: 10px;
}
.com-map .map-type-tool-position {
  position: absolute;
}
.com-map .marker-container {
  z-index: 0 !important;
  position: absolute;
}
.com-map .marker-container.active {
  z-index: 99 !important;
}
.com-map .marker-container .marker-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  z-index: 2 !important;
}
.com-map .marker-container .marker-pop.bottom-more-card {
  bottom: calc(100% + 34px) !important;
}
.com-map .marker-container .marker-pop.bottom-location-down {
  margin-top: 42px;
}
.com-map .marker-container .marker-pop.bottom-location-up {
  margin-bottom: -15px;
}
.com-map .marker-container .marker-pop:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 12px;
}
.com-map .marker-container .marker-pop .map-triangle {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-11px);
}
.com-map .marker-container .marker-pop .map-triangle:before {
  content: "";
  border-top: solid 10px rgba(22, 64, 100, 0.15);
  border-left: solid 11px transparent;
  border-right: solid 11px transparent;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.com-map .marker-container .marker-pop .map-triangle:after {
  content: "";
  border-top: solid 10px #fff;
  border-left: solid 11px transparent;
  border-right: solid 11px transparent;
  position: absolute;
  left: 0;
  bottom: 0;
}
.com-map .marker-container .marker-pop.bottom {
  top: calc(100% + 12px);
  bottom: auto;
}
.com-map .marker-container .marker-pop.bottom:before {
  bottom: auto;
  top: -12px;
}
.com-map .marker-container .marker-pop.bottom .map-triangle {
  bottom: auto;
  top: 0;
}
.com-map .marker-container .marker-pop.bottom .map-triangle:before {
  border-top: none;
  border-bottom: solid 10px #ccc;
  bottom: 1px;
}
.com-map .marker-container .marker-pop.bottom .map-triangle:after {
  border-top: none;
  border-bottom: solid 10px #fff;
}
.com-map .marker-container .marker-pop.bottom-no-triangle {
  top: calc(100% - 4px);
  bottom: auto;
}
.com-map .no-results {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  line-height: 24px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  font-size: 14px;
  border-radius: 5px;
  text-align: center;
}
.com-map .no-results .desc {
  font-size: 12px;
  line-height: normal;
  margin-top: 8px;
}
.H_imprint {
  display: none !important;
}
.com-rich-text-outer {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.com-rich-text-outer .rich-text-inner {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border: solid 1px #c6c8d1;
  padding: 10px;
  border-radius: 4px;
  box-sizing: border-box;
}
.com-rich-text-outer .rich-text-inner .rich-text {
  width: 100%;
  outline: 0;
  margin-bottom: 10px;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  text-align: left;
}
.com-rich-text-outer .rich-text-inner .rich-text[contenteditable="true"]:empty:before {
  content: attr(placeholder);
  color: #a9a9a9;
}
.com-rich-text-outer .rich-text-inner .rich-text::-webkit-scrollbar {
  display: none;
}
.com-rich-text-outer .rich-text-inner .upload-btn {
  height: 36px;
  line-height: 36px;
  border-radius: 4px;
  display: inline-block;
  background-color: #fff;
  border: solid 1px #e1e2e6;
  text-align: center;
  font-size: 14px;
  color: #515666;
  cursor: pointer;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}
.com-rich-text-outer .rich-text-inner .upload-btn:hover {
  border-color: #46b0f3 !important;
  color: #46b0f3 !important;
}
.com-rich-text-outer .rich-text-inner .upload-btn input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.com-rich-text-outer .rich-text-inner .hyperlinks {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
}
.com-rich-text-outer .rich-text-focus {
  border-color: #46b0f3 !important;
}
.el-textarea {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  font-size: 14px;
}
.el-textarea__inner {
  display: block;
  resize: vertical;
  padding: 5px 10px;
  line-height: 1.5;
  box-sizing: border-box;
  width: 100%;
  font-size: inherit;
  color: #202437;
  background-color: #fff;
  background-image: none;
  border: solid 1px #c6c8d1;
  border-radius: 4px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.el-textarea__inner:focus {
  border-color: var(--primary-color);
  outline: 0;
}
.el-textarea__inner::-moz-placeholder {
  color: #c0c4cc;
}
.el-textarea__inner::placeholder {
  color: #c0c4cc;
}
.el-textarea .el-input__count {
  color: #202437;
  background: #fff;
  position: absolute;
  font-size: 12px;
  bottom: 5px;
  right: 10px;
}
.el-textarea.is-disabled .el-textarea__inner {
  border: solid 1px #e1e2e6;
  background-color: #f6f7fb;
  color: #a0a3af;
  cursor: not-allowed;
}
.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder {
  color: #c0c4cc;
}
.el-textarea.is-disabled .el-textarea__inner::placeholder {
  color: #c0c4cc;
}
.el-textarea.is-exceed .el-textarea__inner {
  border: solid 1px #f0454c;
  background-color: #fdece9;
}
.el-textarea.is-exceed .el-input__count {
  color: #f0454c;
}
.el-input {
  position: relative;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}
.el-input .el-input__clear {
  color: #c0c4cc;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.el-input .el-input__clear:hover {
  color: #909399;
}
.el-input .el-input__count {
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: #c6c8d1;
  font-size: 12px;
}
.el-input .el-input__count .el-input__count-inner {
  background: #fff;
  line-height: initial;
  display: inline-block;
  padding: 0 5px;
}
.el-input__inner {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: solid 1px #c6c8d1;
  box-sizing: border-box;
  color: #202437;
  display: inline-block;
  font-size: inherit;
  outline: 0;
  padding: 0px 11px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}
.el-input__inner.no-border {
  border: none !important;
}
.el-input__inner.no-border:hover {
  border: none !important;
}
.el-input__inner.no-border:focus {
  border: none !important;
}
.el-input__prefix,
.el-input__suffix {
  position: absolute;
  top: 0;
  transition: all 0.3s;
  height: 100%;
  color: #c0c4cc;
  text-align: center;
  display: flex;
  align-items: center;
}
.el-input__inner::-ms-reveal {
  display: none;
}
.el-input__inner::-moz-placeholder {
  color: #c6c8d1;
}
.el-input__inner::placeholder {
  color: #c6c8d1;
}
.el-input__inner:hover {
  border: solid 1px #a0a3af;
}
.el-input.is-active .el-input__inner,
.el-input__inner:focus {
  border-color: var(--primary-color);
  outline: 0;
}
.el-input__suffix {
  right: 1px;
  transition: all 0.3s;
}
.el-input__suffix-inner {
  font-size: 12px;
  pointer-events: all;
  display: flex;
  align-items: center;
}
.el-input__prefix {
  left: 0px;
  transition: all 0.3s;
}
.el-input__icon {
  width: 30px;
  text-align: center;
  transition: all 0.3s;
  line-height: 40px;
  cursor: pointer;
  margin-left: 2px;
}
.el-input__icon:after {
  content: "";
  height: 100%;
  width: 0;
  display: inline-block;
  vertical-align: middle;
}
.el-input__validateIcon {
  pointer-events: none;
}
.el-input.is-disabled .el-input__inner {
  border: solid 1px #e1e2e6;
  background-color: #f6f7fb;
  color: #a0a3af;
  cursor: not-allowed;
}
.el-input.is-disabled .el-input__inner::-moz-placeholder {
  color: #c0c4cc;
}
.el-input.is-disabled .el-input__inner::placeholder {
  color: #c0c4cc;
}
.el-input.is-disabled .el-input__icon {
  cursor: not-allowed;
}
.el-input.is-exceed .el-input__inner {
  border: solid 1px #f0454c;
  background-color: #fdece9;
}
.el-input.is-exceed .el-input__suffix .el-input__count {
  color: #f0454c;
}
.el-input--suffix .el-input__inner {
  padding-right: 30px;
}
.el-input--prefix .el-input__inner {
  padding-left: 30px;
}
.el-input--medium {
  font-size: 14px;
}
.el-input--medium .el-input__inner {
  height: 36px;
  line-height: 36px;
}
.el-input--medium .el-input__icon {
  line-height: 36px;
}
.el-input--small {
  font-size: 14px;
}
.el-input--small .el-input__inner {
  height: 30px;
  line-height: 30px;
}
.el-input--small .el-input__icon {
  line-height: 30px;
}
.el-input--mini {
  font-size: 14px;
}
.el-input--mini .el-input__inner {
  height: 24px;
  line-height: 24px;
}
.el-input--mini .el-input__icon {
  line-height: 24px;
}
.el-input-group {
  line-height: normal;
  display: inline-table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.el-input-group > .el-input__inner {
  vertical-align: middle;
  display: table-cell;
}
.el-input-group__append,
.el-input-group__prepend {
  background-color: #fff;
  color: #202437;
  vertical-align: middle;
  display: table-cell;
  position: relative;
  border: solid 1px #c6c8d1;
  border-radius: 4px;
  padding: 0 20px;
  width: 1px;
  white-space: nowrap;
}
.el-input-group--prepend .el-input__inner,
.el-input-group__append {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.el-input-group--append .el-input__inner,
.el-input-group__prepend {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.el-input-group__append:focus,
.el-input-group__prepend:focus {
  outline: 0;
}
.el-input-group__prepend {
  border-right: 0;
}
.el-input-group__append {
  border-left: 0;
}
.el-input__inner::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.el-color-predefine {
  display: flex;
  font-size: 12px;
  margin-top: 8px;
  width: 380px;
  min-height: 20px;
}
.el-color-predefine__colors {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.el-color-predefine__color-selector {
  margin: 0 0 0px 8px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
}
.el-color-predefine__color-selector:nth-child(10n + 1) {
  margin-left: 0;
}
.el-color-predefine__color-selector.selected {
  box-shadow: 0 0 3px 2px #409eff;
}
.el-color-predefine__color-selector > div {
  display: flex;
  height: 100%;
  border-radius: 3px;
}
.el-color-predefine__color-selector.is-alpha {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.el-color-hue-slider {
  position: relative;
  box-sizing: border-box;
  width: 280px;
  height: 12px;
  background-color: red;
  padding: 0 2px;
}
.el-color-hue-slider__bar {
  position: relative;
  background: linear-gradient(to right, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%);
  height: 100%;
}
.el-color-hue-slider__thumb {
  position: absolute;
  cursor: pointer;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 1px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.el-color-hue-slider.is-vertical {
  width: 12px;
  height: 180px;
  padding: 2px 0;
}
.el-color-hue-slider.is-vertical .el-color-hue-slider__bar {
  background: linear-gradient(to bottom, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%);
}
.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb {
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
}
.el-color-svpanel {
  position: relative;
  width: 380px;
  height: 180px;
}
.el-color-svpanel__black,
.el-color-svpanel__white {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.el-color-svpanel__white {
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.el-color-svpanel__black {
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}
.el-color-svpanel__cursor {
  position: absolute;
}
.el-color-svpanel__cursor > div {
  cursor: head;
  width: 4px;
  height: 4px;
  box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transform: translate(-2px, -2px);
}
.el-color-alpha-slider {
  position: relative;
  box-sizing: border-box;
  width: 380px;
  height: 12px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.el-color-alpha-slider__bar {
  position: relative;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%);
  height: 100%;
}
.el-color-alpha-slider__thumb {
  position: absolute;
  cursor: pointer;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 1px;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.el-color-alpha-slider.is-vertical {
  width: 20px;
  height: 180px;
}
.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%);
}
.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb {
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
}
.el-color-dropdown {
  width: 400px;
}
.el-color-dropdown__main-wrapper {
  margin-bottom: 6px;
  height: 180px;
}
.el-color-dropdown__main-wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.el-color-dropdown__btns {
  margin-top: 6px;
  text-align: right;
  height: 40px;
  display: flex;
  flex-wrap: nowrap;
}
.el-color-dropdown__value {
  float: left;
  line-height: 26px;
  font-size: 12px;
  color: #000;
  width: 190px;
}
.el-color-dropdown__btn {
  border: 1px solid #dcdcdc;
  color: #333;
  line-height: 24px;
  border-radius: 2px;
  padding: 0 20px;
  cursor: pointer;
  background-color: transparent;
  outline: 0;
  font-size: 12px;
}
.el-color-dropdown__btn[disabled] {
  color: #ccc;
  cursor: not-allowed;
}
.el-color-dropdown__btn:hover {
  color: #409eff;
  border-color: #409eff;
}
.el-color-dropdown__link-btn {
  cursor: pointer;
  color: #409eff;
  text-decoration: none;
  padding: 15px;
  font-size: 12px;
}
.el-color-dropdown__link-btn:hover {
  color: #66b1ff;
}
.el-color-picker {
  display: inline-block;
  position: relative;
  line-height: normal;
  height: 40px;
}
.el-color-picker.is-disabled .el-color-picker__trigger {
  cursor: not-allowed;
}
.el-color-picker--medium {
  height: 36px;
}
.el-color-picker--medium .el-color-picker__trigger {
  height: 36px;
  width: 36px;
}
.el-color-picker--medium .el-color-picker__mask {
  height: 34px;
  width: 34px;
}
.el-color-picker--small {
  height: 32px;
}
.el-color-picker--small .el-color-picker__trigger {
  height: 32px;
  width: 32px;
}
.el-color-picker--small .el-color-picker__mask {
  height: 30px;
  width: 30px;
}
.el-color-picker--small .el-color-picker__empty,
.el-color-picker--small .el-color-picker__icon {
  transform: translate3d(-50%, -50%, 0) scale(0.8);
}
.el-color-picker--mini {
  height: 28px;
}
.el-color-picker--mini .el-color-picker__trigger {
  height: 28px;
  width: 28px;
}
.el-color-picker--mini .el-color-picker__mask {
  height: 26px;
  width: 26px;
}
.el-color-picker--mini .el-color-picker__empty,
.el-color-picker--mini .el-color-picker__icon {
  transform: translate3d(-50%, -50%, 0) scale(0.8);
}
.el-color-picker__mask {
  height: 38px;
  width: 38px;
  border-radius: 4px;
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: 1;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.7);
}
.el-color-picker_wrap {
  width: 100%;
  height: 100%;
  border: solid 1px rgba(32, 36, 55, 0.05);
  box-sizing: border-box;
}
.el-color-picker__trigger {
  display: inline-block;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  padding: 4px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  font-size: 0;
  position: relative;
  cursor: pointer;
}
.el-color-picker__color {
  position: relative;
  display: block;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.el-color-picker__color.is-alpha {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
.el-color-picker__color-inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 2px;
}
.el-color-picker__empty,
.el-color-picker__icon {
  top: 50%;
  left: 50%;
  font-size: 12px;
  position: absolute;
}
.el-color-picker__empty {
  color: #999;
  transform: translate3d(-50%, -50%, 0);
}
.el-color-picker__icon {
  display: inline-block;
  width: 100%;
  transform: translate3d(-50%, -50%, 0);
  color: #fff;
  text-align: center;
}
.el-color-picker__panel {
  z-index: 10;
  padding: 6px;
  box-sizing: content-box;
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.com-menu {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  list-style: none;
  color: #495060;
  background: #fff;
  font-size: 14px;
  position: relative;
}
.com-menu .com-menu-item {
  display: block;
  outline: none;
  list-style: none;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}
.com-menu .com-menu-item:last-child {
  margin-bottom: 10px;
}
.com-menu .com-menu-item .com-menu-item-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.com-menu .com-menu-item .com-menu-item-content .com-menu-item-content-left {
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: keep-all;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
}
.com-menu .com-menu-item .com-menu-item-content .com-menu-item-content-right {
  color: #a0a3af;
}
.com-menu .com-menu-item .com-menu-item-des {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  line-height: 20px;
  text-align: center;
}
.com-menu .com-menu-item .com-menu-item-des.new {
  background-color: #f0454c;
}
.com-menu .com-menu-item .com-menu-item-des.beta {
  border-radius: 10px;
  border: solid 1px var(--primary-color);
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'SF UI Text';
}
.com-menu .com-menu-item .com-menu-item-des.bot {
  border-radius: 10px;
  border: solid 1px #20C472;
  font-weight: 600;
  color: #20C472;
  font-family: 'SF UI Text';
}
.com-menu .com-menu-item .com-menu-item-des.recommend {
  text-align: right;
}
.com-menu .com-menu-item > i {
  margin-right: 6px;
}
.com-menu .com-menu-submenu-title > i,
.com-menu .com-menu-submenu-title span > i {
  display: inline-block;
}
.com-menu .com-menu-submenu-title > i.icon-arrow_01_down:before,
.com-menu .com-menu-submenu-title span > i.icon-arrow_01_down:before {
  font-family: "chime";
  font-size: 12px;
  text-align: center;
}
.com-menu .com-menu-item,
.com-menu .com-menu-submenu-title {
  display: flex;
  flex-direction: row;
  padding: 0 18px 0 28px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  line-height: 36px;
  color: #515666;
}
.com-menu .com-menu-item:hover,
.com-menu .com-menu-submenu-title:hover {
  background: #f6f7fb;
  color: #202437;
}
.com-menu .com-menu-submenu-active .com-menu-submenu-title {
  background: #2e4558;
  color: #202437;
}
.com-menu .com-menu-submenu-title {
  line-height: 40px;
}
.com-menu .com-menu-submenu-title .com-menu-submenu-title-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.com-menu .com-menu-submenu-title .com-menu-submenu-title-content .com-menu-submenu-title-content-left {
  font-size: 14px;
  font-weight: 500;
}
.com-menu .com-menu-submenu-title .com-menu-submenu-title-content .com-menu-submenu-title-content-right {
  color: #a0a3af;
}
.com-menu .com-menu-submenu-title-icon {
  position: relative;
  color: #A0A3AF;
}
.com-menu .com-menu-submenu-title-icon {
  transition: transform 0.2s ease-in-out;
}
.com-menu .com-menu-opened > * > .com-menu-submenu-title-icon {
  transform: rotate(180deg);
}
.com-menu .com-menu-submenu .com-menu-submenu-nested {
  padding-left: 20px;
}
.com-menu .com-menu-submenu .com-menu-item {
  padding-left: 43px;
}
.com-menu .com-menu-item {
  border-left: 4px solid transparent;
}
.com-menu .com-menu-item.com-menu-item-active:not(.com-menu-submenu) {
  color: #202437;
  border-left: 4px solid var(--primary-color);
  background: #f6f7fb;
}
.com-menu .com-menu-item.com-menu-item-step .com-menu-select {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  font-size: 12px;
  margin-right: 12px;
  flex-shrink: 0;
}
.com-menu .com-menu-item.com-menu-item-step .com-menu-select.selected-icon {
  background-color: var(--primary-color);
  color: #ffffff;
}
.com-menu .com-menu-item.com-menu-item-step .com-menu-select.select-step {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.collapse-transition {
  transition: 0.2s height ease-in-out, 0.2s padding-top ease-in-out, 0.2s padding-bottom ease-in-out;
}
.com-select-file {
  outline: none;
  background: rgba(var(--primary-color-rgb), 0.1);
}
.com-select-file:hover {
  background: rgba(var(--primary-color-rgb), 0.2);
}
.com-select-file .file-input {
  display: none;
}
.com-select-file .upload-dragger {
  position: relative;
  width: 100%;
  flex: 1;
}
.com-upload .panel-multi-pic {
  display: flex;
  flex-wrap: wrap;
}
.com-upload .panel-multi-pic .panel-item-pic {
  width: 112px;
  margin: 0 10px 20px 10px;
  position: relative;
  list-style: none;
  padding: 0;
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box {
  width: 112px;
  height: 84px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box .panel-pic-edit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box .panel-pic-edit .btn {
  cursor: pointer;
  padding: 0px 5px;
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box .panel-pic-edit .icon2017 {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box .panel-pic-edit .icon-delete_01 {
  color: #f0454c;
}
.com-upload .panel-multi-pic .panel-item-pic .panel-pic-box:hover .panel-pic-edit {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}
.com-upload .com-select-file {
  display: flex;
  width: 112px;
  height: 84px;
  margin: 0 10px 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: dashed 1px #e1e2e6;
  border-radius: 2px;
  background-color: #ffffff;
}
.com-upload .com-select-file .add-pic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.com-upload .com-select-file .icon-add_bold {
  text-align: center;
  color: #c6c8d1;
  font-size: 30px;
}
.com-upload .com-select-file .text {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
.crop-pop .crop-shadow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  z-index: 2500;
}
.crop-pop .crop-dialog {
  width: 600px;
  height: 500px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  z-index: 3000;
}
.crop-pop .crop-dialog .icon-cancel_bold {
  position: absolute;
  right: 8px;
  top: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
}
.crop-pop .crop-dialog .btn-container {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translate(-50%, 0);
  height: 25px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  background-color: transparent;
  cursor: default;
  white-space: nowrap;
}
.crop-pop .crop-dialog .btn-container span {
  padding: 0 5px;
  cursor: pointer;
  opacity: 1;
  font-size: 14px;
  display: inline-block;
}
.com-vue-cropper {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
  direction: ltr;
  touch-action: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC);
}
.com-vue-cropper .cropper-box,
.com-vue-cropper .cropper-box-canvas,
.com-vue-cropper .cropper-drag-box,
.com-vue-cropper .cropper-crop-box,
.com-vue-cropper .cropper-face {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
}
.com-vue-cropper .cropper-box-canvas img {
  position: relative;
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
  transform: none;
  max-width: none;
  max-height: none;
}
.com-vue-cropper .cropper-box {
  overflow: hidden;
}
.com-vue-cropper .cropper-move {
  cursor: move;
}
.com-vue-cropper .cropper-crop {
  cursor: crosshair;
}
.com-vue-cropper .cropper-modal {
  background: rgba(0, 0, 0, 0.5);
}
.com-vue-cropper .cropper-view-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
}
.com-vue-cropper .cropper-view-box img {
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
  max-width: none;
  max-height: none;
}
.com-vue-cropper .cropper-face {
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.1;
}
.com-vue-cropper .crop-info {
  position: absolute;
  left: 0px;
  min-width: 65px;
  text-align: center;
  color: white;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
}
.com-vue-cropper .crop-info.crop-info-ratio {
  min-width: 40px;
}
.com-vue-cropper .crop-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.com-vue-cropper .line-w {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}
.com-vue-cropper .line-a {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}
.com-vue-cropper .line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}
.com-vue-cropper .line-d {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}
.com-vue-cropper .crop-point {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0.75;
  background-color: #39f;
  border-radius: 100%;
}
.com-vue-cropper .point1 {
  top: -4px;
  left: -4px;
  cursor: nw-resize;
}
.com-vue-cropper .point2 {
  top: -5px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}
.com-vue-cropper .point3 {
  top: -4px;
  right: -4px;
  cursor: ne-resize;
}
.com-vue-cropper .point4 {
  top: 50%;
  left: -4px;
  margin-top: -3px;
  cursor: w-resize;
}
.com-vue-cropper .point5 {
  top: 50%;
  right: -4px;
  margin-top: -3px;
  cursor: w-resize;
}
.com-vue-cropper .point6 {
  bottom: -5px;
  left: -4px;
  cursor: sw-resize;
}
.com-vue-cropper .point7 {
  bottom: -5px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}
.com-vue-cropper .point8 {
  bottom: -5px;
  right: -4px;
  cursor: nw-resize;
}
@media screen and (max-width: 500px) {
  .com-vue-cropper .crop-point {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.45;
    background-color: #39f;
    border-radius: 100%;
  }
  .com-vue-cropper .point1 {
    top: -10px;
    left: -10px;
  }
  .com-vue-cropper .point2,
  .com-vue-cropper .point4,
  .com-vue-cropper .point5,
  .com-vue-cropper .point7 {
    display: none;
  }
  .com-vue-cropper .point3 {
    top: -10px;
    right: -10px;
  }
  .com-vue-cropper .point4 {
    top: 0;
    left: 0;
  }
  .com-vue-cropper .point6 {
    bottom: -10px;
    left: -10px;
  }
  .com-vue-cropper .point8 {
    bottom: -10px;
    right: -10px;
  }
}
.com-upload-file {
  position: relative;
  box-sizing: border-box;
}
.com-upload-file .com-select-file {
  display: flex;
  padding: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px dashed var(--primary-color);
  overflow: hidden;
  border-radius: 4px;
}
.com-upload-file h3 {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
}
.com-upload-file p {
  font-size: 12px;
  color: var(--primary-color);
  margin: 0;
}
.com-upload-file button {
  margin-top: 30px;
}
.com-upload-file .primary {
  height: 30px;
  line-height: 30px;
}
.com-upload-file .upload-progress .file-name {
  display: flex;
  justify-content: space-between;
  color: #606266;
  padding-left: 4px;
  transition: color 0.3s;
  font-size: 12px;
  line-height: 1.8;
}
.com-upload-file .upload-progress .file-name:hover {
  color: #409eff;
  cursor: pointer;
}
.com-upload-file .upload-progress .file-name .file-title {
  display: inline-flex;
  width: calc(100% - 50px);
}
.com-upload-file .upload-progress .file-name .name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com-upload-file .upload-progress .file-name .icon-checked_bold {
  color: #2cd781;
}
.com-upload-file .upload-progress .file-name .icon-cancel {
  color: #f56c6c;
}
.com-upload-file .upload-progress .file-name .operator {
  display: flex;
  align-items: center;
}
.com-upload-file .upload-progress .icon2017 {
  margin-right: 5px;
  line-height: 12px;
  font-size: 14px;
}
.com-upload-file .upload-progress .icon-cancel_02 {
  display: none;
}
.com-upload-file .upload-progress .file-item {
  margin-top: 10px;
}
.com-upload-file .upload-progress .file-item:hover {
  background-color: #f5f7fa;
}
.com-upload-file .upload-progress .file-item:hover .icon-cancel_02 {
  display: block;
}
.com-upload-file .upload-progress .file-item:hover .percentage,
.com-upload-file .upload-progress .file-item:hover .icon-checked_bold,
.com-upload-file .upload-progress .file-item:hover .icon-cancel {
  display: none;
}
.com-address-suggestion {
  height: 100%;
}
.com-address-suggestion input[disabled] {
  background: #f4f4f4;
  border: 1px solid #c6c8d1;
  color: #515666;
}
.com-address-suggestion .com-dropdown-body {
  position: relative;
}
.com-address-suggestion .com-dropdown-body .clear-btn {
  position: absolute;
  line-height: 36px;
  right: 10px;
  cursor: pointer;
  color: #c6c8d1;
  font-size: 14px;
}
.com-address-suggestion .com-dropdown-body .clear-btn:hover {
  color: #515666;
}
.address-dropdown {
  max-height: 250px;
  overflow: auto;
  padding: 6px 0;
}
.address-dropdown .address-item {
  font-size: 14px;
  position: relative;
  line-height: 1.4;
  padding: 8px 10px;
  text-align: left;
  color: #515666;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.address-dropdown .address-item:hover {
  background: #f6f7fb;
}
.address-dropdown .hover {
  background: #f6f7fb;
}
.address-dropdown .loading {
  font-size: 12px;
  color: #a0a3af;
  text-align: center;
}
.address-dropdown .no-result {
  padding: 8px 0;
  margin: 0 8px;
  color: #a0a3af;
}
.address-dropdown .other-address {
  border-top: 1px solid #ebecf1;
  font-size: 14px;
  color: var(--primary-color);
  padding: 12px;
  margin-top: 5px;
  cursor: pointer;
  white-space: nowrap;
  line-height: normal;
  display: flex;
  justify-content: center;
}
.address-dropdown .other-address:hover {
  background: #f6f7fb;
}
.address-dropdown .other-address i {
  font-weight: bold;
  margin-right: 5px;
  color: var(--primary-color);
}
.address-dropdown .other-address .keyword {
  color: var(--primary-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.address-dropdown .other-address.custom-other-address {
  margin-top: 6px;
  padding: 10px;
  color: #515666;
  font-weight: 400;
}
.address-dropdown.hide {
  display: none;
}
.loading-mask {
  position: absolute;
  z-index: 200;
  background-color: hsla(0, 0%, 100%, 0.5);
  margin: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.3s;
  height: 100%;
  overflow: hidden;
}
.loading-mask .loading-spinner {
  top: 50%;
  width: 100%;
  text-align: center;
  position: absolute;
  background-color: transparent;
}
.loading-mask .loading-spinner .circular {
  height: 42px;
  width: 42px;
  animation: loading-rotate 2s linear infinite;
}
.loading-mask .loading-spinner .path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: var(--primary-color-5);
  stroke-linecap: round;
}
.is-loading-for-btn-cls {
  position: relative;
}
.is-loading-for-btn-cls .loading-mask .loading-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  background-color: transparent;
  width: 100%;
  height: 100%;
}
.is-loading-for-btn-cls .loading-mask .loading-spinner .circular {
  width: 80%;
  height: 80%;
  max-width: 40px;
  max-height: 40px;
  position: relative;
  top: 10%;
}
.loading-parent {
  position: relative !important;
}
@keyframes loading-rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
.drag-border {
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  cursor: ew-resize;
  border-right: 1px #c8c8c8 solid;
  z-index: 1;
}
.drag-border .handle {
  position: absolute;
  background: #f4f4f4;
  border: 1px #c8c8c8 solid;
  border-radius: 3px;
  height: 40px;
  width: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.drag-border .handle:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  height: 16px;
  width: 2px;
  border-left: 1px #acb2ba solid;
}
.drag-border .line {
  position: absolute;
  background: #f4f4f4;
  display: block;
  height: 44px;
  width: 11px;
  left: 7px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
.drag-border .line:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 1px;
  height: 16px;
  width: 2px;
  border-left: 1px #acb2ba solid;
  border-right: 1px #acb2ba solid;
}
.infinite-load {
  text-align: center;
  font-size: 16px;
  width: 100%;
  background: #fff;
  transition: all 300ms linear;
  z-index: 9;
  color: #ccc;
  padding-bottom: 10px;
}
.zoom-in-top-enter-active,
.zoom-in-top-leave-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center top;
}
.zoom-in-top-enter,
.zoom-in-top-leave-active {
  opacity: 0;
  transform: scaleY(0);
}
.fade-in-enter-active,
.fade-in-leave-active {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in-enter,
.fade-in-leave-active {
  opacity: 0;
}
.validate-tip {
  min-width: 200px;
  padding: 10px;
  padding-left: 33px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 20px #282828;
  position: absolute;
  border-radius: 3px;
  z-index: 999;
  font-size: 14px;
  box-sizing: border-box;
  line-height: initial;
  text-align: initial;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}
.validate-tip.dark-mode {
  font-size: 12px;
  background-color: rgba(32, 36, 55, 0.95);
  color: #c6c8d1;
  box-shadow: 0 4px 8px 0 rgba(0, 10, 30, 0.2);
}
.validate-tip.dark-mode::before {
  background-color: #c6c8d1;
  color: rgba(32, 36, 55, 0.95);
  border-radius: 9px;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
}
.validate-tip.dark-mode::after {
  border-bottom-color: rgba(32, 36, 55, 0.95);
  border-color: transparent transparent #000 transparent;
}
.validate-tip.dark-mode.site-tip::after {
  border-bottom-color: rgba(32, 36, 55, 0.95);
  border-color: transparent transparent #000 transparent;
}
.validate-tip::before {
  content: "!";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #faa832;
  font-size: 16px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: white;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
}
.validate-tip::after {
  content: "";
  left: 20px;
  position: absolute;
  display: inline-block;
  border: 5px solid;
  border-color: transparent transparent #000 transparent;
  top: -10px;
  border-bottom-color: #fff;
}
.chime-scroller::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.chime-scroller::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 2px;
}
.chime-scroller::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 2px;
}
.chime-scroller::-webkit-scrollbar-thumb:hover {
  background: #747474;
}
.chime-scroller::-webkit-scrollbar-corner {
  background: #f6f6f6;
}
.red-point {
  position: relative;
}
.red-point::after {
  content: " ";
  border-radius: 50%;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #f0454c;
  border: solid 1px #ffffff;
  position: absolute;
  top: 0;
  right: -1px;
  font-size: 12px;
}
@media screen and (max-width: 1366px) {
  .get-help-content .icon2017.icon-cancel_bold {
    right: 10px;
  }
}
.get-help-content {
  display: inline-flex;
  flex-direction: row;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 10, 30, 0.1);
}
.get-help-content .icon-cancel_bold {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
  color: #a0a3af;
}
.get-help-content .icon-cancel_bold:hover {
  color: var(--primary-color);
}
.get-help-content .gh-video {
  width: 232px;
  height: 130px;
  border-radius: 4px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.get-help-content .gh-video::before {
  content: "";
  left: 0;
  top: 0;
  border-radius: 4px;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.get-help-content .gh-video .gh-play {
  width: 60px;
  height: 60px;
  opacity: 0.9;
  border-radius: 100px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 10, 30, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.get-help-content .gh-video .gh-play .icon-play_02 {
  font-size: 20px;
  color: #515666;
  display: flex;
  padding-left: 2px;
}
.get-help-content .gh-video .gh-play:hover {
  background-color: var(--primary-color);
}
.get-help-content .gh-video .gh-play:hover .icon-play_02 {
  color: #fff;
}
.get-help-content .gh-text {
  margin-left: 20px;
}
.get-help-content .gh-text .gh-title {
  color: #515666;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.11;
}
.get-help-content .gh-text ul {
  padding: 10px 15px;
}
.get-help-content .gh-text ul li {
  color: #a0a3af;
  list-style: disc;
  font-size: 14px;
  line-height: 1.71;
}
.get-help-content .gh-text .gh-footer {
  color: #a0a3af;
  font-size: 14px;
}
.get-help-content .gh-text a {
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: underline;
}
.get-help-content .gh-text strong {
  color: #515666;
  font-weight: 500;
}
.gh-introduction {
  font-weight: 500;
  border-radius: 4px;
  background-color: var(--primary-color);
  cursor: pointer;
  padding: 3px 8px;
  color: #fff;
  vertical-align: middle;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}
.gh-introduction:hover {
  background-color: var(--primary-color-5);
}
.gh-introduction:active {
  background-color: var(--primary-color-3);
}
.gh-introduction:before {
  content: "\e972";
  font-family: "chime";
  margin-right: 4px;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
.gh-introduction:after {
  content: "Introduction";
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
.vmiddle {
  vertical-align: middle;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.flex {
  display: flex;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.outsite-mask-pop {
  transition: opacity 200ms ease;
}
.modal-enter {
  animation: modal-in 0.2s ease;
}
.modal-leave {
  animation: modal-out 0.2s ease forwards;
}
@keyframes modal-in {
  0% {
    opacity: 0;
  }
}
@keyframes modal-out {
  100% {
    opacity: 0;
  }
}
.v-link-dynamic {
  color: var(--primary-color);
  cursor: pointer;
}
.v-link-dynamic:hover {
  text-decoration: underline;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.chime-alert {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 20px;
  border-radius: 4px;
  border: solid 1px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.chime-alert .chime-alert__btn {
  height: 26px;
  padding: 5px 15px;
  margin-left: auto;
}
.chime-alert .chime-alert__btn:hover {
  filter: opacity(80%);
}
.chime-alert .chime-alert__icon {
  font-size: 20px;
  margin-right: 5px;
}
.chime-alert.is-center {
  justify-content: center;
}
.chime-alert.is-center .chime-alert__btn {
  margin-left: 15px;
}
.chime-alert.is-closable {
  padding-right: 45px;
}
.chime-alert.primary {
  background-color: #ebeffc;
  border-color: #d8def8;
  color: #3b5cde;
}
.chime-alert.primary .chime-alert__btn {
  background-color: #3b5cde;
}
.chime-alert.success {
  background-color: #e7ffe3;
  border-color: #bff6c5;
  color: #20c472;
}
.chime-alert.success .chime-alert__btn {
  background-color: #2cd781;
}
.chime-alert.success .chime-alert__btn:not(.disabled):not([disabled]):hover {
  background-color: #41db8e;
}
.chime-alert.success .chime-alert__btn:not(.disabled):not([disabled]):active {
  background-color: #28c174;
}
.chime-alert.warning {
  background-color: #fef8e4;
  border-color: #fbe889;
  color: #f59700;
}
.chime-alert.warning .chime-alert__btn {
  background-color: #ffa600;
}
.chime-alert.warning .chime-alert__btn:not(.disabled):not([disabled]):hover {
  background-color: #ffaf19;
}
.chime-alert.warning .chime-alert__btn:not(.disabled):not([disabled]):active {
  background-color: #e69500;
}
.chime-alert.danger {
  background-color: #fdece9;
  border-color: #fcd7d2;
  color: #ed1941;
}
.chime-alert.danger .chime-alert__btn {
  background-color: #fb6f67;
}
.chime-alert.danger .chime-alert__btn:not(.disabled):not([disabled]):hover {
  background-color: #fb7d76;
}
.chime-alert.danger .chime-alert__btn:not(.disabled):not([disabled]):active {
  background-color: #e2645d;
}
.chime-alert .chime-alert__closebtn {
  position: absolute;
  top: 11px;
  right: 30px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.chime-alert .chime-alert__closebtn:hover {
  opacity: 1;
  transform: rotate(360deg);
}

.chime-primary-color[data-v-3a3b1e78] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-3a3b1e78]:hover {
  text-decoration: underline;
}
.chime-alert-v2[data-v-3a3b1e78] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #ceedfe;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.chime-alert-v2-pre[data-v-3a3b1e78] {
  font-size: 20px;
  margin-right: 10px;
}
.chime-alert-v2-content[data-v-3a3b1e78] {
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
}
.chime-alert-v2-content_text[data-v-3a3b1e78] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 18px;
  word-break: break-word;
}
.chime-alert-v2-content[data-v-3a3b1e78] .single-line-omitted {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chime-alert-v2-content[data-v-3a3b1e78] .two-line-omitted {
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  word-break: break-word;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  box-orient: vertical;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.chime-alert-v2-btn[data-v-3a3b1e78] {
  overflow: hidden;
  box-sizing: border-box;
  margin-left: 20px;
}
.chime-alert-v2-btn .chime-alert__btn[data-v-3a3b1e78] {
  height: 30px;
  padding: 6px 15px;
}
.chime-alert-v2-btn .chime-alert__btn[data-v-3a3b1e78]:hover {
  filter: opacity(80%);
}
.chime-alert-v2-btn .chime-alert__btn[data-v-3a3b1e78]:nth-of-type(n+2) {
  margin-left: 15px;
}
.chime-alert-v2-btn .chime-alert__btn.primary[data-v-3a3b1e78] {
  background-color: #3B5CDE;
}
.chime-alert-v2-btn .chime-alert__btn.primary[data-v-3a3b1e78]:hover {
  background-color: #4f6ce1;
}
.chime-alert-v2-btn .chime-alert__btn.primary[data-v-3a3b1e78]:active {
  background-color: #3553c8;
}
.chime-alert-v2-btn .chime-alert__btn.success[data-v-3a3b1e78] {
  background-color: #2cd781;
}
.chime-alert-v2-btn .chime-alert__btn.success[data-v-3a3b1e78]:hover {
  background-color: #41db8e;
}
.chime-alert-v2-btn .chime-alert__btn.success[data-v-3a3b1e78]:active {
  background-color: #28c174;
}
.chime-alert-v2-btn .chime-alert__btn.warning[data-v-3a3b1e78] {
  background-color: #ffa600;
}
.chime-alert-v2-btn .chime-alert__btn.warning[data-v-3a3b1e78]:hover {
  background-color: #ffaf19;
}
.chime-alert-v2-btn .chime-alert__btn.warning[data-v-3a3b1e78]:active {
  background-color: #e69500;
}
.chime-alert-v2-btn .chime-alert__btn.danger[data-v-3a3b1e78] {
  background-color: var(--warning-red);
}
.chime-alert-v2-btn .chime-alert__btn.danger[data-v-3a3b1e78]:hover {
  background-color: #fb7d76;
}
.chime-alert-v2-btn .chime-alert__btn.danger[data-v-3a3b1e78]:active {
  background-color: #e2645d;
}
.chime-alert-v2-close[data-v-3a3b1e78] {
  margin-left: 20px;
  font-size: 12px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.chime-alert-v2-close[data-v-3a3b1e78]:hover {
  opacity: 1;
  transform: rotate(360deg);
}
.chime-alert-v2.primary[data-v-3a3b1e78] {
  background-color: #e7f6ff;
  border-color: #ceedfe;
  color: #2492fc;
}
.chime-alert-v2.success[data-v-3a3b1e78] {
  background-color: #e7ffe3;
  border-color: #bff6c5;
  color: #20c472;
}
.chime-alert-v2.warning[data-v-3a3b1e78] {
  background-color: #fef8e4;
  border-color: #fbe889;
  color: #FFA200;
}
.chime-alert-v2.danger[data-v-3a3b1e78] {
  background-color: #fdece9;
  border-color: #fcd7d2;
  color: #ed1941;
}

.chime-primary-color[data-v-0064cfd4] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-0064cfd4]:hover {
  text-decoration: underline;
}
.com-table-header-mode-select[data-v-0064cfd4] {
  display: inline-block;
}
.com-table-header-mode-select .select-mode-item-body[data-v-0064cfd4] {
  width: 20px;
  height: 20px;
  border: 1px solid #E1E2E6;
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
}
.com-table-header-mode-select .select-mode-item-body i[data-v-0064cfd4] {
  width: 12px;
  height: 15px;
  font-size: 12px;
  color: #A0A3AF;
  transition: all 0.3s;
  transform-origin: center;
}
.com-table-header-mode-select .select-mode-item-body i[data-v-0064cfd4]::before {
  color: #A0A3AF !important;
  margin-left: 0!important;
}
.com-table-header-mode-select .select-mode-item-body[data-v-0064cfd4]:hover {
  background-color: #EBECF1;
}
.com-table-header-mode-select .select-mode-item-body[data-v-0064cfd4]:active {
  background-color: #EBECF1;
}
.com-table-header-mode-select .select-mode-item-body.open i[data-v-0064cfd4] {
  transform: rotate(-180deg);
}
.com-table-header-mode-select-dropdown .select-mode-item-dropdown[data-v-0064cfd4] {
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 0;
  background-color: #fff;
  border-radius: 4px;
}
.com-table-header-mode-select-dropdown .select-mode-item-dropdown .select-mode-item-dropdown__option[data-v-0064cfd4] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #fff;
  padding: 6px 15px;
  color: #515666;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
}
.com-table-header-mode-select-dropdown .select-mode-item-dropdown .select-mode-item-dropdown__option[data-v-0064cfd4]:hover {
  background-color: #f6f7fb;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.tabel-main {
  overflow: auto;
}
.tabel-main .row-cotainer.head-row {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
}
.tabel-main .row-cotainer {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.tabel-main .row-cotainer > * {
  flex-shrink: 0;
  flex-basis: 0;
  min-width: 150px;
}
.tabel-main .row-cotainer .left-columns {
  z-index: 2;
  position: sticky;
  left: 0;
  box-shadow: 10px 0 5px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.tabel-main .row-cotainer .right-columns {
  position: sticky;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  background: #fff;
  z-index: 1;
}
.tabel-main .row-cotainer .table-columns {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.tabel-main .row-cotainer .table-columns .table-cell {
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.tabel-main .row-cotainer .table-columns .table-cell .cell {
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
  text-align: left;
}

.chime-primary-color[data-v-1c617f68] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-1c617f68]:hover {
  text-decoration: underline;
}
.selected-tags-area[data-v-1c617f68] {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.selected-tags-area[data-v-1c617f68]::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.selected-tags-area[data-v-1c617f68]::-webkit-scrollbar-thumb {
  background: transparent;
}
.selected-tags-area .tag-item[data-v-1c617f68] {
  border-radius: 2px;
  background-color: var(--primary-color-10);
  border: 1px solid var(--primary-color-9);
  padding: 6px 8px;
  box-sizing: border-box;
  color: var(--primary-color);
  font-family: SF UI Text;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.selected-tags-area .tag-item .icon-cancel_bold[data-v-1c617f68] {
  font-size: 10px;
  margin-left: 10px;
  color: rgba(var(--primary-color-rgb), 0.3);
}
.selected-tags-area .tag-item .icon-cancel_bold[data-v-1c617f68]:hover {
  color: rgba(var(--primary-color-rgb), 1);
}
.selected-tags-area .tag-item.is-disabled[data-v-1c617f68] {
  opacity: 0.8;
}
.selected-tags-area .tag-item.is-disabled .icon-cancel_bold[data-v-1c617f68]:hover {
  color: rgba(var(--primary-color-rgb), 0.3);
}
.selected-tags-area .tag-item + .tag-item[data-v-1c617f68] {
  margin-left: 4px;
}

.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}


.chime-primary-color[data-v-0bcfc586] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-0bcfc586]:hover {
  text-decoration: underline;
}
.com-select-list .com-select-item.noSearch[data-v-0bcfc586] {
  margin-top: 5px;
}

.chime-primary-color[data-v-093f95fc] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-093f95fc]:hover {
  text-decoration: underline;
}
[data-v-093f95fc] .pop-content {
  width: 100%;
}

.chime-primary-color[data-v-78c63fb1] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-78c63fb1]:hover {
  text-decoration: underline;
}
.tag-list[data-v-78c63fb1] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.tag-list .tag-item[data-v-78c63fb1] {
  height: 26px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--primary-color-10);
  border: solid 1px var(--primary-color-9);
  font-size: 0.8em;
  color: var(--primary-color);
  margin-right: 3px;
  vertical-align: top;
  padding: 0 5px;
  border-radius: 2px;
  box-sizing: border-box;
}
.tag-list .tag-item .text[data-v-78c63fb1] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 3px;
  max-width: 50px;
}
.tag-list .tag-item .icon-cancel[data-v-78c63fb1] {
  line-height: 1;
}
.tag-list .tag-item .icon-cancel[data-v-78c63fb1]::before {
  font-size: 12px;
  color: var(--primary-color);
  cursor: pointer;
}

.chime-primary-color[data-v-53d2311c] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-53d2311c]:hover {
  text-decoration: underline;
}
.com-query-select .show-more-tag-cls[data-v-53d2311c] {
  display: flex;
}
.com-query-select .stow-tag .more-btn[data-v-53d2311c] {
  margin-left: 5px;
  background: var(--primary-color-10);
  border: 1px solid var(--primary-color-9);
  border-radius: 2px;
  font-weight: 400;
  font-size: 12px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  padding: 0 8px;
  box-sizing: border-box;
  cursor: pointer;
}
.com-query-select .stow-tag .more-btn[data-v-53d2311c]:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
}
.com-query-select .stow-tag.open .more-btn[data-v-53d2311c] {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
}
.com-query-select[data-v-53d2311c] .com-dropdown-label {
  overflow: unset !important;
}
.stow-tag-dropdown-cls .stow-tag-list[data-v-53d2311c] {
  padding: 15px 15px 10px 15px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e1e2e6;
  border-radius: 4px;
  width: 300px;
  max-height: 280px;
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
  overflow-y: auto;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.query-selector-results .com-dropdown-content {
  padding-top: 6px;
  padding-bottom: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.query-selector-results .com-dropdown-content::-webkit-scrollbar {
  width: 10px;
}
.query-selector-results .com-dropdown-content::-webkit-scrollbar-thumb {
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: rgba(32, 36, 55, 0.2);
}
.query-selector-results .com-dropdown-content.diffLeft {
  margin-left: -34px;
}
.query-selector-results .com-dropdown-content .item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.query-selector-results .com-dropdown-content .result {
  color: #515666;
  padding: 0 15px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.query-selector-results .com-dropdown-content .result:hover {
  background-color: #f6f7fb;
}
.query-selector-results .com-dropdown-content .no-result {
  padding: 0 10px;
  height: 36px;
  line-height: 36px;
  padding-left: 20px;
  font-size: 12px !important;
  color: #c6c8d1 !important;
  text-align: center;
}
.query-selector-results .com-dropdown-content .loading {
  text-align: center;
  font-size: 12px !important;
  color: #c6c8d1 !important;
}

/**
 * Swiper 5.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 26, 2019
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}
.chime-primary-color[data-v-03580ac0] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-03580ac0]:hover {
  text-decoration: underline;
}
.common-swiper-box[data-v-03580ac0] {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
             -moz-user-select: none;
          user-select: none;
  /*--swiper-theme-color: #ff6600;!* 设置Swiper风格 *!*/
  /*--swiper-pagination-color: #00ff33;!* 分页器颜色设置 *!*/
  /*--swiper-navigation-color: #00ff33;!* 单独设置按钮颜色 *!*/
  /*--swiper-navigation-size: 30px;!* 设置按钮大小 *!*/
}
.common-swiper-box .common-swiper-container[data-v-03580ac0] {
  height: 100%;
}
.common-swiper-box.isHoverShowBtn .swiper-button[data-v-03580ac0] {
  transform: all 0.6s;
  display: none;
}
.common-swiper-box.isHoverShowBtn:hover .swiper-button[data-v-03580ac0] {
  display: block;
}
.common-swiper-box[data-v-03580ac0] .swiper-button-next.swiper-button-disabled,
.common-swiper-box[data-v-03580ac0] .swiper-button-prev.swiper-button-disabled {
  opacity: unset;
  cursor: not-allowed;
  pointer-events: visible;
  color: #c6c8d1;
}
.common-swiper-box[data-v-03580ac0] .swiper-button-next.swiper-button-disabled .icon2017,
.common-swiper-box[data-v-03580ac0] .swiper-button-prev.swiper-button-disabled .icon2017 {
  opacity: 0.6;
}
.common-swiper-box[data-v-03580ac0] .swiper-button-next.swiper-button-disabled:hover,
.common-swiper-box[data-v-03580ac0] .swiper-button-prev.swiper-button-disabled:hover {
  color: #c6c8d1;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-menu-content {
  background-color: #fff;
  box-sizing: border-box;
  border-right: 1px solid #e1e2e6;
  z-index: 2;
}
.com-menu-content .ps__scrollbar-y-rail {
  z-index: 1;
}
.com-menu-content.scroll {
  overflow-y: scroll !important;
}
.com-menu-content.darkMode {
  background: #202437;
}
.com-menu-content.darkMode .btnClass {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.com-menu-content.darkMode .btnText {
  color: rgba(255, 255, 255, 0.6);
}
.com-menu-content.darkMode > .com-menu::after {
  content: "";
  width: 100%;
  height: 10px;
  display: block;
  background: #202437;
}
.com-menu-content.darkMode .com-menu {
  background: #202437;
  color: #ffffff;
}
.com-menu-content.darkMode .com-menu .com-menu-submenu-title {
  color: #ffffff;
}
.com-menu-content.darkMode .com-menu .com-menu-item-content {
  color: rgba(255, 255, 255, 0.6);
}
.com-menu-content.darkMode .com-menu .com-menu-submenu-title:hover,
.com-menu-content.darkMode .com-menu .com-menu-item:hover,
.com-menu-content.darkMode .com-menu .com-menu-item-active {
  background: rgba(255, 255, 255, 0.1);
}
.com-menu-content.darkMode .com-menu .com-menu-submenu-title:hover .com-menu-item-content,
.com-menu-content.darkMode .com-menu .com-menu-item:hover .com-menu-item-content,
.com-menu-content.darkMode .com-menu .com-menu-item-active .com-menu-item-content {
  color: #ffffff;
}
.com-menu-content.darkMode .com-menu .menu-title .com-menu-submenu-title-content-left span {
  font-size: 16px;
  font-weight: 700 !important;
}
.com-menu-content.darkMode .com-menu .menu-title:hover {
  background: unset;
}
.com-menu-content.darkMode .com-menu .com-menu-submenu-title {
  padding-left: 20px;
}
.com-menu-content.darkMode .com-menu .com-menu-item {
  padding-left: 26px !important;
}
.com-menu-content.darkMode .com-menu .com-menu-item.com-menu-no-child {
  padding-left: 17px !important;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.com-menu-content.darkMode .com-menu .com-menu-item.com-menu-no-child .com-menu-item-content {
  color: #FFF;
}


[data-v-445a9bfb] .com-menu .com-menu-submenu-title .com-menu-submenu-title-content .com-menu-submenu-title-content-left {
    font-size: 14px;
    font-weight: 600;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-form-item {
  position: relative;
  margin-bottom: 20px;
}
.com-form-content.content-error .chime-input,
.com-form-content.content-error .com-dropdown-label:not(.noborder) {
  border: solid 1px #f0454c;
}
.com-form-content.content-error .form-content-item {
  border: solid 1px #f0454c;
}
.com-form-content.content-error .com-query-select .content {
  border: solid 1px #f0454c;
}
.com-form-label {
  text-align: left;
  float: left;
  font-size: 14px;
  line-height: 36px;
  color: #515666;
  padding: 0 12px 0 0;
}
.com-form-label .require-marker {
  color: #f0454c;
}
.com-form-label .icon-help_02 {
  color: #c6c8d1;
  font-size: 14px;
  font-weight: 400;
  margin-left: 2px;
  cursor: pointer;
}
.com-form.form-label-right .com-form-label {
  text-align: right;
}
.com-form.form-label-top .com-form-label {
  float: none;
  font-weight: 600;
  display: inline-block;
  text-align: left;
  padding: 0 0 10px;
  line-height: normal;
}
.form-item__error {
  color: #f0454c;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
}
.form-item__warn {
  color: #ffa200;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
}
.com-form-zoom-in-top-enter-active,
.com-form-zoom-in-top-leave-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center top;
}
.com-form-zoom-in-top-enter,
.com-form-zoom-in-top-leave-active {
  opacity: 0;
  transform: scaleY(0);
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-audio-wrap {
  display: flex;
  padding: 0 16px;
  height: 42px;
  border-radius: 4px;
  border: solid 1px #ebecf1;
  background-color: #f6f7fb;
  align-items: center;
}
.com-audio-wrap .play-icon {
  margin-right: 10px;
  font-size: 16px;
  height: 18px;
  line-height: normal;
  color: var(--primary-color);
  cursor: pointer;
}
.com-audio-wrap .play-icon:hover {
  color: #3a9dfc;
}
.com-audio-wrap .audio-time {
  width: 53px;
  color: #515666;
}
.com-audio-wrap .audio-time.end {
  color: #a0a3af;
}
.com-audio-wrap .progress-bar {
  position: relative;
  margin: 0 5px;
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background-color: var(--primary-color);
  cursor: pointer;
}
.com-audio-wrap .current-pos {
  position: absolute;
  top: -7px;
  width: 16px;
  height: 16px;
  border: solid 1px #c6c8d1;
  border-radius: 50%;
  box-shadow: 0 3px 3px 0 rgba(0, 10, 30, 0.1);
  background-color: #ffffff;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 2;
}
.com-audio-wrap .current-pos:hover {
  border: none;
  box-shadow: 0 3px 3px 0 rgba(0, 10, 30, 0.2);
}
.com-audio-wrap .current-pos.active {
  background: var(--primary-color);
}
.com-audio-wrap .current-pos.active::before,
.com-audio-wrap .current-pos:hover::before {
  position: absolute;
  content: "";
  top: 0;
  width: 24px;
  height: 24px;
  background: rgba(36, 146, 252, 0.1);
  border-radius: 50%;
  margin: -4px;
  z-index: -1;
}
.com-audio-wrap .current-pos:not(.active)::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 50%;
}
.com-audio-wrap .complete-bar {
  position: absolute;
  border-radius: 4px;
  left: 0;
  right: 0;
  height: 100%;
  background: #c6c8d1;
  z-index: 1;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.el-tree {
  position: relative;
  cursor: default;
  background: #fff;
  color: #515666;
  font-size: 14px;
  width: 100%;
  overflow: hidden;
}
.el-tree-node {
  white-space: nowrap;
  outline: none;
}
.el-tree-node.is-disabled > .el-tree-node__content .custom-tree-node {
  cursor: not-allowed;
  opacity: 0.4;
}
.el-tree-node.is-current.descendantShowCheck .el-tree-node__content.isSingle {
  color: var(--primary-color);
}
.el-tree-node.is-current.descendantShowCheck .el-tree-node__content.isSingle:before {
  font-family: "chime";
  content: "\E93D";
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.el-tree-node.is-current > .el-tree-node__content.isSingle {
  color: var(--primary-color);
}
.el-tree-node.is-current > .el-tree-node__content.isSingle:before {
  font-family: "chime";
  content: "\E93D";
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.el-tree-node__content {
  display: flex;
  align-items: center;
  height: 32px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
.el-tree-node__content:hover {
  background: #f6f7fb;
}
.el-tree-node__content .icon2017.icon-expand-custom {
  color: #e1e2e6;
  line-height: 32px;
  margin-right: 10px;
  transform: scale(0.83);
  font-size: 10px;
  color: #a0a3af;
}
.el-tree-node__content .icon2017.icon-expand-custom.is-leaf {
  color: transparent;
  cursor: default;
}
.el-tree-node__content .icon2017.icon-expand-custom.expanded {
  transform: rotate(90deg) scale(0.83);
}
.el-tree-node__label {
  font-size: 14px;
}
.el-tree-node .custom-tree-node {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.el-tree-node.is-expanded > .el-tree-node__children {
  display: block;
}
.el-tree__empty-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 12px;
  color: #c6c8d1;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-tag {
  position: relative;
  box-sizing: border-box;
  padding: 0px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  cursor: default;
}
.com-tag.blue {
  color: #2492fc;
  background-color: #e7f6ff;
  border: 1px solid #ceedfe;
}
.com-tag.applyTheme {
  color: var(--primary-color);
  background-color: var(--primary-color-10);
  border: 1px solid var(--primary-color-9);
}
.com-tag.green {
  color: #20c472;
  background-color: #e7ffe3;
  border: 1px solid #bff6c5;
}
.com-tag.red {
  color: #f0454c;
  background-color: #fdece9;
  border: 1px solid #fcd7d2;
}
.com-tag.yellow {
  color: #ffa600;
  background-color: #fef8e4;
  border: 1px solid #faefc0;
}
.com-tag.purple {
  color: #b651f4;
  background-color: #ffe9fc;
  border: 1px solid #fecff7;
}
.com-tag.warning {
  color: #FB6F67;
  border: 1px solid rgba(251, 111, 103, 0.2);
  background-color: rgba(251, 111, 103, 0.1);
}
.com-tag.can-click {
  cursor: pointer;
}
.com-tag.small {
  line-height: 20px;
}
.com-tag.medium {
  line-height: 22px;
}
.com-tag.big {
  line-height: 26px;
}
.com-tag .icon2017 {
  display: inline-block;
  cursor: pointer;
  margin-left: 7px;
  opacity: 0.3;
}
.com-tag:hover .icon2017 {
  opacity: 1;
}
.com-tag.one-line {
  display: inline-flex;
}
.com-tag.no-border {
  border: none;
}

.chime-primary-color[data-v-54f250ec] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-54f250ec]:hover {
  text-decoration: underline;
}
.__calendar-simple-calendar[data-v-54f250ec] {
  margin: 0 20px;
}
.__calendar-simple-calendar .top[data-v-54f250ec] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.__calendar-simple-calendar .top .date[data-v-54f250ec] {
  font-size: 16px;
  line-height: 24px;
  color: #202437;
  font-weight: bold;
}
.__calendar-simple-calendar .top .option-btns[data-v-54f250ec] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.__calendar-simple-calendar .top .option-btns i[data-v-54f250ec] {
  padding: 7px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 10px;
  color: #797e8b;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(32, 36, 55, 0.05);
}
.__calendar-simple-calendar .top .option-btns i + i[data-v-54f250ec] {
  margin-left: 10px;
}
.__calendar-simple-calendar .top .option-btns i[data-v-54f250ec]:hover {
  color: var(--primary-color);
}
.__calendar-simple-calendar .top .option-btns i[data-v-54f250ec]:active {
  background-color: rgba(32, 36, 55, 0.05);
}
.__calendar-simple-calendar .row-text[data-v-54f250ec] {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.__calendar-simple-calendar .row-text + .row-text[data-v-54f250ec] {
  margin-left: 5px;
}
.__calendar-simple-calendar .month-container .title-container[data-v-54f250ec] {
  margin-top: 23px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.__calendar-simple-calendar .month-container .title-container .title-item[data-v-54f250ec] {
  font-size: 12px;
  font-weight: 500;
  color: #515666;
}
.__calendar-simple-calendar .month-container .week-container[data-v-54f250ec] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
}
.__calendar-simple-calendar .month-container .week-container .day-container[data-v-54f250ec] {
  cursor: pointer;
  font-size: 12px;
  color: #515666;
  border-radius: 999px;
}
.__calendar-simple-calendar .month-container .week-container .day-container[data-v-54f250ec]:hover {
  background: rgba(32, 36, 55, 0.05);
  transition: background 0.4s;
}
.__calendar-simple-calendar .month-container .week-container .day-container[data-v-54f250ec]:active {
  background: rgba(32, 36, 55, 0.1);
}
.__calendar-simple-calendar .month-container .week-container .other-month[data-v-54f250ec] {
  color: #a0a3af;
}
.__calendar-simple-calendar .month-container .week-container .today[data-v-54f250ec] {
  color: #fff;
  background-color: var(--primary-color);
}
.__calendar-simple-calendar .month-container .week-container .today[data-v-54f250ec]:hover {
  background-color: var(--primary-color);
}
.__calendar-simple-calendar .month-container .week-container .currtime-day[data-v-54f250ec] {
  color: var(--primary-color);
  position: relative;
}
.__calendar-simple-calendar .month-container .week-container .currtime-day[data-v-54f250ec]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
}

.chime-primary-color[data-v-6dd65ca9] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-6dd65ca9]:hover {
  text-decoration: underline;
}
.__calendar-left-body[data-v-6dd65ca9] {
  padding: 20px 0;
  background-color: #fafbfd;
  border-right: 1px solid #ebecf1;
  display: flex;
  flex-direction: column;
}

.chime-primary-color[data-v-63128800] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-63128800]:hover {
  text-decoration: underline;
}
.__calendar-option-bar[data-v-63128800] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.__calendar-option-bar .container[data-v-63128800] {
  background: #f6f7fb;
  height: 28px;
  padding: 4px;
  border-radius: 18px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.__calendar-option-bar .date-control[data-v-63128800] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.__calendar-option-bar .date-control .today[data-v-63128800] {
  font-size: 14px;
  line-height: 16px;
  color: #515666;
  padding: 6px 16px;
  cursor: pointer;
}
.__calendar-option-bar .date-control .today[data-v-63128800]:hover {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 5px 0 rgba(32, 36, 55, 0.1);
}
.__calendar-option-bar .date-control .today[data-v-63128800]:active {
  background: rgba(32, 36, 55, 0.05);
  border-radius: 14px;
}
.__calendar-option-bar .date-control .ope-date[data-v-63128800] {
  margin-left: 10px;
}
.__calendar-option-bar .date-control .ope-date i[data-v-63128800] {
  padding: 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 12px;
  color: #515666;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(32, 36, 55, 0.05);
}
.__calendar-option-bar .date-control .ope-date i + i[data-v-63128800] {
  margin-left: 10px;
}
.__calendar-option-bar .date-control .ope-date i[data-v-63128800]:hover {
  color: var(--primary-color);
}
.__calendar-option-bar .date-control .ope-date i[data-v-63128800]:active {
  background-color: rgba(32, 36, 55, 0.05);
}
.__calendar-option-bar .date[data-v-63128800] {
  font-size: 20px;
  line-height: 36px;
  color: #202437;
  font-weight: bold;
}
.__calendar-option-bar .modes .mode[data-v-63128800] {
  font-size: 14px;
  line-height: 16px;
  color: #515666;
  padding: 6px 0;
  width: 70px;
  text-align: center;
  cursor: pointer;
}
.__calendar-option-bar .modes .mode + .mode[data-v-63128800] {
  margin-left: 4px;
}
.__calendar-option-bar .modes .mode[data-v-63128800]:hover,
.__calendar-option-bar .modes .curr-mode[data-v-63128800] {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 5px 0 rgba(32, 36, 55, 0.1);
}
.__calendar-option-bar .modes .mode[data-v-63128800]:active {
  background: rgba(32, 36, 55, 0.05);
  border-radius: 14px;
}
.__calendar-option-bar .modes .curr-mode[data-v-63128800] {
  color: var(--primary-color);
}
.__calendar-option-bar .right[data-v-63128800] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.__calendar-option-bar .right .toggle[data-v-63128800] {
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  border-radius: 100%;
  border: solid 1px #e1e2e6;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.__calendar-option-bar .right .toggle i[data-v-63128800] {
  font-size: 15px;
  color: #515666;
}
.__calendar-option-bar .right .toggle:hover i[data-v-63128800] {
  color: var(--primary-color);
}
.__calendar-option-bar .right .toggle[data-v-63128800]:active {
  background-color: rgba(32, 36, 55, 0.05);
}

.chime-primary-color[data-v-1972da68] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-1972da68]:hover {
  text-decoration: underline;
}
.__calendar-background-grid[data-v-1972da68] {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.__calendar-background-grid .time-line[data-v-1972da68] {
  width: 77px;
  flex-shrink: 0;
  border-right: 1px solid #ddd;
}
.__calendar-background-grid .time-line .time-line-item[data-v-1972da68] {
  text-align: right;
  padding-right: 15px;
  height: 60px;
  line-height: 60px;
  transform: translateY(-50%);
  color: #a0a3af;
  font-size: 12px;
}
.__calendar-background-grid .grid[data-v-1972da68] {
  flex-grow: 1;
  position: relative;
}
.__calendar-background-grid .grid .grid-item[data-v-1972da68] {
  height: 60px;
  position: relative;
}
.__calendar-background-grid .grid .grid-item[data-v-1972da68]:nth-child(1)::after {
  content: "";
  display: none;
}
.__calendar-background-grid .grid .grid-item[data-v-1972da68]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  right: 0;
  height: 1px;
  background-color: #ddd;
}
.__calendar-background-grid .grid .currtime[data-v-1972da68] {
  position: absolute;
  z-index: 1000;
}
.__calendar-background-grid .grid .currtime .ball[data-v-1972da68] {
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background: red;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, -50%);
}
.__calendar-background-grid .grid .currtime .line[data-v-1972da68] {
  height: 1px;
  background: red;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.chime-primary-color[data-v-0faf2400] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-0faf2400]:hover {
  text-decoration: underline;
}
.__calendar-notworkinghours-grid[data-v-0faf2400] {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  background-color: transparent;
}
.__calendar-notworkinghours-grid .notworkinghours-cell[data-v-0faf2400] {
  position: absolute;
  width: 100%;
  left: 0;
  overflow: hidden;
  box-sizing: border-box;
  background: repeating-linear-gradient(-45deg, #ebecf1, #ebecf1 8px, #fff 0, #fff 18px);
}

.chime-primary-color[data-v-0679e108] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-0679e108]:hover {
  text-decoration: underline;
}
.__calendar-day[data-v-0679e108] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-day .day-top[data-v-0679e108] {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 2px solid #ebecf1;
  padding-top: 12px;
}
.__calendar-day .day-top .time-zone[data-v-0679e108] {
  flex-shrink: 0;
  width: 77px;
  position: relative;
}
.__calendar-day .day-top .time-zone .curr-time-zone[data-v-0679e108] {
  position: absolute;
  bottom: 12px;
  right: 15px;
  color: #a0a3af;
  font-size: 12px;
  line-height: 20px;
}
.__calendar-day .day-top .title-container[data-v-0679e108] {
  flex-grow: 1;
  border-left: 1px solid #ebecf1;
  padding: 0 10px 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-day .day-top .title-container .day[data-v-0679e108] {
  font-size: 12px;
  color: #202437;
  font-weight: 500;
  line-height: 20px;
}
.__calendar-day .day-top .title-container .date[data-v-0679e108] {
  font-size: 24px;
  line-height: 29px;
  padding-top: 2px;
  font-weight: bold;
}
.__calendar-day .day-top .title-container .cross-day-container[data-v-0679e108] {
  flex-grow: 1;
  overflow-y: auto;
  max-height: 100px;
}
.__calendar-day .day-top .past-day .day[data-v-0679e108],
.__calendar-day .day-top .past-day .date[data-v-0679e108] {
  color: #a0a3af;
}
.__calendar-day .day-top .today .day[data-v-0679e108],
.__calendar-day .day-top .today .date[data-v-0679e108] {
  color: var(--primary-color);
}
.__calendar-day .day-main[data-v-0679e108] {
  min-height: 200px;
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.__calendar-day .day-main[data-v-0679e108]::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.__calendar-day .day-main .new-cal-parent[data-v-0679e108] {
  position: relative;
}
.__calendar-day .day-main .card-container[data-v-0679e108] {
  position: absolute;
  top: 0;
  right: 0;
  left: 77px;
  bottom: 0;
}
.__calendar-day .day-main .card-container .new-cal[data-v-0679e108] {
  position: absolute;
  z-index: 999;
  background: var(--primary-color);
}
.__calendar-day .day-main .card-container .calendar-card[data-v-0679e108] {
  position: absolute;
}
.__calendar-day .day-main .today-container[data-v-0679e108] {
  background: rgba(var(--primary-color-rgb), 0.1);
}

.chime-primary-color[data-v-1894f1de] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-1894f1de]:hover {
  text-decoration: underline;
}
.__calendar-week[data-v-1894f1de] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top[data-v-1894f1de] {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 2px solid #ebecf1;
  padding-top: 12px;
}
.__calendar-week .week-top .time-zone[data-v-1894f1de] {
  flex-shrink: 0;
  width: 77px;
  position: relative;
}
.__calendar-week .week-top .time-zone .curr-time-zone[data-v-1894f1de] {
  position: absolute;
  bottom: 12px;
  right: 15px;
  color: #a0a3af;
  font-size: 12px;
  line-height: 20px;
}
.__calendar-week .week-top .title-container[data-v-1894f1de] {
  flex-grow: 1;
  overflow: hidden;
}
.__calendar-week .week-top .title-container .titlles[data-v-1894f1de] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .title-container .titlles .day-title[data-v-1894f1de] {
  flex: 1;
  border-left: 1px solid #ebecf1;
  padding: 0 5px 5px 5px;
  width: calc(100% / 7);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .title-container .titlles .day-title .day[data-v-1894f1de] {
  font-size: 12px;
  color: #202437;
  font-weight: 500;
  line-height: 20px;
  padding-left: 5px;
}
.__calendar-week .week-top .title-container .titlles .day-title .date[data-v-1894f1de] {
  font-size: 24px;
  line-height: 29px;
  padding-top: 2px;
  font-weight: bold;
  padding-left: 5px;
  color: #202437;
}
.__calendar-week .week-top .title-container .titlles .past-day .day[data-v-1894f1de],
.__calendar-week .week-top .title-container .titlles .past-day .date[data-v-1894f1de] {
  color: #a0a3af;
}
.__calendar-week .week-top .title-container .titlles .today .day[data-v-1894f1de],
.__calendar-week .week-top .title-container .titlles .today .date[data-v-1894f1de] {
  color: var(--primary-color);
}
.__calendar-week .week-top .title-container .cross-day-container-limit[data-v-1894f1de] {
  flex-grow: 1;
  overflow-y: auto;
  max-height: 100px;
}
.__calendar-week .week-top .title-container .cross-day-container-limit .cross-day-container[data-v-1894f1de] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .title-container .cross-day-container-limit .cross-day-container .cross-days[data-v-1894f1de] {
  border-left: 1px solid #ebecf1;
  padding: 0 5px 5px 5px;
  width: calc(100% / 7);
  box-sizing: border-box;
}
.__calendar-week .week-top .title-container .cross-day-container-limit .cross-day-container .cross-day-calendar[data-v-1894f1de] {
  position: relative;
}
.__calendar-week .week-main[data-v-1894f1de] {
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
  min-height: 200px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.__calendar-week .week-main[data-v-1894f1de]::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.__calendar-week .week-main .new-cal-parent[data-v-1894f1de] {
  position: relative;
}
.__calendar-week .week-main .new-cal-parent .day-container[data-v-1894f1de] {
  position: absolute;
  top: 0;
  right: 0;
  left: 77px;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-main .new-cal-parent .day-container .card-container[data-v-1894f1de] {
  flex: 1;
  border-left: 1px solid #ebecf1;
  width: calc(100% / 7);
  box-sizing: border-box;
  position: relative;
}
.__calendar-week .week-main .new-cal-parent .day-container .card-container .calendar-card[data-v-1894f1de] {
  position: absolute;
}
.__calendar-week .week-main .new-cal-parent .day-container .today-container[data-v-1894f1de] {
  background: rgba(var(--primary-color-rgb), 0.1);
}

.chime-primary-color[data-v-333b3a79] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-333b3a79]:hover {
  text-decoration: underline;
}
.__calendar-month[data-v-333b3a79] {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .month-top[data-v-333b3a79] {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 2px solid #ebecf1;
  box-shadow: 0 2px 5px 0 rgba(0, 10, 30, 0.1);
  box-sizing: border-box;
}
.__calendar-month .month-top .day-caontainer[data-v-333b3a79] {
  flex: 1;
  border-left: 1px solid #ebecf1;
  padding: 0px 10px 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .month-top .day-caontainer .day[data-v-333b3a79] {
  font-size: 14px;
  color: #202437;
  font-weight: 500;
  line-height: 20px;
}
.__calendar-month .month-top .day-caontainer[data-v-333b3a79]:nth-child(1) {
  border-left: none;
}
.__calendar-month .day-main[data-v-333b3a79] {
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .day-main .week-container[data-v-333b3a79] {
  flex: 1;
  overflow: hidden;
  flex-basis: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 66px;
}
.__calendar-month .day-main .week-container .day[data-v-333b3a79] {
  flex: 1;
  width: calc(100% / 7);
  box-sizing: border-box;
  padding: 15px 5px 5px 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .day-main .week-container .day .date[data-v-333b3a79] {
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  border-radius: 999px;
  color: #515666;
  flex-shrink: 0;
}
.__calendar-month .day-main .week-container .day .today[data-v-333b3a79] {
  background: var(--primary-color);
  color: #fff !important;
}
.__calendar-month .day-main .week-container .day .other-month[data-v-333b3a79] {
  color: #a0a3af;
}
.__calendar-month .day-main .week-container .day .card-container[data-v-333b3a79] {
  flex-grow: 1;
}
.__calendar-month .day-main .week-container .today-container[data-v-333b3a79] {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.__calendar-month .day-main .week-container .day + .day[data-v-333b3a79] {
  border-left: 1px solid #ebecf1;
}
.__calendar-month .day-main .week-container + .week-container[data-v-333b3a79] {
  border-top: 1px solid #ebecf1;
}

.chime-primary-color[data-v-9d456b3e] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-9d456b3e]:hover {
  text-decoration: underline;
}
.__calendar-week[data-v-9d456b3e] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top[data-v-9d456b3e] {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 2px solid #ebecf1;
  box-shadow: 0 2px 5px 0 rgba(32, 36, 55, 0.05);
  padding-top: 12px;
}
.__calendar-week .week-top .time-zone[data-v-9d456b3e] {
  flex-shrink: 0;
  width: 77px;
  position: relative;
}
.__calendar-week .week-top .time-zone .curr-time-zone[data-v-9d456b3e] {
  position: absolute;
  bottom: 12px;
  right: 15px;
  color: #a0a3af;
  font-size: 12px;
  line-height: 20px;
}
.__calendar-week .week-top .title-container[data-v-9d456b3e] {
  flex-grow: 1;
  overflow: hidden;
}
.__calendar-week .week-top .title-container .titlles[data-v-9d456b3e] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .title-container .titlles .day-title[data-v-9d456b3e] {
  flex: 1;
  border-left: 1px solid #ebecf1;
  padding: 0 5px 5px 5px;
  width: calc(100% / 7);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .title-container .titlles .day-title .day[data-v-9d456b3e] {
  font-size: 12px;
  color: #202437;
  font-weight: 500;
  line-height: 20px;
  padding-left: 5px;
}
.__calendar-week .week-top .title-container .titlles .day-title .date[data-v-9d456b3e] {
  font-size: 24px;
  line-height: 29px;
  padding-top: 2px;
  font-weight: bold;
  padding-left: 5px;
  color: #202437;
}
.__calendar-week .week-top .title-container .titlles .past-day .day[data-v-9d456b3e],
.__calendar-week .week-top .title-container .titlles .past-day .date[data-v-9d456b3e] {
  color: #a0a3af;
}
.__calendar-week .week-top .title-container .titlles .today .day[data-v-9d456b3e],
.__calendar-week .week-top .title-container .titlles .today .date[data-v-9d456b3e] {
  color: var(--primary-color);
}
.__calendar-week .week-top .title-container .cross-day-container-limit[data-v-9d456b3e] {
  flex-grow: 1;
  overflow-y: auto;
  max-height: 100px;
}
.__calendar-week .week-top .title-container .cross-day-container-limit .cross-day-container[data-v-9d456b3e] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .title-container .cross-day-container-limit .cross-day-container .cross-days[data-v-9d456b3e] {
  border-left: 1px solid #ebecf1;
  padding: 0 5px 5px 5px;
  width: calc(100% / 7);
  box-sizing: border-box;
}
.__calendar-week .week-top .title-container .cross-day-container-limit .cross-day-container .cross-day-calendar[data-v-9d456b3e] {
  position: relative;
}
.__calendar-week .week-main[data-v-9d456b3e] {
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
  min-height: 200px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.__calendar-week .week-main[data-v-9d456b3e]::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.__calendar-week .week-main .interval-row[data-v-9d456b3e] {
  width: 100%;
  box-sizing: border-box;
  min-height: 60px;
  display: flex;
}
.__calendar-week .week-main .interval-row__time[data-v-9d456b3e] {
  width: 77px;
  box-sizing: border-box;
  position: relative;
}
.__calendar-week .week-main .interval-row__time_point[data-v-9d456b3e] {
  color: #a0a3af;
  font-size: 12px;
  position: absolute;
  right: 15px;
  bottom: -10px;
}
.__calendar-week .week-main .interval-row__grid[data-v-9d456b3e] {
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
  border-left: 1px solid #ebecf1;
  display: flex;
}
.__calendar-week .week-main .interval-row__grid_cell[data-v-9d456b3e] {
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
}
.__calendar-week .week-main .interval-row__grid_cell[data-v-9d456b3e]:nth-of-type(n + 2) {
  border-left: 1px solid #ebecf1;
}
.__calendar-week .week-main .interval-row__grid .today-cell[data-v-9d456b3e] {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.__calendar-week .week-main .interval-row:nth-of-type(n + 2) .interval-row__grid[data-v-9d456b3e] {
  border-top: 1px solid #ebecf1;
}
.__calendar-week .week-main .interval-row:nth-last-of-type(n + 2) .interval-row__time[data-v-9d456b3e]::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 5px;
  height: 1px;
  background-color: #ebecf1;
}

.chime-primary-color[data-v-05174054] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-05174054]:hover {
  text-decoration: underline;
}
.__calendar-week[data-v-05174054] {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top[data-v-05174054] {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 2px solid #ebecf1;
  box-shadow: 0 2px 5px 0 rgba(0, 10, 30, 0.1);
  padding-top: 12px;
  height: 44px;
  box-sizing: border-box;
}
.__calendar-week .week-top .day-title[data-v-05174054] {
  flex: 1;
  height: 32px;
  border-left: 1px solid #ebecf1;
  padding: 0 10px 12px;
  width: calc(100% / 7);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-week .week-top .day-title .day[data-v-05174054] {
  font-size: 14px;
  color: #202437;
  font-weight: 500;
  line-height: 20px;
}
.__calendar-week .week-top .past-day .day[data-v-05174054] {
  color: #a0a3af;
}
.__calendar-week .week-top .today .day[data-v-05174054] {
  color: var(--primary-color);
}
.__calendar-week .week-main[data-v-05174054] {
  width: 100%;
  min-height: 140px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.__calendar-week .week-main .day-cell[data-v-05174054] {
  flex: 1;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 15px 10px 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.__calendar-week .week-main .day-cell[data-v-05174054]:nth-of-type(n + 2) {
  border-left: 1px solid #ebecf1;
}
.__calendar-week .week-main .day-cell .date[data-v-05174054] {
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  border-radius: 999px;
  color: #515666;
  flex-shrink: 0;
  font-weight: bold;
}
.__calendar-week .week-main .day-cell .data[data-v-05174054] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  flex: 1;
}
.__calendar-week .week-main .past-day .date[data-v-05174054] {
  color: #a0a3af;
}
.__calendar-week .week-main .today-cell[data-v-05174054] {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.__calendar-week .week-main .today-cell .date[data-v-05174054] {
  color: var(--primary-color);
}

.chime-primary-color[data-v-bd9b5d90] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-bd9b5d90]:hover {
  text-decoration: underline;
}
.__calendar-month[data-v-bd9b5d90] {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .month-top[data-v-bd9b5d90] {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 2px solid #ebecf1;
  padding-top: 12px;
  height: 44px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(32, 36, 55, 0.05);
}
.__calendar-month .month-top .day-caontainer[data-v-bd9b5d90] {
  flex: 1;
  border-left: 1px solid #ebecf1;
  padding: 0px 10px 12px;
  height: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .month-top .day-caontainer .day[data-v-bd9b5d90] {
  font-size: 14px;
  color: #202437;
  font-weight: 500;
  line-height: 20px;
}
.__calendar-month .month-top .day-caontainer[data-v-bd9b5d90]:nth-child(1) {
  border-left: none;
}
.__calendar-month .day-main[data-v-bd9b5d90] {
  width: 100%;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.__calendar-month .day-main[data-v-bd9b5d90]::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.__calendar-month .day-main .week-container[data-v-bd9b5d90] {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .day-main .week-container .day[data-v-bd9b5d90] {
  width: calc(100% / 7);
  box-sizing: border-box;
  padding: 15px 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar-month .day-main .week-container .day:hover .add[data-v-bd9b5d90] {
  display: flex;
}
.__calendar-month .day-main .week-container .day .card-header[data-v-bd9b5d90] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.__calendar-month .day-main .week-container .day .date[data-v-bd9b5d90] {
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  border-radius: 999px;
  color: #515666;
  flex-shrink: 0;
}
.__calendar-month .day-main .week-container .day .add[data-v-bd9b5d90] {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: solid 1px #e1e2e6;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: none;
  margin-right: 5px;
}
.__calendar-month .day-main .week-container .day .add i[data-v-bd9b5d90] {
  color: #515666;
  font-size: 13px;
  margin-top: 2px;
}
.__calendar-month .day-main .week-container .day .add[data-v-bd9b5d90]:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 10, 30, 0.1);
}
.__calendar-month .day-main .week-container .day .add[data-v-bd9b5d90]:active {
  background: #ebecf1;
}
.__calendar-month .day-main .week-container .day .today[data-v-bd9b5d90] {
  background: var(--primary-color);
  color: #fff !important;
}
.__calendar-month .day-main .week-container .day .other-month[data-v-bd9b5d90] {
  color: #a0a3af;
}
.__calendar-month .day-main .week-container .day .card-container[data-v-bd9b5d90] {
  width: 100%;
  min-height: 80px;
  overflow: hidden;
  box-sizing: border-box;
}
.__calendar-month .day-main .week-container .today-container[data-v-bd9b5d90] {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.__calendar-month .day-main .week-container .day + .day[data-v-bd9b5d90] {
  border-left: 1px solid #ebecf1;
}
.__calendar-month .day-main .week-container + .week-container[data-v-bd9b5d90] {
  border-top: 1px solid #ebecf1;
}

.chime-primary-color[data-v-335a9bec] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-335a9bec]:hover {
  text-decoration: underline;
}
.__calendar[data-v-335a9bec] {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}
.__calendar .top[data-v-335a9bec] {
  flex-shrink: 0;
}
.__calendar .main[data-v-335a9bec] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  flex-grow: 1;
}
.__calendar .main .left-body[data-v-335a9bec] {
  flex-shrink: 0;
}
.__calendar .main .right-body[data-v-335a9bec] {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.__calendar .main .right-body .option[data-v-335a9bec] {
  flex-shrink: 0;
}
.__calendar .main .right-body .mode-container[data-v-335a9bec] {
  flex-grow: 1;
  overflow: hidden;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.el-input .el-input__suffix {
  display: flex;
  align-items: center;
}
.el-input .icon-cancel_02 {
  font-size: 14px;
  color: #c6c8d1;
}
.el-input .icon-cancel_02:active {
  color: #a0a3af;
}
.el-input .icon-retry:active {
  color: #a0a3af;
}
.el-input .icon-success_01 {
  color: #2cd781;
}
.el-input .icon-error {
  color: #f0454c;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.input-number-comp {
  width: 120px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #c6c8d1;
  display: flex;
  overflow: hidden;
  position: relative;
}
.input-number-comp button {
  width: 30px;
  height: 28px;
  box-sizing: border-box;
  border: 0px;
  outline: none;
  cursor: pointer;
  background: #ffffff;
}
.input-number-comp button.left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.input-number-comp button.right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.input-number-comp button .icon-minimize,
.input-number-comp button .icon-add_bold {
  font-size: 12px;
  transform: scale(0.85);
  display: inline-block;
  color: #797e8b;
}
.input-number-comp button.disabled-btn {
  cursor: not-allowed;
}
.input-number-comp button.disabled-btn .icon-minimize,
.input-number-comp button.disabled-btn .icon-add_bold {
  opacity: 0.4;
}
.input-number-comp button:not(.disabled-btn):hover {
  box-shadow: 0px 1px 3px 0px #2024371a;
}
.input-number-comp button:not(.disabled-btn):active {
  background-color: #ebecf1;
}
.input-number-comp input {
  width: 60px;
  height: 28px;
  border: 0px;
  outline: none;
  border-left: 1px solid #c6c8d1;
  border-right: 1px solid #c6c8d1;
  box-sizing: border-box;
  color: #515666;
  padding-left: 15px;
  font-size: 14px;
}
.input-number-comp.disabled-comp {
  cursor: not-allowed;
  opacity: 0.4;
}
.input-number-comp.disabled-comp button,
.input-number-comp.disabled-comp input {
  cursor: not-allowed;
  pointer-events: none;
}
.input-number-comp .icon-sign {
  position: absolute;
  right: 43px;
  z-index: 10;
  top: 0px;
  color: #515666;
  line-height: 28px;
}


*[data-v-8d621588] {
    box-sizing: border-box;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.chime-input-number-wrap {
  float: none !important;
  margin-left: 0 !important;
}
.chime-input-number-wrap .chime-input-number {
  position: relative;
  display: flex;
  width: 100%;
}
.chime-input-number-wrap .chime-input-number.dollar-sign::before {
  position: absolute;
  content: "$";
  color: #515666;
  left: 10px;
  top: 50%;
  margin-right: 8px;
  transform: translateY(-45%);
  font-weight: 400;
  font-size: 14px;
}
.chime-input-number-wrap .chime-input-number.dollar-sign .chime-input {
  padding-left: 20px;
}
.chime-input-number-wrap .chime-input-number .chime-input {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #515666;
  padding-right: 24px;
  caret-color: var(--primary-color);
  padding-left: 10px;
}
.chime-input-number-wrap .chime-input-number .chime-input:focus {
  border-color: #c6c8d1;
}
.chime-input-number-wrap .chime-input-number .chime-input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #c6c8d1;
}
.chime-input-number-wrap .chime-input-number .chime-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #c6c8d1;
}
.chime-input-number-wrap .chime-input-number_step {
  position: absolute;
  right: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-left: 1px solid #c6c8d1;
}
.chime-input-number-wrap .chime-input-number_step .icon-box {
  color: #a0a3af;
  flex: 1;
  width: 100%;
  height: 50%;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
}
.chime-input-number-wrap .chime-input-number_step .icon-box.add-icon {
  border-bottom: 1px solid #c6c8d1;
}
.chime-input-number-wrap .chime-input-number_step .icon-box .icon2017 {
  font-size: 8px;
}
.chime-input-number-wrap .chime-input-number_step .icon-box .icon2017:hover {
  color: var(--primary-color);
}
.chime-input-number-wrap .chime-input-number-list {
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 0;
  max-height: 240px;
  overflow: auto;
}
.chime-input-number-wrap .chime-input-number-list li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  font-weight: 400;
  font-size: 14px;
  padding: 0px 9px;
  color: #515666;
  cursor: pointer;
  box-sizing: border-box;
}
.chime-input-number-wrap .chime-input-number-list li:hover {
  background: #f6f7fb;
}


*[data-v-15ee67ab] {
    box-sizing: border-box;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.chime-input-number-wrap {
  float: none !important;
  margin-left: 0 !important;
  display: flex;
  align-items: center;
}
.chime-input-number-wrap .trigger-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex-grow: 0;
  padding: 0;
}
.chime-input-number-wrap .trigger-btn .icon-minimize,
.chime-input-number-wrap .trigger-btn .icon-add_bold {
  font-size: 12px;
  display: inline-block;
  color: #797e8b;
  margin-right: 0 !important;
}
.chime-input-number-wrap .trigger-btn.trigger-btn-minus {
  margin: 0;
  margin-right: 10px;
}
.chime-input-number-wrap .trigger-btn.trigger-btn-add {
  margin: 0;
  margin-left: 10px;
}
.chime-input-number-wrap .trigger-btn.disabled-btn {
  cursor: not-allowed;
  background: #F6F7FB;
}
.chime-input-number-wrap .trigger-btn.disabled-btn .icon-minimize,
.chime-input-number-wrap .trigger-btn.disabled-btn .icon-add_bold {
  opacity: 0.4;
}
.chime-input-number-wrap .chime-input-number {
  position: relative;
  display: flex;
  width: 100%;
}
.chime-input-number-wrap .chime-input-number.dollar-sign::before {
  position: absolute;
  content: "$";
  color: #515666;
  left: 10px;
  top: 50%;
  margin-right: 8px;
  transform: translateY(-45%);
  font-weight: 400;
  font-size: 14px;
}
.chime-input-number-wrap .chime-input-number.dollar-sign .chime-input {
  padding-left: 20px;
}
.chime-input-number-wrap .chime-input-number .chime-input {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #515666;
  padding-right: 24px;
  caret-color: var(--primary-color);
  padding-left: 10px;
}
.chime-input-number-wrap .chime-input-number .chime-input:focus {
  border-color: #c6c8d1;
}
.chime-input-number-wrap .chime-input-number .chime-input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #c6c8d1;
}
.chime-input-number-wrap .chime-input-number .chime-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #c6c8d1;
}
.chime-input-number-wrap .chime-input-number_step {
  position: absolute;
  right: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-left: 1px solid #c6c8d1;
}
.chime-input-number-wrap .chime-input-number_step .icon-box {
  color: #a0a3af;
  flex: 1;
  width: 100%;
  height: 50%;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
}
.chime-input-number-wrap .chime-input-number_step .icon-box.add-icon {
  border-bottom: 1px solid #c6c8d1;
}
.chime-input-number-wrap .chime-input-number_step .icon-box .icon2017 {
  font-size: 8px;
}
.chime-input-number-wrap .chime-input-number_step .icon-box .icon2017:hover {
  color: var(--primary-color);
}
.chime-input-number-wrap .number-input-area {
  position: relative;
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
}
.chime-input-number-wrap .number-input-area .inside-unit {
  position: absolute;
  right: 10px;
  color: #C6C8D1;
  text-align: right;
}
.chime-input-number-wrap .number-input-area.width-unit .com-Input input {
  padding-right: 60px;
}
.chime-input-number-wrap .chime-input-number-list {
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 0;
  max-height: 240px;
  overflow: auto;
}
.chime-input-number-wrap .chime-input-number-list li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  font-weight: 400;
  font-size: 14px;
  padding: 0px 9px;
  color: #515666;
  cursor: pointer;
  box-sizing: border-box;
}
.chime-input-number-wrap .chime-input-number-list li:hover {
  background: #f6f7fb;
}

.chime-primary-color[data-v-2bdd7ad3] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-2bdd7ad3]:hover {
  text-decoration: underline;
}
.input-number-scope[data-v-2bdd7ad3] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.input-number-scope_range[data-v-2bdd7ad3] {
  width: 160px;
  margin-right: 10px;
}
.input-number-scope_line[data-v-2bdd7ad3] {
  width: 10px;
  height: 1px;
  background-color: #c6c8d1;
  margin: 0 10px;
  flex-shrink: 0;
}
.input-number-scope_input[data-v-2bdd7ad3] {
  flex-grow: 1;
  box-sizing: border-box;
  min-width: 90px;
  width: initial;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-slider-container {
  position: relative;
}
.com-slider-container .com-tooltip {
  display: none;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  padding: 10px 31px;
  background-color: rgba(36, 146, 252, 0.15);
  box-sizing: border-box;
  position: absolute;
  border-radius: 4px;
  top: -62px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.com-slider-container .com-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 4px solid rgba(36, 146, 252, 0.15);
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.com-slider-container .com-focus-circle {
  position: absolute;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  padding: 6px;
  border-radius: 100px;
  box-shadow: 0 4px 8px 0 rgba(36, 146, 252, 0.2);
  background-color: rgba(36, 146, 252, 0.2);
  top: -9px;
  left: -6px;
}
.com-slider-container .com-slider-content {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  color: #c7cdeb;
  margin-top: 15px;
}
.com-slider-container .com-slider {
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  background-color: #ebecf1;
  background: -webkit-linear-gradient(var(--primary-color), var(--primary-color)) no-repeat, #ebecf1;
  border: 0px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  /*可以修改容器的若干样式*/
  /*可以修改轨道的若干样式*/
  /*可以修改滑块的若干样式*/
  /*firefox浏览器已填充部分*/
  /*IE浏览器*/
  /*滑道未填充的部分*/
  /*滑道已填充的部分*/
}
.com-slider-container .com-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 5px;
}
.com-slider-container .com-slider::-webkit-slider-runnable-track:hover {
  cursor: pointer;
}
.com-slider-container .com-slider:focus {
  outline: none;
}
.com-slider-container .com-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  box-shadow: 0 4px 8px 0 rgba(36, 146, 252, 0.2);
  border: solid 3px #fff;
  background-color: var(--primary-color);
  margin-top: -5px;
  /*使滑块超出轨道部分的偏移量相等*/
  position: relative;
}
.com-slider-container .com-slider::-webkit-slider-thumb:hover {
  cursor: grab;
}
.com-slider-container .com-slider::-moz-range-progress {
  background: linear-gradient(var(--primary-color), var(--primary-color)) no-repeat, rgba(255, 255, 255, 0.1);
  height: 20px;
  border-radius: 10px;
}
.com-slider-container .com-slider::-ms-fill-upper {
  height: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.com-slider-container .com-slider::-ms-fill-lower {
  height: 20px;
  border-radius: 10px;
  background: linear-gradient(var(--primary-color), var(--primary-color)) no-repeat, rgba(255, 255, 255, 0.1);
}

.chime-primary-color[data-v-19a63adb] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-19a63adb]:hover {
  text-decoration: underline;
}
.anchor-scroll[data-v-19a63adb] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  background-color: #FFF;
  max-height: 300px;
}
.anchor-scroll-nav[data-v-19a63adb] {
  border-right: 1px solid #ebecf1;
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 220px;
  max-width: 240px;
}
.anchor-scroll-nav .cell[data-v-19a63adb] {
  width: 100%;
  box-sizing: border-box;
}
.anchor-scroll-nav .cell .title[data-v-19a63adb] {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 20px;
  color: #515666;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}
.anchor-scroll-nav .cell .title span[data-v-19a63adb] {
  flex: 1;
}
.anchor-scroll-nav .cell .title-icon[data-v-19a63adb] {
  position: relative;
  color: #A0A3AF;
  transition: transform 0.2s ease-in-out;
  margin-left: 10px;
  font-weight: 500;
}
.anchor-scroll-nav .cell .title-icon.icon-arrow_01_down[data-v-19a63adb]::before {
  font-family: "chime";
  font-size: 12px;
  text-align: center;
}
.anchor-scroll-nav .cell .active[data-v-19a63adb] {
  color: #202437 !important;
  background-color: #f6f7fb !important;
}
.anchor-scroll-nav .cell .active[data-v-19a63adb]::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
}
.anchor-scroll-nav .cell.nav-open .title-icon[data-v-19a63adb] {
  transform: rotate(180deg);
}
.anchor-scroll-nav .cell-children[data-v-19a63adb] {
  width: 100%;
  box-sizing: border-box;
}
.anchor-scroll-nav .cell-children .option[data-v-19a63adb] {
  padding: 10px 20px 10px 30px;
  color: #515666;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  position: relative;
}
.anchor-scroll-nav .pattern-two .title[data-v-19a63adb] {
  padding: 12px 20px;
  line-height: 16px;
}
.anchor-scroll-nav .pattern-two[data-v-19a63adb]:nth-of-type(n+2) {
  margin-top: 10px;
}
.anchor-scroll-content[data-v-19a63adb] {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}

.chime-primary-color[data-v-3b125a3e] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-3b125a3e]:hover {
  text-decoration: underline;
}
*[data-v-3b125a3e] {
  box-sizing: border-box;
}
.com-switch[data-v-3b125a3e] {
  display: inline-flex;
  align-items: center;
}
.com-switch .com-switch_core[data-v-3b125a3e] {
  position: relative;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  background: var(--primary-color-5);
}
.com-switch .com-switch_core.disabled[data-v-3b125a3e] {
  opacity: 0.4;
  cursor: not-allowed !important;
}
.com-switch .com-switch_core.large[data-v-3b125a3e] {
  line-height: 30px;
  border-radius: 30px;
  min-width: 60px;
  height: 30px;
}
.com-switch .com-switch_core.large.checked .active-text[data-v-3b125a3e] {
  margin: 8px 36px 8px 12px;
}
.com-switch .com-switch_core.large .inactive-text[data-v-3b125a3e] {
  margin: 8px 12px 8px 36px;
}
.com-switch .com-switch_core.large .active-text[data-v-3b125a3e],
.com-switch .com-switch_core.large .inactive-text[data-v-3b125a3e] {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
.com-switch .com-switch_core.large[data-v-3b125a3e]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 100%;
  transition: all 0.2s;
  width: 26px;
  height: 26px;
  box-shadow: 0px 2px 5px rgba(0, 10, 30, 0.1), 0px 1px 2px rgba(0, 10, 30, 0.1);
  background-color: #fff;
}
.com-switch .com-switch_core.large.checked[data-v-3b125a3e]::after {
  left: 100%;
  margin-left: -28px;
}
.com-switch .com-switch_core.small[data-v-3b125a3e] {
  line-height: 20px;
  border-radius: 20px;
  min-width: 40px;
  height: 20px;
}
.com-switch .com-switch_core.small.checked .active-text[data-v-3b125a3e] {
  margin: 3px 26px 3px 12px;
}
.com-switch .com-switch_core.small .inactive-text[data-v-3b125a3e] {
  margin: 3px 12px 3px 26px;
}
.com-switch .com-switch_core.small .active-text[data-v-3b125a3e],
.com-switch .com-switch_core.small .inactive-text[data-v-3b125a3e] {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
.com-switch .com-switch_core.small[data-v-3b125a3e]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 100%;
  transition: all 0.2s;
  width: 16px;
  height: 16px;
  box-shadow: 0px 2px 5px rgba(0, 10, 30, 0.1), 0px 1px 2px rgba(0, 10, 30, 0.1);
  background-color: #fff;
}
.com-switch .com-switch_core.small.checked[data-v-3b125a3e]::after {
  left: 100%;
  margin-left: -18px;
}
.com-switch.disabled[data-v-3b125a3e],
.com-switch_core[data-v-3b125a3e] {
  cursor: pointer;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-timezone-switch {
  width: 24px;
  height: 10px;
  border-radius: 5px;
  display: inline-flex;
  background: #d0d0d0;
  justify-content: flex-end;
  margin: 0px 8px;
  cursor: pointer;
}
.com-timezone-switch .com-timezone-switch-cursor {
  width: 12px;
  height: 12px;
  background: #fff;
  border: solid 1px var(--primary-color);
  border-radius: 50%;
  transform: translateY(-2px);
}
.com-timezone-switch.on {
  background: var(--primary-color);
  justify-content: flex-start;
}

.chime-primary-color[data-v-877594ac] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-877594ac]:hover {
  text-decoration: underline;
}
.cp-timezone[data-v-877594ac] {
  width: 100%;
  position: relative;
}
.cp-timezone .cp-timezone-selected[data-v-877594ac] {
  font-size: 14px;
  line-height: 18px;
  color: #515666;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.cp-timezone .cp-timezone-selected .cp-timezone-text[data-v-877594ac] {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 10px;
}
.cp-timezone .cp-timezone-selected .iconfont[data-v-877594ac] {
  flex-grow: 0;
}
.cp-timezone .cp-timezone-selected .timezone-icon[data-v-877594ac] {
  margin-right: 10px;
  font-size: 14px;
  color: #797e8b;
}
.cp-timezone .cp-timezone-selected .icon-arrow_01_down[data-v-877594ac] {
  color: #a0a3af;
  font-size: 12px;
}
.cp-timezone .cp-timezone-selected.zindex[data-v-877594ac] {
  z-index: 10000;
}
.cp-timezone .cp-timezone-selected.zindex .icon-arrow_01_down[data-v-877594ac] {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
  transform-origin: center;
}
.cp-timezone .cp-timezone-dropdown[data-v-877594ac] {
  width: 100%;
  max-width: 360px;
  padding: 10px 2px 7px 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgba(0, 10, 30, 0.1);
  border: solid 1px #ebecf1;
  background-color: #fff;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list[data-v-877594ac] {
  height: 200px;
  overflow: auto;
  /* 设置滚动条的样式 */
  /* 滚动槽 */
  /* 滚动条滑块 */
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list[data-v-877594ac]::-webkit-scrollbar {
  width: 4px;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list[data-v-877594ac]::-webkit-scrollbar-track {
  border-radius: 10px;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list[data-v-877594ac]::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #dadada;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list li[data-v-877594ac] {
  font-size: 14px;
  line-height: 40px;
  color: #191919;
  display: flex;
  cursor: pointer;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list li .timezone-name[data-v-877594ac] {
  flex: 1;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list li .timezone-time[data-v-877594ac] {
  flex-grow: 0;
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list li.cp-timezone-item.current[data-v-877594ac] {
  color: var(--primary-color);
}
.cp-timezone .cp-timezone-dropdown .cp-timezone-list li.cp-timezone-item[data-v-877594ac]:hover {
  background: #f3f3f3;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-title[data-v-877594ac] {
  font-size: 10px;
  line-height: 13px;
  color: #a0a3af;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 10px 5px 0px;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-title .cp-dropdown-ampm[data-v-877594ac] {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 0px 6px;
  height: 23px;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-title .cp-dropdown-ampm[data-v-877594ac]:hover {
  background: #f3f3f3;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-search[data-v-877594ac] {
  height: 40px;
  border-radius: 5px;
  border: solid 1px #dadada;
  background-color: #fff;
  padding: 8px;
  display: flex;
  justify-content: cetner;
  align-items: center;
  margin-right: 10px;
  caret-color: var(--primary-color);
  box-sizing: border-box;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-search .icon-search_01[data-v-877594ac] {
  font-size: 16px;
  flex-grow: 0;
  margin-right: 10px;
  color: #c6c8d1;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-search input[data-v-877594ac] {
  flex: 1;
  box-shadow: none;
  border: 0;
  outline: 0;
}
.cp-timezone .cp-timezone-dropdown .cp-dropdown-search.focus[data-v-877594ac] {
  border-color: var(--primary-color);
}
.cp-timezone .cp-timezone-mask[data-v-877594ac] {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 9999;
}
.cp-timezone .upcase[data-v-877594ac] {
  text-transform: uppercase;
}

.chime-primary-color[data-v-4dd670fe] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-4dd670fe]:hover {
  text-decoration: underline;
}
.chime-pane[data-v-4dd670fe] {
  border: 1px solid #e1e2e6;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  padding: 5px;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  height: 38px;
  justify-content: flex-start;
  align-items: center;
}
.chime-pane > .chime-pane-btn[data-v-4dd670fe] {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  flex-basis: 24px;
  padding: 0;
  font-size: 12px;
  color: #797e8b;
  flex: 0 0 24px;
  min-width: unset;
  line-height: 24px;
  margin: 0 5px;
  background: #ffffff;
  border: 1px solid #e1e2e6;
  border-radius: 4px;
  text-align: center;
}
.chime-pane > .chime-pane-btn > i[data-v-4dd670fe] {
  margin-right: 0 !important;
}
.chime-pane > .chime-pane-content[data-v-4dd670fe] {
  transition: all 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.chime-primary-color[data-v-4167d4ea] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-4167d4ea]:hover {
  text-decoration: underline;
}
.crm-time-select-body[data-v-4167d4ea] {
  display: flex;
  align-items: center;
}
.crm-time-select-body.is-readonly[data-v-4167d4ea] .com-Input input {
  cursor: pointer;
}
.crm-time-select-body.is-disabled[data-v-4167d4ea] .com-Input input {
  cursor: not-allowed;
}
.crm-time-select-body[data-v-4167d4ea] .el-input__suffix {
  right: 10px;
}
.crm-time-select-body[data-v-4167d4ea] .el-input__suffix i {
  transition: all 0.3s;
}
.crm-time-select-body[data-v-4167d4ea] .el-input--prefix .el-input__inner {
  padding-left: 34px;
}
.crm-time-select-body[data-v-4167d4ea] .el-input__prefix i {
  width: 34px;
  margin-left: 0;
  line-height: 36px;
}
.crm-time-select.open .crm-time-select-body[data-v-4167d4ea] .el-input__suffix i {
  transform: rotateX(180deg);
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.crm-time-select-dropdown-container {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 0;
  overflow: auto;
  max-height: 184px;
  background-color: #fff;
}
.crm-time-select-dropdown-container .time-cell {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 10px;
  background-color: #fff;
}
.crm-time-select-dropdown-container .time-cell:hover {
  background-color: #f6f7fb;
}
.crm-time-select-dropdown-container .time-cell.active .time-cell_text {
  color: var(--primary-color);
}
.crm-time-select-dropdown-container .time-cell_text {
  color: #515666;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.crm-time-select-dropdown-container .time-cell_icon {
  color: var(--primary-color);
  font-size: 16px;
  margin-left: 10px;
  flex-shrink: 0;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.H_ui .H_ib_body {
  margin-right: 0;
  border-radius: 6px;
  transform: translate(50%, 0px);
  background: #ffffff;
  box-shadow: 0px 10px 15px rgba(32, 36, 55, 0.1);
}
.H_ui .H_ib_body .routeline-tip__title {
  font-weight: 700;
}
.H_ui .H_ib_body .routeline-tip__text {
  font-weight: 400;
}
.H_ui .H_ib_body .H_ib_content {
  margin: 10px 20px;
  font-family: "SF UI Text";
  color: #515666;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}
.H_ui .H_ib_close svg.H_icon {
  display: none;
}
.H_ui .H_l_anchor.H_l_vertical {
  display: none;
}
.H_ui .H_l_anchor.H_l_horizontal .H_ctl.H_el {
  display: none;
}
.H_ui .H_ib.H_ib_top .H_ib_tail::after {
  border-width: 10px 10px 0px 10px;
}
.H_ui .H_ib_tail::before {
  border-width: 8px;
}

.chime-primary-color[data-v-6d51b490] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-6d51b490]:hover {
  text-decoration: underline;
}
.com-editable-div-container[data-v-6d51b490] {
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
  line-height: 20px;
  color: #202437;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.com-editable-div-container.disabled[data-v-6d51b490] {
  cursor: not-allowed;
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  outline: none;
  min-height: 20px;
  padding: 0 10px;
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] .com-editable-row {
  min-height: 20px;
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] img {
  border-radius: 6px;
}
.com-editable-div-container .com-editable-content.is-single-img-line[data-v-6d51b490] img {
  display: block;
}
.com-editable-div-container .com-editable-content.is-single-img-line[data-v-6d51b490] .com-image-uploading-container {
  display: table;
}
@keyframes processAnimation-6d51b490 {
0% {
    width: 0%;
}
100% {
    width: 95%;
}
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] .com-image-uploading-container {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  overflow: hidden;
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] .com-image-uploading-container .com-image-uploading-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] .com-image-uploading-container .com-image-uploading-box__process {
  width: 75%;
  height: 6px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.8);
}
.com-editable-div-container .com-editable-content[data-v-6d51b490] .com-image-uploading-container .com-image-uploading-box__process_inner {
  width: 0%;
  border-radius: 4px;
  height: 100%;
  background-color: var(--primary-color);
  animation: processAnimation-6d51b490 2s ease forwards;
}
.com-editable-div-container .com-placeholder[data-v-6d51b490] {
  line-height: 20px;
  color: #c6c8d1;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
}

.chime-primary-color[data-v-3f841f94] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-3f841f94]:hover {
  text-decoration: underline;
}
.com-expression-pop[data-v-3f841f94] {
  width: 420px;
  height: 420px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.com-expression-pop-body[data-v-3f841f94] {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  padding: 20px 20px 0;
  box-sizing: border-box;
  -ms-overflow-style: none;
  -moz-overflow-x: -moz-scrollbars-none;
  scrollbar-width: none;
}
.com-expression-pop-body[data-v-3f841f94]::-webkit-scrollbar {
  display: none;
}
.com-expression-pop-body .expression-icon[data-v-3f841f94] {
  width: 30px;
  height: 30px;
  font-size: 30px;
  margin: 0 0 20px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.com-expression-pop-body .expression-icon[data-v-3f841f94]:nth-of-type(8n + 1) {
  margin-left: 0;
}
.com-expression-pop-footer[data-v-3f841f94] {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 0px 0px 12px 12px;
  border-top: 1px solid #ebecf1;
  background-color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.com-expression-pop-footer .bar-item[data-v-3f841f94] {
  width: 30px;
  height: 30px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.com-expression-pop-footer .bar-item i[data-v-3f841f94] {
  font-size: 16px;
  color: #797e8b;
}
.com-expression-pop-footer .bar-item[data-v-3f841f94]:hover {
  background-color: #f6f7fb;
}
.com-expression-pop-footer .bar-item.active[data-v-3f841f94] {
  background-color: #f6f7fb;
}
.com-expression-pop-footer .bar-item[data-v-3f841f94]:nth-of-type(n + 2) {
  margin-left: 10px;
}

.chime-primary-color[data-v-5f369828] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-5f369828]:hover {
  text-decoration: underline;
}
.com-expression-selector[data-v-5f369828] {
  display: inline-block;
}
.com-expression-selector-body[data-v-5f369828] {
  width: 30px;
  height: 30px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.com-expression-selector-body i[data-v-5f369828] {
  font-size: 16px;
  color: #797e8b;
  position: relative;
  top: 1px;
}
.com-expression-selector-body[data-v-5f369828]:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.com-expression-selector-body:hover i[data-v-5f369828] {
  color: var(--primary-color);
}
.com-expression-selector-body[data-v-5f369828]:active {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.com-expression-selector-body:active i[data-v-5f369828] {
  color: var(--primary-color);
}
.com-expression-selector-body.active[data-v-5f369828] {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.com-expression-selector-body.active i[data-v-5f369828] {
  color: var(--primary-color);
}
.com-expression-selector-body.disabled[data-v-5f369828] {
  background-color: #fff;
  cursor: not-allowed;
}
.com-expression-selector-body.disabled i[data-v-5f369828] {
  color: #797e8b;
}

.chime-primary-color[data-v-87cd2cf0] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-87cd2cf0]:hover {
  text-decoration: underline;
}
*[data-v-87cd2cf0] {
  box-sizing: border-box;
}
.com-postal-code[data-v-87cd2cf0] {
  display: flex;
  width: 100%;
}
.com-postal-code.post-code-error input[data-v-87cd2cf0] {
  border-color: #f0454c;
}
.com-postal-code input[data-v-87cd2cf0] {
  width: var(--input-width);
  height: var(--input-height);
  border-radius: var(--input-border-radius);
  border: 1px solid #e1e2e6;
  background: #fff;
  text-align: center;
  caret-color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}
.com-postal-code input[data-v-87cd2cf0]:focus {
  border-color: var(--primary-color);
}
.com-postal-code input + input[data-v-87cd2cf0] {
  margin-left: 10px;
}

.chime-primary-color[data-v-9ebf3512] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-9ebf3512]:hover {
  text-decoration: underline;
}
*[data-v-9ebf3512] {
  box-sizing: border-box;
}
.performance-tab[data-v-9ebf3512] {
  border-radius: 40px;
  background: #f6f7fb;
  box-sizing: border-box;
  height: var(--tab-height--);
  line-height: var(--tab-height--);
}
.performance-tab .performance-tab-wrap[data-v-9ebf3512] {
  width: 100%;
  position: relative;
  display: flex;
  margin: var(--tab-padding--);
  align-items: center;
}
.performance-tab .tab-item[data-v-9ebf3512] {
  margin: 0;
  padding: 0 10px;
  border-radius: 12px;
  color: #797e8b;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  z-index: 1;
}
.performance-tab .tab-item.active[data-v-9ebf3512] {
  color: var(--primary-color);
  font-weight: 700;
}
.performance-tab .tab-item-light[data-v-9ebf3512] {
  background-color: #fff;
  color: var(--primary-color);
  height: var(--tab-item-light-height--);
  transition: transform 0.3s ease-in-out;
  transform-origin: left;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  width: var(--tab-light-width--);
  transform: var(--tab-light-transform--);
}

.chime-primary-color[data-v-1273f970] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-1273f970]:hover {
  text-decoration: underline;
}
.com-overflow-ellipsis-wrapper[data-v-1273f970] {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.com-overflow-ellipsis-wrapper.is-text .display-cell[data-v-1273f970]:nth-of-type(n + 2) {
  margin-left: var(--eleInterval);
}
.com-overflow-ellipsis-wrapper.is-text .display-cell[data-v-1273f970]:nth-of-type(n + 2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  background-color: #e1e2e6;
  width: 1px;
  height: 14px;
}
.com-overflow-ellipsis-wrapper.is-text .hidden-items__body[data-v-1273f970] {
  display: inline-flex;
}
.com-overflow-ellipsis-wrapper.is-text .hidden-items[data-v-1273f970]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  background-color: #e1e2e6;
  width: 1px;
  height: 14px;
}
.com-overflow-ellipsis-wrapper.is-tag .display-cell[data-v-1273f970]:nth-of-type(n + 2) {
  margin-left: var(--eleInterval);
}
.com-overflow-ellipsis-wrapper .display-items[data-v-1273f970] {
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.com-overflow-ellipsis-wrapper .display-items .display-cell[data-v-1273f970] {
  display: inline-flex;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}
.com-overflow-ellipsis-wrapper .display-items .display-cell .cell-text[data-v-1273f970] {
  color: #515666;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.com-overflow-ellipsis-wrapper .hidden-items[data-v-1273f970] {
  flex-shrink: 0;
  display: inline-block;
  margin-left: var(--moreInterval);
  position: relative;
}
.com-overflow-ellipsis-wrapper .hidden-items .active[data-v-1273f970] {
  background-color: var(--primary-color);
  color: #fff;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag[data-v-1273f970] {
  cursor: pointer;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open[data-v-1273f970] {
  color: #ffffff;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open.applyTheme[data-v-1273f970] {
  background-color: var(--primary-color);
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open.green[data-v-1273f970] {
  background-color: #20c472;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open.red[data-v-1273f970] {
  background-color: #f0454c;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open.yellow[data-v-1273f970] {
  background-color: #ffa600;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open.purple[data-v-1273f970] {
  background-color: #b651f4;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-tag.is-open.warning[data-v-1273f970] {
  background-color: #fb6f67;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-text[data-v-1273f970] {
  height: 20px;
  line-height: 20px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 400;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 6px;
  cursor: pointer;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-text[data-v-1273f970]:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.com-overflow-ellipsis-wrapper .hidden-items .more-item.display-text.is-open[data-v-1273f970] {
  background-color: var(--primary-color);
  color: #fff;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.com-overflow-ellipsis-hidden-dropdown .com-overflow-ellipsis-dropdown {
  width: 240px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
  padding: 15px;
  border-radius: 4px;
}
.com-overflow-ellipsis-hidden-dropdown .com-overflow-ellipsis-dropdown.is-tag {
  width: 360px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.com-overflow-ellipsis-hidden-dropdown .com-overflow-ellipsis-dropdown.is-text {
  width: initial;
  min-width: 240px;
  max-width: 260px;
}
.com-overflow-ellipsis-hidden-dropdown .com-overflow-ellipsis-dropdown .hidden-item-text {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.com-overflow-ellipsis-hidden-dropdown .com-overflow-ellipsis-dropdown .hidden-item-text:nth-of-type(n + 2) {
  margin-top: 10px;
}
.com-overflow-ellipsis-hidden-dropdown .com-overflow-ellipsis-dropdown .hidden-item-text .text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  white-space: nowrap;
  color: #515666;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.chime-primary-color[data-v-d4919410] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-d4919410]:hover {
  text-decoration: underline;
}
*[data-v-d4919410] {
  box-sizing: border-box;
}
.com-month-picker[data-v-d4919410] {
  background: #fff;
  width: 360px;
}
.com-month-picker__content[data-v-d4919410] {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0px;
}
.com-month-picker__item[data-v-d4919410] {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-right: 40px;
}
.com-month-picker__item[data-v-d4919410]:nth-child(4n) {
  padding-right: 0px;
}
.com-month-picker__item.in-range[data-v-d4919410]:not(.in-range-end) {
  background: rgba(var(--primary-color-rgb), 0.05);
}
.com-month-picker__item.in-range[data-v-d4919410] {
  color: #fff;
}
.com-month-picker__item.in-range.in-range-start[data-v-d4919410] {
  border-radius: 12px 0 0 12px;
}
.com-month-picker__item.in-range.in-range-end .month-text-wrap[data-v-d4919410] {
  background: rgba(var(--primary-color-rgb), 0.05);
}
.com-month-picker__item.in-range.in-range-start .month-text[data-v-d4919410],
.com-month-picker__item.in-range.in-range-end .month-text[data-v-d4919410] {
  background: var(--primary-color);
  color: #fff;
}
.com-month-picker__item.in-range[data-v-d4919410]:nth-child(4n + 1) {
  border-radius: 12px 0 0 12px;
}
.com-month-picker__item.in-range[data-v-d4919410]:nth-child(4n) {
  border-radius: 0 12px 12px 0;
}
.com-month-picker__item.selected .month-text[data-v-d4919410] {
  background: var(--primary-color);
  color: #fff;
}
.com-month-picker__item:not(.in-range):not(.selected) .month-text.curr[data-v-d4919410] {
  color: var(--primary-color);
  font-weight: 700;
}
.com-month-picker__item:not(.in-range):not(.selected) .month-text[data-v-d4919410]:not(.disabled):hover {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.com-month-picker__item .month-text[data-v-d4919410] {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #515666;
  font-size: 14px;
  text-align: center;
  border-radius: 12px;
}
.com-month-picker__item .month-text.disabled[data-v-d4919410] {
  cursor: not-allowed;
}
.com-month-picker__footer[data-v-d4919410] {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-top: 1px solid #ebecf1;
}
.com-month-picker__footer .common-btn[data-v-d4919410] {
  color: var(--primary-color);
  font-size: 14px;
  cursor: pointer;
  align-content: center;
}
.com-month-picker__footer .common-btn[data-v-d4919410]:hover {
  text-decoration: underline;
}
.com-month-picker__footer .btn-group[data-v-d4919410] {
  display: flex;
}
.com-month-picker__footer .btn-group > div[data-v-d4919410] {
  display: block;
  align-content: center;
}
.com-month-picker__footer .btn-group .chime-btn + .chime-btn[data-v-d4919410] {
  margin-left: 10px;
}

.chime-primary-color[data-v-3ea5939a] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-3ea5939a]:hover {
  text-decoration: underline;
}
*[data-v-3ea5939a] {
  box-sizing: border-box;
}
.com-tree-container[data-v-3ea5939a] {
  width: 100%;
  height: 100%;
}
.com-tree-container.com-sub-tree[data-v-3ea5939a] {
  position: relative;
}
.com-tree-container.com-sub-tree[data-v-3ea5939a]::before {
  position: absolute;
  width: 1px;
  height: var(--height--);
  background: #e1e2e6;
  content: " ";
  overflow: hidden;
  left: var(--content-before-left--);
  top: -15px;
  z-index: 4;
}
.com-tree-container.com-sub-tree .com-tree__content[data-v-3ea5939a]::before {
  position: absolute;
  left: var(--content-before-left--);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #e1e2e6;
  content: " ";
  overflow: hidden;
  z-index: 4;
}
.com-tree-container .com-tree[data-v-3ea5939a] {
  display: flex;
  flex-direction: column;
  position: relative;
}
.com-tree-container .com-tree__content[data-v-3ea5939a] {
  position: relative;
  display: flex;
  height: 70px;
  z-index: 3;
}
.com-tree-container .com-tree__content.odd[data-v-3ea5939a] {
  background: #fafbfd;
}
.com-tree-container .com-tree__content .left[data-v-3ea5939a] {
  display: flex;
  align-items: center;
  z-index: 1;
  padding-left: var(--left-padding-left--);
  width: var(--left-block-width--);
}
.com-tree-container .com-tree__content .right[data-v-3ea5939a] {
  flex: 1;
}

.chime-primary-color[data-v-475c3ca4] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-475c3ca4]:hover {
  text-decoration: underline;
}
*[data-v-475c3ca4] {
  box-sizing: border-box;
}

.chime-primary-color[data-v-728c1296] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-728c1296]:hover {
  text-decoration: underline;
}
.image-dialog-area[data-v-728c1296] {
  display: block;
  height: 180px;
  border-radius: 4px 20px 20px 20px;
  cursor: pointer;
}

.chime-primary-color[data-v-3d22f486] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-3d22f486]:hover {
  text-decoration: underline;
}
.video-card[data-v-3d22f486] {
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(32, 36, 55, 0.25);
  border-radius: 10px;
  padding: 10px 15px 15px 15px;
  box-sizing: border-box;
}
.video-card .video-title[data-v-3d22f486] {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1a273e;
}
.video-card .video-thumbnail-area[data-v-3d22f486] {
  margin-top: 10px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-card .video-thumbnail-area .video-thumbnail[data-v-3d22f486] {
  display: block;
  width: 100%;
  height: 197px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.video-card .video-thumbnail-area .play-icon-box[data-v-3d22f486] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-card .video-thumbnail-area .play-icon-box .icon-ai-play_02[data-v-3d22f486] {
  font-size: 12px;
  color: #202437;
}
.video-card .video-thumbnail-area .play-icon-box[data-v-3d22f486]:hover {
  background: var(--primary-color);
}
.video-card .video-thumbnail-area .play-icon-box:hover .icon-ai-play_02[data-v-3d22f486] {
  color: #fff;
}

.chime-primary-color[data-v-7cfa50ef] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-7cfa50ef]:hover {
  text-decoration: underline;
}
.bottom-btns-container[data-v-7cfa50ef] {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  justify-content: flex-start;
}
.bottom-btns-container .btn-item[data-v-7cfa50ef] {
  border-radius: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 8px 15px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  min-width: 60px;
  background-color: var(--primary-color-10);
  border: none !important;
  color: var(--primary-color);
  height: unset;
  display: inline-block;
  white-space: unset;
  text-align: left;
}
.bottom-btns-container .btn-item.more-font-weight[data-v-7cfa50ef] {
  font-weight: 500;
}
.bottom-btns-container .btn-item[data-v-7cfa50ef]:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.chime-primary-color[data-v-96180106] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-96180106]:hover {
  text-decoration: underline;
}
.ai-input-box[data-v-96180106] {
  position: relative;
  width: 100%;
  word-break: break-word;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 60px;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 10px;
  box-sizing: border-box;
}
.ai-input-box.more-padding[data-v-96180106] {
  align-items: flex-start;
  padding: 10px 10px 35px 15px;
  border-radius: 12px;
}
.ai-input-box.more-padding.no-input-limit-counter[data-v-96180106] {
  padding-bottom: 15px;
}
.ai-input-box .icon-ai-AI[data-v-96180106] {
  font-size: 16px;
  color: rgba(var(--primary-color-rgb), 0.4);
  margin-right: 10px;
}
.ai-input-box .input-area[data-v-96180106] {
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  flex: 1;
  flex-grow: 2;
  background-color: #fff;
  color: #202437;
  line-height: 20px;
  padding: 0 !important;
  box-sizing: border-box;
  transition: height 0.3s;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
}
.ai-input-box .input-area[data-v-96180106]::-moz-placeholder {
  color: #c6c8d1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.ai-input-box .input-area[data-v-96180106]::placeholder,
.ai-input-box .input-area[data-v-96180106]::-moz-placeholder {
  color: #c6c8d1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.ai-input-box .input-area.is-inputting[data-v-96180106] {
  width: 100%;
  height: 50px;
  max-height: 110px;
  overflow-y: auto;
}
.ai-input-box .input-area.is-not-inputting[data-v-96180106] {
  height: 20px !important;
}
.ai-input-box .right-icon-area[data-v-96180106] {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.ai-input-box .right-icon-box[data-v-96180106] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.ai-input-box .right-icon-box[data-v-96180106]:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}
.ai-input-box .right-icon-box[data-v-96180106]:active {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.ai-input-box .right-icon-box.disabled[data-v-96180106] {
  background-color: #fff;
  cursor: not-allowed;
  opacity: 0.4;
}
.ai-input-box .right-icon-box.disabled .right-icon[data-v-96180106] {
  color: rgba(32, 36, 55, 0.4);
}
.ai-input-box .right-icon-box .right-icon[data-v-96180106] {
  font-size: 16px;
  color: var(--primary-color);
}
.ai-input-box .input-counter[data-v-96180106] {
  position: absolute;
  left: 15px;
  bottom: 10px;
  color: #515666;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.chime-primary-color[data-v-623a5898] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-623a5898]:hover {
  text-decoration: underline;
}
.hyper-link-popover[data-v-623a5898] {
  border-radius: 6px;
  background: rgba(32, 36, 55, 0.95);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 6px 10px;
  box-sizing: border-box;
  display: flex;
  max-width: 300px;
}
.hyper-link-popover .desc-area[data-v-623a5898] {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  box-orient: vertical;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  word-break: break-word;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(20px * 5);
  /* Adjust the multiplier based on your line height */
  line-height: 20px;
  /* Adjust the line height as necessary */
}
.hyper-link-popover .icon-box[data-v-623a5898] {
  margin-left: 5px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hyper-link-popover .icon-box .icon-ai-view_03[data-v-623a5898] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.hyper-link-popover .icon-box[data-v-623a5898]:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.hyper-link-popover .icon-box:hover .icon-ai-view_03[data-v-623a5898] {
  color: #fff;
}

.chime-primary-color[data-v-a12a0d8a] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-a12a0d8a]:hover {
  text-decoration: underline;
}
.hyper-link-wrap[data-v-a12a0d8a] {
  cursor: pointer;
  color: var(--primary-color);
  text-decoration: underline;
  display: inline-block;
}

.chime-primary-color {
  color: var(--primary-color) !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.hyper-link-popover-wrap-cls.com-popover-container {
  z-index: 2001;
}

.chime-primary-color[data-v-bfe4972a] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-bfe4972a]:hover {
  text-decoration: underline;
}
.file-dialog-area[data-v-bfe4972a] {
  display: flex;
  align-items: center;
  width: 300px;
  box-sizing: border-box;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #ebecf1;
  border-radius: 12px;
  cursor: pointer;
}
.file-dialog-area .pdf-icon[data-v-bfe4972a] {
  display: block;
  width: 30px;
  height: 30px;
}
.file-dialog-area .left-file-icon[data-v-bfe4972a] {
  font-size: 30px;
  color: #e1e2e6;
}
.file-dialog-area .file-info[data-v-bfe4972a] {
  margin-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.file-dialog-area .file-info .file-name[data-v-bfe4972a] {
  color: #202437;
}
.file-dialog-area .file-info .file-size[data-v-bfe4972a] {
  margin-top: 2px;
  font-size: 12px;
  color: #a0a3af;
}

.chime-primary-color[data-v-ed22bd54] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-ed22bd54]:hover {
  text-decoration: underline;
}
.dialog-loading-area[data-v-ed22bd54] {
  display: flex;
  margin-top: 30px;
  margin-bottom: 10px;
}
.dialog-loading-area .ai-head[data-v-ed22bd54] {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  background: #fff;
  flex-shrink: 0;
}
.dialog-loading-area .ai-head .icon-ai-AI[data-v-ed22bd54] {
  font-size: 14px;
  color: var(--primary-color);
}
.dialog-loading-area .ai-item-time[data-v-ed22bd54] {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #a0a3af;
}
.dialog-loading-area .loading-area[data-v-ed22bd54] {
  margin-top: 2px;
  border-radius: 4px 20px 20px 20px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(32, 36, 55, 0.1);
  width: 84px;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}
.dialog-loading-area .loading-area .loading-text[data-v-ed22bd54] {
  color: var(--primary-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  overflow-wrap: break-word;
  display: inline-block;
}
.dialog-loading-area .loading-area .loading-text .loading-dot[data-v-ed22bd54] {
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
}
.dialog-loading-area .loading-area .loading-text .loading-dot .dot[data-v-ed22bd54] {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6c8d1;
  animation: dot-pulse-left-ed22bd54 1s infinite ease-in-out;
}
.dialog-loading-area .loading-area .loading-text .loading-dot .dot + .dot[data-v-ed22bd54] {
  margin-left: 10px;
}
.dialog-loading-area .loading-area .loading-text .loading-dot .dot[data-v-ed22bd54]:nth-child(2) {
  animation-delay: 0.2s;
}
.dialog-loading-area .loading-area .loading-text .loading-dot .dot[data-v-ed22bd54]:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dot-pulse-left-ed22bd54 {
0% {
    background: #c6c8d1;
}
50% {
    background: #e1e2e6;
}
100% {
    background: #ebecf1;
}
}
.dialog-loading-area.is-right .loading-area[data-v-ed22bd54] {
  margin-left: auto;
  border-radius: 20px 4px 20px 20px;
  background-color: var(--primary-color);
}
.dialog-loading-area.is-right .loading-area .loading-text[data-v-ed22bd54] {
  color: #fff;
}
.dialog-loading-area.is-right .loading-area .loading-text .loading-dot .dot[data-v-ed22bd54] {
  background: #c6c8d1;
  animation: dot-pulse-right-ed22bd54 1s infinite ease-in-out;
}
@keyframes dot-pulse-right-ed22bd54 {
0% {
    background: #c6c8d1;
}
50% {
    background: #e1e2e6;
}
100% {
    background: #ebecf1;
}
}

.chime-primary-color[data-v-5152fcf4] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-5152fcf4]:hover {
  text-decoration: underline;
}
.lofty-ai-assistant-chat[data-v-5152fcf4] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.lofty-ai-assistant-chat .content-area[data-v-5152fcf4] {
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
  flex: 1;
  flex-grow: 2;
  overflow-x: hidden;
  overflow-y: auto;
  transition: scroll-behavior 0.5s ease-in-out;
  scrollbar-width: none;
}
.lofty-ai-assistant-chat .content-area .line-between-cls[data-v-5152fcf4] {
  color: #a0a3af;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.lofty-ai-assistant-chat .content-area .line-between-cls[data-v-5152fcf4]::before {
  content: "";
  display: inline-block;
  flex: 1;
  background-color: #e1e2e6;
  margin-right: 10px;
  height: 1px;
}
.lofty-ai-assistant-chat .content-area .line-between-cls[data-v-5152fcf4]::after {
  content: "";
  display: inline-block;
  flex: 1;
  background-color: #e1e2e6;
  margin-left: 10px;
  height: 1px;
}
.lofty-ai-assistant-chat .content-area .line-between-cls.message-end-cls[data-v-5152fcf4] {
  margin: 20px 20px 0 20px;
}
.lofty-ai-assistant-chat .content-area .today-time[data-v-5152fcf4] {
  margin-top: 20px;
  color: #a0a3af;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap[data-v-5152fcf4] {
  position: relative;
  margin-top: 20px;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item[data-v-5152fcf4] {
  display: flex;
  position: relative;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-head[data-v-5152fcf4] {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-head .icon-ai-AI[data-v-5152fcf4] {
  font-size: 14px;
  color: var(--primary-color);
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-item-time[data-v-5152fcf4] {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #a0a3af;
  margin-bottom: 2px;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog[data-v-5152fcf4] {
  border-radius: 4px 20px 20px 20px;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(32, 36, 55, 0.25);
  max-width: 100%;
  min-width: 40px;
  padding: 10px 15px;
  box-sizing: border-box;
  position: relative;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog.is-file-dialog[data-v-5152fcf4] {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] {
  color: #202437;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] a,
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .to-edit-blog,
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .try-it-later,
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .to-zendesk-conversation {
  text-decoration: underline;
  color: var(--primary-color);
  cursor: pointer;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .annotation-tag {
  padding: 2px 3px;
  background-color: #f6f7f8;
  border: 1px solid #e1e2e6;
  border-radius: 4px;
  box-sizing: border-box;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .connect-option-li {
  padding-left: 12px;
  color: #202437;
  line-height: 20px;
  list-style-type: none;
  position: relative;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .connect-option-li::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #202437;
  position: absolute;
  top: 8px;
  left: 4px;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .ai-dialog-item .ai-dialog-area .ai-dialog .dialog-content[data-v-5152fcf4] .connect-option-li + :deep(.connect-option-li) {
  margin-top: 6px;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap.special-content-cls[data-v-5152fcf4] {
  margin-top: 10px;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap.special-content-cls .ai-dialog-item .ai-dialog-area .ai-dialog[data-v-5152fcf4] {
  padding: 0;
}
.lofty-ai-assistant-chat .content-area .ai-dialog-item-wrap .outer-component-cls[data-v-5152fcf4] {
  margin-left: 40px;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item[data-v-5152fcf4] {
  margin-top: 20px;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-item-time[data-v-5152fcf4] {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #a0a3af;
  margin-left: auto;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-dialog[data-v-5152fcf4] {
  border-radius: 20px 4px 20px 20px;
  background: var(--primary-color);
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-top: 2px;
  position: relative;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-dialog.is-file-dialog[data-v-5152fcf4] {
  background-color: transparent;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-dialog.is-file-dialog[data-v-5152fcf4] .image-dialog-area {
  border-radius: 20px 4px 20px 20px;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-dialog .dialog-content[data-v-5152fcf4] {
  padding: 10px 15px;
  color: #ffffff;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-dialog .dialog-content[data-v-5152fcf4] a {
  text-decoration: underline;
  cursor: pointer;
  color: var(--primary-color);
}
.lofty-ai-assistant-chat .content-area .user-dialog-item .user-dialog .user-dialog-content[data-v-5152fcf4] a {
  color: #fff !important;
}
.lofty-ai-assistant-chat .content-area .is-history-loading[data-v-5152fcf4] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  box-sizing: border-box;
  transition: 0.5s all;
}
.lofty-ai-assistant-chat .content-area .is-history-loading .icon2017[data-v-5152fcf4] {
  color: #e1e2e6;
  font-size: 20px;
}
.lofty-ai-assistant-chat .content-area .is-history-loading .hide-loading-icon[data-v-5152fcf4] {
  opacity: 0;
}
.lofty-ai-assistant-chat .bottom-area[data-v-5152fcf4] {
  padding: 0 20px 20px 20px;
  flex-shrink: 0;
  box-sizing: border-box;
  border-top: none;
  position: relative;
}
.lofty-ai-assistant-chat .bottom-area .input-box-container-outer[data-v-5152fcf4] {
  display: flex;
}
.lofty-ai-assistant-chat .bottom-area .input-box-container-outer .input-box-container[data-v-5152fcf4] {
  flex: 1;
  flex-grow: 2;
  position: relative;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}
.lofty-ai-assistant-chat .bottom-area .input-box-container-outer .input-box-container .ai-common-input-box-wrap[data-v-5152fcf4] {
  display: flex;
  align-items: center;
  width: 100%;
}
.lofty-ai-assistant-chat .bottom-area .input-box-container-outer .input-box-container .to-bottom-btn[data-v-5152fcf4] {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translate(-50%, -100%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ebecf1;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lofty-ai-assistant-chat .bottom-area .input-box-container-outer .input-box-container .to-bottom-btn .icon2017[data-v-5152fcf4] {
  font-size: 12px;
  color: #515666;
}
.lofty-ai-assistant-chat .bottom-area .input-box-container-outer .input-box-container .to-bottom-btn:hover .icon2017[data-v-5152fcf4] {
  color: var(--primary-color);
}

.chime-primary-color[data-v-714d3549] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-714d3549]:hover {
  text-decoration: underline;
}
.com-tip[data-v-714d3549] {
  position: fixed;
  font-size: 12px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: rgba(32, 36, 55, 0.95);
  box-shadow: 0 4px 8px 0 rgba(0, 10, 30, 0.2);
  color: #c6c8d1;
  z-index: 9999;
  transition: opacity 0.15s linear;
  opacity: 0;
  word-break: break-word;
}
.com-tip.show[data-v-714d3549] {
  opacity: 1;
}
.com-tip-html[data-v-714d3549] {
  padding: 8px 20px;
}
.com-tip-html.plain-text[data-v-714d3549] {
  white-space: pre-wrap;
}
.com-tip.error-tip .com-tip-html[data-v-714d3549] {
  padding: 0;
}
.com-tip .tip-arrow[data-v-714d3549] {
  position: absolute;
  display: inline-block;
  border: 5px solid;
}
.com-tip[x-placement="top-start"] .tip-arrow[data-v-714d3549],
.com-tip[x-placement="bottom-start"] .tip-arrow[data-v-714d3549] {
  left: 20px;
}
.com-tip[x-placement="top-end"] .tip-arrow[data-v-714d3549],
.com-tip[x-placement="bottom-end"] .tip-arrow[data-v-714d3549] {
  left: calc(100% - 20px);
}
.com-tip[x-placement="left-start"] .tip-arrow[data-v-714d3549],
.com-tip[x-placement="right-start"] .tip-arrow[data-v-714d3549] {
  top: 20px;
}
.com-tip[x-placement="left-end"] .tip-arrow[data-v-714d3549],
.com-tip[x-placement="right-end"] .tip-arrow[data-v-714d3549] {
  top: calc(100% - 20px);
}
.com-tip[x-placement^="top"][data-v-714d3549],
.com-tip[x-placement^="bottom"][data-v-714d3549] {
  margin: 8px 0;
}
.com-tip[x-placement^="left"][data-v-714d3549],
.com-tip[x-placement^="right"][data-v-714d3549] {
  margin: 0 8px;
}
.com-tip[x-placement^="top"] .tip-arrow[data-v-714d3549] {
  border-color: rgba(32, 36, 55, 0.95) transparent transparent transparent;
  border-top-color: rgba(32, 36, 55, 0.95);
  bottom: -9px;
}
.com-tip[x-placement^="left"] .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent transparent rgba(32, 36, 55, 0.95);
  border-left-color: rgba(32, 36, 55, 0.95);
  right: -10px;
}
.com-tip[x-placement^="right"] .tip-arrow[data-v-714d3549] {
  border-color: transparent rgba(32, 36, 55, 0.95) transparent transparent;
  border-right-color: rgba(32, 36, 55, 0.95);
  left: -10px;
}
.com-tip[x-placement^="bottom"] .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent rgba(32, 36, 55, 0.95) transparent;
  border-bottom-color: rgba(32, 36, 55, 0.95);
  top: -10px;
}
.com-tip.dark-mode[data-v-714d3549] {
  color: #202437;
  background: rgba(255, 255, 255, 0.95);
}
.com-tip.dark-mode[x-placement^="top"] .tip-arrow[data-v-714d3549] {
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
  border-top-color: rgba(255, 255, 255, 0.95);
  bottom: -9px;
}
.com-tip.dark-mode[x-placement^="left"] .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  border-left-color: rgba(255, 255, 255, 0.95);
  right: -10px;
}
.com-tip.dark-mode[x-placement^="right"] .tip-arrow[data-v-714d3549] {
  border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
  border-right-color: rgba(255, 255, 255, 0.95);
  left: -10px;
}
.com-tip.dark-mode[x-placement^="bottom"] .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
  border-bottom-color: rgba(255, 255, 255, 0.95);
  top: -10px;
}
.com-tip.error-tip[data-v-714d3549] {
  padding: 10px;
  padding-left: 33px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 4px 8px 0 rgba(0, 10, 30, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  line-height: initial;
  text-align: initial;
  font-weight: normal;
}
.com-tip.error-tip.dark-mode[data-v-714d3549] {
  font-size: 12px;
  background-color: rgba(32, 36, 55, 0.95);
  color: #c6c8d1;
}
.com-tip.error-tip.dark-mode[data-v-714d3549]::before {
  background-color: #c6c8d1;
  color: rgba(32, 36, 55, 0.95);
  border-radius: 9px;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
}
.com-tip.error-tip[data-v-714d3549]::before {
  content: "!";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #faa832;
  font-size: 16px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: white;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
}
.com-tip.error-tip[x-placement^="top"] .tip-arrow[data-v-714d3549] {
  border-color: #fff transparent transparent transparent;
  border-top-color: #fff;
}
.com-tip.error-tip[x-placement^="top"].dark-mode .tip-arrow[data-v-714d3549] {
  border-color: rgba(32, 36, 55, 0.95) transparent transparent transparent;
  border-top-color: rgba(32, 36, 55, 0.95);
}
.com-tip.error-tip[x-placement^="left"] .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent transparent #fff;
  border-left-color: #fff;
}
.com-tip.error-tip[x-placement^="left"].dark-mode .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent transparent rgba(32, 36, 55, 0.95);
  border-left-color: rgba(32, 36, 55, 0.95);
}
.com-tip.error-tip[x-placement^="right"] .tip-arrow[data-v-714d3549] {
  border-color: transparent #fff transparent transparent;
  border-right-color: #fff;
}
.com-tip.error-tip[x-placement^="right"].dark-mode .tip-arrow[data-v-714d3549] {
  border-color: transparent rgba(32, 36, 55, 0.95) transparent transparent;
  border-right-color: rgba(32, 36, 55, 0.95);
}
.com-tip.error-tip[x-placement^="bottom"] .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent #fff transparent;
  border-bottom-color: #fff;
}
.com-tip.error-tip[x-placement^="bottom"].dark-mode .tip-arrow[data-v-714d3549] {
  border-color: transparent transparent rgba(32, 36, 55, 0.95) transparent;
  border-bottom-color: rgba(32, 36, 55, 0.95);
}

.chime-primary-color[data-v-df1ab76a] {
  color: var(--primary-color) !important;
}
.hover-underline[data-v-df1ab76a]:hover {
  text-decoration: underline;
}
.com-countdown-wrapper[data-v-df1ab76a] {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}
.com-countdown-wrapper.disabled[data-v-df1ab76a] {
  cursor: not-allowed;
}
.com-countdown-wrapper .display-text[data-v-df1ab76a] {
  color: #3b5cde;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.com-countdown-wrapper .display-text.disabled[data-v-df1ab76a] {
  color: #a0a3af;
}

