@charset "UTF-8";
.btn {
  background-image: none;
  border: none;
  border-radius: 6px;
  padding: 15px;
  width: 100%;
  transition: all 0.25s linear;
}
.btn-primary {
  background-color: #4928d8;
  color: #fff;
}
.btn-primary-circle {
  border-radius: 50%;
}
.btn-primary-md {
  width: 25%;
}
.btn-primary:hover {
  background-color: #9c9bff;
}
.btn-primary:focus {
  background-color: #4928d8;
}
.btn-primary:active {
  background-color: #9c9bff;
}
.btn-default {
  background-color: transparent;
  border: 1px solid #4928d8;
  color: #4928d8;
}
.btn-default:hover {
  background-color: rgba(73, 40, 216, 0.08);
  border: 1px solid #4928d8;
}
.btn.disabled {
  background-color: #e3e3e3;
  color: #888;
}
.btn.disabled:hover {
  background: #e3e3e3;
}
.btn-alert {
  background-color: transparent;
  border: 1px solid #e1911a;
  color: #e1911a;
}
.btn-alert:hover {
  color: #e1911a;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #4928d8;
}

::-webkit-scrollbar-button {
  background-color: #888;
  display: none;
}

::-webkit-scrollbar-corner {
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

.form-control {
  border-image: none;
  border-image-outset: inherit;
  box-shadow: none;
  border: 0;
  padding: 0px;
  background-color: transparent;
  height: 24px;
  line-height: 24px;
  transition: all 0.25s ease-in-out;
}
.form-control:focus {
  outline: 0;
  box-shadow: none;
}

.input-wrapper {
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  padding: 10px 14px;
  position: relative;
  transition: border-color 0.25s ease-in-out;
}
.input-wrapper.input-group {
  padding: 10px 14px;
}
.input-wrapper.with-icon {
  padding-left: 40px;
}
.input-wrapper.with-pwd-icon .icon-eye,
.input-wrapper.with-pwd-icon .icon-eye-close {
  right: 10px;
  top: 10px;
  left: auto;
}
.input-wrapper .icon {
  position: absolute;
  left: 14px;
  top: 10px;
  padding: 3px 0px;
  color: #888;
  width: 24px;
  height: 24px;
}
.input-wrapper .icon ~ * {
  margin-left: 0px;
}
.input-wrapper .icon::before {
  font-size: 18px !important;
}
.input-wrapper .icon.icon-right {
  left: unset;
  right: 14px;
}
.input-wrapper .input-group-addon {
  border: none;
  background: transparent;
  padding: 0;
}
.input-wrapper .input-group-addon .icon {
  position: initial;
}
.input-wrapper:hover, .input-wrapper.focus {
  border-color: #4928d8;
  color: #333;
}
.input-wrapper:hover .icon, .input-wrapper.focus .icon {
  color: #333;
}
.input-wrapper input {
  color: #333;
  width: 100%;
  padding-left: 4px;
}
.input-wrapper.disabled {
  background-color: #d8d8d8;
}
.input-wrapper .with-link {
  position: absolute;
  left: right;
  right: 15px;
  top: 0;
  line-height: 46px;
}
.input-wrapper .draw-box {
  position: absolute;
  top: 47px;
  left: -1px;
  width: calc(100% + 2px);
  height: 190px;
  background-color: white;
  z-index: 999;
  border: 1px solid #d8d8d8;
}
.input-wrapper .draw-box .no-result, .input-wrapper .draw-box .no-record {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
}
.input-wrapper .draw-box .no-result > img, .input-wrapper .draw-box .no-record > img {
  width: 112px;
  height: 98px;
}
.input-wrapper .draw-box .no-result span, .input-wrapper .draw-box .no-record span {
  line-height: 28px;
}
.input-wrapper .draw-box .with-result {
  display: block;
  overflow: auto;
  height: inherit;
}
.input-wrapper .draw-box .draw-box-list-item {
  padding: 0px 20px;
  font-size: 16px;
  color: #333333;
  line-height: 52px;
  cursor: pointer;
}
.input-wrapper .draw-box .draw-box-list-item:hover {
  background: #F1EEFC;
}
.input-wrapper .draw-box .draw-box-list-item::after {
  display: block;
  content: "";
  height: 1px;
  width: calc(100% - 40px);
  background-color: #DBDBDB;
}

.input-wrapper-static {
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 10px 14px;
  padding-left: 0px;
  position: relative;
}
.input-wrapper-static.with-icon {
  padding-left: 40px;
}
.input-wrapper-static .radio-inline input[type=radio] {
  margin-top: 0px;
}

.radio-wrapper {
  padding-left: 20px;
}
.radio-wrapper input[type=radio] {
  margin-top: 0px;
}

input[type=file] {
  height: 48px;
  background: rgba(73, 40, 216, 0.09);
}
input[type=file]::before {
  content: "上传";
  width: 200px;
  color: #4928d8;
  text-align: center;
}
input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}
input[type=file]::-ms-file-upload-button {
  visibility: hidden;
}

.input-wrapper.readonly {
  background: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
}
.input-wrapper.readonly input:read-only {
  background: transparent;
  outline: 0;
}
.input-wrapper.readonly input:read-only:focus {
  border: 0px solid #dbdbdb;
}

.textarea-wrapper {
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  padding: 10px 14px;
  position: relative;
}
.textarea-wrapper textarea {
  border: 0px;
  width: 100%;
  resize: vertical;
}
.textarea-wrapper:hover, .textarea-wrapper.focus {
  border-color: #4928d8;
  color: #333;
}
.textarea-wrapper::after {
  content: attr(data-len);
  display: block;
  position: absolute;
  right: 25px;
  bottom: 8px;
  color: #888;
}

.select-wrapper {
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  padding: 10px 14px;
}

.authcode-wrapper {
  padding: 0px;
  width: 100%;
}
.authcode-wrapper.with-icon .input-wrapper {
  padding-left: 40px;
}
.authcode-wrapper .input-wrapper {
  width: 70%;
  display: table-cell;
}
.authcode-wrapper .form-control {
  display: block;
  padding: 0px;
  border: 0px;
  border-image: none;
  border-image-outset: inherit;
  box-shadow: none;
}
.authcode-wrapper input.form-control:focus {
  outline: 0;
  box-shadow: none;
}
.authcode-wrapper .input-group-addon {
  padding: 0px;
  border: 0px;
  width: 25%;
  outline: 0;
  box-shadow: none;
  background: transparent;
  text-align: right;
  padding-left: 2%;
}
.authcode-wrapper .input-group-addon button {
  width: 100%;
  height: 46px;
  min-width: none;
}

.avatar-wrapper {
  border-radius: 6px;
}
.avatar-wrapper img {
  display: block;
  height: 96px;
  width: 96px;
  cursor: pointer;
}

.intro-text-wrapper {
  border-radius: 6px;
  line-height: 42px;
  font-size: 16px;
  font-family: "Microsoft YaHei", 微软雅黑, "Microsoft YaHei Light", "PingFang SC";
  font-weight: 400;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .authcode-wrapper .input-wrapper {
    width: 55%;
  }
  .authcode-wrapper .input-group-addon .input-group-addon {
    width: 40%;
  }
}
.nav-tabs {
  border: 0px;
  text-align: center;
  margin-bottom: 65px;
}
.nav-tabs > li {
  float: none;
  display: inline-block;
  padding: 10px 45px;
  position: relative;
}
.nav-tabs > li + li a {
  transition: all 0.25s ease-in-out;
}
.nav-tabs > li + li a::before {
  border-left: 2px solid rgba(105, 125, 244, 0.34);
  content: "";
  display: block;
  left: -45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
}
.nav-tabs > li a {
  font-size: 20px;
  font-weight: 600;
  padding: 0px;
  margin: 0px;
  position: relative;
}
.nav-tabs > li a:hover {
  background: transparent;
  border: 1px solid transparent;
  color: #4928d8;
  margin: 0px;
}
.nav-tabs > li a::after {
  transition: width 0.25s ease-in-out;
  width: 0px;
  content: " ";
  position: absolute;
  bottom: -15px;
  left: 0px;
}
.nav-tabs > li.active a,
.nav-tabs > li.active a:hover,
.nav-tabs > li.active a:focus {
  border-color: transparent transparent transparent transparent;
  color: #4928d8;
}
.nav-tabs > li.active a::after,
.nav-tabs > li.active a:hover::after,
.nav-tabs > li.active a:focus::after {
  width: 100%;
  border-bottom: 4px solid #4928d8;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .nav-tabs > li {
    padding: 10px 24px;
  }
  .nav-tabs > li + li a::before {
    left: -24px;
  }
}
.table-1 {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.table-1 th {
  background-color: rgba(73, 40, 216, 0.1);
  border: 0px !important;
  padding: 19px 24px !important;
}
.table-1 td {
  background-color: rgba(73, 40, 216, 0.06);
  border: 0px !important;
  padding: 19px 24px !important;
}

@media screen and (max-width: 768px) {
  .table-1 td {
    padding: 19px 5px !important;
    text-align: center;
  }
}
.steps {
  margin: 0px;
}
.steps .step-item {
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 0px 0px 40px;
}
.steps .step-item::after, .steps .step-item::before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  border-bottom: 1px dotted #c1c1c1;
  top: 24px;
  width: calc(100% - 60px);
  position: absolute;
}
.steps .step-item::after {
  right: 0px;
}
.steps .step-item::before {
  left: 0px;
}
.steps > :first-child::before {
  width: 0px;
  border: 0px;
}
.steps > :last-child::after {
  width: 0px;
  border: 0px;
}
.steps .step-num {
  border-radius: 50%;
  background-color: transparent;
  color: #888;
  width: 50px;
  height: 50px;
  display: block;
  line-height: 50px;
  text-align: center;
  border: 1px dotted #c1c1c1;
  display: block;
}
.steps .step-name {
  color: #333;
  font-size: 16px;
  margin-top: 10px;
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  line-height: 1.25;
}
.steps .step-item.active .step-num {
  border-color: transparent;
  background-color: #4928d8;
  color: #fff;
}
.steps .step-item .step-num,
.steps .step-item .step-name {
  margin-left: auto;
  margin-right: auto;
}
.steps .step-item::after, .steps .step-item::before {
  width: calc(50% - 30px);
}

@media screen and (max-width: 768px) {
  .steps .step-item .step-name {
    font-size: 12px;
  }
}
.list-group + .list-group {
  border-top: 1px solid #f8f7fd;
}
.list-group .list-group-title {
  margin: 24px 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 24px;
}
.list-group .list-group-title .list-title-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.list-group .list-group-title .icon {
  font-size: inherit;
}
.list-group.compact .list-group-item {
  padding: 4px 0px;
  margin: 4px 0px;
}
.list-group .list-group-item {
  border: 1px solid transparent;
  position: relative;
  padding: 20px 0px;
  margin: 8px 0px;
  box-shadow: none;
}
.list-group .list-group-item a {
  height: 100%;
  width: 100%;
  text-align: right;
  padding: inherit;
}
.list-group .list-group-item .badge {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #333;
  font-weight: normal;
  font-size: 12px;
}
.list-group .list-group-item .badge.link {
  line-height: 30px;
  color: #4928d8;
}
.list-group .list-group-item .badge.link.disabled {
  color: #888;
}
.list-group .list-group-item .badge .icon {
  display: none;
  font-size: inherit !important;
}
.list-group .list-group-item.with-icon {
  padding: 20px 20px 20px 60px;
}
.list-group .list-group-item .icon-type-40 {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #4928d8;
  padding: 5px;
  border-radius: 4px;
  left: 16px;
}
.list-group .list-group-item h4 {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  margin: 0;
  line-height: 1;
}
.list-group .list-group-item h4 .tag {
  margin-left: 8px;
  font-weight: normal;
  padding: 1px 12px;
}
.list-group .list-group-item p {
  font-size: 12px;
  line-height: 1.25;
  margin: 0px;
}
.list-group .list-group-item p:not(.tag) {
  color: #888;
}
.list-group.inline .list-group-item * {
  display: inline-block;
  vertical-align: top;
  margin: 0px;
}
.list-group.inline .list-group-item p {
  margin: 8px 0;
  line-height: 1;
}
.list-group.inline .list-group-item h4 + p {
  margin-left: 20px;
}
.list-group.inline .list-group-item .tag {
  margin-top: 6px;
}
.list-group.compact .list-group-item {
  padding: 4px 0px;
  margin: 4px 0px;
}
.list-group.list-group-primary .list-group-item {
  background: linear-gradient(270deg, #fdfdff 0%, #f7f5ff 100%);
  border-radius: 12px;
  background-repeat: no-repeat;
  transform: border-color 0.25s linear;
}
.list-group.list-group-primary .list-group-item:hover {
  border-color: #4928d8;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  font: inherit;
  color: #4928d8;
  width: 16px;
  height: 16px;
  border: 2px solid #4928d8;
  border-radius: 6px;
  display: grid;
  place-content: center;
  position: relative;
}

input[type=checkbox]::before {
  content: "";
  width: 14px;
  height: 14px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1px 1px #4928d8;
  background-color: #4928d8;
  display: block;
  position: absolute;
  left: 0px;
  bottom: 1px;
  transform-origin: center;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: none;
}

input[type=checkbox]:disabled {
  --form-control-color: $form-control-disabled;
  color: #888;
  cursor: not-allowed;
}

.upload-wrapper {
  color: #4928d8;
  border-radius: 8px;
  width: 50%;
  min-width: 200px;
  position: relative;
}
.upload-wrapper.upload-rect {
  width: 253px;
  height: 160px;
  border-radius: 8px;
}
.upload-wrapper.upload-rect input[type=file] {
  width: 100%;
}
.upload-wrapper.upload-rect .uploader-preview {
  width: 100%;
  height: 100%;
}
.upload-wrapper.upload-rect .uploader-preview.show .icon-close {
  display: inline-block;
}
.upload-wrapper.upload-rect .uploader-preview.show .img-preview {
  width: 100%;
  height: 100%;
}
.upload-wrapper.upload-rect .uploader-preview.show .img-preview img {
  z-index: 2;
}
.upload-wrapper.upload-rect .uploader-preview img {
  width: 100%;
  height: 100%;
  opacity: 1;
  position: relative;
}
.upload-wrapper.upload-rect .uploader-preview img[src=""], .upload-wrapper.upload-rect .uploader-preview img:not([src]) {
  opacity: 0;
}
.upload-wrapper.upload-rect .uploader-preview .img-preview {
  width: 100%;
  height: 100%;
}
.upload-wrapper.upload-rect .uploader-preview .img-demo img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  opacity: 0.6;
}
.upload-wrapper.upload-rect .uploader-preview .img-demo img.big {
  width: 100%;
  height: 100%;
}
.upload-wrapper.upload-rect .icon-upload {
  z-index: 1;
}
.upload-wrapper.upload-rect .icon-close {
  display: none;
}
.upload-wrapper.upload-rect .uploader {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  height: 100%;
}
.upload-wrapper.upload-rect .uploader-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-wrapper.upload-rect .uploader-inner .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(73, 40, 216, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-wrapper.upload-rect .webuploader-pick-hover .uploader {
  z-index: 3;
}
.upload-wrapper.upload-rect .webuploader-pick {
  height: 100%;
  border-radius: 8px;
  position: relative;
  overflow: visible;
}
.upload-wrapper.upload-rect .webuploader-pick .img-preview,
.upload-wrapper.upload-rect .webuploader-pick img {
  border-radius: 8px;
}
.upload-wrapper.upload-rect .webuploader-pick ~ div {
  height: 100% !important;
  width: 100% !important;
  z-index: 9;
}
.upload-wrapper.upload-rect .icon-toolbar {
  background: transparent url("../images/v2/icon-toolbar-bg.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 5px 12px 5px 38px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 99;
}
.upload-wrapper.upload-rect .icon-toolbar .icon {
  background: rgba(73, 40, 216, 0.8);
  font-size: 16px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: #fff;
  padding: 0px;
}
.upload-wrapper.upload-rect .icon-toolbar .icon.icon-close {
  font-size: 12px;
}
.upload-wrapper .icon {
  font-size: 22px;
}
.upload-wrapper .icon ~ * {
  padding-top: 10px;
}
.upload-wrapper.upload-btn {
  background-color: rgba(73, 40, 216, 0.2);
  padding: 10px 14px;
  border-radius: 6px;
}
.upload-wrapper .uploader {
  text-align: center;
}
.upload-wrapper .webuploader-pick {
  color: inherit;
  background-color: transparent;
  width: 100%;
  padding: 0px;
}
.upload-wrapper .webuploader-pick ~ * {
  left: 0px;
  top: 0px;
}
.upload-wrapper label {
  margin: 0px;
}

.upload-preview-list {
  font-size: 0px;
}
.upload-preview-list .preview-wrapper,
.upload-preview-list .multi-preview-item {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 8px;
}
.upload-preview-list .preview-wrapper .icon,
.upload-preview-list .multi-preview-item .icon {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  border-radius: 50%;
  background: rgba(136, 136, 136, 0.8);
  color: #fff;
  cursor: pointer;
}
.upload-preview-list .preview-wrapper img,
.upload-preview-list .multi-preview-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}
.upload-preview-list .preview-wrapper .uploader-success,
.upload-preview-list .multi-preview-item .uploader-success {
  color: #888;
  text-align: center;
  padding-top: 12px;
  position: absolute;
}
.upload-preview-list ul,
.upload-preview-list .multi-preview {
  margin-left: -8px;
  margin-right: -8px;
}
.upload-preview-list ul li,
.upload-preview-list .multi-preview li {
  font-size: 14px;
  display: inline-block;
  padding: 8px;
}

.modal {
  font-size: 14px;
}
.modal * {
  line-height: unset;
}
.modal .btn {
  min-width: 120px;
  width: auto;
}
.modal .btn + .btn {
  margin-left: 20px;
}
.modal .authcode-wrapper .input-wrapper {
  width: 60%;
}
.modal .authcode-wrapper .input-group-addon {
  width: 33%;
}
.modal .authcode-wrapper .input-group-addon .btn {
  min-width: auto;
  padding: 8px 0;
  text-align: center;
}
.modal .modal-dialog {
  margin: 65px auto;
}
.modal .modal-content {
  border-radius: 12px;
  padding: 12px 32px;
}
.modal .modal-header {
  border-bottom: 0px;
  text-align: center;
  font-size: 20px;
  padding: 24px 15px;
  border-bottom: 1px solid rgba(73, 40, 216, 0.1);
}
.modal .modal-title {
  font-weight: 600;
}
.modal .modal-body {
  padding: 24px 0px;
}
.modal .list-group {
  margin-bottom: 0px;
}
.modal .list-group .list-group-item {
  padding: 6px 0;
}
.modal .modal-footer {
  border-top: 1px solid rgba(73, 40, 216, 0.1);
  text-align: center;
  padding: 24px;
}
.modal form {
  padding-bottom: 0px !important;
}
.modal .text-left {
  text-align: left !important;
}
.modal .message-bd {
  line-height: 1.5;
  text-align: initial;
}
.modal .message {
  line-height: 1.5;
  text-align: initial;
}
.modal .btn {
  padding: 12px 15px;
}

@media (max-width: 768px) {
  .modal form .control-label {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .modal-sm {
    width: 400px;
  }

  .modal-400 {
    width: 400px;
  }
}
.dropdown .dropdown-menu {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 32px;
}

.section-wrapper {
  border-radius: 12px;
  max-width: 1200px;
  background: #f5f3ff;
  margin: 0px auto;
  box-shadow: 0px 2px 8px 0px rgba(73, 40, 216, 0.09), 0px 1px 2px 0px rgba(73, 40, 216, 0.09);
}
.section-wrapper .section-content {
  width: 100%;
  background-color: #fff;
  border-radius: inherit;
  padding: 50px 24px 20px;
}
.section-wrapper .section-content.with-icons {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.section-wrapper .section-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.25;
}
.section-wrapper .section-title .sub-title {
  font-size: 16px;
  color: #888;
  font-weight: 500;
}
.section-wrapper.result-wrapper .section-content {
  padding-top: 15%;
}
.section-wrapper.has-section-title .callout {
  margin: unset;
  margin: 0 -24px;
}

.section-wrapper form,
.modal form {
  width: 100%;
  background-color: transparent;
  border-radius: inherit;
  padding-bottom: 30px;
}
.section-wrapper form .control-label,
.modal form .control-label {
  height: 42px;
  line-height: 42px;
  padding-top: 0px;
  font-size: 16px;
  white-space: nowrap;
}
.section-wrapper form label,
.modal form label {
  font-weight: 400;
}
.section-wrapper form .help-block,
.modal form .help-block {
  color: #888;
  font-size: 12px;
  margin-bottom: 0px;
}
.section-wrapper form.with-icons,
.modal form.with-icons {
  margin: 0px auto;
}
.section-wrapper form .form-group-action,
.modal form .form-group-action {
  margin-top: 60px !important;
}
.section-wrapper form .form-title,
.modal form .form-title {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 24px;
  padding: 20px 0px;
}
.section-wrapper form .form-title .icon,
.modal form .form-title .icon {
  color: #4928d8;
}
.section-wrapper form .form-group,
.modal form .form-group {
  margin-bottom: 20px;
}
.section-wrapper form .form-group > label,
.modal form .form-group > label {
  padding-right: 0;
}
.section-wrapper form .form-group .col-*,
.modal form .form-group .col-* {
  padding: 0px 6px;
}
.section-wrapper form .form-group + .form-group,
.modal form .form-group + .form-group {
  margin-top: 20px;
}
.section-wrapper form .form-group .btn-switch,
.modal form .form-group .btn-switch {
  font-size: 16px;
  font-weight: 600;
  color: #4928d8;
  padding: 12px 20px;
  background: rgba(73, 40, 216, 0.1);
  border-radius: 8px;
}
.section-wrapper form .form-group.alert-group,
.modal form .form-group.alert-group {
  padding: 17px;
  background: #FFF5F5;
  border-radius: 8px;
}

@media screen and (max-width: 1200px) {
  .section-wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section-wrapper {
    box-shadow: none;
    border: 0px;
    margin: 0px;
  }
  .section-wrapper .section-content {
    padding: 0px 20px 20px;
  }
  .section-wrapper .section-content.with-icons {
    width: 100%;
  }
  .section-wrapper .section-main .form-title {
    line-height: 1.5;
    margin: 0px;
  }
  .section-wrapper .section-addon {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .section-wrapper {
    position: relative;
  }
  .section-wrapper::after, .section-wrapper .section-addon {
    content: " ";
    position: absolute;
    width: 360px;
    height: 100%;
    right: 0px;
    top: 0px;
    border-radius: 0 12px 12px 0;
    z-index: 1;
  }
  .section-wrapper .section-addon {
    z-index: 2;
  }
  .section-wrapper .section-addon a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
  }
  .section-wrapper .section-addon a img {
    height: auto;
    max-width: 100%;
  }
  .section-wrapper form.with-icons {
    width: 60%;
  }
  .section-wrapper .section-content {
    min-height: 846px;
    position: relative;
    z-index: 3;
  }
  .section-wrapper .section-content.with-icons {
    max-width: 840px;
  }
  .section-wrapper .section-title {
    margin-bottom: 50px;
  }
}
.index-page .header-wrapper {
  background-color: #7f62fd;
  color: #fff;
}
.index-page .header-wrapper .toolbar .toolbar-item .btn {
  color: #fff;
}
.index-page .header-wrapper .logo {
  height: 44px;
  width: 140px;
  background-size: 140px 44px;
  background-image: url("../images/v2/logo.svg");
}

.header-wrapper {
  background: #FFFFFF;
  box-shadow: 0px 2px 8px 0px rgba(73, 40, 216, 0.09), 0px 1px 2px 0px rgba(73, 40, 216, 0.09);
  height: 44px;
  width: 100%;
  padding: 0px 24px;
  color: #333333;
  position: sticky;
  top: 0px;
  z-index: 999;
}
.header-wrapper .avatar {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  width: 34px;
  height: 34px;
  padding: 5px;
  box-sizing: content-box;
}
.header-wrapper .avatar img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.header-wrapper .avatar img::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background-image: url("../images/v2/main/avatar-bg.png");
}
.header-wrapper .logo {
  height: 44px;
  width: 140px;
  background-size: 140px 44px;
  background-image: url("../images/v2/logo-dark.svg");
}
.header-wrapper .toolbar {
  font-size: 0px;
}
.header-wrapper .toolbar .toolbar-item {
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: auto;
  min-width: 120px;
  padding: 0px 10px;
  text-align: center;
}
.header-wrapper .toolbar .toolbar-item .icon,
.header-wrapper .toolbar .toolbar-item span {
  line-height: inherit;
}
.header-wrapper .toolbar .toolbar-item a {
  display: block;
  line-height: inherit;
}
.header-wrapper .toolbar .toolbar-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.header-wrapper .toolbar .toolbar-item:hover a {
  text-decoration: none;
}
.header-wrapper .toolbar .toolbar-item .btn {
  color: #333333;
  user-select: text;
}
.header-wrapper .btn {
  background: transparent;
  padding: 0px;
  margin: 0px;
  line-height: inherit;
}
.header-wrapper .btn:active, .header-wrapper .btn.active, .header-wrapper .btn.dropdown-toggle, .header-wrapper .btn:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none;
}
.header-wrapper.light {
  background-color: #fff;
  color: #333;
  box-shadow: 0px 2px 8px 0px rgba(73, 40, 216, 0.09), 0px 1px 2px 0px rgba(73, 40, 216, 0.09);
}
.header-wrapper .dropdown ul {
  width: 144px;
  padding: 20px 0px;
}
.header-wrapper .dropdown ul li a {
  padding: 12px 0px 12px 20px;
  text-align: left;
  font-size: 16px;
  color: #333333;
}
.header-wrapper .dropdown ul li .icon {
  font-size: 16px;
  font-weight: normal;
}
.header-wrapper .dropdown ul li .icon:first-of-type {
  margin-right: 8px;
}
.header-wrapper span {
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .header-wrapper {
    position: sticky;
    top: 0px;
  }
  .header-wrapper .avatar {
    font-size: 0px;
    width: 32px;
    height: 32px;
  }
  .header-wrapper .logo {
    background-size: 150px 40px;
    height: 40px;
    width: 150px;
  }

  .index-page .header-wrapper {
    position: absolute;
  }

  .wrapper {
    padding: 0px;
  }
}
.footer-wrapper {
  text-align: center;
  font-size: 0;
  padding-bottom: 20px;
}
.footer-wrapper .footer-content {
  max-width: 1200px;
  margin: 0px auto;
}
.footer-wrapper a {
  border-left: 1px solid #fff;
  padding-left: 5px;
  margin-left: 5px;
}
.footer-wrapper a img {
  margin: -2px 8px;
  height: 14px;
  width: auto;
}
.footer-wrapper .footer-field {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding-top: 8px;
  font-size: 14px;
}
.footer-wrapper .footer-field a {
  margin-top: 5px;
}
.footer-wrapper .footer-field > :nth-child(1),
.footer-wrapper .footer-field .link-icon {
  border-left: 0px;
}

.text .text_h1 {
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #333333;
  line-height: 32px;
}
.text .text_h2 {
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 32px;
}

.toast-center-center {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 999;
}

.toast {
  background: rgba(136, 136, 136, 0.5);
  border-radius: 14px;
  padding: 8px;
  border-radius: 12px;
  position: relative;
  padding: 12px 32px 12px 40px;
  font-size: 16px;
  min-width: 240px;
}
.toast + .toast {
  margin-top: 15px;
}
.toast::before {
  content: " ";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
}
.toast .toast-title {
  font-weight: 600;
  position: relative;
}
.toast .toast-title::after {
  content: " ";
  position: absolute;
  right: 0px;
  top: 0px;
  font-weight: 400;
  background: transparent url("../images/v2/icon-close.png");
  background-size: contain;
  width: 16px;
  height: 16px;
  display: none;
}
.toast .toast-message {
  padding-top: 6px;
}
.toast-success {
  background: rgba(40, 216, 41, 0.12);
  color: #28d829;
  padding-left: 56px;
}
.toast-success::before {
  background-image: url("../images/v2/icon-success.png");
}
.toast-warning {
  background: rgba(225, 145, 26, 0.12);
  color: #e1911a;
  padding-left: 56px;
}
.toast-warning::before {
  background-image: url("../images/v2/icon-warning.png");
}
.toast-error {
  background: rgba(216, 40, 40, 0.12);
  color: #d82828;
  padding-left: 56px;
}
.toast-error::before {
  background-image: url("../images/v2/icon-error.png");
}

.picker {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(73, 40, 216, 0.09), 0px 2px 8px 0px rgba(73, 40, 216, 0.09);
  overflow: hidden;
  visibility: collapse;
  user-select: none;
  z-index: 999;
}
.picker::before {
  opacity: 0;
}
.picker.open {
  visibility: visible;
}
.picker.open::before {
  opacity: 1;
}
.picker .picker-head {
  width: 100%;
  position: relative;
}
.picker .picker-head ul {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.picker .picker-head li {
  display: inline-block;
  width: 106px;
  text-align: center;
  font-size: 16px;
  transition: transform 0.15s ease-in-out;
  position: relative;
}
.picker .picker-head li::after {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  content: " ";
  background: rgba(73, 40, 216, 0.09);
  height: 1px;
}
.picker .picker-head li a {
  display: block;
  padding: 14px;
}
.picker .picker-head li.active {
  border-bottom: 1px solid #4928d8;
  color: #6851ee;
  font-weight: bold;
}
.picker .picker-head .navigator {
  font-size: 16px;
}
.picker .picker-head .navigator .prev,
.picker .picker-head .navigator .next {
  display: none;
  position: absolute;
  display: block;
  top: 0;
  padding: 14px 4px;
  background: rgba(255, 255, 255, 0.45);
  height: 100%;
  cursor: pointer;
  z-index: 99;
}
.picker .picker-head .navigator .prev {
  left: 0px;
}
.picker .picker-head .navigator .next {
  right: 0px;
}
.picker .picker-body {
  padding-top: 20px;
  padding-bottom: 20px;
  white-space: nowrap;
}
.picker .picker-body::after {
  clear: both;
  content: " ";
  display: block;
}
.picker .picker-group-wrapper {
  padding: 0 20px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.picker .picker-group {
  position: relative;
}
.picker .picker-group::after {
  content: " ";
  clear: both;
  display: block;
}
.picker .picker-group-head {
  width: 32px;
  text-align: center;
  font-size: 32px;
  color: #4928d8;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.picker .picker-group-body {
  padding: 10px 0 10px 10px;
  margin-left: 32px;
  white-space: break-spaces;
}
.picker .picker-group-body .picker-item {
  display: inline-block;
  width: 126px;
  padding: 12px 0 12px 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.picker .picker-group-body .picker-item.picked {
  border-radius: 12px;
  color: #4928d8;
}
.picker .picker-group-body .picker-item img {
  margin-right: 5px;
}

@media (min-width: 768px) {
  .picker {
    max-height: 400px;
    position: absolute;
    z-index: 999;
    max-height: unset;
  }
  .picker .picker-group-wrapper:first-child .picker-group-head {
    visibility: hidden;
  }
  .picker .picker-group-wrapper:first-child .picker-group-body {
    margin-left: 0;
  }
  .picker .picker-group .picker-item.picked {
    background-color: rgba(73, 40, 216, 0.09);
  }
  .picker .picker-group + .picker-group::before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 42px;
    background: rgba(73, 40, 216, 0.09);
    width: calc(100% - 42px);
    height: 1px;
  }
}
@media (max-width: 768px) {
  .picker {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100vh;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
  }
  .picker::before {
    background-color: rgba(0, 0, 0, 0.2);
    content: " ";
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
  }
  .picker .picker-wrapper {
    background: #fff;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 999;
    max-height: 350px;
    width: 100%;
  }
  .picker .picker-body .picker-group-wrapper {
    overflow: hidden;
    position: relative;
  }
  .picker .picker-body .picker-group-index {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .picker .picker-body .picker-group-head {
    display: none;
  }
  .picker .picker-group {
    padding-left: 100px;
    position: relative;
  }
  .picker .picker-group::before {
    background-color: rgba(73, 40, 216, 0.09);
    content: " ";
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 48px;
    width: 100%;
    z-index: 1;
    border-radius: 12px;
  }
  .picker .picker-group-body {
    padding: 0;
  }
  .picker .picker-group-body .picker-item {
    display: block;
    text-align: center;
    width: 100%;
    color: #888;
    border-radius: 12px;
    padding: 0 12px;
    height: 48px;
    line-height: 48px;
  }
  .picker .picker-group-body .picker-item:nth-child(1), .picker .picker-group-body .picker-item:nth-last-child(1) {
    font-size: 12px;
    font-size: 0.6;
  }
  .picker .picker-group-body .picker-item:nth-child(2), .picker .picker-group-body .picker-item:nth-last-child(2) {
    font-size: 16px;
    opacity: 0.8;
  }
  .picker .picker-group-body .picker-item.picked {
    color: #4928d8;
    font-size: 18px;
  }
  .picker .picker-group-index > li {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    width: 120px;
    padding: 0 12px;
    text-align: center;
  }
  .picker .picker-group-index > li.picked {
    border-radius: 12px;
    color: #4928d8;
    font-size: 18px;
  }
  .picker .picker-head {
    white-space: nowrap;
    overflow: hidden;
  }
  .picker .picker-toolbar .btn {
    background-color: transparent;
    padding: 20px 12px;
    font-size: 16px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.img-carousel-view .modal-dialog {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
}
.img-carousel-view .modal-dialog .modal-content {
  background: transparent;
}
.img-carousel-view .modal-dialog .modal-content .modal-header {
  display: block;
  position: absolute;
  color: #fff;
  width: 100%;
  z-index: 6;
}
.img-carousel-view .modal-dialog .modal-content .modal-header .modal-title {
  display: none;
}
.img-carousel-view .modal-dialog .modal-content .modal-header .close {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin: 0px auto;
  display: block;
  font-weight: 300;
  text-shadow: none;
  opacity: 0.8;
  float: none;
  background: rgba(0, 0, 0, 0.2);
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
}
.img-carousel-view .modal-dialog .modal-content .modal-body {
  padding: 0px;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel {
  height: 100vh;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel-indicators li + li {
  margin-left: 10px;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel-inner {
  height: 100%;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel-inner .item {
  height: 100vh;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel-inner .item img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px auto;
  max-width: 100%;
  max-height: 100%;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel-control .icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
}
.img-carousel-view .modal-dialog .modal-content .modal-body .bootbox-body .carousel-control.right .icon {
  transform: translateY(-50%) rotateY(180deg);
}

.userInfo-box-uploadImg-content-mian .userInfo-box-uploadImg-content-mian-left-imgBox {
  height: 500px;
  width: 500px;
  background: rgba(73, 40, 216, 0.06);
  border-radius: 8px;
}
.userInfo-box-uploadImg-content-mian .userInfo-box-uploadImg-content-mian-right .userInfo-box-uploadImg-content-mian-right-preview120 {
  margin: auto;
  margin-bottom: 20px;
  height: 120px;
  width: 120px;
  background: rgba(73, 40, 216, 0.06);
  border-radius: 8px;
}
.userInfo-box-uploadImg-content-mian .userInfo-box-uploadImg-content-mian-right .userInfo-box-uploadImg-content-mian-right-preview120 .userImg-preview {
  height: 120px;
  width: 120px;
}
.userInfo-box-uploadImg-content-mian .userInfo-box-uploadImg-content-mian-right .userInfo-box-uploadImg-content-mian-right-preview60 {
  margin: auto;
  height: 60px;
  width: 60px;
  background: rgba(73, 40, 216, 0.06);
  border-radius: 8px;
}
.userInfo-box-uploadImg-content-mian .userInfo-box-uploadImg-content-mian-right .userInfo-box-uploadImg-content-mian-right-preview60 .userImg-preview {
  height: 60px;
  width: 60px;
}

.ui-select .ui-select-text {
  line-height: inherit;
  height: 100%;
}
.ui-select a {
  border-radius: 6px;
}
.ui-select .ui-select-button {
  position: relative;
}
.ui-select .ui-select-button .icon {
  position: absolute;
  right: 5px;
  top: 10px;
}
.ui-select .ui-select-button .ui-select-icon {
  height: 14px;
  width: 14px;
  right: 10px;
  top: 14px;
}
.ui-select .ui-select-button .ui-select-icon::before {
  content: " ";
  background: transparent url("../images/v2/icons/arrow-down.svg");
  background-size: contain;
  background-position: center center;
  display: block;
  background-repeat: no-repeat;
  height: 100%;
}
.ui-select > a {
  padding: 10px 14px;
}
.ui-select > a:hover {
  border-color: #4928d8;
}

.area-choose-box .col-* {
  padding-right: 5px;
}
.area-choose-box .col-* + .col-* {
  padding-left: 5px;
}

.select-wrapper.ui-select-wrapper {
  padding: 0px;
  height: 46px;
}
.select-wrapper.ui-select-wrapper .ui-select {
  border: 0px;
  width: 100% !important;
}
.select-wrapper.ui-select-wrapper .ui-select a.ui-select-button {
  border: 0px;
  height: 24px;
  line-height: 24px;
}

.callout {
  border-left: 4px solid #fff;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.07);
  background: #F7F5FF;
}
.callout.callout-info {
  border-color: #4928D8;
  background: #F7F5FF;
}
.callout.callout-error {
  border-color: #FB2525;
  background: #FFF0F0;
}
.callout.callout-alert {
  border-color: #FAA01B;
  background: #FFFAF5;
}
.callout .callout-text {
  display: block;
  text-align: center;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}

.section-wrapper .callout {
  margin: -50px -24px 0;
}

.title-link-wrapper {
  width: fit-content;
  margin: auto;
}
.title-link-wrapper .title-link {
  padding: 12px 52px;
  font-size: 16px;
  line-height: unset;
}

.title-link-wrapper2 {
  height: 48px;
  background: #FFF5F5;
  line-height: 36px;
  position: relative;
  padding: 6px 24px;
}
.title-link-wrapper2 a {
  height: 36px;
  border-radius: 8px;
  border: 1px solid #FB2525;
  padding: 6px 42px;
  position: absolute;
  right: 22px;
  top: 6px;
  line-height: 24px;
}

.tag {
  background: transparent;
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 2px 12px;
  font-size: 12px;
}
.tag.tag-default {
  border-color: rgba(73, 40, 216, 0.8);
  color: rgb(73, 40, 216);
  background-color: rgb(241, 238, 255);
}
.tag.tag-danger {
  border-color: rgba(251, 37, 37, 0.9);
  color: rgb(251, 37, 37);
  background-color: rgb(255, 230, 230);
}
.tag.tag-warning {
  border-color: rgba(250, 160, 27, 0.8);
  color: rgb(250, 160, 27);
  background-color: rgb(255, 245, 231);
}

.alert {
  padding: 20px 12px;
  border: 0px;
  color: #333;
}
.alert * {
  line-height: 1.5;
}
.alert .icon {
  margin: 0px 5px;
}
.alert.alert-info {
  background-color: rgba(73, 40, 216, 0.04);
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.Certification_dialog {
  box-sizing: border-box;
  position: relative;
  z-index: 1050;
}
.Certification_dialog .modal.modal-qrcode {
  background: transparent;
  top: 0px;
  left: 0px;
  transform: initial;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.Certification_dialog .modal.modal-qrcode .modal-dialog {
  width: 772px;
  background: #fff;
  border-radius: 24px;
  margin: 40px auto;
  padding: 18px 0;
}
.Certification_dialog .modal.modal-qrcode .modal-head {
  height: 84px;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
  margin: 0px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}
.Certification_dialog .modal.modal-qrcode .modal-head .title {
  text-align: center;
  font-weight: 600;
  color: #333333;
}
.Certification_dialog .modal.modal-qrcode .modal-head .title .light {
  font-weight: 400;
}
.Certification_dialog .modal.modal-qrcode .modal-head .iconfont {
  color: #D8D8D8;
  font-size: 24px;
}
.Certification_dialog .modal.modal-qrcode .modal-body {
  padding: 0px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .tip {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  padding: unset;
  margin: 20px 36px 26px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list {
  position: relative;
  margin-bottom: 30px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list {
  width: 100%;
  white-space: nowrap;
  margin: 0px auto;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list.hidden-xs {
  display: flex;
  justify-content: space-between;
  width: 676px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 330px;
  height: 420px;
  background: #FFFFFF;
  border-radius: 10px;
  text-align: center;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item.alipay {
  border: 2px solid #1677FE;
  background: transparent url("../images/alipay-bg.png") no-repeat;
  background-size: contain;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item.alipay .card-header::before {
  background-image: url("../images/alipay.png");
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item.alipay .accountnumber label {
  color: #888;
  width: 188px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  text-wrap: balance;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item.wechat {
  border: 2px solid #3BCE2A;
  background: transparent url("../images/wechat-bg.png") no-repeat;
  background-size: contain;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item.wechat .card-header::before {
  background-image: url("../images/wxpay.png");
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item.wechat .accountnumber label {
  color: #888;
  width: 130px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  text-wrap: balance;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-header {
  display: flex;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 36px;
  margin-top: 24px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-header::before {
  content: "";
  height: 36px;
  width: 36px;
  margin-right: 10px;
  background-size: contain;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body {
  height: 180px;
  margin-top: 22px;
  margin-bottom: 32px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper {
  height: 180px;
  width: 180px;
  background: transparent url("../images/qrcode-bg.png") no-repeat;
  background-size: contain;
  padding: 11px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner {
  height: 100%;
  background: transparent url(../images/qrcode-mask-bg.png) no-repeat;
  background-size: contain;
  background-color: white;
  border-radius: 9px;
  border: 8px solid #FFFFFF;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-show {
  height: 36px;
  width: 36px;
  margin-top: 30px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-show.success {
  background: transparent url(../images/icon-success.png) no-repeat;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-show.clock {
  background: transparent url(../images/icon-clock.png) no-repeat;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-inner-text {
  margin-top: 8px;
  height: 22px;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 22px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-inner-desc {
  margin-top: 12px;
  height: 17px;
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  line-height: 17px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-bottom {
  font-size: 16px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-bottom .user-info-list {
  font-weight: 600;
  color: #333333;
  line-height: 26px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-bottom .user-info-list .user-info-list-item {
  width: 206px;
  text-align: left;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-bottom .user-info-list span {
  font-weight: 600;
  color: #888888;
  line-height: 22px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-control {
  height: 70px;
  width: 70px;
  top: calc(50% - 35px);
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-control.left {
  background-image: url("../images/icon-arrow-left.png");
  left: -70px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-control.right {
  background-image: url("../images/icon-arrow-right.png");
  right: -70px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-indicators {
  width: 100%;
  padding: 14px 0px;
  bottom: -39px;
  margin: 0 auto;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-indicators li {
  width: 18px;
  height: 18px;
  background: rgba(105, 125, 244, 0.2);
  border-radius: 50%;
  margin: 0px 7px;
}
.Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-indicators li.active {
  background: rgb(105, 125, 244);
}
.Certification_dialog .modal.modal-qrcode .modal-body .modal-content {
  box-shadow: unset;
  border: unset;
  padding: unset;
}
.Certification_dialog .modal.modal-qrcode .modal-body .modal-content .course_link {
  display: block;
  width: 346px;
  height: 40px;
  background: #EFEFFF;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #4928D8;
  line-height: 40px;
  margin: 0 auto 32px;
  text-align: center;
}
.Certification_dialog .modal.modal-qrcode .modal-footer {
  padding: 24px 32px 54px;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .text_style {
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  line-height: 24px;
  margin: unset;
  margin-bottom: 24px;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .text_style .split-icon {
  display: inline-block;
  background: transparent url("../images/icon-arrow-right2.png") no-repeat center center;
  width: 36px;
  height: 18px;
  margin: 0px 7px;
  background-size: 100%;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .lblTip {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  display: inline-flex;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .lblTip input[type=checkbox] {
  font-size: inherit;
  margin-right: 5px;
  display: inline-block;
  border-radius: 50%;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .lblTip input::before {
  content: "";
  width: 8px;
  height: 8px;
  transition: 120ms transform ease-in-out;
  background-color: #4928d8;
  display: block;
  position: absolute;
  left: calc(50% - 4px);
  bottom: calc(50% - 4px);
  transform-origin: center;
  border-radius: 4px;
  clip-path: none;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .btn-primary {
  display: inline-block;
  width: 168px;
  height: 48px;
  background: #4928D8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 48px;
  text-align: center;
}
.Certification_dialog .modal.modal-qrcode .modal-footer .btn-primary.btn-laststep {
  padding-left: 8px;
}
.Certification_dialog .modal-backdrop {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

@media screen and (max-width: 768px) {
  /*当屏幕尺寸小于768px时，应用下面的CSS样式*/
  .Certification_dialog .modal.modal-qrcode .modal-dialog {
    width: unset;
    margin: 85px 16px;
    padding-top: 11px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-head {
    height: 54px;
    margin: 0 18px;
    font-size: 18px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-head .iconfont {
    display: none;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .tip {
    margin: 16px 18px 12px;
    font-size: 13px;
    line-height: 17px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list {
    margin: unset;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list {
    padding: 12px 0 33px;
    background: rgba(73, 40, 216, 0.08);
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item {
    width: 237px;
    height: 315px;
    margin: auto;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-header {
    margin-top: 18px;
    font-size: 14px;
    line-height: 18px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-header::before {
    content: "";
    height: 18px;
    width: 18px;
    margin-right: 8px;
    background-size: contain;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body {
    height: unset;
    margin-top: 22px;
    margin-bottom: 19px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper {
    height: 128px;
    width: 128px;
    padding: 8px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner {
    border-radius: 6.5px;
    border: 5px solid #FFFFFF;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-show {
    height: 24px;
    width: 24px;
    margin-top: 21px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-show.success {
    background-size: contain;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-show.clock {
    background-size: contain;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-inner-text {
    margin-top: 7px;
    height: 17px;
    font-size: 13px;
    line-height: 17px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-body .img-wrapper .img-inner .openState-box .img-inner-desc {
    margin-top: 8px;
    height: 15px;
    font-size: 11px;
    line-height: 15px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-bottom {
    font-size: 12px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .card-list .card-item .card-bottom .user-info-list .user-info-list-item {
    padding-left: 10%;
    overflow: hidden;
    line-height: 22px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-indicators li {
    height: 9px;
    width: 9px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-control {
    height: 35px;
    width: 35px;
    top: calc(50% - 17.5px);
    background-size: contain;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-control.right {
    right: 6px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-body .qrcode-section-list .carousel-control.left {
    left: 6px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-footer {
    padding: 12px 0px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-footer .text_style {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-footer .text_style .split-icon {
    height: 12px;
    width: 18px;
    margin: 0 3.5px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-footer .lblTip {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .Certification_dialog .modal.modal-qrcode .modal-footer .btn-primary {
    width: 247px;
  }
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  line-height: 1;
  font-family: "Microsoft YaHei", 微软雅黑, "Microsoft YaHei Light", "PingFang SC";
}

h1,
h2,
h3 {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, a:active, a:focus {
  color: inherit;
  text-decoration: inherit;
}

ul,
li {
  margin: 0px;
  list-style: none;
}

input::placeholder {
  color: #888;
}

input:focus {
  color: #333;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
  background-color: transparent !important;
  color: #333 !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #333 !important;
}

body {
  background-color: #f4f4f6;
  font-size: 14px;
}

body,
html {
  height: 100%;
}

.main,
.wrapper {
  min-height: auto;
}

.logo {
  background: transparent url("../images/v2/logo.png") no-repeat left top;
  display: block;
  height: 24px;
  width: 129px;
  background-size: contain;
}
.logo-white {
  background-image: url("../images/v2/logo-white.png");
}
.logo-dark {
  background-image: url("../images/v2/logo-dark.png");
}

.icon {
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.icon::after, .icon::before {
  font-size: inherit;
  color: inherit;
}
.icon ~ * {
  margin-left: 5px;
}

* ~ .icon {
  margin-left: 5px;
}

:focus,
:focus-visible {
  outline: 0px !important;
  outline-offset: 0;
}

a:focus {
  outline-offset: 0;
}

.mt120 {
  margin-top: 120px;
}

.mt50 {
  margin-top: 50px;
}

.mt40 {
  margin-top: 30px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

.mt15 {
  margin-top: 15px;
}

.mt10 {
  margin-top: 10px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb10 {
  margin-bottom: 10px;
}

.mr5 {
  margin-right: 5px;
}

.ml {
  margin-left: 5px;
}

.protocol-link {
  color: #4928d8;
}

.line-height-1_5 {
  line-height: 1.5;
}

.line-height-1_2_5 {
  line-height: 1.25;
}

@media screen and (max-width: 1024px) {
  body {
    background-color: #fff;
  }

  .form-horizontal .control-label {
    text-align: left;
  }
}
.default-color {
  color: #333;
}

.disabled-color {
  color: #888;
}

.active-color {
  color: #4928d8;
}

.warn-color {
  color: #e1911a;
}

.danger-color {
  color: #db2828;
}

.front-color {
  color: #fff;
}

.help-block {
  line-height: 1.5;
}

.no-data {
  padding: 80px 0px;
}

.ft14 {
  font-size: 14px;
}

.ft16 {
  font-size: 16px;
}

.ft20 {
  font-size: 20px;
}

.ft24 {
  font-size: 24px;
}

.ft26 {
  font-size: 26px;
}

.em4 {
  width: 4em;
}

.with-errors {
  color: #d82828 !important;
  position: absolute;
  left: 15px;
  bottom: -18px;
}

.with-errors[data-for=js-sure] {
  position: unset;
}

.bold {
  font-weight: 600;
}

.line-height_1_5 {
  line-height: 1.5;
}

.line-height_1_2_5 {
  line-height: 1.25;
}

.avatar-wrapper img {
  position: relative;
  z-index: 2;
  border-radius: 6px;
}
.avatar-wrapper img::after {
  border-radius: inherit;
  content: " ";
  display: inline-block;
  background: transparent url("../images/v2/main/avatar-default.png") no-repeat center center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
}

.popover-content {
  line-height: 1.5;
}

.col-center {
  float: none;
  margin: 0px auto;
}

.line-height-1-5 {
  line-height: 1.5;
}

.icon {
  line-height: inherit;
  font-size: 12px;
}

.main {
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.main .main-content {
  height: calc(100% - 76px - 10px);
  width: 100%;
}
.main .main-top-tip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 2em;
  text-align: center;
  background: #f2e8ff;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #4928d8;
}
.main .main-top-tip * {
  line-height: 1.5;
}
.main .main-top-tip .icon-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.main .main-top-tip a {
  margin-left: 200px;
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: #4928D8;
}

.anchor-wrapper {
  display: none;
}

.index-wrapper {
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 90% 10%, 10% -50%, center top;
  background-image: url("../images/v2/main/index-bg-front-2.png"), url("../images/v2/main/index-bg-front-1.png"), url("../images/v2/main/index-bg.png");
  background-size: 500px, 600px, 100% 560px;
}
.index-wrapper .header-wrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
}
.index-wrapper .title {
  color: #fff;
  font-size: 38px;
  text-align: center;
  padding: 90px 0;
}
.index-wrapper .card-list {
  max-width: 1200px;
  margin: 0px auto;
  font-size: 0;
}
.index-wrapper .card-list > ul {
  margin: 0px -12px;
}
.index-wrapper .card-list .card {
  position: relative;
  width: 384px;
  height: 286px;
  text-align: center;
  border-radius: 12px;
  background-color: #fff;
  display: inline-block;
  margin: 12px;
  box-shadow: 0px 2px 8px 0px rgba(73, 40, 216, 0.09), 0px 1px 2px 0px rgba(73, 40, 216, 0.09);
  cursor: pointer;
  vertical-align: top;
}
.index-wrapper .card-list .card:hover {
  box-shadow: 0px 4px 16px 0px rgba(73, 40, 216, 0.14);
}
.index-wrapper .card-list .card .card-content {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
}
.index-wrapper .card-list .card .card-content .card-desc {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  padding: 16px 48px;
  cursor: inherit;
  line-height: 1.25;
}
.index-wrapper .card-list .card .card-img {
  padding: 34px 0 16px 0;
}
.index-wrapper .card-list .card .card-style {
  position: absolute;
  top: 0;
  right: 0;
  width: 136px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  font-size: 16px;
  font-weight: 400;
  color: #4928d8;
  border-radius: 0px 12px 0 40px;
  background-color: rgba(73, 40, 216, 0.2);
}
.index-wrapper .card-list .card .card-desc1 {
  position: absolute;
  top: 55%;
  right: -8px;
  width: 98px;
  height: 58px;
  background-image: url("../images/v2/rectangle1.png");
  text-align: center;
  line-height: 58px;
  font-size: 16px;
  font-weight: 400;
  color: #4928d8;
}
.index-wrapper .card-list .card a {
  display: block;
  height: 100%;
}

.content-wrapper {
  height: auto;
}

.qr-content {
  position: fixed;
  right: 50px;
  bottom: 50px;
}

@media (max-width: 768px) {
  .qr-content {
    display: none;
  }

  .index-page .title {
    display: none;
  }
  .index-page .header-wrapper {
    background-color: transparent;
    top: 20px;
  }

  .main {
    display: block;
  }
  .main .main-content {
    min-height: 100%;
  }
  .main .main-top-tip {
    position: fixed;
    top: auto;
    left: auto;
    right: 0px;
    bottom: 0px;
    padding: 20px;
    width: 55%;
    z-index: 99;
    border-radius: 6px;
  }

  .index-wrapper {
    padding: 0px 16px;
    background-image: url("../images/v2/main/index_h5_bg.png");
    min-height: 100vh;
    background-size: cover;
    padding-top: 120px;
  }
  .index-wrapper .title {
    margin: 0px;
  }
  .index-wrapper .card-list {
    width: 100%;
  }
  .index-wrapper .card-list ul {
    margin: 0px;
    width: 100%;
  }
  .index-wrapper .card-list .card {
    padding: 0px 12px;
    width: calc(50% - 16px);
    margin: 0px 8px 16px;
    min-height: 186px;
    margin-bottom: 20px;
    right: 0;
    height: auto;
  }
  .index-wrapper .card-list .card .card-img {
    width: 86px;
  }
  .index-wrapper .card-list .card .card-content {
    font-size: 14px;
    color: #4928d8;
  }
  .index-wrapper .card-list .card .card-content .icon-tip {
    display: inline-block !important;
    vertical-align: top;
    padding-top: 6px;
    opacity: 0.3;
  }
  .index-wrapper .card-list .card .card-content .card-desc {
    font-size: 12px;
    padding: 12px 0px;
    white-space: nowrap;
  }
  .index-wrapper .card-list .card .card-desc1 {
    bottom: 0;
    top: auto;
    margin: 10px auto 0;
    width: calc(100% - 24px);
    border: 1px solid #4928d8;
    color: #4928d8;
    border-radius: 12px;
    background-image: none;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    position: relative;
    margin-bottom: 20px;
    right: 0px;
  }
  .index-wrapper .card-list .card .card-style {
    width: 88px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .main .footer-wrapper {
    padding-bottom: 30px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .card-list {
    width: 800px;
    text-align: left;
  }
}
.img-desc {
  font-size: 20px;
  color: #333333;
  line-height: 28px;
  text-align: center;
  font-weight: 600;
  margin: 18px 0px;
}