.line-limit-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.line-limit-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.button {
    padding: 0.25em 0.5em;
    cursor: pointer;
    font-size: inherit;
    line-height: 1em;
    vertical-align: middle;
    user-select: none;
    border-width: 1px;
    border-style: solid;
    border-radius: 0.25em;
    outline-style: none;
    -moz-user-select: none;
    /*火狐*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -ms-user-select: none;
    /*IE10*/
    -khtml-user-select: none;
    /*早期浏览器*/
}

.button[disabled] {
    cursor: not-allowed;
}

.button {
    color: var(--text-color);
    border-color: #CCC;
    background-color: transparent;
}

.button:focus,
.button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #EEE;
}

.button[disabled],
.button[disabled]:focus,
.button[disabled]:hover {
    color: var(--text-color);
    border-color: var(--text-color);
    opacity: 0.5;
}

.button.plain {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.button.plain:focus,
.button.plain:hover {
    color: white;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.button.plain[disabled],
.button.plain[disabled]:focus,
.button.plain[disabled]:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    opacity: 0.5;
}

.button.primary {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.button.primary:focus,
.button.primary:hover {
    background-color: var(--primary-near-color);
    border-color: var(--primary-near-color);
}

.button.primary[disabled],
.button.primary[disabled]:focus,
.button.primary[disabled]:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.button-group>button {
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.button-group>button:first-child {
    margin-left: 0;
}

.button-group>button:last-child {
    margin-right: 0;
}
.e-input {
    font-size: inherit;
    font-family: inherit;
    padding: 0.25em;
    width: 16em;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline-style: none;
}

.e-input {
    border-color: #CCCCCC;
}

.e-input:focus {
    border-color: var(--primary-color);
}
.e-select {
    font-size: inherit;
    font-family: inherit;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    width: 16em;
    box-sizing: border-box;
}
.e-mock-select {
    display: inline-block;
    width: 16em;
}

.e-mock-select-box {
    border-color: #CCCCCC;
}

.e-mock-select-box.s-empty {
    color: rgb(117, 117, 117);
}

.e-mock-option-panel {
    border-color: #CCCCCC;
    background-color: #FFFFFF;
}

.e-mock-option:hover {
    background-color: #F8F8F8;
}

.e-mock-search-input {
    border-width: 1px;
    border-style: solid;
    outline-style: none;
    border-color: #CCCCCC;
}

.e-mock-search-input:focus {
    border-color: var(--primary-color);
}
@-webkit-keyframes rotateLoading {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotateLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0.5em;
    border-color: var(--primary-color);
    border-top-color: var(--background-color1);
    border-radius: 50%;
    width: 3em;
    height: 3em;
    display: inline-block;
    -webkit-animation-name: rotateLoading;
    animation-name: rotateLoading;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 0.00001ms;
    animation-delay: 0.00001ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
.e-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #168DD6;
    color: #fff;
}
.popup-root {
  position: fixed;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

.popup-content {
  display: inline-block;
  text-align: left;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.popup-content.active {
  transform: translateY(8em);
}
.msg-success,
.msg-warning,
.msg-error {
  min-width: 20em;
  max-width: 32em;
  padding: 0.75em 1em;
  border-radius: 0.25em;
  border-width: 1px;
  border-style: solid;
}

.msg-success {
  color: #67c23a;
  background-color: #f0f9eb;
  border-color: #e1f3d8;
}

.msg-warning {
  color: #e6a23c;
  background-color: #fdf6ec;
  border-color: #faecd8;
}

.msg-error {
  color: #f56c6c;
  background-color: #fef0f0;
  border-color: #fde2e2;
}
.e-unit-input.e-btn-sub,
.e-unit-input.e-btn-add {
    background: transparent;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0.25em;
    width: 2em;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
}

.e-unit-input.e-btn-sub {
    border-right-style: none;
}

.e-unit-input.e-btn-add {
    border-left-style: none;
}
.steps>.seperator {
    vertical-align: middle;
    margin-left: 1em;
    margin-right: 1em;
}

.steps>.step.finish {
    color: var(--primary-color);
}

.steps>.step.process {
    color: var(--text-color);
}

.steps>.step.wait {
    color: gray;
}
.header-bar.link {
    color: #FFF;
    padding: 0.5em;
    text-decoration-line: none;
    border-radius: 0.25em;
}

.header-bar.link:hover {
    background-color: var(--primary-color);
}
.theme-default .configurable-attribute-image,
.theme-default .configurable-attribute-value {
  border-color: transparent;
  border-style: solid;
  border-width: 2px;
}
.theme-default .configurable-attribute-image.active,
.theme-default .configurable-attribute-value.active {
  border-color: var(--primary-color);
}
.theme-default .configurable-attribute-value {
  background-color: #DDD;
}
.theme-default .icon-cart {
  background-color: transparent;
  padding: 0;
  border-style: none;
  cursor: pointer;
}
.theme-default .scale-larger {
  width: 90%;
  height: 90%;
  transition: transform 0.5s;
}
.theme-default .scale-larger:hover {
  transform: scale(1.11);
}
.theme-default .rich-text img {
  max-width: 100%;
}

