@charset "utf-8";
.common-select-system-modal {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1210;
  display: none;
}
.common-select-system-modal .center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 580px;
  background-color: #fff;
}
.common-select-system-modal .center .head {
  position: relative;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  color: #5E6D81;
  background-color: #F6F8F9;
  padding-left: 20px;
}
.common-select-system-modal .center .head span {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
  cursor: pointer;
}
.common-select-system-modal .body {
  padding: 16px 40px 24px 40px;
}
.common-select-system-modal .system-kind ul {
  display: flex;
  justify-content: space-between;
}
.common-select-system-modal .system-kind ul li {
  position: relative;
  width: 112px;
  height: 96px;
  text-align: center;
  border: 1px solid #DBE1E8;
  padding-top: 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.common-select-system-modal .system-kind ul li img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.common-select-system-modal .system-kind ul li p {
  line-height: 20px;
  font-size: 14px;
  color: #2D3037;
  margin-top: 8px;
}
.common-select-system-modal .system-kind ul li.active {
  border-color: #6780FF;
}
.common-select-system-modal .system-kind ul li.active::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 24px;
  height: 24px;
  background: url(../images/selected-icon.png) no-repeat center;
}
.common-select-system-modal .select-server-list ul li {
  display: flex;
  line-height: 30px;
  font-size: 14px;
  color: #2D3037;
}
.common-select-system-modal .select-server-list ul li div {
  display: inline;
}
.common-select-system-modal .select-server-list ul li div .select-config {
  margin-left: 6px;
}
.common-select-system-modal .select-server-list ul li div .select-config:first-child {
  margin-left: 0px;
}
.common-select-system-modal .system-list {
  margin-top: 24px;
}
.common-select-system-modal .system-list .tit {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #9EA7B3;
  background-color: #F6F8F9;
  padding-left: 16px;
}
.common-select-system-modal .system-list .system-item-box {
  border-bottom: 1px solid #F0F2F5;
}
.common-select-system-modal .system-list .system-item {
  height: 240px;
  overflow-y: auto;
  display: none;
}
.common-select-system-modal .system-list .system-item:nth-child(1) {
  display: block;
}
.common-select-system-modal .system-list .system-item::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #fff;
}
.common-select-system-modal .system-list .system-item::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
  background-color: #F0F2F5;
}
.common-select-system-modal .system-list .system-item::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #DBE1E8;
}
.common-select-system-modal .system-list .system-item::-webkit-scrollbar-thumb:hover {
  background-color: #9EA7B3;
}
.common-select-system-modal .system-list .system-item::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.common-select-system-modal .system-list .system-item ul li input {
  display: none;
}
.common-select-system-modal .system-list .system-item ul li label {
  position: relative;
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #2D3037;
  padding-left: 40px;
  cursor: pointer;
}
.common-select-system-modal .system-list .system-item ul li label:hover {
  background-color: #F2F7FC;
}
.common-select-system-modal .system-list .system-item ul li label::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 16px;
  height: 16px;
  border: 1px solid #DBE1E8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.common-select-system-modal .system-list .system-item ul li input[type=radio]:checked + label {
  color: #6780FF;
}
.common-select-system-modal .system-list .system-item ul li input[type=radio]:checked + label::before {
  border-color: #6780FF;
}
.common-select-system-modal .system-list .system-item ul li input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 13px;
  width: 8px;
  height: 8px;
  background-color: #6780FF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.common-select-system-modal .system-list .system-tehui {
  line-height: 22px;
  font-size: 12px;
  color: #9EA7B3;
  margin-top: 18px;
}
.common-select-system-modal .select-sure {
  margin-top: 16px;
}
.common-select-system-modal .select-sure button {
  width: 100%;
  height: 46px;
  font-size: 16px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #6780FF, #B0B2FD);
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.common-select-system-modal .select-sure button:hover {
  background: #505CEE;
}
.common-select-system-modal .select-more {
  line-height: 30px;
  font-size: 14px;
  color: #9EA7B3;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0F2F5;
  margin-bottom: 20px;
}
.common-select-system-modal .select-more a {
  color: #FC3D2B;
  margin-left: 8px;
}
.common-select-system-modal .select-more a img {
  vertical-align: -2px;
  margin-left: 8px;
}
.common-select-system-modal .select-more a:hover {
  text-decoration: underline;
}
.yisu-common-alert {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 320px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1210;
}
.yisu-common-alert .body {
  padding-top: 56px;
  padding-bottom: 32px;
}
.yisu-common-alert .body i {
  display: block;
  width: 72px;
  height: 72px;
  background: url(../images/common-modal-success-icon.png) no-repeat center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
}
.yisu-common-alert .body p {
  line-height: 34px;
  font-size: 20px;
  color: #FFF;
  margin-top: 27px;
  text-align: center;
}
.yisu-common-alert .bottom {
  line-height: 28px;
  font-size: 18px;
  color: #FFF;
  text-align: center;
  padding-bottom: 32px;
  margin-top: 30px;
}
/* 公共警告弹窗 style */
.yisu-warn-alert {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 320px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1210;
}
.yisu-warn-alert .body {
  padding-top: 56px;
  padding-bottom: 32px;
}
.yisu-warn-alert .body i {
  display: block;
  width: 72px;
  height: 72px;
  background: url(../images/common-modal-warn-icon.png) no-repeat center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
}
.yisu-warn-alert .body p {
  line-height: 34px;
  font-size: 20px;
  color: #FFF;
  margin-top: 27px;
  text-align: center;
  padding: 0px 20px;
}
.yisu-warn-alert .bottom {
  line-height: 28px;
  font-size: 18px;
  color: #FFF;
  text-align: center;
  padding-bottom: 32px;
  margin-top: 30px;
}
#ls-select-system-modal .area-se-box {
  display: inline-block;
  vertical-align: top;
}
#ls-select-system-modal .area-se-box a {
  position: relative;
  float: left;
  width: 96px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  font-size: 14px;
  color: #2D3037;
  border: 1px solid #DBE1E8;
  transition: all 0s;
}
#ls-select-system-modal .area-se-box a:nth-child(1) {
  border-radius: 4px 0px 0px 4px;
}
#ls-select-system-modal .area-se-box a:last-child {
  border-radius: 0px 4px 4px 0px;
}
#ls-select-system-modal .area-se-box a:hover {
  border-color: #505CEE;
  z-index: 1;
}
#ls-select-system-modal .area-se-box a.active {
  color: #505CEE;
  background-color: #E1EEFF;
  border-color: #6780FF;
  z-index: 2;
}
#ls-select-system-modal .area-se-box a:not(:first-child) {
  margin-left: -1px;
}
#ls-select-system-modal .buymath-set {
  display: flex;
  font-size: 14px;
  margin-top: 20px;
}
#ls-select-system-modal .buymath-set span {
  line-height: 40px;
}
#ls-select-system-modal .buymath-set .math-unit {
  margin-left: 16px;
}
#ls-select-system-modal .select-sure {
  margin-top: 24px;
}
#ls-select-system-modal .select-server-list > ul > li {
  margin-bottom: 10px;
}
#ls-select-system-modal .select-server-list > ul > li:last-child {
  margin-bottom: 0px;
}
.ys-number-con {
  position: relative;
  display: inline-block;
  width: 144px;
  height: 40px;
  background-color: #FFF;
  padding: 0px 39px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ys-number-con .num-reduce,
.ys-number-con .num-add {
  position: absolute;
  top: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  background-color: #FFF;
  border: 1px solid #DBE1E8;
  cursor: pointer;
}
.ys-number-con .num-reduce:hover,
.ys-number-con .num-add:hover {
  border-color: #505CEE;
  z-index: 3;
}
.ys-number-con .num-reduce.disabled,
.ys-number-con .num-add.disabled {
  border-color: #DBE1E8 !important;
  cursor: default;
}
.ys-number-con .num-reduce {
  left: 0px;
  background: url(../images/reduce-active.png) no-repeat center;
  -webkit-border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  -o-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
}
.ys-number-con .num-reduce.disabled {
  background: url(../images/reduce-default.png) no-repeat center !important;
  background-color: #F6F8FA !important;
  cursor: default !important;
}
.ys-number-con .num-add {
  background: url(../images/add-active.png) no-repeat center;
  right: 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -o-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
}
.ys-number-con .num-add.disabled {
  background: url(../images/add-default.png) no-repeat center !important;
  background-color: #F6F8FA !important;
  cursor: default !important;
}
.ys-number-con input[type=text] {
  position: relative;
  width: 66px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #DBE1E8;
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  z-index: 2;
  outline: none;
}
.ys-number-con input[type=text]:hover {
  border-color: #505CEE;
}
