.body-fixed {
  overflow: hidden;
  height: 100%;
}

.cs-tpl-context {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -100px;
  display: none;
}

.cs-tpl-context .cs-tpl-wrapper {
  width: 1050px;
  background-color: #fff;
}

.cs-tpl-wrapper .cs-tpl-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 20px 0 30px;
  border-bottom: 1px solid #F1F4FF;
  color: #303445;
}
.cs-tpl-wrapper .cs-tpl-title-change {
  padding: 6px 22px;
  margin-left: 12px;
  border: 1px solid #3091F2;
  border-radius: 40px;
  font-size: 12px;
  color: #3091F2;
  cursor: pointer;
}
.cs-tpl-wrapper .cs-tpl-title .cs-tpl-close {
  color: #D5D5DE;
  font-size: 20px;
  text-decoration: none;
}

.cs-tpl-wrapper .cs-tpl-list {
  display: flex;
  justify-content: center;
  height: 432px;
  margin: 30px 0 40px;
}

.cs-tpl-list .cs-tpl-item {
  width: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 22px;
  font-size: 0;
  box-sizing: border-box;
}

.cs-tpl-list .cs-tpl-item .tpl-img-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

.cs-tpl-list .cs-tpl-item .tpl-img-inner {
  width: 99%;
  padding-top: 195.312%;
  border: 1px solid #D5D5DE;
  border-radius: 20px;
  background-size: 100% 100%;
  overflow: hidden;
}

.cs-tpl-list .cs-tpl-item.active .tpl-img-inner {
  border: 2px solid rgba(48,145,242,1);
  box-shadow: 0 2px 6px 0 rgba(48,145,242,0.25);
}

.cs-tpl-list .cs-tpl-item .tpl-img-scroll {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: -5px;
  width: 100%;
  border-radius: 15px;
  text-align: center;
  overflow: scroll;
}

.cs-tpl-list .cs-tpl-item .tpl-img-scroll::-webkit-scrollbar {
  width: 0;
}

.cs-tpl-list .cs-tpl-item .tpl-img-scroll::-webkit-scrollbar-track {
  background: unset;
}

.cs-tpl-list .cs-tpl-item .tpl-img-scroll .tpl-img {
  margin: 0 auto;
  width: 88%;
  border-radius: 20px;
  padding-bottom: 16px;
}

.cs-tpl-list .cs-tpl-item .tpl-img-inner:hover .tpl-preview {
  display: block !important;
}

.cs-tpl-list .cs-tpl-item .tpl-preview {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 90%;
  left: 10px;
  top: 0;
  bottom: 0;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  display: none;
}

.cs-tpl-list .tpl-preview .tpl-preview-img {
  border-radius: 6px !important;
  width: 124px !important;
  height: 124px;
  margin-top: 80px !important;
  margin-bottom: 12px;;
  background: #fff;
}

.cs-tpl-list .tpl-preview .tpl-preview-btn {
  display: inline-block;
  width: 118px;
  height: 32px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  line-height: 32px;
  background-color: #3091F2;
  cursor: pointer;
}

.cs-tpl-list .tpl-preview .tpl-preview-btn:hover {
  opacity: 0.8;
}

.cs-tpl-wrapper input[type="radio"] {
  width: 18px;
  height: 18px;
  opacity: 0;
}

.cs-tpl-wrapper .tpl-form-wrapper label {
  position: absolute;
  left: 5px;
  top: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid #D5D5DE;
  border-radius: 50%;
  cursor: pointer;
}

.cs-tpl-wrapper .tpl-form-wrapper input[checked="checked"]+label {
  border: 1px solid #3091F2;
  background-color: #3091F2;
}

.cs-tpl-wrapper .tpl-form-wrapper input[checked="checked"]+label::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 8px;
  top: 3px;
  left: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.cs-tpl-wrapper .tpl-form-wrapper {
  position: relative;
}

.cs-tpl-wrapper .cs-tpl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-top: 1px solid #F1F4FF;
}

.cs-tpl-wrapper .cs-tpl-next .next-btn {
  padding: 8px 30px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  color: #fff;
  background-color: #3091F2;
}
.cs-tpl-wrapper .cs-tpl-next button[disabled] {
  cursor: not-allowed;
  background-color: #a0cfff;
}

.cs-modal-context {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: -200px;
}

.cs-modal-wrap {
  position: relative;
  width: 450px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.cs-modal-wrap .cs-modal-close {
  position: absolute;
  right: 0;
  top: 0;
  font-family: Microsoft YaHei;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #9fa5bb;
}

.cs-modal-wrap .cs-modal-title {
  padding: 14px 0 20px;
  font-size: 14px;
  color: #303445;
}

.cs-modal-wrap .cs-modal-img {
  width: 112px;
  height: 112px;
  border: 1px solid #F3F5F9;
  border-radius: 2px;
}
.cs-modal-wrap .cs-modal-img img {
  width: 112px;
  height: 112px;
}
.cs-modal-wrap .cs-modal-btn {
  display: inline-block;
  width: 88px;
  height: 30px;
  margin: 10px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #3091F2;
}
.cs-modal-wrap .cs-modal-btn:hover {
  opacity: .8;
}
.operation-btn {
  display: flex;
  align-items: center;
}
.cs-modal-manager {
  display: inline-block;
  width: 88px;
  height: 30px;
  margin: 10px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #3091F2;
  cursor: pointer;
  border: 1px solid #3091F2;
}