/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/keystonejs/react-select
*/
.Select {
  position: relative;
  width: inherit;
}
.Select__control {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-style: solid;
  border-width: 0.01rem;
  border-color: #3c3c3c;
  border-radius: 0.04rem;
  cursor: default;
  outline: none;
  padding: 0.035rem 0.46rem 0.035rem 0.1rem;
  color: #2f2f2f;
  font-size: 0.14rem;
  text-align: left;
  line-height: 0.21rem;
}
.Select__control:hover {
  border-color: #848484;
}
.Select__control--is-focused {
  border-color: #4a90e2;
}
.qvs-select_error .Select__control {
  border-color: #c1272d;
}
.Select--is-disabled .Select__control {
  color: #aeaeae;
  border-color: #aaaaaa;
  background-color: #fafafa;
}
.Select__indicators {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 0.3rem;
  padding: 0.1rem;
}
.Select__control:hover > .Select__dropdown-indicator {
  border-color: #848484 transparent transparent;
}
.Select__dropdown-indicator {
  border-color: #3c3c3c transparent transparent;
  border-style: solid;
  border-width: 0.06rem 0.05rem 0;
  content: " ";
  display: block;
  height: 0;
  right: 0.05rem;
  top: 0.105rem;
  width: 0;
  padding: 0;
}
.Select__control--is-focused .Select__dropdown-indicator {
  border-color: #4a90e2 transparent transparent;
}
.qvs-select_error .Select__dropdown-indicator {
  border-color: #c1272d transparent transparent;
}
.Select__control--menu-is-open .Select__dropdown-indicator {
  border-color: transparent transparent #4a90e2 transparent;
  border-width: 0 0.05rem 0.06rem;
}
.Select--is-disabled .Select__dropdown-indicator {
  border-color: #aaaaaa transparent transparent;
}
.Select__dropdown-indicator > svg {
  display: none;
}
.Select__menu {
  background-color: #fff;
  border: 0.01rem solid #aaaaaa;
  -webkit-box-shadow: 0 0.02rem 0.08rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.02rem 0.08rem 0 rgba(0, 0, 0, 0.2);
  margin-top: 0.05rem;
  border-radius: 0.04rem;
  max-height: 2rem;
  padding: 0.1rem 0;
  position: fixed;
  width: inherit;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.Select__option {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3c3c3c;
  cursor: pointer;
  display: block;
  padding: 0.06rem 0.1rem 0.05rem;
  line-height: 0.21rem;
  font-size: 0.14rem;
  font-family: Helvetica;
}
.Select__option--is-focused {
  background-color: #edf2ff;
}
.Select__option--is-disabled {
  color: #aeaeae;
  cursor: not-allowed;
}
.log-select .Select__control {
  cursor: pointer;
  border-color: #e4e4e4;
  padding: 0px 0.46rem 0px 0.1rem;
}
.log-select .Select-placeholder {
  padding: 0px 0.46rem 0px 0.1rem;
}
.log-select .Select-value {
  padding: 0px 0.46rem 0px 0.1rem;
}
.log-select .Select-clear {
  padding: -2px 0.1rem;
}
.log-select .Select__dropdown-indicator {
  border-color: #0278d1 transparent transparent;
  top: 1.06px;
}
.log-select .Select__control:hover .Select__dropdown-indicator {
  border-color: #000000 transparent transparent;
}
.log-select .Select__menu {
  top: auto;
  bottom: calc(100% + 0.05rem);
}
.log-select.has-value > .Select__control .Select-value {
  color: #0278d1;
}
.qvs-select .Select__control,
.qvs-select .Select-placeholder,
.qvs-select .Select-value {
  padding-right: 14px;
}
.qvs-select .Select__control:hover,
.qvs-select .Select__menu {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.qvs-select .Select__option--is-focused:not(.Select__option--is-open) > .Select__control {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.qvs-select .Select__multi-value {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.qvs-select-top-menu {
  width: inherit;
}
.qvs-select-top-menu .Select__menu {
  top: auto;
}
.select-hidden-menu .Select__menu {
  visibility: hidden;
}
.Select__value-container {
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 0.12rem);
}
.Select_iso {
  display: inline;
}

.modal-background {
  display: inline-block;
  position: relative;
  -webkit-box-shadow: 0 0.03rem 0.08rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.03rem 0.08rem 0 rgba(0, 0, 0, 0.3);
  border: 0.01rem solid #A6A6A6;
  border-radius: 0.08rem;
  background-color: #fff;
  text-align: left;
}
.modal-background.non-focus {
  border: 0.01rem solid #d8d8d8;
  -webkit-box-shadow: 0 0.03rem 0.08rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.03rem 0.08rem 0 rgba(0, 0, 0, 0.15);
}
.modal-header {
  padding: 0rem 0.24rem;
  min-height: 0.58rem;
}
.modal-header > .header-title {
  font-family: Roboto-Medium;
  font-size: 0.2rem;
  color: #000000;
  text-align: left;
  padding: 0.17rem 0;
}
.modal-body {
  margin: 0rem 0rem 0rem 0.35rem;
  padding-right: 0.35rem;
  position: relative;
  cursor: default;
}
.modal-body-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0rem 0.35rem;
}
.modal-footer > .button-wrapper {
  padding: 0.2rem 0 0.24rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.modal-footer > .button-wrapper > .qvs-button {
  margin-left: 0.08rem;
}
.modal-footer > .children-wrapper {
  padding: 0.24rem 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.edit-vm-modal-body {
  margin: 0 0.24rem;
  width: 100%;
  padding-right: 0rem;
}
.default-modal-body {
  width: 100%;
  margin-top: 0.1rem;
}

.qvs-button-dropdown {
  display: inline-block;
  vertical-align: middle;
}
.qvs-button-close-icon {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.657 8.343a1 1 0 010 1.414L15.414 14l4.243 4.243a1 1 0 01-1.414 1.414L14 15.414l-4.243 4.243a1 1 0 01-1.414-1.414L12.586 14 8.343 9.757a1 1 0 011.414-1.414L14 12.586l4.243-4.243a1 1 0 011.414 0z' fill='%232F2F2F' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-size: 0.28rem auto;
  width: 0.28rem;
  height: 0.28rem;
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  cursor: pointer;
}
.qvs-button-close-icon-white {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.657 8.343a1 1 0 010 1.414L15.414 14l4.243 4.243a1 1 0 01-1.414 1.414L14 15.414l-4.243 4.243a1 1 0 01-1.414-1.414L12.586 14 8.343 9.757a1 1 0 011.414-1.414L14 12.586l4.243-4.243a1 1 0 011.414 0z' fill='%23D6D6D6' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-size: 0.28rem auto;
  width: 0.28rem;
  height: 0.28rem;
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  cursor: pointer;
}
.qvs-button {
  display: inline-block;
  cursor: pointer;
  font-family: Roboto-Medium;
  font-size: 0.14rem;
  text-align: center;
  height: 0.28rem;
  line-height: 0.28rem;
  padding: 0 0.22rem;
  min-width: 0.36rem;
  border-radius: 0.04rem;
  border-width: 0.01rem;
  border-style: solid;
  border-color: #2f2f2f;
  color: #2f2f2f;
  background-color: #fff;
}
.qvs-button > .dropdown {
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 14.231c-.612.837-1.607.833-2.216 0l-2.615-3.573c-.612-.837-.181-1.515.965-1.515h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' fill='%232F2F2F' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 9.769c-.612-.837-1.607-.833-2.216 0l-2.615 3.573c-.612.837-.181 1.515.965 1.515h5.516c1.144 0 1.573-.682.964-1.515L13.109 9.77z' fill='%232F2F2F' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button:hover,
.qvs-button.hover {
  color: #6b6e6e;
  border-color: #2f2f2f;
}
.qvs-button:hover > .dropdown,
.qvs-button.hover > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 14.231c-.612.837-1.607.833-2.216 0l-2.615-3.573c-.612-.837-.181-1.515.965-1.515h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' fill='%23848484' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button:hover.active > .dropdown,
.qvs-button.hover.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 9.769c-.612-.837-1.607-.833-2.216 0l-2.615 3.573c-.612.837-.181 1.515.965 1.515h5.516c1.144 0 1.573-.682.964-1.515L13.109 9.77z' fill='%23848484' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button:active,
.qvs-button:focus {
  color: #000;
  border-color: #000;
}
.qvs-button:active > .dropdown,
.qvs-button:focus > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 14.231c-.612.837-1.607.833-2.216 0l-2.615-3.573c-.612-.837-.181-1.515.965-1.515h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' fill='%234A90E2' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button:active.active > .dropdown,
.qvs-button:focus.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 9.769c-.612-.837-1.607-.833-2.216 0l-2.615 3.573c-.612.837-.181 1.515.965 1.515h5.516c1.144 0 1.573-.682.964-1.515L13.109 9.77z' fill='%234A90E2' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.disabled {
  color: #aeaeae;
  border-color: #aeaeae;
  cursor: not-allowed;
}
.qvs-button.disabled > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 14.231c-.612.837-1.607.833-2.216 0l-2.615-3.573c-.612-.837-.181-1.515.965-1.515h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' fill='%23AEAEAE' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.error > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 14.231c-.612.837-1.607.833-2.216 0l-2.615-3.573c-.612-.837-.181-1.515.965-1.515h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' fill='%23C1272D' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.error.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.109 9.769c-.612-.837-1.607-.833-2.216 0l-2.615 3.573c-.612.837-.181 1.515.965 1.515h5.516c1.144 0 1.573-.682.964-1.515L13.109 9.77z' fill='%23C1272D' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.inline-justify {
  padding: 0rem 0.02rem 0rem 0.1rem;
}
.qvs-button.radius-button.dropdown-button:not(.combo) {
  padding: 0rem 0.1rem 0rem 0.22rem;
}
.qvs-button.combo {
  padding-right: 0rem;
}
.qvs-button.combo.has-icon {
  padding-left: 0.14rem;
}
.qvs-button.combo > .dropdown {
  margin: 0.02rem 0.04rem 0.02rem 0rem;
  border-left: 0;
  border-left: initial;
}
.qvs-button.combo.contained > .dropdown,
.qvs-button.combo.dark > .dropdown,
.qvs-button.combo.blue > .dropdown {
  border-left: 0;
  border-left: initial;
}
.qvs-button.combo > .combo-divide {
  margin: 0.08rem 0rem 0.08rem 0.11rem;
  border-left: 0.01rem solid rgba(0, 0, 0, 0.5);
}
.qvs-button.combo.blue > .combo-divide {
  border-left: 0.01rem solid rgba(255, 255, 255, 0.5);
}
.qvs-button.contained,
.qvs-button.dark {
  color: #fff;
  border-color: #332f49;
  background-color: #332f49;
}
.qvs-button.contained > .dropdown,
.qvs-button.dark > .dropdown {
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.contained:hover,
.qvs-button.dark:hover,
.qvs-button.contained.hover,
.qvs-button.dark.hover {
  border-color: #4e4a67;
  background-color: #4e4a67;
}
.qvs-button.contained:active,
.qvs-button.dark:active,
.qvs-button.contained:focus,
.qvs-button.dark:focus,
.qvs-button.contained.active,
.qvs-button.dark.active {
  border-color: #171428;
  background-color: #171428;
}
.qvs-button.contained:active > .dropdown,
.qvs-button.dark:active > .dropdown,
.qvs-button.contained:focus > .dropdown,
.qvs-button.dark:focus > .dropdown,
.qvs-button.contained.active > .dropdown,
.qvs-button.dark.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' transform='matrix(1 0 0 -1 0 23.714)' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.contained.disabled,
.qvs-button.dark.disabled {
  border-color: #d6d6d6;
  background-color: #d6d6d6;
}
.qvs-button.contained.disabled > .dropdown,
.qvs-button.dark.disabled > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23AAA' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.blue {
  color: #fff;
  border-color: #B69DFF;
  background-color: #5E4CD8;
}
.qvs-button.blue > .dropdown {
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.blue:hover,
.qvs-button.blue.hover {
  border-color: #B69DFF;
  background-color: #5039E7;
}
.qvs-button.blue:active,
.qvs-button.blue:focus,
.qvs-button.blue.active {
  border-color: #7BD1FF;
  background-color: #5039E7;
}
.qvs-button.blue:active > .dropdown,
.qvs-button.blue:focus > .dropdown,
.qvs-button.blue.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' transform='matrix(1 0 0 -1 0 23.714)' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.blue.disabled {
  border-color: #d6d6d6;
  background-color: #d6d6d6;
}
.qvs-button.blue.disabled > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23AAA' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.dark {
  color: #fff;
  border-color: #332f49;
  background-color: #332f49;
  background-color: #000;
}
.qvs-button.dark > .dropdown {
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.dark:hover,
.qvs-button.dark.hover {
  border-color: #4e4a67;
  background-color: #4e4a67;
}
.qvs-button.dark:active,
.qvs-button.dark:focus,
.qvs-button.dark.active {
  border-color: #171428;
  background-color: #171428;
}
.qvs-button.dark:active > .dropdown,
.qvs-button.dark:focus > .dropdown,
.qvs-button.dark.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' transform='matrix(1 0 0 -1 0 23.714)' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.dark.disabled {
  border-color: #d6d6d6;
  background-color: #d6d6d6;
}
.qvs-button.dark.disabled > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23AAA' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.dark:hover,
.qvs-button.dark.hover {
  background-color: #000;
}
.qvs-button.dark:active,
.qvs-button.dark:focus {
  background-color: #000;
}
.qvs-button.dark.disabled {
  background-color: #000;
}
.qvs-button.browser {
  border: none;
  color: #fff;
  border-color: #332f49;
  background-color: #332f49;
  background-color: #2a80eb;
}
.qvs-button.browser > .dropdown {
  display: inline-block;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.browser:hover,
.qvs-button.browser.hover {
  border-color: #4e4a67;
  background-color: #4e4a67;
}
.qvs-button.browser:active,
.qvs-button.browser:focus,
.qvs-button.browser.active {
  border-color: #171428;
  background-color: #171428;
}
.qvs-button.browser:active > .dropdown,
.qvs-button.browser:focus > .dropdown,
.qvs-button.browser.active > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFF' transform='matrix(1 0 0 -1 0 23.714)' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.browser.disabled {
  border-color: #d6d6d6;
  background-color: #d6d6d6;
}
.qvs-button.browser.disabled > .dropdown {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M13.109 14.088c-.612.837-1.607.833-2.216 0l-2.615-3.573C7.666 9.678 8.097 9 9.243 9h5.516c1.144 0 1.573.682.964 1.515l-2.614 3.573z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23AAA' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.24rem auto;
  width: 0.24rem;
  height: 0.24rem;
}
.qvs-button.browser:hover,
.qvs-button.browser.hover {
  background-color: #67a4f2;
}
.qvs-button.browser:active,
.qvs-button.browser:focus {
  background-color: #3876c3;
}
.qvs-button.browser.disabled {
  background-color: #d6d6d6;
}
.qvs-button.radius-button {
  height: 0.28rem;
  border-radius: 0.14rem;
}
.qvs-button.has-icon,
.qvs-button.combo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.qvs-button > .icon {
  margin: auto 0.08rem auto 0;
}
.qvs-button > .icon .qvs-button-icon-hover {
  opacity: 0.8;
}
.qvs-button > .icon .qvs-button-icon-disabled {
  opacity: 0.4;
}

.radio.disabled > input[type="checkbox"] + label:before,
.radio-inline.disabled > input[type="checkbox"] + label:before,
.checkbox.disabled > input[type="checkbox"] + label:before,
.checkbox-inline.disabled > input[type="checkbox"] + label:before,
.radio:disabled > input[type="checkbox"] + label:before,
.radio-inline:disabled > input[type="checkbox"] + label:before,
.checkbox:disabled > input[type="checkbox"] + label:before,
.checkbox-inline:disabled > input[type="checkbox"] + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect stroke='%23D6D6D6' x='2.5' y='2.5' width='15' height='15' rx='4' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"]:hover + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"]:hover + label:before,
.checkbox:not(.disabled) > input[type="checkbox"]:hover + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"]:hover + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect stroke='%23848484' x='2.5' y='2.5' width='15' height='15' rx='4' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"] + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"] + label:before,
.checkbox:not(.disabled) > input[type="checkbox"] + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"] + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect stroke='%232F2F2F' x='2.5' y='2.5' width='15' height='15' rx='4' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio.disabled > input[type="checkbox"]:checked + label:before,
.radio-inline.disabled > input[type="checkbox"]:checked + label:before,
.checkbox.disabled > input[type="checkbox"]:checked + label:before,
.checkbox-inline.disabled > input[type="checkbox"]:checked + label:before,
.radio:disabled > input[type="checkbox"]:checked + label:before,
.radio-inline:disabled > input[type="checkbox"]:checked + label:before,
.checkbox:disabled > input[type="checkbox"]:checked + label:before,
.checkbox-inline:disabled > input[type="checkbox"]:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%23D6D6D6' x='2' y='2' width='16' height='16' rx='4'/%3E%3Cpath stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 10.76L8.62 14 14 7'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"]:hover:checked + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"]:hover:checked + label:before,
.checkbox:not(.disabled) > input[type="checkbox"]:hover:checked + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"]:hover:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%23848484' x='2' y='2' width='16' height='16' rx='4'/%3E%3Cpath stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 10.76L8.62 14 14 7'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"]:checked + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"]:checked + label:before,
.checkbox:not(.disabled) > input[type="checkbox"]:checked + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"]:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%232F2F2F' x='2' y='2' width='16' height='16' rx='4'/%3E%3Cpath stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 10.76L8.62 14 14 7'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio.disabled > input[type="checkbox"].indeterminate + label:before,
.radio-inline.disabled > input[type="checkbox"].indeterminate + label:before,
.checkbox.disabled > input[type="checkbox"].indeterminate + label:before,
.checkbox-inline.disabled > input[type="checkbox"].indeterminate + label:before,
.radio:disabled > input[type="checkbox"].indeterminate + label:before,
.radio-inline:disabled > input[type="checkbox"].indeterminate + label:before,
.checkbox:disabled > input[type="checkbox"].indeterminate + label:before,
.checkbox-inline:disabled > input[type="checkbox"].indeterminate + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%23D6D6D6' x='2' y='2' width='16' height='16' rx='4'/%3E%3Cpath d='M6 10.5h8' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"]:hover:checked.indeterminate + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"]:hover:checked.indeterminate + label:before,
.checkbox:not(.disabled) > input[type="checkbox"]:hover:checked.indeterminate + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"]:hover:checked.indeterminate + label:before,
.radio:not(.disabled) > input[type="checkbox"]:hover.indeterminate + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"]:hover.indeterminate + label:before,
.checkbox:not(.disabled) > input[type="checkbox"]:hover.indeterminate + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"]:hover.indeterminate + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%23848484' x='2' y='2' width='16' height='16' rx='4'/%3E%3Cpath d='M6 10.5h8' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"]:checked.indeterminate + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"]:checked.indeterminate + label:before,
.checkbox:not(.disabled) > input[type="checkbox"]:checked.indeterminate + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"]:checked.indeterminate + label:before,
.radio:not(.disabled) > input[type="checkbox"].indeterminate + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"].indeterminate + label:before,
.checkbox:not(.disabled) > input[type="checkbox"].indeterminate + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"].indeterminate + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%232F2F2F' x='2' y='2' width='16' height='16' rx='4'/%3E%3Cpath d='M6 10.5h8' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio.disabled > input[type="radio"]:checked + label:before,
.radio-inline.disabled > input[type="radio"]:checked + label:before,
.checkbox.disabled > input[type="radio"]:checked + label:before,
.checkbox-inline.disabled > input[type="radio"]:checked + label:before,
.radio:disabled > input[type="radio"]:checked + label:before,
.radio-inline:disabled > input[type="radio"]:checked + label:before,
.checkbox:disabled > input[type="radio"]:checked + label:before,
.checkbox-inline:disabled > input[type="radio"]:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(2 2)' fill='none' fill-rule='evenodd'%3E%3Ccircle stroke='%23D6D6D6' stroke-width='2' fill='%23FFF' cx='8' cy='8' r='7'/%3E%3Ccircle fill='%23D6D6D6' cx='8' cy='8' r='4'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="radio"]:checked:hover + label:before,
.radio-inline:not(.disabled) > input[type="radio"]:checked:hover + label:before,
.checkbox:not(.disabled) > input[type="radio"]:checked:hover + label:before,
.checkbox-inline:not(.disabled) > input[type="radio"]:checked:hover + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(2 2)' fill='none' fill-rule='evenodd'%3E%3Ccircle stroke='%23848484' stroke-width='2' fill='%23FFF' cx='8' cy='8' r='7'/%3E%3Ccircle fill='%23848484' cx='8' cy='8' r='4'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="radio"]:checked + label:before,
.radio-inline:not(.disabled) > input[type="radio"]:checked + label:before,
.checkbox:not(.disabled) > input[type="radio"]:checked + label:before,
.checkbox-inline:not(.disabled) > input[type="radio"]:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(2 2)' fill='none' fill-rule='evenodd'%3E%3Ccircle stroke='%232F2F2F' stroke-width='2' fill='%23FFF' cx='8' cy='8' r='7'/%3E%3Ccircle fill='%232F2F2F' cx='8' cy='8' r='4'/%3E%3C/g%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio.disabled > input[type="radio"] + label:before,
.radio-inline.disabled > input[type="radio"] + label:before,
.checkbox.disabled > input[type="radio"] + label:before,
.checkbox-inline.disabled > input[type="radio"] + label:before,
.radio:disabled > input[type="radio"] + label:before,
.radio-inline:disabled > input[type="radio"] + label:before,
.checkbox:disabled > input[type="radio"] + label:before,
.checkbox-inline:disabled > input[type="radio"] + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle stroke='%23D6D6D6' stroke-width='2' fill='%23FFF' cx='10' cy='10' r='7' fill-rule='evenodd'/%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="radio"]:hover + label:before,
.radio-inline:not(.disabled) > input[type="radio"]:hover + label:before,
.checkbox:not(.disabled) > input[type="radio"]:hover + label:before,
.checkbox-inline:not(.disabled) > input[type="radio"]:hover + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle stroke='%23848484' stroke-width='2' fill='%23FFF' cx='10' cy='10' r='7' fill-rule='evenodd'/%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
.radio:not(.disabled) > input[type="radio"] + label:before,
.radio-inline:not(.disabled) > input[type="radio"] + label:before,
.checkbox:not(.disabled) > input[type="radio"] + label:before,
.checkbox-inline:not(.disabled) > input[type="radio"] + label:before {
  background-image: url("data:image/svg+xml;charset=utf8, %3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='7' fill='%23FFF' stroke='%232F2F2F' stroke-width='2' fill-rule='evenodd'/%3E%3C/svg%3E");background-size: 0.2rem auto;width: 0.2rem;height: 0.2rem;
}
label {
  margin-bottom: 0px;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
}
.qvs-table .checkbox-inline {
  padding: 0.1rem 0.08rem 0.1rem 0.18rem;
}
.qvs-table .qvs-table-header-cell > .checkbox-inline {
  padding: 0.06rem 0.08rem 0.06rem 0.18rem;
}
.radio,
.radio-inline,
.checkbox,
.checkbox-inline {
  margin: 0px;
}
.radio > input[type="radio"],
.radio-inline > input[type="radio"],
.checkbox > input[type="radio"],
.checkbox-inline > input[type="radio"],
.radio > input[type="checkbox"],
.radio-inline > input[type="checkbox"],
.checkbox > input[type="checkbox"],
.checkbox-inline > input[type="checkbox"] {
  position: absolute;
  display: none;
}
.radio > input[type="radio"] + label,
.radio-inline > input[type="radio"] + label,
.checkbox > input[type="radio"] + label,
.checkbox-inline > input[type="radio"] + label,
.radio > input[type="checkbox"] + label,
.radio-inline > input[type="checkbox"] + label,
.checkbox > input[type="checkbox"] + label,
.checkbox-inline > input[type="checkbox"] + label {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0px;
  font-family: PingFangTC-Regular;
  font-size: 0.14rem;
  color: #000;
  text-align: left;
  line-height: 0.13rem;
}
.radio > input[type="radio"] + label:before,
.radio-inline > input[type="radio"] + label:before,
.checkbox > input[type="radio"] + label:before,
.checkbox-inline > input[type="radio"] + label:before,
.radio > input[type="checkbox"] + label:before,
.radio-inline > input[type="checkbox"] + label:before,
.checkbox > input[type="checkbox"] + label:before,
.checkbox-inline > input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.1rem;
  margin-top: -0.02rem;
}
.radio > input[type="radio"].disabled + label,
.radio-inline > input[type="radio"].disabled + label,
.checkbox > input[type="radio"].disabled + label,
.checkbox-inline > input[type="radio"].disabled + label,
.radio > input[type="checkbox"].disabled + label,
.radio-inline > input[type="checkbox"].disabled + label,
.checkbox > input[type="checkbox"].disabled + label,
.checkbox-inline > input[type="checkbox"].disabled + label,
.radio > input[type="radio"]:disabled + label,
.radio-inline > input[type="radio"]:disabled + label,
.checkbox > input[type="radio"]:disabled + label,
.checkbox-inline > input[type="radio"]:disabled + label,
.radio > input[type="checkbox"]:disabled + label,
.radio-inline > input[type="checkbox"]:disabled + label,
.checkbox > input[type="checkbox"]:disabled + label,
.checkbox-inline > input[type="checkbox"]:disabled + label {
  color: #d6d6d6;
  cursor: not-allowed;
}
.radio:not(.disabled) > input[type="checkbox"] + label,
.radio-inline:not(.disabled) > input[type="checkbox"] + label,
.checkbox:not(.disabled) > input[type="checkbox"] + label,
.checkbox-inline:not(.disabled) > input[type="checkbox"] + label {
  line-height: 0.2rem;
}
.radio:not(.disabled) > input[type="checkbox"].toggle + label,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle + label,
.checkbox:not(.disabled) > input[type="checkbox"].toggle + label,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.radio:not(.disabled) > input[type="checkbox"].toggle + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle + label:before,
.checkbox:not(.disabled) > input[type="checkbox"].toggle + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle + label:before {
  width: 0.28rem;
  height: 0.16rem;
  background: #a7a7a7;
  border-radius: 0.09rem;
  margin-top: -0.03rem;
}
.radio:not(.disabled) > input[type="checkbox"].toggle:checked + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle:checked + label:before,
.checkbox:not(.disabled) > input[type="checkbox"].toggle:checked + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle:checked + label:before,
.radio:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:before,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:before,
.checkbox:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:before,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:before {
  width: 0.28rem;
  height: 0.16rem;
  background: #33AC2E;
  border-radius: 0.09rem;
}
.radio:not(.disabled) > input[type="checkbox"].toggle + label:after,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle + label:after,
.checkbox:not(.disabled) > input[type="checkbox"].toggle + label:after,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle + label:after {
  content: "";
  width: 0.14rem;
  height: 0.14rem;
  background: #fff;
  -webkit-box-shadow: 0 0.01rem 0.03rem -0.01rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.01rem 0.03rem -0.01rem rgba(0, 0, 0, 0.5);
  border-radius: 0.07rem;
  position: absolute;
  left: 0.01rem;
  top: auto;
  top: initial;
  bottom: 0.01rem;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.radio:not(.disabled) > input[type="checkbox"].toggle:checked + label:after,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle:checked + label:after,
.checkbox:not(.disabled) > input[type="checkbox"].toggle:checked + label:after,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle:checked + label:after,
.radio:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:after,
.radio-inline:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:after,
.checkbox:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:after,
.checkbox-inline:not(.disabled) > input[type="checkbox"].toggle:checked:hover + label:after {
  left: 0.13rem;
  right: auto;
  right: initial;
}
.radio.disabled > input[type="checkbox"].toggle + label,
.radio-inline.disabled > input[type="checkbox"].toggle + label,
.checkbox.disabled > input[type="checkbox"].toggle + label,
.checkbox-inline.disabled > input[type="checkbox"].toggle + label,
.radio:disabled > input[type="checkbox"].toggle + label,
.radio-inline:disabled > input[type="checkbox"].toggle + label,
.checkbox:disabled > input[type="checkbox"].toggle + label,
.checkbox-inline:disabled > input[type="checkbox"].toggle + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.radio.disabled > input[type="checkbox"].toggle + label:before,
.radio-inline.disabled > input[type="checkbox"].toggle + label:before,
.checkbox.disabled > input[type="checkbox"].toggle + label:before,
.checkbox-inline.disabled > input[type="checkbox"].toggle + label:before,
.radio:disabled > input[type="checkbox"].toggle + label:before,
.radio-inline:disabled > input[type="checkbox"].toggle + label:before,
.checkbox:disabled > input[type="checkbox"].toggle + label:before,
.checkbox-inline:disabled > input[type="checkbox"].toggle + label:before {
  width: 0.28rem;
  height: 0.16rem;
  background: #D6D6D6;
  border-radius: 0.09rem;
}
.radio.disabled > input[type="checkbox"].toggle + label:after,
.radio-inline.disabled > input[type="checkbox"].toggle + label:after,
.checkbox.disabled > input[type="checkbox"].toggle + label:after,
.checkbox-inline.disabled > input[type="checkbox"].toggle + label:after,
.radio:disabled > input[type="checkbox"].toggle + label:after,
.radio-inline:disabled > input[type="checkbox"].toggle + label:after,
.checkbox:disabled > input[type="checkbox"].toggle + label:after,
.checkbox-inline:disabled > input[type="checkbox"].toggle + label:after {
  content: "";
  width: 0.14rem;
  height: 0.14rem;
  background: #FCFCFC;
  -webkit-box-shadow: 0 0.01rem 0.03rem -0.01rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.01rem 0.03rem -0.01rem rgba(0, 0, 0, 0.5);
  border-radius: 0.07rem;
  position: absolute;
  left: 0.01rem;
  top: auto;
  top: initial;
  bottom: 0.01rem;
}
.radio.disabled > input[type="checkbox"].toggle:checked + label:before,
.radio-inline.disabled > input[type="checkbox"].toggle:checked + label:before,
.checkbox.disabled > input[type="checkbox"].toggle:checked + label:before,
.checkbox-inline.disabled > input[type="checkbox"].toggle:checked + label:before,
.radio:disabled > input[type="checkbox"].toggle:checked + label:before,
.radio-inline:disabled > input[type="checkbox"].toggle:checked + label:before,
.checkbox:disabled > input[type="checkbox"].toggle:checked + label:before,
.checkbox-inline:disabled > input[type="checkbox"].toggle:checked + label:before {
  background: #A1D59A;
}
.radio.disabled > input[type="checkbox"].toggle:checked + label:after,
.radio-inline.disabled > input[type="checkbox"].toggle:checked + label:after,
.checkbox.disabled > input[type="checkbox"].toggle:checked + label:after,
.checkbox-inline.disabled > input[type="checkbox"].toggle:checked + label:after,
.radio:disabled > input[type="checkbox"].toggle:checked + label:after,
.radio-inline:disabled > input[type="checkbox"].toggle:checked + label:after,
.checkbox:disabled > input[type="checkbox"].toggle:checked + label:after,
.checkbox-inline:disabled > input[type="checkbox"].toggle:checked + label:after,
.radio.disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.radio-inline.disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.checkbox.disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.checkbox-inline.disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.radio:disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.radio-inline:disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.checkbox:disabled > input[type="checkbox"].toggle:checked:hover + label:after,
.checkbox-inline:disabled > input[type="checkbox"].toggle:checked:hover + label:after {
  left: 0.13rem;
  right: auto;
  right: initial;
}
.checkbox-inline > input[type="checkbox"] + label .checkbox-autotooltip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 1.3rem;
}

.text-fileld {
  padding: 0.06rem 0.1rem 0.05rem;
  font-size: 0.14rem;
  color: #2f2f2f;
  background-color: #ffffff;
  border-radius: 0.04rem;
  border-style: solid;
  border-width: 0.01rem;
  border-color: #3c3c3c;
  outline: none;
}
.text-fileld:hover {
  border-color: #848484;
}
.text-fileld:active {
  border-color: #4a90e2;
}
.text-fileld:focus {
  border-color: #4a90e2;
}
.text-fileld.disabled {
  border-color: #aaaaaa;
  color: #aeaeae;
  background-color: #fafafa;
  cursor: default;
}
.text-fileld.error {
  border-color: #c1272d;
}
.text-fileld::-ms-reveal {
  display: none;
}
.text-fileld-hint {
  font-size: 0.13rem;
  color: #195a87;
}
.text-fileld-error {
  font-size: 0.13rem;
  color: #c1272d;
}
.text-fileld-success {
  font-size: 0.13rem;
  color: #32b964;
}
.search-field {
  position: relative;
  display: inline-block;
  width: 2rem;
}
.search-field-input {
  padding-left: 0.37rem;
  padding-right: 0.28rem;
  width: calc(100% - 0.37rem - 0.28rem - 0.02rem);
}
.search-field-input-icon {
  position: absolute;
  left: 0.14rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search-field-active .search-field-input {
  padding-left: 0.1rem;
  width: calc(100% - 0.12rem - 0.28rem);
}
.search-field-active .search-field-input-icon {
  visibility: hidden;
}
.search-field .search-field-clear-icon {
  position: absolute;
  right: 0.14rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.select-iso-field {
  position: relative;
  display: inline-block;
  width: 2rem;
}
.select-iso-field-input {
  padding-left: 0.1rem;
  padding-right: 0.37rem;
  width: calc(100% - 0.37rem - 0.1rem - 0.02rem);
  height: 0.19rem;
}
.select-iso-field-input-icon {
  position: absolute;
  right: 0.14rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.select-iso-field-active .select-iso-field-input {
  padding-right: 0.1rem;
  width: calc(100% - 0.12rem - 0.1rem);
}

.select-fetched-data input::-webkit-input-placeholder {
  color: '#808080';
}
.select-fetched-data input::-moz-placeholder {
  color: '#808080';
}
.select-fetched-data input:-ms-input-placeholder {
  color: '#808080';
}
.select-fetched-data input::-ms-input-placeholder {
  color: '#808080';
}
.select-fetched-data input::placeholder {
  color: '#808080';
}
.select-fetched-data input.has-value::-webkit-input-placeholder {
  color: #2F2F2F;
}
.select-fetched-data input.has-value::-moz-placeholder {
  color: #2F2F2F;
}
.select-fetched-data input.has-value:-ms-input-placeholder {
  color: #2F2F2F;
}
.select-fetched-data input.has-value::-ms-input-placeholder {
  color: #2F2F2F;
}
.select-fetched-data input.has-value::placeholder {
  color: #2F2F2F;
}

.physical-tab {
  font-family: Roboto-Regular;
  font-size: 0.14rem;
  color: #2F2F2F;
  line-height: 0.19rem;
  font-weight: 400;
  padding: 0 0 0 0.1rem;
  margin: 0.1rem 0 0.21rem 0;
  cursor: pointer;
  position: relative;
}
.physical-tab.active {
  font-family: Roboto-Medium;
  color: #332F49;
  font-weight: 500;
  border-left: 0.02rem solid #332F49;
  padding: 0 0 0 0.08rem;
}
.physical-tab.active > .qvs-svg-img_chick_1 {
  position: absolute;
  right: -0.07rem;
}
.physical-tabs {
  display: inline-block;
  width: 1.3rem;
  height: 100%;
}
.physical-tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.physical-tab-content {
  display: inline-block;
  width: calc(100% - 1.47rem);
  padding: 0 0.1rem 0 0.05rem;
  border: 0.01rem solid #CACACA;
  border-radius: 0.04rem;
  height: 100%;
}

