@charset "utf-8";
:root {
  --color: #171321;
  --vh: 100vh;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-wrap: normal;
  word-break: normal;
}
.header .nav-pc-logo .st0,
.footer .logo2 .st0,
.logo .st0 {
  opacity: 1 !important;
}
html {
  font-size: -webkit-calc(100vw/19.2);
  font-size: -moz-calc(100vw/19.2);
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
@media (max-width: 991px) {
  html ::-webkit-scrollbar {
    display: none;
  }
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #171321;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  html {
    font-size: 100px;
  }
}
@media (min-width: 1370px) and (max-width: 1439px) {
  html {
    font-size: 96px;
  }
}
@media (min-width: 1320px) and (max-width: 1369px) {
  html {
    font-size: 92px;
  }
}
@media (min-width: 1280px) and (max-width: 1319px) {
  html {
    font-size: 90px;
  }
}
@media (min-width: 1240px) and (max-width: 1279px) {
  html {
    font-size: 86px;
  }
}
@media (min-width: 1180px) and (max-width: 1239px) {
  html {
    font-size: 82px;
  }
}
@media (min-width: 1140px) and (max-width: 1179px) {
  html {
    font-size: 80px;
  }
}
@media (min-width: 1080px) and (max-width: 1139px) {
  html {
    font-size: 76px;
  }
}
@media (min-width: 1024px) and (max-width: 1079px) {
  html {
    font-size: 72px;
  }
}
@media (min-width: 992px) and (max-width: 1023px) {
  html {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: -webkit-calc(100vw/7.5);
    font-size: -moz-calc(100vw/7.5);
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  body {
    min-width: unset;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
  -o-object-fit: cover;
  object-fit: cover;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-selected {
  -webkit-transition: background-color 5000s ease-out 0.5s;
  -o-transition: background-color 5000s ease-out 0.5s;
  -moz-transition: background-color 5000s ease-out 0.5s;
  transition: background-color 5000s ease-out 0.5s;
}
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
/* 字体一行显示 */
.line1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示两行 */
.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示三行 */
.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示四行 */
.line4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示六行 */
.line6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.itemcenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}
/* flex 布局  强制不换行 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* flex 布局  换行 */
.flexs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.width {
  width: 93.75%;
  max-width: 1800px;
  margin: auto;
}
@media (max-width: 991px) {
  .width {
    width: 92%;
  }
}
.width2 {
  width: 14rem;
  max-width: 1400px;
  margin: auto;
}
@media (max-width: 991px) {
  .width2 {
    width: 92%;
  }
}
.index-body {
  background: #F0EEF5;
}
.anli-body {
  background: #F6F5F7;
}
.main {
  width: 100%;
  min-height: 60vh;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: top center;
}
.btn {
  display: inline-block;
  padding: 0.1rem 0.15rem;
  background-color: #FFFFFF;
  border-radius: 0.05rem;
  border: 1px solid #FFFFFF;
  font-size: 0.14rem;
  color: #171321;
  line-height: 1;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn .svg {
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.06rem;
  fill: #171321;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .btn .svg {
    width: 0.16rem;
    height: 0.16rem;
  }
}
.btn .svg path,
.btn .svg rect {
  fill: #171321;
}
.btn .svg1 {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.06rem;
  fill: #fff;
}
@media (max-width: 991px) {
  .btn .svg1 {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.btn .svg1 path,
.btn .svg1 rect {
  fill: #fff;
}
@media (max-width: 991px) {
  .btn {
    padding: 0.2rem 0.26rem;
    font-size: 0.22rem;
    border-radius: 0.1rem;
  }
}
.btn.btn-bor {
  position: relative;
  background: transparent;
  border-color: transparent;
  color: #fff;
  border-radius: 0.05rem;
}
@media (max-width: 991px) {
  .btn.btn-bor {
    border-radius: 0.1rem;
  }
}
.btn.btn-bor::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#A989F5));
  background: -webkit-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -moz-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -o-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: linear-gradient(0deg, #FCA326 0%, #A989F5 100%);
  border-radius: 0.05rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
@media (max-width: 991px) {
  .btn.btn-bor::before {
    border-radius: 0.1rem;
  }
}
.btn.btn-b {
  background-color: #171321;
  color: #fff;
  border: 0;
}
.btn.btn-b .svg {
  fill: #fff;
}
.btn.btn-b .svg path,
.btn.btn-b .svg rect {
  fill: #fff;
}
.btn.btn-w {
  background: transparent;
  color: #171321;
  border: 0;
}
.btn.btn-w .svg {
  fill: #171321;
}
.btn.btn-w .svg path,
.btn.btn-w .svg rect {
  fill: #171321;
}
.btn:hover .svg {
  -webkit-transform: translateX(0.05rem);
  -moz-transform: translateX(0.05rem);
  -ms-transform: translateX(0.05rem);
  -o-transform: translateX(0.05rem);
  transform: translateX(0.05rem);
}
.btn-bor:hover {
  background: rgba(221, 221, 221, 0.1) !important;
}
.btn-box {
  margin-top: 0.3rem;
}
.btn-box .btn {
  min-width: 1.4rem;
  min-height: 0.5rem;
  font-size: 16px;
  padding: 0.15rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 991px) {
  .btn-box .btn {
    min-width: 1.8rem;
    padding: 0.2rem 0.26rem;
    font-size: 0.22rem;
    border-radius: 0.14rem;
  }
}
.btn-box .btn .svg {
  width: 13px;
  height: 13px;
  fill: #171321;
  margin-left: 0.08rem;
}
.btn-box .btn .svg path,
.btn-box .btn .svg rect {
  fill: #171321;
}
@media (max-width: 991px) {
  .btn-box .btn .svg {
    width: 0.16rem;
    height: 0.16rem;
  }
}
.btn-box .btn.btn-bor {
  margin-left: 0.1rem;
  background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 991px) {
  .btn-box .btn.btn-bor {
    margin-left: 0.16rem;
  }
}
.btn-box .btn.btn-bor::before {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .btn-box .btn.btn-bor::before {
    border-radius: 0.14rem;
  }
}
.btn-box .btn.btn-bor .svg {
  fill: #fff;
}
.btn-box .btn.btn-bor .svg path,
.btn-box .btn.btn-bor .svg rect {
  fill: #fff;
}
.btn-box .btn.btn-b {
  background-color: #171321;
  color: #fff;
  border: 0;
}
.btn-box .btn.btn-b .svg {
  fill: #fff;
}
.btn-box .btn.btn-b .svg path,
.btn-box .btn.btn-b .svg rect {
  fill: #fff;
}
.btn-box .btn.btn-w {
  background: transparent;
  color: #171321;
  border: 0;
}
.btn-box .btn.btn-w .svg {
  fill: #171321;
}
.btn-box .btn.btn-w .svg path,
.btn-box .btn.btn-w .svg rect {
  fill: #171321;
}
.xx-ie {
  padding-left: 0.34rem;
  color: #666;
  margin-top: 0.1rem;
  position: relative;
}
@media (max-width: 991px) {
  .xx-ie {
    padding-left: 0.44rem;
  }
}
.xx-ie a {
  color: #A989F5;
  text-decoration: underline;
}
.xx-ie .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #171321;
  position: absolute;
  left: 0;
  top: 0.04rem;
}
@media (max-width: 991px) {
  .xx-ie .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.xx-ie .svg path,
.xx-ie .svg rect {
  fill: #171321;
}
.xx-ie span {
  font-weight: 500;
  color: #171321;
}
.pc-img {
  display: block;
}
@media (max-width: 991px) {
  .pc-img {
    display: none;
  }
}
.wap-img {
  display: none;
}
@media (max-width: 991px) {
  .wap-img {
    display: block;
  }
}
.font10 {
  font-size: 10px;
  color: #171321;
}
@media (max-width: 991px) {
  .font10 {
    font-size: 0.2rem;
  }
}
.font12 {
  font-size: 12px;
  color: #171321;
}
@media (max-width: 991px) {
  .font12 {
    font-size: 0.2rem;
  }
}
.font14 {
  font-size: 14px;
  color: #171321;
}
@media (max-width: 991px) {
  .font14 {
    font-size: 0.22rem;
  }
}
.font16 {
  font-size: 16px;
  color: #171321;
}
@media (max-width: 991px) {
  .font16 {
    font-size: 0.22rem;
  }
}
.font18 {
  font-size: 0.18rem;
  color: #171321;
}
@media (max-width: 991px) {
  .font18 {
    font-size: 0.24rem;
  }
}
.font20 {
  font-size: 0.2rem;
  color: #171321;
  font-weight: 500;
}
@media (max-width: 991px) {
  .font20 {
    font-size: 0.26rem;
  }
}
.font22 {
  font-size: 0.22rem;
  color: #171321;
  font-weight: 500;
}
@media (max-width: 991px) {
  .font22 {
    font-size: 0.28rem;
  }
}
.font24 {
  font-size: 0.24rem;
  color: #171321;
  font-weight: 500;
}
@media (max-width: 991px) {
  .font24 {
    font-size: 0.3rem;
  }
}
.font30 {
  font-size: 0.3rem;
  color: #171321;
  font-weight: 500;
}
@media (max-width: 991px) {
  .font30 {
    font-size: 0.32rem;
  }
}
.font36 {
  font-size: 0.36rem;
  color: #171321;
  font-weight: 500;
}
@media (max-width: 991px) {
  .font36 {
    font-size: 0.36rem;
  }
}
.font40 {
  font-size: 0.4rem;
  color: #171321;
  font-weight: 500;
}
@media (max-width: 991px) {
  .font40 {
    font-size: 0.36rem;
  }
}
.font44 {
  font-size: 0.44rem;
  color: #171321;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .font44 {
    font-size: 0.36rem;
  }
}
.font48 {
  font-size: 0.48rem;
  color: #171321;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .font48 {
    font-size: 0.38rem;
  }
}
.font50 {
  font-size: 0.5rem;
  color: #171321;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .font50 {
    font-size: 0.4rem;
  }
}
.bold {
  font-weight: 500;
}
.blue {
  color: #7759C2;
}
.none {
  display: none;
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .header {
    min-width: unset;
  }
}
.top-ad-box {
  width: 100%;
  height: 0.5rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-color: #171321;
  position: relative;
  display: none;
}
@media (max-width: 991px) {
  .top-ad-box {
    height: 0.8rem;
  }
}
.top-ad {
  width: 100%;
  height: 100%;
  font-size: 0.14rem;
  color: #fff;
}
@media (max-width: 991px) {
  .top-ad {
    font-size: 0.22rem;
  }
}
.top-ad .t-close {
  width: 0.09rem;
  height: 0.09rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.3rem;
  margin: auto;
  z-index: 10;
  fill: #fff;
  cursor: pointer;
}
@media (max-width: 991px) {
  .top-ad .t-close {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.top-ad .t-close path,
.top-ad .t-close rect {
  fill: #fff;
}
.top-ad .t-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.top-ad > .svg {
  width: 0.18rem;
  height: 0.13rem;
  margin-right: 0.1rem;
  fill: #A989F5;
}
@media (max-width: 991px) {
  .top-ad > .svg {
    width: 0.28rem;
    height: 0.23rem;
    margin-right: 0.14rem;
  }
}
.top-ad > .svg path,
.top-ad > .svg rect {
  fill: #A989F5;
}
.top-ad .a {
  font-size: 0.12rem;
  color: #fff;
  display: block;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .top-ad .a {
    font-size: 0.2rem;
  }
}
.top-ad .a > span {
  border-bottom: 1px solid #fff;
  padding: 0.01rem 0;
}
.top-ad .a > .svg {
  width: 0.09rem;
  height: 0.09rem;
  margin-left: 0.02rem;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  fill: #fff;
}
@media (max-width: 991px) {
  .top-ad .a > .svg {
    width: 0.12rem;
    height: 0.12rem;
    margin-left: 0.04rem;
  }
}
.top-ad .a > .svg path,
.top-ad .a > .svg rect {
  fill: #fff;
}
.top-ad .a:hover > .svg {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-pc {
  width: 100%;
  height: 62px;
  background-color: #20143D;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .nav-pc {
    display: none;
  }
}
.nav-pc > div {
  height: 100%;
  position: relative;
}
.nav-pc .nav-phone {
  font-size: 16px;
  margin-right: 0.17rem;
  line-height: 1;
  color: #fff;
}
.nav-pc .nav-phone .svg {
  width: 15px;
  height: 15px;
  margin-right: 0.09rem;
}
@media (max-width: 1109px) {
  .nav-pc .nav-phone > span {
    display: none;
  }
}
.nav-pc .btn-bor {
  margin-left: 0.1rem;
}
.nav-pc .btn {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
}
.nav-pc .btn::before {
  border-radius: 5px;
}
.nav-pc .nav-pc-logo {
  width: 153px;
  height: 27px;
}
.nav-pc .nav-pc-logo .svg {
  width: 100%;
  height: 100%;
}
.nav-pc .nav-pc-menu {
  margin-left: 1.04rem;
  position: static;
}
.nav-pc .nav-pc-menu > li {
  height: 100%;
  margin-right: 0.35rem;
  position: static;
  height: 62px;
}
.nav-pc .nav-pc-menu > li > a {
  height: 100%;
  color: #fff;
  font-size: 14px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 11;
}
.nav-pc .nav-pc-menu > li > a .svg {
  width: 9px;
  height: 5px;
  margin-left: 0.09rem;
  -webkit-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -moz-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -o-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, -o-transform;
  -moz-transition-property: opacity, transform, -moz-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform, -moz-transform, -o-transform;
}
.nav-pc .nav-pc-menu > li:hover > a {
  color: #A989F5;
}
.nav-pc .nav-pc-menu > li:hover > a .svg {
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.nav-pc .nav-pc-menu > li .xl-box {
  padding: 0.4rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 40px 0px rgba(125, 119, 139, 0.1);
  box-shadow: 0px 6px 40px 0px rgba(125, 119, 139, 0.1);
  border-radius: 15px;
  border: 1px solid #F8F8F8;
  position: absolute;
  top: 54px;
  left: 1rem;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.99) translateY(-0.7em);
  -moz-transform: scale(0.99) translateY(-0.7em);
  -ms-transform: scale(0.99) translateY(-0.7em);
  -o-transform: scale(0.99) translateY(-0.7em);
  transform: scale(0.99) translateY(-0.7em);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.nav-pc .nav-pc-menu > li .xl-box.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nav-pc .nav-pc-menu > li .xl-box .xl-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left {
  padding-right: 0.4rem;
}
@media (max-width: 1509px) {
  .nav-pc .nav-pc-menu > li .xl-box .xl-left {
    padding-right: 0;
  }
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item {
  margin-top: 0.2rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item:nth-child(1) {
  margin-top: 0;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-tit {
  font-weight: 500;
  font-size: 18px;
  color: #171321;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-tit .svg {
  width: 11px;
  height: 18px;
  margin-right: 0.08rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.2rem;
  margin-left: 0.1rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul {
  margin-left: 0.3rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul:nth-child(1) {
  margin-left: 0;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li {
  padding: 0.12rem 0.1rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li > .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r {
  margin-left: 0.1rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r .xl-li-r-t {
  font-weight: 500;
  font-size: 14px;
  color: #171321;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r .xl-li-r-t > .svg {
  width: 14px;
  height: 9px;
  fill: #7759C2;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r .xl-li-r-t > .svg path,
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r .xl-li-r-t > .svg rect {
  fill: #7759C2;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r .xl-li-r-b {
  font-size: 12px;
  color: #999999;
  margin-top: 0.02rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li:hover {
  background: #F8F8F9;
  border-radius: 10px;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li:hover .xl-li-r .xl-li-r-t {
  color: #A989F5;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-left .xl-left-item .xl-cons > ul > li .xl-li:hover .xl-li-r .xl-li-r-t > .svg {
  opacity: 1;
  -webkit-transform: translateX(0.1rem);
  -moz-transform: translateX(0.1rem);
  -ms-transform: translateX(0.1rem);
  -o-transform: translateX(0.1rem);
  transform: translateX(0.1rem);
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right {
  padding-left: 0.4rem;
  position: relative;
}
@media (max-width: 1509px) {
  .nav-pc .nav-pc-menu > li .xl-box .xl-right {
    display: none;
  }
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .xl-r-img {
  width: 3.5rem;
  min-width: 3.5rem;
  height: 2rem;
  border-radius: 0.1rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .xl-r-tit {
  max-width: 3.5rem;
  font-weight: 500;
  font-size: 0.2rem;
  color: #171321;
  margin-top: 0.2rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .xl-r-desc {
  max-width: 3.5rem;
  font-size: 0.14rem;
  color: #999;
  margin-top: 0.12rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .btn-bor {
  color: #171321;
  margin-top: 0.38rem;
  margin-left: 0;
  width: 1.2rem;
  height: 0.45rem;
  border-radius: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.16rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .btn-bor::before {
  border-radius: 0.1rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .btn-bor .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #171321;
  margin-left: 0.05rem;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right .btn-bor .svg path,
.nav-pc .nav-pc-menu > li .xl-box .xl-right .btn-bor .svg rect {
  fill: #171321;
}
.nav-pc .nav-pc-menu > li .xl-box .xl-right::after {
  content: "";
  width: 1px;
  height: 98%;
  background: #EEEEEE;
  position: absolute;
  top: 0;
  left: 0;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item {
  margin-top: 0;
  margin-left: 0.3rem;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item:nth-child(1) {
  margin-left: 0;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list {
  margin-top: 0.31rem;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list > li {
  margin-top: 0.11rem;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list > li > a {
  width: 150px;
  height: 50px;
  background: #FAFAFC;
  border-radius: 8px;
  border: 1px solid #EEEEEE;
  display: block;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list > li > a .xl-lg {
  height: 100%;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list > li > a::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#A989F5));
  background: -webkit-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -moz-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -o-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: linear-gradient(0deg, #FCA326 0%, #A989F5 100%);
  border-radius: 8px;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list > li > a:hover {
  border-color: transparent;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left-t .xl-left-item .xl-list > li > a:hover::before {
  opacity: 1;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-more {
  font-size: 16px;
  color: #A989F5;
  margin-top: 0.9rem;
  display: inline-block;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-more .svg {
  width: 14px;
  height: 14px;
  fill: #A989F5;
  margin-left: 0.08rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-more .svg path,
.nav-pc .nav-pc-menu > li .xl-box2 .xl-more .svg rect {
  fill: #A989F5;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-more:hover .svg {
  -webkit-transform: translateX(0.05rem);
  -moz-transform: translateX(0.05rem);
  -ms-transform: translateX(0.05rem);
  -o-transform: translateX(0.05rem);
  transform: translateX(0.05rem);
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left .xl-left-item .xl-cons {
  margin-left: 0;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left .xl-left-item .xl-cons > ul > li .xl-li {
  padding: 0.12rem 0.2rem;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-left .xl-left-item .xl-cons > ul > li .xl-li .xl-li-r {
  margin: 0;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-right .xl-more {
  color: #171321;
  margin-top: 0.4rem;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-right .xl-more .svg {
  fill: #171321;
}
.nav-pc .nav-pc-menu > li .xl-box2 .xl-right .xl-more .svg path,
.nav-pc .nav-pc-menu > li .xl-box2 .xl-right .xl-more .svg rect {
  fill: #171321;
}
.nav-pc .nav-pc-menu > li .xl-box3 .xl-left .xl-left-item .xl-cons > ul > li .xl-li {
  min-width: 190px;
}
.nav-pc .nav-pc-menu > li .xl-box3 .xl-left-t .xl-left-item {
  margin-left: 0.2rem;
}
.nav-pc .nav-pc-menu > li .xl-box4 .xl-flex .xl-left {
  max-width: 900px;
}
.nav-pc .nav-pc-menu > li .xl-box4 .xl-flex .xl-left .xl-left-item .xl-cons > ul {
  margin-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nav-pc .nav-pc-menu > li .xl-box4 .xl-flex .xl-left .xl-left-item .xl-cons > ul > li .xl-li {
  width: 260px;
}
.nav-pc.nav-tm {
  background-color: transparent;
}
.nav-wap {
  width: 100%;
  height: 1rem;
  border: 0;
  display: none;
  background-color: #20143D;
}
@media (max-width: 991px) {
  .nav-wap {
    display: block;
  }
}
.nav-wap .nav-wap-t {
  height: 100%;
}
.nav-wap .nav-wap-t .logo {
  width: 2.4rem;
  height: 0.42rem;
  display: block;
}
.nav-wap .nav-wap-t .logo .svg {
  width: 100%;
}
.nav-wap .nav-wap-t .yuyan {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.26rem;
  position: relative;
}
.nav-wap .nav-wap-t .yuyan .icon {
  width: 0.5rem;
  height: 0.5rem;
}
.nav-wap .nav-wap-t .yuyan .xl {
  width: 1.2rem;
  background: #353A58;
  border-radius: 0.08rem;
  position: absolute;
  left: -0.3rem;
  top: 0.6rem;
  z-index: 2;
  padding: 0.09rem 0;
  display: none;
  text-align: center;
}
.nav-wap .nav-wap-t .yuyan .xl > li a {
  font-weight: 400;
  font-size: 0.26rem;
  color: #FFFFFF;
  padding: 0.09rem 0.2rem;
  display: block;
  margin: auto;
}
.nav-wap .nav-wap-t .yuyan .xl > li a:hover {
  color: #171321;
}
.nav-wap .nav-wap-t .right-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .nav-wap .nav-wap-t .right-switch {
    display: block;
  }
}
.nav-wap .nav-wap-t .right-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-wap .nav-wap-t .right-switch i:nth-child(1) {
  top: 0;
}
.nav-wap .nav-wap-t .right-switch i:nth-child(3) {
  bottom: 0;
}
.nav-wap .nav-wap-t .right-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.nav-wap.nav-tm {
  background: transparent;
}
.nav-wap .nav-wap-xl {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #20143D;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}
.nav-wap .nav-wap-xl .nax-wap-menu {
  padding-top: 1.9rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu > li {
  padding: 0.1rem 0.2rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu > li .a {
  height: 0.8rem;
  color: #fff;
  font-size: 0.28rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu > li .a > div .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu > li .a .svg {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-wap .nav-wap-xl .nax-wap-menu > li .a .pd40 {
  padding-left: 0.4rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl2 {
  display: none;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl2 > li {
  padding: 0.1rem 0 0.1rem 0.2rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl2 > li .a span {
  margin-left: 0.1rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl3 {
  display: none;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl3 > li {
  padding: 0.1rem 0 0.1rem 0.2rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl3 > li .a > div .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.nav-wap .nav-wap-xl .nax-wap-menu .nav-wap-xl3 > li .a span {
  margin-left: 0;
}
.zhanwei {
  width: 100%;
}
body.open .nav-wap .nav-wap-t .right-switch i:nth-child(2) {
  opacity: 0;
}
body.open .nav-wap .nav-wap-t .right-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.open .nav-wap .nav-wap-t .right-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.footer {
  width: 100%;
  background-color: #171321;
  color: #fff;
}
.footer .f-ad {
  position: relative;
  overflow: hidden;
  padding-top: 1.43rem;
  padding-bottom: 2.72rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .footer .f-ad {
    padding-top: 0.8rem;
    padding-bottom: 1.3rem;
  }
}
.footer .f-ad .f-ad-text {
  position: relative;
  z-index: 2;
  font-size: 0.48rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 0.6rem;
}
@media (max-width: 991px) {
  .footer .f-ad .f-ad-text {
    font-size: 0.44rem;
  }
}
.footer .f-ad .f-ad-text .btn-box {
  margin-top: 0.47rem;
}
.footer .f-ad .f-ad-bj {
  width: 100%;
  height: 2.42rem;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-position: center top;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
@media (max-width: 991px) {
  .footer .f-ad .f-ad-bj {
    height: 1rem;
  }
}
.footer .footer-box {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}
.footer .footer-box .footer-b {
  max-width: 1400px;
}
.footer .footer-box .footer-b .footer-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top {
    display: block;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-l {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 3.4rem;
  padding-bottom: 0.4rem;
  padding-top: 0.97rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-l {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding-top: 0.6rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-l .logo2 {
  width: 3rem;
  height: 0.54rem;
  fill: #fff;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .logo2 path,
.footer .footer-box .footer-b .footer-top .footer-top-l .logo2 rect {
  fill: #fff;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .txt {
  margin-top: 0.34rem;
  font-size: 0.14rem;
  color: #EEEEEE;
  min-height: 1.54rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-l .txt {
    font-size: 0.22rem;
    min-height: unset;
    margin-top: 0.24rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx {
  width: 0.4rem;
  height: 0.4rem;
  min-height: 0.4rem;
  min-width: 0.4rem;
  background: transparent;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx {
    width: 0.7rem;
    height: 0.7rem;
    min-height: 0.7rem;
    min-width: 0.7rem;
    margin-right: 0.24rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .svg {
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  fill: rgba(255, 255, 255, 0.3);
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .svg path,
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .svg rect {
  fill: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .svg {
    width: 0.36rem;
    height: 0.36rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .svg.xhs {
  width: 0.26rem;
  height: 0.26rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .svg.xhs {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .lx-ewm {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.15rem;
  background: #fff;
  position: absolute;
  left: -0.35rem;
  top: -1.3rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx .lx-ewm .img {
  width: 90%;
  height: 90%;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx:nth-child(1) .lx-ewm {
  left: -0.1rem;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx:hover {
  background: #fff;
  border-color: #fff;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx:hover .svg {
  fill: #0C072A;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx:hover .svg path,
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx:hover .svg rect {
  fill: #0C072A;
}
.footer .footer-box .footer-b .footer-top .footer-top-l .footer-lx .lx:hover .lx-ewm {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.footer .footer-box .footer-b .footer-top .footer-top-r {
  padding-top: 0.78rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r {
    padding-top: 0;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t {
    display: block;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item {
  margin-left: 0.84rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item {
    margin-left: 0;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item .tit {
  font-weight: 500;
  font-size: 0.16rem;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item .tit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0.8rem;
    font-size: 0.26rem;
  }
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item .tit > span {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item .tit .svg {
  display: none;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item .tit .svg {
    display: block;
    width: 0.24rem;
    height: 0.24rem;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 {
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 {
    margin-top: 0;
    display: none;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 > li {
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 > li {
    margin-top: 0;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 > li > a {
  font-size: 0.16rem;
  color: #999999;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 > li > a {
    height: 0.8rem;
    font-size: 0.24rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0.4rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 > li > a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-t .f-t-item > .f-t-item2 > li > a:hover {
    border-bottom: 0;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b {
  padding: 0.28rem 0;
  overflow: hidden;
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex {
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex > a {
  font-size: 0.16rem;
  color: #666666;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex > a {
    font-size: 0.24rem;
    margin-left: 0.14rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex > span {
  font-size: 0.16rem;
  color: #666666;
  opacity: 0.5;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex > span {
    font-size: 0.24rem;
    margin-left: 0.14rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex .svg {
  width: 0.18rem;
  height: 0.18rem;
  fill: #999;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex .svg {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex .svg path,
.footer .footer-box .footer-b .footer-top .footer-top-r .f-b .f-b-flex .svg rect {
  fill: #999;
}
.footer .footer-box .footer-b .footer-bot {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.26rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-bot {
    display: block;
  }
}
.footer .footer-box .footer-b .footer-bot .footer-bot-l {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-bot .footer-bot-l {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.footer .footer-box .footer-b .footer-bot .footer-bot-l .sp {
  font-size: 0.14rem;
  color: #999999;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-bot .footer-bot-l .sp {
    font-size: 0.22rem;
  }
}
.footer .footer-box .footer-b .footer-bot .footer-bot-l .sp a {
  color: #999999;
}
.footer .footer-box .footer-b .footer-bot .web-map {
  font-size: 0.16rem;
  color: #999999;
}
@media (max-width: 991px) {
  .footer .footer-box .footer-b .footer-bot .web-map {
    font-size: 0.24rem;
    margin-top: 0.2rem;
    display: block;
  }
}
.flash-blocks {
  width: 100%;
  margin: auto;
  height: 3.22rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .flash-blocks {
    width: 100%;
    bottom: -0.6rem;
  }
}
.flash-blocks .blocks-left,
.flash-blocks .blocks-right {
  width: 40%;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .flash-blocks .blocks-left,
  .flash-blocks .blocks-right {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .flash-blocks .blocks-left {
    margin-left: -10%;
  }
}
.flash-blocks .blocks-right {
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media (max-width: 991px) {
  .flash-blocks .blocks-right {
    margin-right: -10%;
  }
}
.flash-blocks .block {
  width: 0.24rem;
  height: 0.24rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.04rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  -webkit-animation: blink 1.2s infinite ease-in-out;
  -moz-animation: blink 1.2s infinite ease-in-out;
  -o-animation: blink 1.2s infinite ease-in-out;
  animation: blink 1.2s infinite ease-in-out;
}
.flash-blocks .block:nth-child(1) {
  left: 75%;
  top: 0;
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.flash-blocks .block:nth-child(2) {
  left: 75%;
  top: 13%;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.flash-blocks .block:nth-child(3) {
  left: 82%;
  top: 13%;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.flash-blocks .block:nth-child(4) {
  left: 75%;
  top: 25%;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.flash-blocks .block:nth-child(5) {
  left: 82%;
  top: 40%;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.flash-blocks .block:nth-child(6) {
  left: 95%;
  top: 45%;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.flash-blocks .block:nth-child(7) {
  left: 60%;
  top: 25%;
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.flash-blocks .block:nth-child(8) {
  left: 66%;
  top: 13%;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.flash-blocks .block:nth-child(9) {
  left: 55%;
  top: 13%;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.flash-blocks .block:nth-child(10) {
  left: 50%;
  top: 40%;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.flash-blocks .block:nth-child(11) {
  left: 43%;
  top: 40%;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.flash-blocks .block:nth-child(12) {
  left: 50%;
  top: 55%;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.flash-blocks .block:nth-child(13) {
  left: 57%;
  top: 55%;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.flash-blocks .block:nth-child(14) {
  left: 40%;
  top: 60%;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.flash-blocks .block:nth-child(15) {
  left: 32%;
  top: 65%;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.flash-blocks .block:nth-child(16) {
  left: 32%;
  top: 52%;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.flash-blocks .block:nth-child(17) {
  left: 25%;
  top: 40%;
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.flash-blocks .block:nth-child(18) {
  left: 25%;
  top: 28%;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
@-webkit-keyframes blink {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-moz-keyframes blink {
  0%,
  100% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-o-keyframes blink {
  0%,
  100% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.banner {
  width: 100%;
  height: 9.7rem;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  /* 自定义指示器样式 */
}
.banner .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.banner .custom-pagination {
  position: absolute;
  bottom: 0.33rem;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}
.banner .custom-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 0.06rem;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 0.05rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
@media (max-width: 991px) {
  .banner .custom-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.12rem;
    margin: 0 0.06rem;
  }
}
.banner .custom-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  .banner .custom-pagination .swiper-pagination-bullet-active {
    width: 0.6rem;
  }
}
.banner .custom-pagination .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  -webkit-animation: progress 5s linear forwards;
  -moz-animation: progress 5s linear forwards;
  -o-animation: progress 5s linear forwards;
  animation: progress 5s linear forwards;
  border-radius: 0.06rem;
}
@media (max-width: 991px) {
  .banner .custom-pagination .swiper-pagination-bullet-active::before {
    border-radius: 0.12rem;
  }
}
@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.banner .banner-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .banner-slide .pc-img,
.banner .banner-slide .wap-img {
  width: 100%;
  height: 100%;
}
.banner .banner-slide .text {
  width: 100%;
  position: absolute;
  top: 1.85rem;
  left: 0;
  z-index: 10;
  text-align: center;
}
@media (max-width: 991px) {
  .banner .banner-slide .text {
    width: 92%;
    margin: auto;
    right: 0;
  }
}
.banner .banner-slide .text .t1 {
  font-size: 0.18rem;
  color: #BFA4FF;
}
@media (max-width: 991px) {
  .banner .banner-slide .text .t1 {
    font-size: 0.2rem;
  }
}
.banner .banner-slide .text .t2 {
  font-size: 0.5rem;
  color: #fff;
  font-weight: 500;
  margin-top: 0.15rem;
}
@media (max-width: 991px) {
  .banner .banner-slide .text .t2 {
    font-size: 0.4rem;
  }
}
.banner .banner-slide .text .t3 {
  font-size: 0.16rem;
  color: #fff;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .banner .banner-slide .text .t3 {
    font-size: 0.22rem;
  }
}
.ss-box {
  width: 100%;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-position: top center;
  padding-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}
.ss-box .flash-blocks .blocks-left {
  position: absolute;
  top: -138%;
  left: -6%;
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.ss-box .flash-blocks .blocks-left .block {
  display: none;
}
.ss-box .flash-blocks .blocks-left .block:nth-child(1),
.ss-box .flash-blocks .blocks-left .block:nth-child(2),
.ss-box .flash-blocks .blocks-left .block:nth-child(3),
.ss-box .flash-blocks .blocks-left .block:nth-child(4),
.ss-box .flash-blocks .blocks-left .block:nth-child(5) {
  display: block;
}
.ss-box .flash-blocks .blocks-left .block:nth-child(1) {
  left: 72%;
  top: 25%;
}
.ss-box .flash-blocks .blocks-left .block:nth-child(2) {
  left: 77%;
  top: 37%;
}
.ss-box .flash-blocks .blocks-left .block:nth-child(4) {
  left: 72%;
  top: 53%;
}
.ss-box .flash-blocks .blocks-left .block:nth-child(4) {
  left: 80%;
  top: 54%;
}
.ss-box .flash-blocks .blocks-right {
  position: absolute;
  right: -26%;
  top: 27%;
}
.ss-box .qys .ts {
  padding-top: 0.8rem;
  text-align: center;
  font-size: 0.12rem;
  color: rgba(221, 221, 221, 0.2);
}
@media (max-width: 991px) {
  .ss-box .qys .ts {
    font-size: 0.2rem;
    padding-top: 0.6rem;
  }
}
.ss-box .qys .qy-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.3rem;
  padding-bottom: 0.8rem;
}
@media (max-width: 991px) {
  .ss-box .qys .qy-box {
    -webkit-box-align: unset;
    -webkit-align-items: unset;
    -moz-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -moz-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 0.3rem;
  }
}
.ss-box .qys .qy-box .qy-img {
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin-left: 0.6rem;
}
@media (max-width: 991px) {
  .ss-box .qys .qy-box .qy-img {
    margin-left: 0;
    width: 25%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0.1rem;
  }
}
.ss-box .qys .qy-box .qy-img:nth-child(1) {
  margin-left: 0;
}
.ss-box .qys .qy-box .qy-img img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .ss-box .qys .qy-box .qy-img img {
    width: 70%;
    height: auto;
  }
}
.maodian {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1000;
}
@media (max-width: 991px) {
  .maodian {
    display: none;
  }
}
.maodian .md-u {
  height: 48px;
  background: rgba(57, 46, 83, 0.26);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  padding: 0 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.maodian .md-u .md-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 104px;
  height: 38px;
  border-radius: 5px;
  font-size: 16px;
  color: #ffffff;
  padding: 0 17px;
  cursor: pointer;
}
.maodian .md-u .md-a.on {
  background: #fff;
  color: #171321;
}
.maodian2 {
  height: 60px;
}
@media (max-width: 991px) {
  .maodian2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 0.8rem;
  }
}
.maodian2 .md-u {
  height: 100%;
  background: transparent;
  border: 1px solid #E1DDE9;
  padding: 0 8px;
}
@media (max-width: 991px) {
  .maodian2 .md-u {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
  }
}
.maodian2 .md-u .md-a {
  color: #636167;
  height: 44px;
  min-width: unset;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .maodian2 .md-u .md-a {
    font-size: 0.24rem;
    height: 0.6rem;
  }
}
.maodian2 .md-u .md-a.on {
  background: #171321;
  color: #fff;
}
.md-zw {
  width: 100%;
  height: 50px;
  display: none;
}
@media (max-width: 991px) {
  .md-zw {
    display: none !important;
  }
}
.index-title {
  font-weight: 500;
  font-size: 0.44rem;
  color: #FFFFFF;
  text-align: center;
  padding-top: 1.4rem;
  padding-bottom: 0.6rem;
  line-height: 1.3;
}
.index-title.back {
  color: #171321;
}
.index-title > span {
  background: -webkit-linear-gradient(25deg, #FFAD84 0%, #A989F5 75.07324219%, #7759C2 99.12109375%);
  background: -moz-linear-gradient(25deg, #FFAD84 0%, #A989F5 75.07324219%, #7759C2 99.12109375%);
  background: -o-linear-gradient(25deg, #FFAD84 0%, #A989F5 75.07324219%, #7759C2 99.12109375%);
  background: linear-gradient(65deg, #FFAD84 0%, #A989F5 75.07324219%, #7759C2 99.12109375%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-title .icon {
  margin-left: 0.2rem;
}
.index-title .icon .svg {
  width: 0.28rem;
  height: 0.28rem;
  fill: #171321;
}
.index-title .icon .svg path,
.index-title .icon .svg rect {
  fill: #171321;
}
.index-title > p {
  font-size: 0.16rem;
  color: #666666;
  font-weight: 400;
  margin-top: 0.24rem;
}
@media (max-width: 991px) {
  .index-title > p {
    font-size: 0.22rem;
  }
}
.index-title .jb {
  font-weight: 400;
  font-size: 16px;
  color: #171321;
  background: -webkit-linear-gradient(13deg, rgba(169, 137, 245, 0.18) 0%, rgba(252, 163, 38, 0.18) 100%);
  background: -moz-linear-gradient(13deg, rgba(169, 137, 245, 0.18) 0%, rgba(252, 163, 38, 0.18) 100%);
  background: -o-linear-gradient(13deg, rgba(169, 137, 245, 0.18) 0%, rgba(252, 163, 38, 0.18) 100%);
  background: linear-gradient(77deg, rgba(169, 137, 245, 0.18) 0%, rgba(252, 163, 38, 0.18) 100%);
  border-radius: 18px;
  padding: 10px 15px;
  line-height: 1;
  position: relative;
  margin-bottom: 0.28rem;
}
.index-title .jb::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(232deg, #FCA326, #A989F5);
  background: -moz-linear-gradient(232deg, #FCA326, #A989F5);
  background: -o-linear-gradient(232deg, #FCA326, #A989F5);
  background: linear-gradient(218deg, #FCA326, #A989F5);
  border-radius: 18px;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
@media (max-width: 991px) {
  .index-title {
    font-size: 0.4rem;
    padding-top: 0.8rem;
    padding-bottom: 0.5rem;
  }
}
.index-title2 {
  padding: 0;
  text-align: left;
}
.index-title3 {
  margin-bottom: 0.3rem;
  margin-top: 0.8rem;
}
.index-title3 .svg {
  width: 0.12rem;
  height: 0.12rem;
  fill: #171321;
}
.index-title3 .svg path,
.index-title3 .svg rect {
  fill: #171321;
}
.index-title3 span {
  font-weight: 400;
  display: block;
  margin: 0 0.12rem;
}
.index-title3 i {
  display: block;
  width: 0.72rem;
  height: 1px;
  background: #171321;
  margin: 0 0.06rem;
}
.zhouqi {
  position: relative;
  z-index: 1;
}
.zq-swiper {
  width: 14rem;
  max-width: 1400px;
  height: 4.06rem;
  position: relative;
  /* 自定义指示器样式 */
}
@media (max-width: 991px) {
  .zq-swiper {
    width: 92%;
    height: 5.06rem;
  }
}
.zq-swiper .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.zq-swiper .custom-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}
.zq-swiper .custom-pagination .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 0.06rem;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 0.05rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
@media (max-width: 991px) {
  .zq-swiper .custom-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.12rem;
    margin: 0 0.06rem;
  }
}
.zq-swiper .custom-pagination .swiper-pagination-bullet-active {
  width: 0.4rem;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 991px) {
  .zq-swiper .custom-pagination .swiper-pagination-bullet-active {
    width: 0.6rem;
  }
}
.zq-swiper .custom-pagination .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  -webkit-animation: progress 5s linear forwards;
  -moz-animation: progress 5s linear forwards;
  -o-animation: progress 5s linear forwards;
  animation: progress 5s linear forwards;
  border-radius: 0.06rem;
}
@media (max-width: 991px) {
  .zq-swiper .custom-pagination .swiper-pagination-bullet-active::before {
    border-radius: 0.12rem;
  }
}
@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.zq-swiper .swiper-button-next.swiper-button-disabled,
.zq-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.zq-swiper .swiper-button-next,
.zq-swiper .swiper-button-prev {
  width: 0.55rem;
  height: 0.55rem;
  background: rgba(248, 248, 248, 0.02);
  border-radius: 50%;
  border: 1px solid rgba(236, 236, 236, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  top: 38%;
  left: unset;
  right: -0.8rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1579px) {
  .zq-swiper .swiper-button-next,
  .zq-swiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 991px) {
  .zq-swiper .swiper-button-next,
  .zq-swiper .swiper-button-prev {
    display: none;
  }
}
.zq-swiper .swiper-button-next .svg,
.zq-swiper .swiper-button-prev .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #999;
}
.zq-swiper .swiper-button-next .svg path,
.zq-swiper .swiper-button-prev .svg path,
.zq-swiper .swiper-button-next .svg rect,
.zq-swiper .swiper-button-prev .svg rect {
  fill: #999;
}
.zq-swiper .swiper-button-next:hover,
.zq-swiper .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.zq-swiper .swiper-button-prev {
  right: unset;
  left: -0.8rem;
}
.zq-swiper .swiper-button-prev .svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.zq-swiper .swiper-slide {
  width: 2.64rem !important;
  height: 3.5rem !important;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-slide {
    width: 3.3rem !important;
    height: 4.375rem !important;
  }
}
.zq-swiper .swiper-slide .zq-slide {
  width: 100%;
  height: 100%;
  background: #292532;
  border-radius: 0.15rem;
  border: 1px solid #342A4E;
  padding: 0.2rem;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}
.zq-swiper .swiper-slide .zq-slide .zq-tit {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-slide .zq-slide .zq-tit {
    font-size: 0.24rem;
  }
}
.zq-swiper .swiper-slide .zq-slide .zq-tit .icon {
  width: 0.3rem;
  height: 0.3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.05rem;
  margin-right: 0.13rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-slide .zq-slide .zq-tit .icon {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.zq-swiper .swiper-slide .zq-slide .zq-tit .icon .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #fff;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-slide .zq-slide .zq-tit .icon .svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.zq-swiper .swiper-slide .zq-slide .zq-tit .icon .svg path,
.zq-swiper .swiper-slide .zq-slide .zq-tit .icon .svg rect {
  fill: #fff;
}
.zq-swiper .swiper-slide .zq-slide .zq-desc {
  font-size: 0.19rem;
  color: #FFFFFF;
  line-height: 1.4;
  margin-top: 0.19rem;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-slide .zq-slide .zq-desc {
    font-size: 0.24rem;
  }
}
.zq-swiper .swiper-slide .zq-slide .zq-img {
  width: 100%;
  margin-top: 0.3rem;
}
.zq-swiper .swiper-slide .zq-slide .zq-on {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.7rem 0.2rem 0.2rem 0.2rem;
  display: none;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .zq-ul {
  height: 1.85rem;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .zq-ul > li {
  font-size: 0.16rem;
  color: #FFFFFF;
  margin-top: 0.16rem;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .zq-ul > li .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #A989F5;
  margin-right: 0.08rem;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .zq-ul > li .svg path,
.zq-swiper .swiper-slide .zq-slide .zq-on .zq-ul > li .svg rect {
  fill: #A989F5;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box {
  margin-top: 0.16rem;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box .btn {
  width: 1.04rem;
  height: 0.38rem;
  min-width: unset;
  min-height: unset;
  padding: 0;
  font-size: 0.14rem;
  border-radius: 0.08rem;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box .btn:hover {
  color: rgba(23, 19, 33, 0.7);
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box .btn.btn-bor {
  background: transparent;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box .btn.btn-bor::before {
  display: none;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box .btn.btn-bor:hover {
  color: #fff;
  background: transparent !important;
}
.zq-swiper .swiper-slide .zq-slide .zq-on .btn-box .btn .svg {
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.05rem;
}
.zq-swiper .swiper-slide .zq-slide.on .zq-tit .icon {
  background: -webkit-gradient(linear, left bottom, left top, from(#7759C2), to(#B79DF7));
  background: -webkit-linear-gradient(bottom, #7759C2 0%, #B79DF7 100%);
  background: -moz-linear-gradient(bottom, #7759C2 0%, #B79DF7 100%);
  background: -o-linear-gradient(bottom, #7759C2 0%, #B79DF7 100%);
  background: linear-gradient(0deg, #7759C2 0%, #B79DF7 100%);
  -webkit-box-shadow: 0px 0.06rem 0.08rem 0px rgba(147, 107, 248, 0.56), 0px 1px 0px 0px rgba(255, 255, 255, 0.51);
  box-shadow: 0px 0.06rem 0.08rem 0px rgba(147, 107, 248, 0.56), 0px 1px 0px 0px rgba(255, 255, 255, 0.51);
  position: relative;
}
.zq-swiper .swiper-slide .zq-slide.on .zq-tit .icon::after {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.05rem;
  position: absolute;
  top: -0.03rem;
  left: -0.03rem;
  z-index: 1;
}
.fugai-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .fugai-box {
    display: block;
  }
}
.fugai-box .fugai-li {
  width: 6.8rem;
  height: 5rem;
  background: #332558;
  border-radius: 0.2rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom right;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0.4rem;
}
.fugai-box .fugai-li * {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .fugai-box .fugai-li {
    width: 100%;
    margin-bottom: 0.3rem;
    min-height: 5.5rem;
    height: auto;
    padding: 0.3rem;
  }
}
.fugai-box .fugai-li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#5A5468), to(#37295B));
  background: -webkit-linear-gradient(top, #5A5468 0%, #37295B 100%);
  background: -moz-linear-gradient(top, #5A5468 0%, #37295B 100%);
  background: -o-linear-gradient(top, #5A5468 0%, #37295B 100%);
  background: linear-gradient(180deg, #5A5468 0%, #37295B 100%);
  padding: 1px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 0.2rem;
  z-index: 1;
}
.fugai-box .fugai-li:hover::after {
  top: -2px;
  left: -2px;
  background: -webkit-linear-gradient(305deg, #8253C6, #FCA326);
  background: -moz-linear-gradient(305deg, #8253C6, #FCA326);
  background: -o-linear-gradient(305deg, #8253C6, #FCA326);
  background: linear-gradient(145deg, #8253C6, #FCA326);
  padding: 2px;
}
.fugai-box .fugai-li .fugai-tag {
  padding: 0.1rem 0.17rem;
  border-radius: 0.1rem;
  background: rgba(169, 137, 245, 0.0638);
  border: 1px solid rgba(174, 151, 225, 0.22);
  display: inline-block;
}
.fugai-box .fugai-li .fugai-tag span {
  color: #A989F5;
  line-height: 1;
}
.fugai-box .fugai-li .fugai-tag .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #A989F5;
  margin-right: 0.06rem;
}
@media (max-width: 991px) {
  .fugai-box .fugai-li .fugai-tag .svg {
    width: 0.22rem;
    height: 0.22rem;
    margin-right: 0.1rem;
  }
}
.fugai-box .fugai-li .fugai-tag .svg path,
.fugai-box .fugai-li .fugai-tag .svg rect {
  fill: #A989F5;
}
.fugai-box .fugai-li .fugai-tit {
  color: #fff;
  margin-top: 0.2rem;
}
.fugai-box .fugai-li .fugai-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.1rem;
}
.fugai-box .fugai-li .btn-box {
  margin-top: 0.5rem;
}
.fugai-box .fugai-li .btn-box .btn {
  min-height: unset;
  min-width: unset;
  padding: 0.14rem 0.2rem;
}
.fugai-box .fugai-li .btn-box .btn:hover {
  color: rgba(23, 19, 33, 0.6);
}
.fugai-box .fugai-li .btn-box .btn.btn-bor {
  background: transparent;
  padding: 0;
  min-width: unset;
  margin-left: 0.05rem;
  padding: 0.14rem 0.15rem;
}
.fugai-box .fugai-li .btn-box .btn.btn-bor:hover {
  color: #fff;
  background: transparent !important;
}
.fugai-box .fugai-li .btn-box .btn.btn-bor::before {
  display: none;
}
.qiye .qiye-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 3;
}
.qiye .qiye-box .qiye-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.qiye .qiye-box .qiye-left .qiye-ul > li {
  width: 5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 0.1rem;
  padding: 0.24rem;
  margin-bottom: 0.12rem;
  position: relative;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .qiye .qiye-box .qiye-left .qiye-ul > li {
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
.qiye .qiye-box .qiye-left .qiye-ul > li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(98deg, rgba(255, 255, 255, 0.2), rgba(94, 67, 155, 0.2), rgba(255, 255, 255, 0.2));
  background: -moz-linear-gradient(98deg, rgba(255, 255, 255, 0.2), rgba(94, 67, 155, 0.2), rgba(255, 255, 255, 0.2));
  background: -o-linear-gradient(98deg, rgba(255, 255, 255, 0.2), rgba(94, 67, 155, 0.2), rgba(255, 255, 255, 0.2));
  background: linear-gradient(-8deg, rgba(255, 255, 255, 0.2), rgba(94, 67, 155, 0.2), rgba(255, 255, 255, 0.2));
  padding: 1px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 0.1rem;
  z-index: 1;
}
.qiye .qiye-box .qiye-left .qiye-ul > li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(72deg, #EAB367, #301C3D, #A989F5);
  background: -moz-linear-gradient(72deg, #EAB367, #301C3D, #A989F5);
  background: -o-linear-gradient(72deg, #EAB367, #301C3D, #A989F5);
  background: linear-gradient(18deg, #EAB367, #301C3D, #A989F5);
  padding: 2px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 0.1rem;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-tit {
  font-size: 0.2rem;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .qiye .qiye-box .qiye-left .qiye-ul > li .qy-tit {
    font-size: 0.26rem;
  }
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon .svg {
  width: 0.08rem;
  height: 0.08rem;
  fill: rgba(255, 255, 255, 0.5);
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon .svg path,
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon .svg rect {
  fill: rgba(255, 255, 255, 0.5);
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-desc {
  font-size: 0.16rem;
  color: #FFFFFF;
  margin-top: 0.16rem;
  line-height: 1.6;
  min-height: 0.74rem;
  text-align: justify;
  padding-right: 0.4rem;
  display: none;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .qiye .qiye-box .qiye-left .qiye-ul > li .qy-desc {
    font-size: 0.22rem;
    padding-right: 0;
    min-height: unset;
  }
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-progress {
  width: 98%;
  height: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
.qiye .qiye-box .qiye-left .qiye-ul > li .qy-progress > div {
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FCA326), color-stop(#A989F5), to(#7759C2));
  background: -webkit-linear-gradient(left, #FCA326, #A989F5, #7759C2);
  background: -moz-linear-gradient(left, #FCA326, #A989F5, #7759C2);
  background: -o-linear-gradient(left, #FCA326, #A989F5, #7759C2);
  background: linear-gradient(90deg, #FCA326, #A989F5, #7759C2);
  border-radius: 2px;
}
.qiye .qiye-box .qiye-left .qiye-ul > li.on {
  border-radius: 0.05rem;
}
.qiye .qiye-box .qiye-left .qiye-ul > li.on::before {
  opacity: 1;
}
.qiye .qiye-box .qiye-left .qiye-ul > li.on .qy-desc {
  display: block;
}
.qiye .qiye-box .qiye-left .qiye-ul > li.on .qy-tit .qy-icon {
  display: none;
}
.qiye .qiye-box .qiye-left .qiye-ul > li.on .qy-progress > div {
  width: 100%;
  -webkit-animation: progress 7s linear forwards;
  -moz-animation: progress 7s linear forwards;
  -o-animation: progress 7s linear forwards;
  animation: progress 7s linear forwards;
}
@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.qiye .qiye-box .qiye-left .btn-box .btn .svg {
  fill: #171321;
}
.qiye .qiye-box .qiye-left .btn-box .btn .svg path,
.qiye .qiye-box .qiye-left .btn-box .btn .svg rect {
  fill: #171321;
}
.qiye .qiye-box .qiye-left .btn-box .btn.btn-bor .svg {
  fill: #fff;
}
.qiye .qiye-box .qiye-left .btn-box .btn.btn-bor .svg path,
.qiye .qiye-box .qiye-left .btn-box .btn.btn-bor .svg rect {
  fill: #fff;
}
.qiye .qiye-box .qiye-right {
  width: 8.27rem;
  height: 5.55rem;
  background: #261F34;
  border-radius: 0.2rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 0.9rem 0px #523F70;
  box-shadow: 0px 0px 0.9rem 0px #523F70;
  border: 1px solid #433756;
}
@media (max-width: 991px) {
  .qiye .qiye-box .qiye-right {
    display: none;
  }
}
.qiye .qiye-box .qiye-right > ul {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.qiye .qiye-box .qiye-right > ul > li {
  width: 100%;
  height: 100%;
  display: none;
}
.qiye .qiye-box .qiye-right > ul > li:nth-child(1) {
  display: block;
}
.qiye .qiye-box .qiye-right > ul > li img,
.qiye .qiye-box .qiye-right > ul > li video {
  width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 0.2rem;
}
.qiye .qiye-box .qiye-right > ul > li video {
  height: 100%;
}
.qiye .qiye-box .qiye-right::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #291F35), to(#6F6677));
  background: -webkit-linear-gradient(bottom, #291F35 50%, #6F6677 100%);
  background: -moz-linear-gradient(bottom, #291F35 50%, #6F6677 100%);
  background: -o-linear-gradient(bottom, #291F35 50%, #6F6677 100%);
  background: linear-gradient(0deg, #291F35 50%, #6F6677 100%);
  padding: 1px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 0.2rem;
  z-index: 1;
}
.jishu {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  padding-bottom: 1.4rem;
}
.jishu .qfw-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .jishu .qfw-box {
    display: block;
  }
}
.jishu .qfw-box .qfw-left {
  width: 5.6rem;
  height: 4.3rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom right;
  padding: 0.5rem 0.4rem;
  border-radius: 0.24rem;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-left {
    width: 100%;
    height: 4.9rem;
  }
}
.jishu .qfw-box .qfw-left .qfw-l-tit {
  font-size: 0.3rem;
  color: #171321;
  border-radius: 0.24rem;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-left .qfw-l-tit {
    font-size: 0.4rem;
  }
}
.jishu .qfw-box .qfw-left .qfw-l-u {
  font-size: 0.16rem;
  color: #37335A;
  margin-top: 0.2rem;
  min-height: 1rem;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-left .qfw-l-u {
    font-size: 0.24rem;
  }
}
.jishu .qfw-box .qfw-left .qfw-l-u > li {
  margin-top: 0.1rem;
}
.jishu .qfw-box .qfw-left .qfw-l-u .svg {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.08rem;
  fill: #8248ED;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-left .qfw-l-u .svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.jishu .qfw-box .qfw-left .qfw-l-u .svg path,
.jishu .qfw-box .qfw-left .qfw-l-u .svg rect {
  fill: #8248ED;
}
.jishu .qfw-box .qfw-left .btn {
  border-radius: 0.1rem;
  font-size: 0.16rem;
  color: #7759C2;
  padding: 0.16rem 0.28rem;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-left .btn {
    font-size: 0.24rem;
  }
}
.jishu .qfw-box .qfw-left .btn .svg {
  fill: #7759C2;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-left .btn .svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.jishu .qfw-box .qfw-left .btn .svg path,
.jishu .qfw-box .qfw-left .btn .svg rect {
  fill: #7759C2;
}
.jishu .qfw-box .qfw-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 4.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 0.3rem;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-right {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    margin-left: 0;
  }
}
.jishu .qfw-box .qfw-right .qfw-r-li {
  width: 48.148%;
  height: 2rem;
  background-color: #FFFFFF;
  border-radius: 0.15rem;
  margin-top: 0.3rem;
  padding: 0.3rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #FFFFFF;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  display: block;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-right .qfw-r-li {
    width: 48%;
    margin-top: 0.26rem;
    padding: 0.24rem;
  }
}
.jishu .qfw-box .qfw-right .qfw-r-li:nth-child(1),
.jishu .qfw-box .qfw-right .qfw-r-li:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-right .qfw-r-li:nth-child(1),
  .jishu .qfw-box .qfw-right .qfw-r-li:nth-child(2) {
    margin-top: 0.26rem;
  }
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  min-height: 0.88rem;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-tit {
  font-size: 0.24rem;
  color: #171321;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-tit {
    font-size: 0.26rem;
  }
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-tit .svg {
  width: 0.2rem;
  height: 0.2rem;
  fill: #7759C2;
  margin-left: 0.14rem;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-tit .svg path,
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-tit .svg rect {
  fill: #7759C2;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-icon {
  width: 0.6rem;
  height: 0.6rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-icon > div {
  width: 0.5rem;
  height: 0.5rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.1rem;
  border: 1px solid #ECECEC;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-icon > div .svg {
  width: 0.26rem;
  height: 0.26rem;
  fill: #958BAE;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-icon > div .svg path,
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-t .qfw-r-icon > div .svg rect {
  fill: #958BAE;
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-u > li {
  font-size: 0.16rem;
  color: #666;
  margin-top: 0.04rem;
  position: relative;
  padding-left: 0.14rem;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-u > li {
    font-size: 0.2rem;
    padding-left: 0.16rem;
  }
}
.jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-u > li > span {
  display: block;
  width: 0.06rem;
  height: 0.06rem;
  min-width: 0.06rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  background: #DDDDDD;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .jishu .qfw-box .qfw-right .qfw-r-li .qfw-r-u > li > span {
    width: 0.08rem;
    height: 0.08rem;
    min-width: 0.08rem;
  }
}
@media (min-width: 992px) {
  .jishu .qfw-box .qfw-right .qfw-r-li:hover {
    -webkit-box-shadow: 0px 0.06rem 0.16rem 0px rgba(196, 193, 205, 0.67);
    box-shadow: 0px 0.06rem 0.16rem 0px rgba(196, 193, 205, 0.67);
  }
  .jishu .qfw-box .qfw-right .qfw-r-li:hover .qfw-r-t .qfw-r-tit {
    color: #7759C2;
  }
  .jishu .qfw-box .qfw-right .qfw-r-li:hover .qfw-r-t .qfw-r-tit .svg {
    opacity: 1;
  }
}
.kyst {
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  padding-bottom: top left;
  background-color: #171321;
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
}
.kyst .videobj {
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: none;
  object-fit: none;
}
@media (max-width: 991px) {
  .kyst .videobj {
    display: none;
  }
}
.kyst .index-title {
  position: relative;
  z-index: 2;
}
.kyst .kyst-box {
  padding-left: 1.93rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .kyst .kyst-box {
    padding: 0;
    display: block;
  }
}
.kyst .kyst-left {
  width: 5.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  padding-top: 0.78rem;
}
@media (max-width: 991px) {
  .kyst .kyst-left {
    width: 90%;
    margin: auto;
    padding-top: 0;
  }
}
.kyst .kyst-left > li {
  width: 2.5rem;
  height: 2.23rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-top: 0.34rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .kyst .kyst-left > li {
    width: 47%;
    height: auto;
    padding-bottom: 0.6rem;
  }
}
.kyst .kyst-left > li .kyst-l {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.36rem;
  line-height: 1;
}
.kyst .kyst-left > li .kyst-l span {
  font-size: 0.48rem;
  font-weight: 500;
  line-height: 1;
}
.kyst .kyst-left > li .kyst-l i {
  font-size: 0.18rem;
  font-style: normal;
  line-height: 1;
}
@media (max-width: 991px) {
  .kyst .kyst-left > li .kyst-l i {
    font-size: 0.24rem;
  }
}
.kyst .kyst-left > li .kyst-l p {
  font-size: 0.16rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .kyst .kyst-left > li .kyst-l p {
    font-size: 0.22rem;
  }
}
.kyst .kyst-left > li .svg {
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .kyst .kyst-left > li .svg {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.kyst .kyst-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
@media (max-width: 991px) {
  .kyst .kyst-right {
    display: none;
  }
}
.kyst .kyst-right > img {
  width: 75%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -2.5rem;
}
.kyst .kyst-right > video {
  width: 90%;
  height: 100%;
  margin: auto;
  display: block;
}
.logos .box {
  position: relative;
  width: 100%;
}
.logos .box .bj1 {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  width: 4.66rem;
  height: 5.23rem;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F0EEF5), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1260px) {
  .logos .box .bj1 {
    width: 3rem;
    height: 5.2rem;
  }
}
@media (max-width: 767px) {
  .logos .box .bj1 {
    width: 1rem;
  }
}
.logos .box .bj2 {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4.66rem;
  height: 5.23rem;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F0EEF5), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F0EEF5 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1580px) {
  .logos .box .bj2 {
    height: 7rem;
  }
}
@media (max-width: 1260px) {
  .logos .box .bj2 {
    width: 3rem;
    height: 5.2rem;
  }
}
@media (max-width: 767px) {
  .logos .box .bj2 {
    width: 1rem;
  }
}
.logos .box .h_coo_con {
  height: 1.5rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.logos .box .h_coo_con .img {
  display: inline-block;
}
.logos .box .h_coo_con .img a {
  background: #FFFFFF;
  width: 2rem;
  height: 0.8rem;
  border-radius: 0.08rem;
  overflow: hidden;
  margin: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logos .box .h_coo_con .img img {
  max-width: 100% !important;
  max-height: 100% !important;
}
.logos .btn-box {
  margin-bottom: 1.39rem;
  margin-top: 0.6rem;
}
.logos .btn-box .btn.btn-bor {
  color: #171321;
}
.logos .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.logos .btn-box .btn.btn-bor .svg path,
.logos .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.ss-box2 {
  width: 100%;
  background: #171321;
  padding-top: 1.4rem;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .ss-box2 {
    padding-top: 0.8rem;
  }
}
.ss-box2 .renzheng-tit {
  position: relative;
  z-index: 2;
}
.ss-box2 .renzheng-tit .index-title2 {
  width: -webkit-calc(98.3%);
  width: -moz-calc(98.3%);
  width: calc(100% - 1.7rem);
}
@media (max-width: 991px) {
  .ss-box2 .renzheng-tit .index-title2 {
    width: -webkit-calc(98%);
    width: -moz-calc(98%);
    width: calc(100% - 2rem);
  }
}
.ss-box2 .renzheng-tit .btn {
  width: 1.4rem;
  height: 0.5rem;
  border-radius: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.16rem;
  position: absolute;
  bottom: 0.1rem;
  right: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng-tit .btn {
    width: 1.7rem;
    height: 0.6rem;
    font-size: 0.22rem;
  }
}
.ss-box2 .renzheng-tit .btn .svg {
  fill: #171321;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng-tit .btn .svg {
    width: 0.16rem;
    height: 0.16rem;
  }
}
.ss-box2 .renzheng-tit .btn .svg path,
.ss-box2 .renzheng-tit .btn .svg rect {
  fill: #171321;
}
.ss-box2 .renzheng {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.8rem;
  position: relative;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng {
    display: block;
  }
}
.ss-box2 .renzheng .renzheng-left {
  width: 6.29rem;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-left {
    width: 100%;
  }
}
.ss-box2 .renzheng .renzheng-left .rz-li {
  width: 100%;
  height: 2.2rem;
  background: rgba(49, 42, 67, 0.34);
  border-radius: 0.15rem;
  margin-top: 0.2rem;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-left .rz-li {
    margin-top: 0.24rem;
  }
}
.ss-box2 .renzheng .renzheng-left .rz-li .rz-li-l {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  padding: 0 0.4rem;
  position: relative;
  z-index: 2;
}
.ss-box2 .renzheng .renzheng-left .rz-li .rz-li-l > p {
  font-size: 0.18rem;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-left .rz-li .rz-li-l > p {
    font-size: 0.24rem;
  }
}
.ss-box2 .renzheng .renzheng-left .rz-li .rz-li-l > div {
  font-size: 0.3rem;
  margin-top: 0.1rem;
}
.ss-box2 .renzheng .renzheng-left .rz-li .rz-li-r {
  width: 1.85rem;
  margin-right: 0.2rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}
.ss-box2 .renzheng .renzheng-left .rz-li:nth-child(1) {
  margin-top: 0;
}
.ss-box2 .renzheng .renzheng-left .rz-li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(49, 42, 67, 0.34)), to(#4B445E));
  background: -webkit-linear-gradient(bottom, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  background: -moz-linear-gradient(bottom, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  background: -o-linear-gradient(bottom, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  background: linear-gradient(0deg, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  padding: 1px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 0.15rem;
  z-index: 1;
}
.ss-box2 .renzheng .renzheng-right {
  width: 7.51rem;
  height: 4.6rem;
  border-radius: 0.15rem;
  background: rgba(49, 42, 67, 0.34);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-right {
    width: 100%;
    margin-top: 0.24rem;
    height: auto;
    padding-bottom: 0.3rem;
  }
}
.ss-box2 .renzheng .renzheng-right::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(49, 42, 67, 0.34)), to(#4B445E));
  background: -webkit-linear-gradient(bottom, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  background: -moz-linear-gradient(bottom, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  background: -o-linear-gradient(bottom, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  background: linear-gradient(0deg, rgba(49, 42, 67, 0.34) 50%, #4B445E 100%);
  padding: 1px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 0.15rem;
  z-index: 1;
}
.ss-box2 .renzheng .renzheng-right .rz-r-tit {
  width: 89.35%;
  margin: auto;
  height: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.24rem;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(236, 236, 236, 0.1);
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-right .rz-r-tit {
    font-size: 0.3rem;
  }
}
.ss-box2 .renzheng .renzheng-right .rz-r-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 0.08rem;
}
.ss-box2 .renzheng .renzheng-right .rz-r-ul > li {
  width: 33.333%;
  color: #fff;
  text-align: center;
  padding-top: 0.32rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-right .rz-r-ul > li {
    width: 50%;
    padding-top: 0.4rem;
  }
}
.ss-box2 .renzheng .renzheng-right .rz-r-ul > li .ic {
  height: 0.6rem;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-right .rz-r-ul > li .ic {
    height: 1rem;
  }
}
.ss-box2 .renzheng .renzheng-right .rz-r-ul > li .tit {
  font-size: 0.18rem;
  padding-top: 0.08rem;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-right .rz-r-ul > li .tit {
    font-size: 0.26rem;
  }
}
.ss-box2 .renzheng .renzheng-right .rz-r-ul > li .desc {
  font-size: 0.14rem;
  padding-top: 0.04rem;
  color: #999;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .renzheng-right .rz-r-ul > li .desc {
    font-size: 0.22rem;
  }
}
.ss-box2 .renzheng .bj1 {
  width: 13rem;
  position: absolute;
  z-index: 1;
  top: -3.81rem;
  right: -2.57rem;
}
@media (max-width: 991px) {
  .ss-box2 .renzheng .bj1 {
    top: 3rem;
    right: -1rem;
  }
}
.ss-box2 .renzheng .bj2 {
  width: 14.56rem;
  position: absolute;
  z-index: 1;
  top: -0.83rem;
  left: -1.53rem;
}
.ss-box2 .fangan {
  position: relative;
  z-index: 2;
  padding-bottom: 0.9rem;
}
.ss-box2 .fanan-ul-box {
  width: 100%;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul-box {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.ss-box2 .fanan-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul {
    width: 21rem;
  }
}
.ss-box2 .fanan-ul > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0;
  padding: 0.3rem 0.19rem;
  position: relative;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li {
    width: 4rem;
  }
}
.ss-box2 .fanan-ul > li * {
  position: relative;
  z-index: 2;
}
.ss-box2 .fanan-ul > li:nth-child(1) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem 0 0 0.2rem;
}
.ss-box2 .fanan-ul > li:last-child {
  border-radius: 0 0.2rem 0.2rem 0;
}
.ss-box2 .fanan-ul > li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 0.18rem;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-color: #171321;
}
.ss-box2 .fanan-ul > li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -2px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#A989F5));
  background: -webkit-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -moz-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -o-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: linear-gradient(0deg, #FCA326 0%, #A989F5 100%);
  border-radius: 0.2rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.ss-box2 .fanan-ul > li .fa-tag {
  display: inline-block;
  font-size: 0.16rem;
  color: #7759C2;
  padding: 0.1rem 0.2rem;
  line-height: 1;
  background: rgba(169, 137, 245, 0.04);
  border-radius: 0.2rem;
  border: 1px solid rgba(169, 137, 245, 0.2);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-tag {
    font-size: 0.24rem;
    padding: 0.14rem 0.26rem;
    border-radius: 0.5rem;
  }
}
.ss-box2 .fanan-ul > li .fa-tit {
  font-size: 0.2rem;
  color: #FFFFFF;
  margin-top: 0.18rem;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-tit {
    font-size: 0.3rem;
  }
}
.ss-box2 .fanan-ul > li .fa-desc {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-desc {
    font-size: 0.24rem;
  }
}
.ss-box2 .fanan-ul > li .fa-btn {
  background: transparent;
  color: #fff;
  border: 0;
  padding: 0;
  font-size: 0.16rem;
  margin-top: 0.28rem;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-btn {
    font-size: 0.24rem;
  }
}
.ss-box2 .fanan-ul > li .fa-btn .svg {
  fill: #fff;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-btn .svg {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.ss-box2 .fanan-ul > li .fa-btn .svg path,
.ss-box2 .fanan-ul > li .fa-btn .svg rect {
  fill: #fff;
}
.ss-box2 .fanan-ul > li .fa-tit2 {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.28rem;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-tit2 {
    font-size: 0.24rem;
  }
}
.ss-box2 .fanan-ul > li .fa-tit2 > i {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: rgba(236, 236, 236, 0.3);
  margin-left: 0.2rem;
}
.ss-box2 .fanan-ul > li .fa-gn {
  margin-top: 0.28rem;
  min-height: 2.5rem;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-gn {
    min-height: 3.66rem;
  }
}
.ss-box2 .fanan-ul > li .fa-gn > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.08rem;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-gn > li {
    font-size: 0.22rem;
  }
}
.ss-box2 .fanan-ul > li .fa-gn > li .svg {
  width: 0.1rem;
  height: 0.1rem;
  margin-right: 0.1rem;
  fill: #A498B9;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-gn > li .svg {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.ss-box2 .fanan-ul > li .fa-gn > li .svg path,
.ss-box2 .fanan-ul > li .fa-gn > li .svg rect {
  fill: #A498B9;
}
.ss-box2 .fanan-ul > li .fa-btn2 {
  margin-top: 0.25rem;
}
.ss-box2 .fanan-ul > li .fa-btn2 > .an {
  height: 0.5rem;
  background: transparent;
  border-radius: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.16rem;
  color: #fff;
  margin-left: 0.1rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .ss-box2 .fanan-ul > li .fa-btn2 > .an {
    height: 0.7rem;
    font-size: 0.24rem;
    border-radius: 0.14rem;
  }
}
.ss-box2 .fanan-ul > li .fa-btn2 > .an:nth-child(1) {
  margin-left: 0;
}
@media (min-width: 992px) {
  .ss-box2 .fanan-ul > li:hover::after,
  .ss-box2 .fanan-ul > li:hover::before {
    opacity: 1;
    height: 105%;
  }
  .ss-box2 .fanan-ul > li:hover .fa-tag {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  .ss-box2 .fanan-ul > li:hover .fa-gn > li {
    color: #fff;
  }
  .ss-box2 .fanan-ul > li:hover .fa-btn2 > .an {
    background: #ffffff;
    color: #171321;
  }
}
.cookie-box {
  width: 14.4rem;
  max-width: 1400px;
  margin: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #FFFFFF;
  border-radius: 0.15rem 0.15rem 0px 0px;
  padding: 0.3rem 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}
@media (max-width: 991px) {
  .cookie-box {
    width: 92%;
    display: block;
  }
}
.cookie-box .cookie-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 1rem;
}
@media (max-width: 991px) {
  .cookie-box .cookie-left {
    margin: 0;
  }
}
.cookie-box .cookie-title {
  font-size: 0.24rem;
  font-weight: 500;
  color: #171321;
}
@media (max-width: 991px) {
  .cookie-box .cookie-title {
    font-size: 0.3rem;
  }
}
.cookie-box .cookie-title .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #A989F5;
}
@media (max-width: 991px) {
  .cookie-box .cookie-title .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.cookie-box .cookie-title .svg path,
.cookie-box .cookie-title .svg rect {
  fill: #A989F5;
}
.cookie-box .cookie-desc {
  font-size: 0.16rem;
  color: #666;
  margin-top: 0.14rem;
}
@media (max-width: 991px) {
  .cookie-box .cookie-desc {
    font-size: 0.22rem;
  }
}
.cookie-box .btn-box {
  margin: 0;
}
@media (max-width: 991px) {
  .cookie-box .btn-box {
    margin-top: 0.2rem;
  }
}
.cookie-box .btn-box .btn {
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-color: #171321;
  color: #fff;
  min-width: 1.6rem;
  border-radius: 0.1rem;
  cursor: pointer;
}
.cookie-box .btn-box .btn .svg {
  fill: #fff;
}
.cookie-box .btn-box .btn .svg path,
.cookie-box .btn-box .btn .svg rect {
  fill: #fff;
}
.cookie-box .btn-box .btn.btn-bor {
  background-color: transparent;
  color: #171321;
  min-width: 1.2rem;
}
.cookie-box .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.cookie-box .btn-box .btn.btn-bor .svg path,
.cookie-box .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.left-ad {
  width: 4.75rem;
  position: fixed;
  left: 0.3rem;
  bottom: 0.3rem;
  z-index: 5000;
  display: none;
}
.left-ad .close {
  width: 0.3rem;
  height: 0.3rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: -0.2rem;
  right: 0.46rem;
  z-index: 2;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .left-ad .close {
    width: 0.4rem;
    height: 0.4rem;
    top: -0.3rem;
    right: 0.4rem;
  }
}
.left-ad .close .svg {
  width: 0.1rem;
  height: 0.1rem;
  fill: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .left-ad .close .svg {
    width: 0.16rem;
    height: 0.16rem;
  }
}
.left-ad .close .svg path,
.left-ad .close .svg rect {
  fill: #fff;
}
.left-ad .close:hover .svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.left-ad .img {
  width: 100%;
}
.left-ad .btn {
  position: absolute;
  z-index: 2;
  bottom: 0.67rem;
  left: 0.3rem;
  font-size: 0.16rem;
  border-radius: 0.1rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .left-ad .btn {
    font-size: 0.22rem;
  }
}
.left-ad .btn .svg {
  fill: #171321;
}
@media (max-width: 991px) {
  .left-ad .btn .svg {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.left-ad .btn .svg path,
.left-ad .btn .svg rect {
  fill: #171321;
}
.right-win {
  width: 50px;
  position: fixed;
  top: 40%;
  right: 10px;
  z-index: 300;
}
@media (max-width: 991px) {
  .right-win {
    width: 1rem;
  }
}
.right-win .zx {
  width: 100%;
  border-radius: 30px;
  background-color: #171321;
  text-align: center;
  padding: 18px 0;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  display: block;
  border: 1px solid #7759c2;
}
@media (max-width: 991px) {
  .right-win .zx {
    padding: 0.3rem 0;
    border-radius: 0.8rem;
  }
}
.right-win .zx .img {
  width: 20px;
  height: 20px;
}
@media (max-width: 991px) {
  .right-win .zx .img {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.right-win .zx > div {
  font-size: 16px;
  color: #FFFFFF;
  width: 16px;
  margin: auto;
  line-height: 1.2;
  margin-top: 0.09rem;
}
@media (max-width: 991px) {
  .right-win .zx > div {
    width: 0.24rem;
    font-size: 0.24rem;
    margin-top: 0.14rem;
  }
}
.right-win .zz {
  width: 100%;
  border-radius: 22px;
  background-color: #fff;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  text-align: center;
  padding-bottom: 0.22rem;
  margin-top: 0.1rem;
  position: relative;
}
@media (max-width: 991px) {
  .right-win .zz {
    border-radius: 0.44rem;
    margin-top: 0.2rem;
    padding-bottom: 0.32rem;
  }
}
.right-win .zz::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(319deg, #A989F5, #FCA326);
  background: -moz-linear-gradient(319deg, #A989F5, #FCA326);
  background: -o-linear-gradient(319deg, #A989F5, #FCA326);
  background: linear-gradient(131deg, #A989F5, #FCA326);
  border-radius: 30px;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
@media (max-width: 991px) {
  .right-win .zz::after {
    border-radius: 0.8rem;
  }
}
.right-win .zz .a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 10px;
  color: #333;
  padding-top: 0.24rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .right-win .zz .a {
    font-size: 0.2rem;
    padding-top: 0.34rem;
  }
}
.right-win .zz .a .svg {
  width: 20px;
  height: 20px;
  fill: #171321;
  margin-bottom: 0.02rem;
}
@media (max-width: 991px) {
  .right-win .zz .a .svg {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.right-win .zz .a .svg path,
.right-win .zz .a .svg rect {
  fill: #171321;
}
.right-win .zz .a .tan {
  position: absolute;
  top: 10%;
  right: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateX(0.3rem);
  -moz-transform: translateX(0.3rem);
  -ms-transform: translateX(0.3rem);
  -o-transform: translateX(0.3rem);
  transform: translateX(0.3rem);
  pointer-events: none;
  text-align: left;
  padding-right: 0.1rem;
}
@media (max-width: 991px) {
  .right-win .zz .a .tan {
    padding-right: 0.2rem;
  }
}
.right-win .zz .a .tan .tan-text {
  width: 152px;
  -webkit-box-shadow: 0px 0.02rem 0.27rem 0px rgba(228, 224, 233, 0.67);
  box-shadow: 0px 0.02rem 0.27rem 0px rgba(228, 224, 233, 0.67);
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  padding: 0.11rem 0.16rem;
  background: #fff;
}
@media (max-width: 991px) {
  .right-win .zz .a .tan .tan-text {
    width: 2.6rem;
    padding: 0.16rem 0.22rem;
  }
}
.right-win .zz .a .tan .tan-text a {
  font-weight: bold;
  color: #FCA326;
  line-height: 1;
}
@media (max-width: 991px) {
  .right-win .zz .a .tan .tan-text a {
    font-size: 0.28rem;
  }
}
.right-win .zz .a .tan .tan-text p {
  padding-top: 0.04rem;
  color: #171321;
}
.right-win .zz .a .tan2 {
  top: 0%;
  text-align: center;
}
.right-win .zz .a .tan2 .tan-text {
  width: 120px;
  padding: 14px 13px 9px 13px;
}
@media (max-width: 991px) {
  .right-win .zz .a .tan2 .tan-text {
    width: 2.3rem;
    padding: 0.14rem;
  }
}
.right-win .zz .a .tan2 .tan-text .tewm {
  width: 75px;
  height: 75px;
}
@media (max-width: 991px) {
  .right-win .zz .a .tan2 .tan-text .tewm {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.right-win .zz .a .tan2 .tan-text p {
  padding-top: 0.08rem;
}
.right-win .zz .a:hover .tan {
  opacity: 1;
  -webkit-transform: translateX(0rem);
  -moz-transform: translateX(0rem);
  -ms-transform: translateX(0rem);
  -o-transform: translateX(0rem);
  transform: translateX(0rem);
  z-index: 10;
  pointer-events: initial;
}
.main404 {
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-position: top center;
  padding-top: 0.07rem;
}
@media (max-width: 991px) {
  .main404 {
    padding-top: 1rem;
  }
}
.main404 .footer {
  background: transparent;
}
.main404 .footer .s404 {
  width: 5.97rem;
}
@media (max-width: 991px) {
  .main404 .footer .s404 {
    width: 80%;
  }
}
.main404 .footer .f-ad .f-ad-text .noc {
  font-size: 0.16rem;
  color: #999;
  line-height: 1;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .main404 .footer .f-ad .f-ad-text .noc {
    font-size: 0.22rem;
    margin-top: 0.5rem;
  }
}
.main404 .footer .f-ad .f-ad-text .noc > span {
  color: #fff;
  padding: 0 0.04rem;
}
.main404 .footer .f-ad .f-ad-text .btn-box {
  margin-top: -0.35rem;
}
.main404 .footer .f-ad .f-ad-text .btn-box .btn .svg {
  fill: #171321;
}
.main404 .footer .f-ad .f-ad-text .btn-box .btn .svg path,
.main404 .footer .f-ad .f-ad-text .btn-box .btn .svg rect {
  fill: #171321;
}
.mainWeb {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: top center;
  padding-top: 0.7rem;
  padding-bottom: 1.3rem;
}
.web-box {
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
}
.web-box .web-tit {
  font-size: 0.5rem;
  color: #171321;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  padding: 0.8rem 0;
}
.web-box .web-nav {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .web-box .web-nav {
    padding: 0 0.4rem;
  }
}
.web-box .web-nav > li {
  padding: 0.16rem 0 0.3rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: 1px solid #F0F1F3;
}
.web-box .web-nav > li:last-child {
  border-bottom: 0;
}
.web-box .web-nav > li .nav-left {
  width: 2rem;
  min-width: 2rem;
}
.web-box .web-nav > li .nav1 {
  font-weight: 500;
  font-size: 0.18rem;
  color: #171321;
  margin-top: 0.14rem;
  display: inline-block;
}
@media (max-width: 991px) {
  .web-box .web-nav > li .nav1 {
    font-size: 0.26rem;
  }
}
.web-box .web-nav > li .nav-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.web-box .web-nav > li .nav-right > li {
  display: inline-block;
  margin-right: 0.8rem;
  margin-top: 0.14rem;
}
@media (max-width: 991px) {
  .web-box .web-nav > li .nav-right > li {
    display: block;
    margin-right: 0;
  }
}
.web-box .web-nav > li .nav2 {
  font-weight: 500;
  font-size: 0.16rem;
  color: #666;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .web-box .web-nav > li .nav2 {
    font-size: 0.24rem;
  }
}
.web-box .web-nav > li .nav2:hover {
  color: #A989F5;
  text-decoration: underline;
}
.x-banner {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: top center;
  text-align: center;
  padding-top: 1.2rem;
}
@media (max-width: 991px) {
  .x-banner {
    padding-top: 1rem;
    background-position: top center;
  }
}
.x-banner .x-tag {
  background: rgba(169, 137, 245, 0.04);
  border-radius: 0.5rem;
  border: 1px solid #a989f5;
  margin: auto;
  font-size: 0.2rem;
  color: #7759C2;
  display: inline-block;
  padding: 0.12rem 0.2rem;
  line-height: 1.1;
}
.x-banner .x-tag > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .x-banner .x-tag {
    font-size: 0.24rem;
  }
}
.x-banner .x-tag .svg {
  width: 0.18rem;
  height: 0.18rem;
  fill: #A989F5;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .x-banner .x-tag .svg {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.x-banner .x-tag .svg path,
.x-banner .x-tag .svg rect {
  fill: #A989F5;
}
.x-banner .x-tit {
  width: 10rem;
  margin: auto;
  font-weight: 500;
  font-size: 0.5rem;
  color: #171321;
  margin-top: 0.2rem;
}
.x-banner .x-tit > span {
  background: -webkit-linear-gradient(280deg, #F8C7AE 0%, #A989F5 47.75390625%, #A989F5 98.12011719%);
  background: -moz-linear-gradient(280deg, #F8C7AE 0%, #A989F5 47.75390625%, #A989F5 98.12011719%);
  background: -o-linear-gradient(280deg, #F8C7AE 0%, #A989F5 47.75390625%, #A989F5 98.12011719%);
  background: linear-gradient(170deg, #F8C7AE 0%, #A989F5 47.75390625%, #A989F5 98.12011719%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.06rem;
}
@media (max-width: 991px) {
  .x-banner .x-tit {
    width: 92%;
    font-size: 0.36rem;
  }
}
.x-banner .x-desc {
  width: 10rem;
  margin: auto;
  font-size: 0.16rem;
  color: #666666;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .x-banner .x-desc {
    width: 92%;
    font-size: 0.22rem;
  }
}
.x-banner .btn-box {
  margin-top: 0.4rem;
}
.x-banner .btn-box .btn {
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  color: #fff;
}
.x-banner .btn-box .btn .svg {
  fill: #fff;
}
.x-banner .btn-box .btn .svg path,
.x-banner .btn-box .btn .svg rect {
  fill: #fff;
}
.x-banner .btn-box .btn.btn-bor {
  background-color: transparent;
  color: #171321;
}
.x-banner .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.x-banner .btn-box .btn.btn-bor .svg path,
.x-banner .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.x-banner .x-img {
  margin: auto;
  padding-top: 0.42rem;
  padding-bottom: 0.77rem;
}
@media (max-width: 991px) {
  .x-banner .x-img {
    width: 92%;
  }
}
.x-banner .x-img > img {
  margin: auto;
  height: 7rem;
}
@media (max-width: 991px) {
  .x-banner .x-img > img {
    width: 100%;
    height: auto;
  }
}
.why .index-title {
  padding-top: 0.52rem;
}
.why .why-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .why .why-ul {
    display: block;
  }
}
.why .why-ul .why-li {
  display: block;
  width: 4.46rem;
  background: #FAFAFC;
  border-radius: 0.15rem;
  padding: 0.1rem;
  padding-bottom: 0.4rem;
  margin-right: 0.31rem;
}
@media (max-width: 991px) {
  .why .why-ul .why-li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
    padding: 0.16rem;
    border-radius: 0.24rem;
    padding-bottom: 0.4rem;
  }
}
.why .why-ul .why-li:nth-child(3n) {
  margin-right: 0;
}
.why .why-ul .why-li .why-img {
  width: 100%;
  height: 2.3rem;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .why .why-ul .why-li .why-img {
    height: 4rem;
    border-radius: 0.2rem;
  }
}
.why .why-ul .why-li .why-tit {
  padding: 0 0.14rem;
  font-size: 0.24rem;
  color: #171321;
  font-weight: 500;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .why .why-ul .why-li .why-tit {
    font-size: 0.3rem;
  }
}
.why .why-ul .why-li .why-desc {
  padding: 0 0.14rem;
  font-size: 0.16rem;
  color: #6D6C72;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .why .why-ul .why-li .why-desc {
    font-size: 0.22rem;
  }
}
.why .why-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0.4rem;
  margin-bottom: 0.86rem;
}
.why .why-btn .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  color: #7759C2;
  padding: 0;
}
@media (max-width: 991px) {
  .why .why-btn .btn {
    font-size: 0.24rem;
  }
}
.why .why-btn .btn .svg {
  width: 0.12rem;
  height: 0.12rem;
  fill: #7759C2;
  margin-left: 0.06rem;
}
@media (max-width: 991px) {
  .why .why-btn .btn .svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.why .why-btn .btn .svg path,
.why .why-btn .btn .svg rect {
  fill: #7759C2;
}
.hexin {
  width: 100%;
  background-color: #F9F8FB;
  padding-bottom: 0.2rem;
}
.hexin .hexin-tit {
  font-weight: 500;
  font-size: 0.36rem;
  color: #171321;
  margin-bottom: 0.3rem;
}
.hexin .qiye-box {
  margin-bottom: 1.19rem;
}
@media (max-width: 991px) {
  .hexin .qiye-box {
    margin-bottom: 0.8rem;
  }
}
.hexin .qiye-box .qiye-left .qiye-ul > li {
  background-color: #fff;
  border: 1px solid #eee;
}
.hexin .qiye-box .qiye-left .qiye-ul > li .qy-tit {
  color: #171321;
}
.hexin .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon {
  border-color: rgba(0, 0, 0, 0.26);
}
.hexin .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon .svg {
  fill: rgba(0, 0, 0, 0.26);
}
.hexin .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon .svg path,
.hexin .qiye-box .qiye-left .qiye-ul > li .qy-tit .qy-icon .svg rect {
  fill: rgba(0, 0, 0, 0.26);
}
.hexin .qiye-box .qiye-left .qiye-ul > li .qy-desc {
  color: #666;
  min-height: unset;
  padding: 0;
  margin-top: 0.1rem;
}
.hexin .qiye-box .qiye-left .qiye-ul > li::after {
  display: none;
}
.hexin .qiye-box .qiye-left .qiye-ul > li::before {
  background: -webkit-linear-gradient(72deg, #EAB367, #A989F5);
  background: -moz-linear-gradient(72deg, #EAB367, #A989F5);
  background: -o-linear-gradient(72deg, #EAB367, #A989F5);
  background: linear-gradient(18deg, #EAB367, #A989F5);
}
.hexin .qiye-box .qiye-left .btn-box {
  margin-top: 0.4rem;
}
.hexin .qiye-box .qiye-left .btn-box .btn {
  border: 0;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  color: #fff;
}
.hexin .qiye-box .qiye-left .btn-box .btn .svg {
  fill: #fff;
}
.hexin .qiye-box .qiye-left .btn-box .btn .svg path,
.hexin .qiye-box .qiye-left .btn-box .btn .svg rect {
  fill: #fff;
}
.hexin .qiye-box .qiye-left .btn-box .btn.btn-bor {
  background: transparent;
  color: #171321;
}
.hexin .qiye-box .qiye-left .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.hexin .qiye-box .qiye-left .btn-box .btn.btn-bor .svg path,
.hexin .qiye-box .qiye-left .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.hexin .qiye-box .qiye-right {
  width: 7.3rem;
  height: 5rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}
.hexin .qiye-box .qiye-right ul {
  width: 100%;
  height: 100%;
}
.hexin .qiye-box .qiye-right ul li {
  width: 100%;
  height: 100%;
}
.hexin .qiye-box .qiye-right img {
  position: unset;
  width: 100%;
  height: 100%;
  max-width: unset;
  max-height: unset;
  border-radius: 0.2rem;
}
.hexin .qiye-box2 .qiye-left {
  margin-left: 1.72rem;
}
@media (max-width: 991px) {
  .hexin .qiye-box2 .qiye-left {
    margin-left: 0;
  }
}
.x-jishu .qfw-box .qfw-right .qfw-r-li {
  background-color: #F9F8FB;
}
@media (min-width: 992px) {
  .x-jishu .qfw-box .qfw-right .qfw-r-li:hover {
    background-color: #fff;
  }
}
.x-logos {
  margin-bottom: 1.4rem;
}
.x-logos .box .bj1 {
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #fff), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #fff 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #fff 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #fff 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #fff 20.45%, hsla(0, 0%, 100%, 0));
}
.x-logos .box .bj2 {
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #fff), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #fff 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #fff 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #fff 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #fff 20.45%, hsla(0, 0%, 100%, 0));
}
.x-logos .box .h_coo_con .img a {
  background: #fff;
  -webkit-box-shadow: 0px 0.02rem 0.08rem 0px #ddd;
  box-shadow: 0px 0.02rem 0.08rem 0px #ddd;
}
.anli {
  padding-bottom: 1.1rem;
}
.anli .anli-banner {
  height: 4.7rem;
  /* 自定义指示器样式 */
}
@media (max-width: 991px) {
  .anli .anli-banner {
    height: auto;
  }
}
.anli .anli-banner .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .anli .anli-banner .swiper-container {
    padding-bottom: 0.9rem;
  }
}
.anli .anli-banner .custom-pagination {
  position: absolute;
  bottom: 0.33rem;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}
.anli .anli-banner .custom-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.08rem;
  background: #E7E7E8;
  margin: 0 0.05rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
@media (max-width: 991px) {
  .anli .anli-banner .custom-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.12rem;
    margin: 0 0.06rem;
  }
}
.anli .anli-banner .custom-pagination .swiper-pagination-bullet-active {
  width: 0.3rem;
  background: #E7E7E8;
}
@media (max-width: 991px) {
  .anli .anli-banner .custom-pagination .swiper-pagination-bullet-active {
    width: 0.6rem;
  }
}
.anli .anli-banner .custom-pagination .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #171321;
  -webkit-animation: progress 5s linear forwards;
  -moz-animation: progress 5s linear forwards;
  -o-animation: progress 5s linear forwards;
  animation: progress 5s linear forwards;
  border-radius: 0.08rem;
}
@media (max-width: 991px) {
  .anli .anli-banner .custom-pagination .swiper-pagination-bullet-active::before {
    border-radius: 0.12rem;
  }
}
@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.anli .anli-banner .anli-slide {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .anli .anli-banner .anli-slide {
    display: block;
  }
}
.anli .anli-banner .anli-slide .anli-left {
  width: 6.84rem;
  height: 4rem;
  border-radius: 0.2rem 0 0 0.2rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .anli .anli-banner .anli-slide .anli-left {
    width: 100%;
    border-radius: 0.2rem 0.2rem 0 0;
  }
}
.anli .anli-banner .anli-slide .anli-left .img {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem 0 0 0.2rem;
}
@media (max-width: 991px) {
  .anli .anli-banner .anli-slide .anli-left .img {
    border-radius: 0.2rem 0.2rem 0 0;
  }
}
.anli .anli-banner .anli-slide .anli-right {
  height: 4rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #F9F8FB;
  border-radius: 0 0.2rem 0.2rem 0;
  overflow: hidden;
  padding: 0.5rem 0.76rem;
}
@media (max-width: 991px) {
  .anli .anli-banner .anli-slide .anli-right {
    width: 100%;
    height: auto;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 0.3rem;
    border-radius: 0 0 0.2rem 0.2rem;
  }
}
.anli .anli-banner .anli-slide .anli-right .tag {
  display: inline-block;
  font-size: 16px;
  color: #7759C2;
  padding: 6px 14px;
  border: 1px solid #7759C2;
  background-color: #ECE8F5;
  line-height: 1;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .anli .anli-banner .anli-slide .anli-right .tag {
    font-size: 0.22rem;
  }
}
.anli .anli-banner .anli-slide .anli-right .txt {
  font-size: 0.3rem;
  font-weight: 500;
  color: #171321;
  margin-top: 0.18rem;
  height: 1.71rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .anli .anli-banner .anli-slide .anli-right .txt {
    height: auto;
    font-size: 0.34rem;
  }
  .anli .anli-banner .anli-slide .anli-right .txt .line4 {
    -webkit-line-clamp: 3;
  }
}
.anli .anli-banner .anli-slide .anli-right .btn-box {
  margin-top: 0.3rem;
}
.anli .anli-banner .anli-slide .anli-right .btn-box .btn {
  border: 0;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  color: #fff;
  font-size: 16px;
}
.anli .anli-banner .anli-slide .anli-right .btn-box .btn .svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}
.anli .anli-banner .anli-slide .anli-right .btn-box .btn .svg path,
.anli .anli-banner .anli-slide .anli-right .btn-box .btn .svg rect {
  fill: #fff;
}
.anli .anli-banner .anli-slide .anli-right .btn-box .btn.btn-bor {
  background: transparent;
  color: #171321;
}
.anli .anli-banner .anli-slide .anli-right .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.anli .anli-banner .anli-slide .anli-right .btn-box .btn.btn-bor .svg path,
.anli .anli-banner .anli-slide .anli-right .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.anli2 {
  padding: 0;
}
.anli2 .anli-banner .anli-slide .anli-right {
  padding: 0.5rem 0.4rem;
  border-radius: 0.15rem;
  position: relative;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0.5)));
  background: -webkit-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -moz-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -o-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-backdrop-filter: blur(0.1rem);
  backdrop-filter: blur(0.1rem);
}
@media (max-width: 991px) {
  .anli2 .anli-banner .anli-slide .anli-right {
    padding: 0.3rem;
    border-radius: 0.15rem 0.15rem 0 0;
  }
}
.anli2 .anli-banner .anli-slide .anli-left {
  margin-left: -0.2rem;
  border-radius: 0 0.15rem 0.15rem 0;
  position: relative;
  z-index: 1;
}
.anli2 .anli-banner .anli-slide .anli-left .img {
  border-radius: 0 0.15rem 0.15rem 0;
}
@media (max-width: 991px) {
  .anli2 .anli-banner .anli-slide .anli-left {
    margin: 0;
    border-radius: 0 0 0.15rem 0.15rem;
  }
}
.s-banner {
  width: 100%;
  height: 5.88rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .s-banner {
    height: 8rem;
  }
}
.s-banner .s-text {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.s-banner .s-img {
  width: 100%;
  height: 100%;
}
.s-banner .s-img img {
  width: 100%;
  height: 100%;
}
.s-box {
  width: 6rem;
  padding-top: 0.65rem;
}
@media (max-width: 991px) {
  .s-box {
    width: 100%;
  }
}
.s-box .s-t1 {
  font-size: 0.18rem;
  color: #BFA4FF;
}
@media (max-width: 991px) {
  .s-box .s-t1 {
    font-size: 0.24rem;
  }
}
.s-box .s-t2 {
  font-size: 0.5rem;
  color: #171321;
  font-weight: 500;
  margin-top: 0.2rem;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .s-box .s-t2 {
    font-size: 0.4rem;
  }
}
.s-box .s-t3 {
  font-size: 0.16rem;
  color: #666;
  margin-top: 0.2rem;
}
.s-box .s-t3 > span {
  color: #171321;
}
@media (max-width: 991px) {
  .s-box .s-t3 {
    font-size: 0.22rem;
  }
}
.s-box .btn-box {
  margin-top: 0.5rem;
}
.s-box .btn-box .btn {
  border: 0;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  color: #fff;
}
.s-box .btn-box .btn .svg {
  fill: #fff;
}
.s-box .btn-box .btn .svg path,
.s-box .btn-box .btn .svg rect {
  fill: #fff;
}
.s-box .btn-box .btn.btn-bor {
  background: transparent;
  color: #171321;
}
.s-box .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.s-box .btn-box .btn.btn-bor .svg path,
.s-box .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.mb-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.25rem 0;
}
.mb-nav > a {
  font-size: 0.16rem;
  color: #D2D2D4;
  max-width: 50%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 991px) {
  .mb-nav > a {
    font-size: 0.22rem;
  }
}
.mb-nav > a .svg {
  width: 0.18rem;
  height: 0.18rem;
  fill: #D2D2D4;
  margin-top: 0.06rem;
}
@media (max-width: 991px) {
  .mb-nav > a .svg {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.mb-nav > a .svg path,
.mb-nav > a .svg rect {
  fill: #D2D2D4;
}
.mb-nav > a.on {
  color: #171321;
}
.mb-nav > a.on .svg {
  fill: #171321;
}
.mb-nav > a.on .svg path,
.mb-nav > a.on .svg rect {
  fill: #171321;
}
.mb-nav > i {
  display: block;
  width: 0.03rem;
  min-width: 0.03rem;
  height: 0.03rem;
  background: #D3D3D5;
  margin: 0 0.09rem;
}
@media (max-width: 991px) {
  .mb-nav > i {
    width: 0.05rem;
    min-width: 0.05rem;
    height: 0.05rem;
    margin: 0 0.14rem;
  }
}
.mb-nav > i.on {
  background: #171321;
}
.s-zc {
  height: 4.22rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top left;
  margin-top: 0.8rem;
  padding: 1.17rem 0 0 0.43rem;
}
@media (max-width: 991px) {
  .s-zc {
    height: auto;
    border-radius: 0.24rem;
    overflow: hidden;
    padding: 0.9rem 0.4rem 0.4rem 0.4rem;
  }
}
.s-zc .s-z1 {
  font-size: 0.36rem;
  font-weight: 500;
  color: #171321;
}
.s-zc .s-z2 {
  font-size: 0.18rem;
  color: #666;
  margin-top: 0.2rem;
  min-height: 1rem;
}
@media (max-width: 991px) {
  .s-zc .s-z2 {
    font-size: 0.24rem;
  }
}
.s-zc .btn-box {
  margin-top: 0.2rem;
}
.s-zc .btn-box .btn {
  border: 0;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  color: #fff;
}
.s-zc .btn-box .btn .svg {
  fill: #fff;
}
.s-zc .btn-box .btn .svg path,
.s-zc .btn-box .btn .svg rect {
  fill: #fff;
}
.s-zc .btn-box .btn.btn-bor {
  background: #fff;
  color: #171321;
  margin-left: 0;
}
.s-zc .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.s-zc .btn-box .btn.btn-bor .svg path,
.s-zc .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.s-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .s-ul {
    display: block;
  }
}
.s-ul > li {
  width: 6.85rem;
  background: #FAFAFC;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  padding: 0.4rem;
  margin-top: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .s-ul > li {
    width: 100%;
  }
}
.s-ul > li .s-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.s-ul > li .s-left .s1 {
  font-size: 0.36rem;
  font-weight: 500;
  color: #171321;
}
.s-ul > li .s-left .s2 {
  font-size: 0.18rem;
  color: #666;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .s-ul > li .s-left .s2 {
    font-size: 0.24rem;
  }
}
.s-ul > li .btn-box {
  margin-top: 0.4rem;
}
.s-ul > li .btn-box .btn {
  border: 0;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  color: #fff;
}
.s-ul > li .btn-box .btn .svg {
  fill: #fff;
}
.s-ul > li .btn-box .btn .svg path,
.s-ul > li .btn-box .btn .svg rect {
  fill: #fff;
}
.s-ul > li .btn-box .btn.btn-bor {
  background: transparent;
  color: #171321;
  margin-left: 0;
}
.s-ul > li .btn-box .btn.btn-bor .svg {
  fill: #171321;
}
.s-ul > li .btn-box .btn.btn-bor .svg path,
.s-ul > li .btn-box .btn.btn-bor .svg rect {
  fill: #171321;
}
.s-ul > li .s-right {
  margin-left: 1rem;
}
.s-ul > li .s-right .s-icon {
  width: 0.6rem;
  height: 0.6rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
}
@media (max-width: 991px) {
  .s-ul > li .s-right .s-icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.s-ul > li .s-right .s-icon > div {
  width: 0.5rem;
  height: 0.5rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.1rem;
  border: 1px solid #ECECEC;
}
@media (max-width: 991px) {
  .s-ul > li .s-right .s-icon > div {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.s-ul > li .s-right .s-icon > div .svg {
  width: 0.26rem;
  height: 0.26rem;
  fill: #958BAE;
}
@media (max-width: 991px) {
  .s-ul > li .s-right .s-icon > div .svg {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.s-ul > li .s-right .s-icon > div .svg path,
.s-ul > li .s-right .s-icon > div .svg rect {
  fill: #958BAE;
}
.p-banner {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0.4rem;
}
.p-banner .p-t1 {
  font-size: 0.18rem;
  color: #BFA4FF;
  margin-top: 0.32rem;
}
@media (max-width: 991px) {
  .p-banner .p-t1 {
    font-size: 0.24rem;
  }
}
.p-banner .x-tit {
  margin-top: 0.2rem;
}
.p-banner .btn-box {
  margin-top: 0.4rem;
}
.p-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .p-ul {
    display: block;
  }
}
@media (max-width: 991px) {
  .p-ul > li {
    margin-bottom: 0.6rem;
  }
}
.p-ul > li .p-img {
  width: 4.46rem;
  height: 2.5rem;
  border-radius: 0.15rem;
}
@media (max-width: 991px) {
  .p-ul > li .p-img {
    width: 100%;
    height: 3.8rem;
  }
}
.p-ul > li .p-tit {
  font-size: 0.24rem;
  color: #171321;
  font-weight: 500;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .p-ul > li .p-tit {
    font-size: 0.3rem;
  }
}
.p-ul > li .p-desc {
  font-size: 0.16rem;
  color: #666;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .p-ul > li .p-desc {
    font-size: 0.22rem;
  }
}
.p-qe-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .p-qe-ul {
    display: block;
  }
}
.p-qe-ul > li {
  width: 48.9%;
  margin-bottom: 0.3rem;
  padding: 0.4rem 0.3rem;
  border-radius: 0.15rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .p-qe-ul > li {
    width: 100%;
  }
}
.p-qe-ul > li .p-icon {
  width: 0.77rem;
  height: 0.77rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
}
.p-qe-ul > li .p-icon > div {
  width: 0.64rem;
  height: 0.64rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.1rem;
  border: 1px solid #ECECEC;
}
.p-qe-ul > li .p-icon > div .svg {
  width: 0.34rem;
  height: 0.34rem;
  fill: #958BAE;
}
.p-qe-ul > li .p-icon > div .svg path,
.p-qe-ul > li .p-icon > div .svg rect {
  fill: #958BAE;
}
.p-qe-ul > li .p-icon2 {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(236, 236, 236, 0.15);
}
.p-qe-ul > li .p-icon2 > div {
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(104, 79, 169, 0.61);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(104, 79, 169, 0.61);
}
.p-qe-ul > li .p-qe-right {
  padding-left: 0.6rem;
  margin-left: 0.6rem;
  border-left: 1px solid #eee;
}
@media (max-width: 991px) {
  .p-qe-ul > li .p-qe-right {
    padding-left: 0.4rem;
    margin-left: 0.5rem;
  }
}
.p-qe-ul > li .p-qe-right2 {
  border-color: rgba(238, 238, 238, 0.1);
}
.p-qe-ul > li .p-qe-tit {
  font-weight: 500;
  font-size: 0.24rem;
  color: #171321;
}
@media (max-width: 991px) {
  .p-qe-ul > li .p-qe-tit {
    font-size: 0.3rem;
  }
}
.p-qe-ul > li .p-qe-tit2 {
  color: #fff;
}
.p-qe-ul > li .p-qe-s {
  margin-top: 0.2rem;
}
.p-qe-ul > li .p-qe-s > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  color: #171321;
  margin-top: 0.1rem;
  position: relative;
  padding-left: 0.22rem;
}
@media (max-width: 991px) {
  .p-qe-ul > li .p-qe-s > li {
    font-size: 0.22rem;
    padding-left: 0.28rem;
  }
}
.p-qe-ul > li .p-qe-s > li .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #C4C1CE;
  position: absolute;
  top: 0.06rem;
  left: 0;
}
@media (max-width: 991px) {
  .p-qe-ul > li .p-qe-s > li .svg {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.12rem;
    top: 0.07rem;
  }
}
.p-qe-ul > li .p-qe-s > li .svg path,
.p-qe-ul > li .p-qe-s > li .svg rect {
  fill: #C4C1CE;
}
.p-qe-ul > li .p-qe-s2 > li {
  color: #fff;
}
.p-qe-ul > li .p-qe-s2 > li .svg {
  fill: #A989F5;
}
.p-qe-ul > li .p-qe-s2 > li .svg path,
.p-qe-ul > li .p-qe-s2 > li .svg rect {
  fill: #A989F5;
}
.p-fuwu {
  width: 100%;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 1.1rem;
}
.p-swiper {
  padding-bottom: 2.17rem;
  position: relative;
}
@media (max-width: 991px) {
  .p-swiper {
    padding-left: 0.3rem;
  }
}
@media (min-width: 992px) {
  .p-swiper .swiper-slide {
    width: 4.76rem !important;
  }
}
.p-swiper .p-slide {
  width: 100%;
}
.p-swiper .p-slide .p-slide-top {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-swiper .p-slide .p-slide-top .num {
  width: 0.5rem;
  height: 0.5rem;
  background: #282237;
  border-radius: 0.15rem;
  border: 1px solid #595072;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.2rem;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-top .num {
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0.24rem;
  }
}
.p-swiper .p-slide .p-slide-top .xian {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.2rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-swiper .p-slide .p-slide-top .xian::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #DDDDDD;
}
.p-swiper .p-slide .p-slide-top .xian .icon {
  width: 0.2rem;
  height: 0.2rem;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -1px;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-top .xian .icon {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.p-swiper .p-slide .p-slide-top .xian .icon .svg {
  width: 55%;
  height: 55%;
  fill: #DDDDDD;
}
.p-swiper .p-slide .p-slide-top .xian .icon .svg path,
.p-swiper .p-slide .p-slide-top .xian .icon .svg rect {
  fill: #DDDDDD;
}
.p-swiper .p-slide .p-slide-cen {
  width: 100%;
  height: 0.4rem;
}
.p-swiper .p-slide .p-slide-cen .sbx {
  width: 0.08rem;
  height: 100%;
  position: relative;
  margin-left: 0.22rem;
}
.p-swiper .p-slide .p-slide-cen .sbx .s {
  display: block;
  width: 1px;
  height: 100%;
  background: #eee;
  margin: auto;
}
.p-swiper .p-slide .p-slide-cen .sbx .q {
  width: 0.08rem;
  height: 0.08rem;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #EEEEEE;
  position: absolute;
  bottom: -0.04rem;
  left: 0;
  right: 0;
  margin: auto;
}
.p-swiper .p-slide .p-slide-bot {
  width: 4.46rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  padding: 0.4rem;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-bot {
    padding: 0.3rem;
  }
}
.p-swiper .p-slide .p-slide-bot .tit {
  font-weight: 500;
  font-size: 0.24rem;
  color: #171321;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-bot .tit {
    font-size: 0.3rem;
  }
}
.p-swiper .p-slide .p-slide-bot .txt {
  font-size: 0.16rem;
  color: #666666;
  margin-top: 0.14rem;
  min-height: 0.79rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-bot .txt {
    font-size: 0.22rem;
  }
}
.p-swiper .p-slide .p-slide-bot .desc {
  font-size: 0.18rem;
  color: #171321;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-bot .desc {
    font-size: 0.24rem;
  }
}
.p-swiper .p-slide .p-slide-bot .btn {
  margin-top: 0.18rem;
  margin-right: 0.1rem;
}
.p-swiper .p-slide .p-slide-bot .btn.btn-bor {
  background: -webkit-gradient(linear, right top, left top, from(rgba(169, 137, 245, 0.08)), to(rgba(252, 163, 38, 0.08)));
  background: -webkit-linear-gradient(right, rgba(169, 137, 245, 0.08) 0%, rgba(252, 163, 38, 0.08) 100%);
  background: -moz-linear-gradient(right, rgba(169, 137, 245, 0.08) 0%, rgba(252, 163, 38, 0.08) 100%);
  background: -o-linear-gradient(right, rgba(169, 137, 245, 0.08) 0%, rgba(252, 163, 38, 0.08) 100%);
  background: linear-gradient(270deg, rgba(169, 137, 245, 0.08) 0%, rgba(252, 163, 38, 0.08) 100%);
  color: #7759C2;
  font-size: 0.16rem;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .p-swiper .p-slide .p-slide-bot .btn.btn-bor {
    font-size: 0.22rem;
  }
}
.p-swiper .p-slide .p-slide-bot .btn.btn-bor::before {
  background: -webkit-gradient(linear, right top, left top, from(#A989F5), to(#FCA326));
  background: -webkit-linear-gradient(right, #A989F5, #FCA326);
  background: -moz-linear-gradient(right, #A989F5, #FCA326);
  background: -o-linear-gradient(right, #A989F5, #FCA326);
  background: linear-gradient(-90deg, #A989F5, #FCA326);
  border-radius: 0.1rem;
}
.p-swiper .p-btn-box {
  position: absolute;
  bottom: 1.02rem;
  left: 0;
  right: 0;
  margin: auto;
}
.p-swiper .p-btn-box .p-button-prev,
.p-swiper .p-btn-box .p-button-next {
  width: 0.55rem;
  height: 0.55rem;
  background: rgba(248, 248, 248, 0.2);
  border-radius: 50%;
  border: 1px solid #EEEEEE;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .p-swiper .p-btn-box .p-button-prev,
  .p-swiper .p-btn-box .p-button-next {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.p-swiper .p-btn-box .p-button-prev .svg,
.p-swiper .p-btn-box .p-button-next .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #999;
}
@media (max-width: 991px) {
  .p-swiper .p-btn-box .p-button-prev .svg,
  .p-swiper .p-btn-box .p-button-next .svg {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.p-swiper .p-btn-box .p-button-prev .svg path,
.p-swiper .p-btn-box .p-button-next .svg path,
.p-swiper .p-btn-box .p-button-prev .svg rect,
.p-swiper .p-btn-box .p-button-next .svg rect {
  fill: #999;
}
.p-swiper .p-btn-box .p-button-prev:hover,
.p-swiper .p-btn-box .p-button-next:hover {
  background: #171321;
}
.p-swiper .p-btn-box .p-button-prev {
  margin-right: 0.2rem;
}
.p-swiper .p-btn-box .p-button-prev .svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-left: -0.03rem;
}
.p-fw-ul {
  width: 10.3rem;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .p-fw-ul {
    width: 92%;
    display: block;
  }
}
.p-fw-ul > li {
  width: 5rem;
  min-height: 3.2rem;
  background-color: #FAFAFC;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: center right;
  padding: 0.4rem;
}
@media (max-width: 991px) {
  .p-fw-ul > li {
    width: 100%;
    min-height: unset;
    margin-bottom: 0.26rem;
  }
}
.p-fw-ul > li .p-fw-icon {
  width: 0.77rem;
  height: 0.77rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
}
.p-fw-ul > li .p-fw-icon > div {
  width: 0.64rem;
  height: 0.64rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.1rem;
  border: 1px solid #ECECEC;
}
.p-fw-ul > li .p-fw-icon > div .svg {
  width: 0.34rem;
  height: 0.34rem;
  fill: #958BAE;
}
.p-fw-ul > li .p-fw-icon > div .svg path,
.p-fw-ul > li .p-fw-icon > div .svg rect {
  fill: #958BAE;
}
.p-fw-ul > li .p-fw-tit {
  margin-top: 0.62rem;
}
.p-fw-ul > li .p-fw-txt {
  margin-top: 0.14rem;
}
.d-banner .s-box {
  width: 7.8rem;
}
@media (max-width: 991px) {
  .d-banner .s-box {
    width: 100%;
  }
}
.d-banner .s-box .s-t3 {
  width: 6.14rem;
}
@media (max-width: 991px) {
  .d-banner .s-box .s-t3 {
    width: 100%;
  }
}
.d-banner .s-box .btn-box .btn {
  position: relative;
}
.d-banner .s-box .btn-box .btn .btn-tan {
  width: 1.45rem;
  height: 1.45rem;
  background: #fff;
  border-radius: 0.1rem;
  border: 1px solid #eee;
  position: absolute;
  z-index: 2;
  bottom: -1.55rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 0.1rem;
  text-align: center;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .d-banner .s-box .btn-box .btn .btn-tan {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.16rem;
    bottom: -2.4rem;
  }
}
.d-banner .s-box .btn-box .btn .btn-tan::before {
  content: '';
  position: absolute;
  top: -0.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
  border-bottom: 0.1rem solid #fff;
  z-index: 2;
}
@media (max-width: 991px) {
  .d-banner .s-box .btn-box .btn .btn-tan::before {
    top: -0.2rem;
    border-left: 0.2rem solid transparent;
    border-right: 0.2rem solid transparent;
    border-bottom: 0.2rem solid #fff;
  }
}
.d-banner .s-box .btn-box .btn .btn-tan::after {
  content: '';
  position: absolute;
  top: -0.11rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.11rem solid transparent;
  border-right: 0.11rem solid transparent;
  border-bottom: 0.11rem solid #eee;
  z-index: 1;
}
@media (max-width: 991px) {
  .d-banner .s-box .btn-box .btn .btn-tan::after {
    top: -0.21rem;
    border-left: 0.21rem solid transparent;
    border-right: 0.21rem solid transparent;
    border-bottom: 0.21rem solid #fff;
  }
}
.d-banner .s-box .btn-box .btn .btn-tan .img {
  height: 1rem;
  margin-bottom: 0.06rem;
}
@media (max-width: 991px) {
  .d-banner .s-box .btn-box .btn .btn-tan .img {
    height: 1.6rem;
  }
}
.d-banner .s-box .btn-box .btn:hover .btn-tan {
  display: block;
}
.d-class-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .d-class-ul {
    display: block;
  }
}
.d-class-ul > li {
  margin-bottom: 0.2rem;
  width: 6.9rem;
  background: #FAFAFC;
  border-radius: 0.2rem;
  border: 1px solid #EEEEEE;
  padding: 0.36rem 0.3rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  position: relative;
}
@media (max-width: 991px) {
  .d-class-ul > li {
    width: 100%;
    padding: 0.3rem;
  }
}
.d-class-ul > li::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#A989F5));
  background: -webkit-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -moz-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: -o-linear-gradient(bottom, #FCA326 0%, #A989F5 100%);
  background: linear-gradient(0deg, #FCA326 0%, #A989F5 100%);
  border-radius: 0.2rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.d-class-ul > li:hover::after {
  opacity: 1;
}
.d-class-ul > li * {
  position: relative;
  z-index: 2;
}
.d-class-ul > li .d-li-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.d-class-ul > li .d-li-top .d-li-t-l {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.d-class-ul > li .d-icon {
  width: 1rem;
  height: 1rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  border: 1px solid #eee;
}
.d-class-ul > li .d-icon > div {
  width: 0.86rem;
  height: 0.86rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.15rem;
}
.d-class-ul > li .d-icon > div .img {
  width: 100%;
  height: 100%;
}
.d-class-ul > li .d-li-t-r {
  font-size: 0.23rem;
  color: #FCA326;
}
.d-class-ul > li .d-li-t-r > span {
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1;
  margin-left: 0.05rem;
}
.d-class-ul > li .d-li-tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .d-class-ul > li .d-li-tit {
    display: block;
  }
}
.d-class-ul > li .d-li-tit > i {
  display: block;
  width: 1px;
  height: 0.22rem;
  background: #DDDDDD;
  margin: 0 0.06rem;
}
@media (max-width: 991px) {
  .d-class-ul > li .d-li-tit > i {
    display: none;
  }
}
.d-class-ul > li .d-li-tit .font18 {
  font-weight: 500;
}
@media (max-width: 991px) {
  .d-class-ul > li .d-li-tit .font18 {
    margin-top: 0.1rem;
  }
}
.d-class-ul > li .d-li-desc {
  min-height: 0.72rem;
  margin-top: 0.16rem;
  color: #666;
}
.d-class-ul > li .btn-box {
  margin-top: 0.4rem;
}
.d-class-ul > li .btn-box .btn {
  min-width: 1.2rem;
  min-height: 0.45rem;
}
.d-class-ul > li .btn-box .btn.btn-b {
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .d-class-ul > li .btn-box .btn.btn-b {
    margin-right: 0.2rem;
  }
}
.d-class-ul > li .btn-box .btn.btn-w {
  padding-left: 0;
}
.d-rz-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .d-rz-ul {
    display: block;
  }
}
.d-rz-ul > li {
  width: 6.9rem;
  border-radius: 0.15rem;
  padding: 0.4rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .d-rz-ul > li {
    width: 100%;
    margin-bottom: 0.2rem;
    padding: 0.3rem;
  }
}
.d-rz-ul > li .d-icon {
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.2rem;
}
.d-rz-ul > li .d-icon > div {
  width: 1rem;
  height: 1rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
}
.d-rz-ul > li .d-icon > div .img {
  width: 100%;
  height: 100%;
}
.d-rz-ul > li .d-rz-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.6rem;
}
@media (max-width: 991px) {
  .d-rz-ul > li .d-rz-right {
    width: 100%;
    margin-left: 0.3rem;
  }
}
.d-rz-ul > li .d-rz-right .d-tit {
  color: #fff;
}
.d-rz-ul > li .d-rz-right .d-txt {
  color: #fff;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .d-rz-ul > li .d-rz-right .d-txt {
    width: 100%;
    margin-top: 0.14rem;
  }
}
.c-banner {
  width: 100%;
  height: 6.38rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-banner {
    height: auto;
    padding-bottom: 0.8rem;
  }
}
.c-banner .c-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .c-banner .c-flex {
    display: block;
  }
}
.c-banner .c-flex .c-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .c-banner .c-flex .c-left {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.c-banner .c-flex .c-left .c-desc {
  margin-top: 0.2rem;
  color: #666;
}
.c-banner .c-flex .c-left .c-desc > span {
  color: #171321;
}
.c-banner .c-flex .c-left .c-ul {
  margin-top: 0.4rem;
  border-top: 1px solid #eee;
  padding-top: 0.4rem;
}
.c-banner .c-flex .c-left .c-ul > li {
  margin-top: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.c-banner .c-flex .c-left .c-ul > li span {
  color: #171321;
  font-weight: 500;
  min-width: 80px;
}
@media (max-width: 991px) {
  .c-banner .c-flex .c-left .c-ul > li span {
    min-width: 0.8rem;
  }
}
.c-banner .c-flex .c-left .c-ul > li p {
  color: #666;
}
.c-banner .c-flex .c-left .c-ul > li .svg {
  width: 14px;
  height: 14px;
  fill: #171321;
  margin-right: 0.08rem;
  min-width: 14px;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .c-banner .c-flex .c-left .c-ul > li .svg {
    width: 0.16rem;
    height: 0.16rem;
    min-width: 0.16rem;
    margin-top: 0.07rem;
  }
}
.c-banner .c-flex .c-left .c-ul > li .svg path,
.c-banner .c-flex .c-left .c-ul > li .svg rect {
  fill: #171321;
}
.c-banner .c-flex .c-right {
  width: 5.93rem;
  height: 3.9rem;
  border-radius: 0.15rem;
  position: relative;
  margin-left: 3.2rem;
}
@media (max-width: 991px) {
  .c-banner .c-flex .c-right {
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
.c-banner .c-flex .c-right .img {
  width: 100%;
  height: 100%;
  border-radius: 0.15rem;
}
.c-banner .c-flex .c-right .bj {
  width: 5.97rem;
  height: 3.92rem;
  position: absolute;
  bottom: -0.27rem;
  right: -0.33rem;
  z-index: -1;
}
.c-banner .c-flex .c-right .c-icon {
  width: 1rem;
  height: 1rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  border: 1px solid #eee;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 10;
}
.c-banner .c-flex .c-right .c-icon > div {
  width: 0.86rem;
  height: 0.86rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.15rem;
}
.c-banner .c-flex .c-right .c-icon > div .img {
  width: 100%;
  height: 100%;
}
.c-kecheng {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .c-kecheng {
    display: block;
  }
}
.c-kecheng > li {
  width: 50%;
  border-bottom: 1px solid #eee;
  margin-top: 0.3rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 991px) {
  .c-kecheng > li {
    width: 100%;
    margin-top: 0.4rem;
    padding-bottom: 0.3rem;
  }
}
.c-kecheng > li .c-kc-li {
  color: #666;
  padding-left: 0.33rem;
  margin-top: 0.16rem;
}
.c-kecheng > li .c-kc-li p {
  margin-top: 0.06rem;
}
.c-kc-tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .c-kc-tit {
    margin-top: 0.3rem;
  }
}
.c-kc-tit .svg {
  width: 0.23rem;
  height: 0.23rem;
  margin-right: 0.1rem;
}
.c-kc-title {
  margin-top: 0.6rem;
}
.c-baio {
  padding-bottom: 1.4rem;
}
.c-kc-item {
  width: 100%;
  overflow: hidden;
}
.c-table-box {
  width: 100%;
  overflow-x: auto;
}
.c-table {
  width: 100%;
  overflow: hidden;
  border-radius: 0.2rem 0.2rem 0 0;
  margin-top: 0.22rem;
  color: #ECECEC;
}
@media (max-width: 991px) {
  .c-table {
    width: 180%;
  }
}
.c-table thead tr {
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  background-color: #171321;
}
.c-table thead tr th {
  border-right: 1px solid rgba(236, 236, 236, 0.1);
  text-align: left;
  padding: 0.25rem 0.5rem;
}
.c-table thead tr th div {
  color: #fff;
}
.c-table thead tr th .svg {
  width: 0.24rem;
  height: 0.24rem;
  fill: #fff;
  margin-right: 0.1rem;
}
.c-table thead tr th .svg path,
.c-table thead tr th .svg rect {
  fill: #fff;
}
.c-table tbody tr td {
  border: 1px solid #ECECEC;
  padding: 0.25rem 0.5rem;
}
.c-table tbody tr td .font18 {
  font-weight: 500;
}
.c-table tbody tr td .c-cont p {
  margin-top: 0.08rem;
  position: relative;
  padding-left: 0.16rem;
}
.c-table tbody tr td .c-cont p:nth-child(1) {
  margin-top: 0;
}
@media (max-width: 991px) {
  .c-table tbody tr td .c-cont p {
    padding-left: 0.2rem;
  }
}
.c-table tbody tr td .c-cont p::after {
  content: "";
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #171321;
  border-radius: 0.02rem;
  left: 0;
  top: 0.09rem;
}
@media (max-width: 991px) {
  .c-table tbody tr td .c-cont p::after {
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 0.04rem;
    top: 0.14rem;
  }
}
.c-table tbody tr td .c-cont p span {
  font-weight: 500;
}
.t-banner {
  width: 100%;
  -o-background-size: 100% 9.7rem;
  background-size: 100% 9.7rem;
  background-position: top left;
  padding: 0;
}
@media (max-width: 991px) {
  .t-banner {
    -o-background-size: cover;
    background-size: cover;
  }
}
.t-banner .mb-nav > a {
  color: #C5BEC7;
}
.t-banner .mb-nav > a .svg {
  fill: #C5BEC7;
}
.t-banner .mb-nav > a .svg path,
.t-banner .mb-nav > a .svg rect {
  fill: #C5BEC7;
}
.t-banner .mb-nav > a.on {
  color: #171321;
}
.t-banner .x-tag {
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .t-banner .x-img {
    width: 92%;
  }
}
.t-banner .x-img > img {
  border-radius: 0.2rem;
  margin: auto;
  height: 6rem;
}
@media (max-width: 991px) {
  .t-banner .x-img > img {
    width: 100%;
    height: auto;
  }
}
.t-icon {
  width: 0.6rem;
  height: 0.6rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
}
@media (max-width: 991px) {
  .t-icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.t-icon > div {
  width: 0.5rem;
  height: 0.5rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  box-shadow: 0px 0.1rem 0.1rem 0px rgba(227, 221, 236, 0.88);
  border-radius: 0.1rem;
  border: 1px solid #ECECEC;
}
@media (max-width: 991px) {
  .t-icon > div {
    width: 0.65rem;
    height: 0.65rem;
  }
}
.t-icon > div .svg {
  width: 0.24rem;
  height: 0.24rem;
  fill: #958BAE;
}
@media (max-width: 991px) {
  .t-icon > div .svg {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.t-icon > div .svg path,
.t-icon > div .svg rect {
  fill: #958BAE;
}
.t-three .index-title {
  padding-top: 0.6rem;
}
.t-three .t-three-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .t-three .t-three-flex {
    display: block;
  }
}
.t-three .t-three-flex .t-three-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .t-three .t-three-flex .t-three-left {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    display: block;
  }
}
.t-three .t-three-flex .t-three-right {
  width: 4.46rem;
  height: 4.9rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom center;
  padding: 0.3rem;
  margin-left: 0.3rem;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .t-three .t-three-flex .t-three-right {
    width: 100%;
    margin-left: 0;
  }
}
.t-three .t-three-tit {
  margin-top: 0.4rem;
}
.t-three .t-three-desc {
  margin-top: 0.16rem;
  color: #666;
}
.t-three .t-three-li {
  width: 4.46rem;
  height: 2.3rem;
  background: #FAFAFC;
  border-radius: 0.1rem;
  border: 1px solid #EEEEEE;
  padding: 0.3rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .t-three .t-three-li {
    width: 100%;
    height: auto;
  }
}
.t-three .t-three-li .t-three-tit {
  margin-top: 0.24rem;
}
.t-three .t-three-li .t-three-desc {
  margin-top: 0.06rem;
}
.t-three .t-three-left2 {
  -webkit-box-pack: unset;
  -webkit-justify-content: unset;
  -moz-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}
.t-three .t-three-left2 .t-three-li {
  margin-right: 0.3rem;
}
.t-three .t-three-left2 .t-three-li:nth-child(3n) {
  margin-right: 0;
}
.t-bjs {
  width: 100%;
  background: #FAFAFC;
  margin-top: 1rem;
  padding-bottom: 0.8rem;
}
.t-jf-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.2rem;
}
.t-jf-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .t-jf-item {
    display: block;
    margin-bottom: 0.6rem;
  }
}
.t-jf-item .t-jf-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .t-jf-item .t-jf-left {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.t-jf-item .t-jf-left .btn-box {
  margin-top: 0.6rem;
}
@media (max-width: 991px) {
  .t-jf-item .t-jf-left .btn-box {
    margin-top: 0.3rem;
  }
}
.t-jf-item .t-jf-tit {
  margin-top: 0.4rem;
}
.t-jf-item .t-jf-right {
  margin-left: 0.6rem;
}
@media (max-width: 991px) {
  .t-jf-item .t-jf-right {
    display: none;
  }
}
.t-jf-item .t-jf-right .img {
  width: 7.5rem;
  height: 5.14rem;
  border-radius: 0.2rem;
}
.t-jf-item .t-jf-ul {
  margin-top: 0.2rem;
}
.t-jf-item .t-jf-ul > li {
  position: relative;
  padding-left: 0.22rem;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .t-jf-item .t-jf-ul > li {
    padding-left: 0.28rem;
  }
}
.t-jf-item .t-jf-ul > li .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #A989F5;
  position: absolute;
  top: 0.05rem;
  left: 0;
}
@media (max-width: 991px) {
  .t-jf-item .t-jf-ul > li .svg {
    width: 0.18rem;
    height: 0.18rem;
    top: 0.08rem;
  }
}
.t-jf-item .t-jf-ul > li .svg path,
.t-jf-item .t-jf-ul > li .svg rect {
  fill: #A989F5;
}
.t-jf-item .t-jf-ul > li div {
  color: #666;
}
.t-jf-item2 .t-jf-right {
  margin-left: 0;
  margin-right: 0.6rem;
}
.t-kh-box .t-kh-banner {
  height: 4.7rem;
  position: relative;
  /* 自定义指示器样式 */
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner {
    height: auto;
  }
}
.t-kh-box .t-kh-banner .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .swiper-container {
    height: auto;
    padding-bottom: 0.8rem;
  }
}
.t-kh-box .t-kh-banner .custom-pagination {
  position: absolute;
  bottom: 0.33rem;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}
.t-kh-box .t-kh-banner .custom-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.08rem;
  background: #E3E2E6;
  margin: 0 0.05rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .custom-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.12rem;
    margin: 0 0.06rem;
  }
}
.t-kh-box .t-kh-banner .custom-pagination .swiper-pagination-bullet-active {
  width: 0.3rem;
  background: #E3E2E6;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .custom-pagination .swiper-pagination-bullet-active {
    width: 0.6rem;
  }
}
.t-kh-box .t-kh-banner .custom-pagination .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #171321;
  -webkit-animation: progress 5s linear forwards;
  -moz-animation: progress 5s linear forwards;
  -o-animation: progress 5s linear forwards;
  animation: progress 5s linear forwards;
  border-radius: 0.08rem;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .custom-pagination .swiper-pagination-bullet-active::before {
    border-radius: 0.12rem;
  }
}
@-webkit-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.t-kh-box .t-kh-banner .swiper-button-next.swiper-button-disabled,
.t-kh-box .t-kh-banner .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.t-kh-box .t-kh-banner .swiper-button-next,
.t-kh-box .t-kh-banner .swiper-button-prev {
  width: 0.55rem;
  height: 0.55rem;
  background: #FAFAFC;
  border-radius: 50%;
  border: 1px solid #E0DEE5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  top: 38%;
  left: unset;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .swiper-button-next,
  .t-kh-box .t-kh-banner .swiper-button-prev {
    display: none;
  }
}
.t-kh-box .t-kh-banner .swiper-button-next .svg,
.t-kh-box .t-kh-banner .swiper-button-prev .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #999;
}
.t-kh-box .t-kh-banner .swiper-button-next .svg path,
.t-kh-box .t-kh-banner .swiper-button-prev .svg path,
.t-kh-box .t-kh-banner .swiper-button-next .svg rect,
.t-kh-box .t-kh-banner .swiper-button-prev .svg rect {
  fill: #999;
}
.t-kh-box .t-kh-banner .swiper-button-next:hover,
.t-kh-box .t-kh-banner .swiper-button-prev:hover {
  background: #171321;
  border-color: #171321;
}
.t-kh-box .t-kh-banner .swiper-button-next:hover .svg,
.t-kh-box .t-kh-banner .swiper-button-prev:hover .svg {
  fill: #fff;
}
.t-kh-box .t-kh-banner .swiper-button-next:hover .svg path,
.t-kh-box .t-kh-banner .swiper-button-prev:hover .svg path,
.t-kh-box .t-kh-banner .swiper-button-next:hover .svg rect,
.t-kh-box .t-kh-banner .swiper-button-prev:hover .svg rect {
  fill: #fff;
}
.t-kh-box .t-kh-banner .swiper-button-prev {
  right: unset;
  left: 0;
}
.t-kh-box .t-kh-banner .swiper-button-prev .svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.t-kh-box .t-kh-banner .t-kh-slide {
  width: 12rem;
  height: 3.95rem;
  background: #FFFFFF;
  border-radius: 0.2rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  margin: auto;
  padding-top: 0.6rem;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .t-kh-slide {
    width: 100%;
    height: auto;
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
  }
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-photo {
  text-align: center;
  margin: auto;
  width: 5.3rem;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center center;
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-photo .img {
  width: 1.08rem;
  height: 1.08rem;
  background-color: #9D7DCA;
  border-radius: 50%;
  border: 0.03rem solid #FFFFFF;
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-name {
  color: #fff;
  margin-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .t-kh-slide .t-kh-name {
    margin-top: 0.2rem;
  }
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-con {
  width: 8.55rem;
  min-height: 0.5rem;
  margin: auto;
  position: relative;
  margin-top: 0.4rem;
  text-align: center;
}
@media (max-width: 991px) {
  .t-kh-box .t-kh-banner .t-kh-slide .t-kh-con {
    width: 75%;
    margin-top: 0.2rem;
  }
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-con .con {
  color: #fff;
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-con .i-left {
  width: 0.35rem;
  position: absolute;
  top: 0;
  left: -0.5rem;
}
.t-kh-box .t-kh-banner .t-kh-slide .t-kh-con .i-right {
  width: 0.35rem;
  position: absolute;
  top: 0;
  right: -0.5rem;
}
.dj-top {
  width: 100%;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
}
.dj-top .dj-tit {
  text-align: center;
  padding-top: 0.9rem;
}
.dj-top .dj-tit > span {
  background: -webkit-linear-gradient(25deg, #FCA326 0%, #A989F5 100%);
  background: -moz-linear-gradient(25deg, #FCA326 0%, #A989F5 100%);
  background: -o-linear-gradient(25deg, #FCA326 0%, #A989F5 100%);
  background: linear-gradient(65deg, #FCA326 0%, #A989F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dj-top .dj-fa-box {
  padding-top: 0.8rem;
  padding-bottom: 1.32rem;
}
@media (max-width: 991px) {
  .dj-top .dj-fa-box {
    width: 100%;
    overflow: auto;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.dj-top .dj-fa {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .dj-top .dj-fa {
    width: 260%;
  }
}
.dj-top .dj-fa > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
  padding: 0.3rem;
  border-left: 0;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dj-top .dj-fa > li:nth-child(1) {
  border-left: 1px solid #ECECEC;
}
.dj-top .dj-fa > li .btn {
  width: 100%;
  height: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  border-radius: 0.1rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .dj-top .dj-fa > li .btn {
    height: 0.6rem;
  }
}
.dj-top .dj-fa > li .btn-w {
  margin-top: 0;
  color: #7759C2;
  position: relative;
  z-index: 4;
}
.dj-top .dj-fa > li .btn-box {
  position: relative;
  z-index: 4;
}
.dj-top .dj-fa > li .btn-box .btn {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
  color: #171321;
  min-height: unset;
  min-width: unset;
  height: unset;
}
.dj-top .dj-fa > li::after {
  content: '';
  position: absolute;
  top: -0.03rem;
  left: -0.03rem;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(40deg, #FCA326, #A989F5);
  background: -moz-linear-gradient(40deg, #FCA326, #A989F5);
  background: -o-linear-gradient(40deg, #FCA326, #A989F5);
  background: linear-gradient(50deg, #FCA326, #A989F5);
  border-radius: 0.15rem;
  z-index: 3;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 0.03rem;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dj-top .dj-fa > li::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: 2;
  top: -0.03rem;
  left: 0;
  border-radius: 0.15rem;
  border-top: 1px solid #ECECEC;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dj-top .dj-fa > li.dj-fa-best {
  position: relative;
}
.dj-top .dj-fa > li.dj-fa-best .dj-fa-huo {
  position: absolute;
  z-index: 1;
  width: -webkit-calc(100.02%);
  width: -moz-calc(100.02%);
  width: calc(100% + 0.02rem);
  height: 0.53rem;
  border-radius: 0.15rem 0.15rem 0 0;
  border: 1px solid #ECECEC;
  left: -0.01rem;
  top: -0.36rem;
  background-color: #472C8D;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  padding-top: 0.15rem;
  fill: #A498B9;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding-top: 0.05rem;
}
@media (max-width: 991px) {
  .dj-top .dj-fa > li.dj-fa-best .dj-fa-huo {
    height: 0.63rem;
    top: -0.46rem;
  }
}
.dj-top .dj-fa > li.dj-fa-best .dj-fa-huo span {
  color: #fff;
}
.dj-top .dj-fa > li.dj-fa-best .dj-fa-huo .svg {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.08rem;
  fill: #FC6D26;
}
@media (max-width: 991px) {
  .dj-top .dj-fa > li.dj-fa-best .dj-fa-huo .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.dj-top .dj-fa > li.dj-fa-best .dj-fa-huo .svg path,
.dj-top .dj-fa > li.dj-fa-best .dj-fa-huo .svg rect {
  fill: #FC6D26;
}
.dj-top .dj-fa > li:hover::after {
  opacity: 1;
}
.dj-top .dj-fa > li:hover::before {
  -webkit-box-shadow: 0px 0.06rem 0.38rem 0px rgba(125, 119, 139, 0.44);
  box-shadow: 0px 0.06rem 0.38rem 0px rgba(125, 119, 139, 0.44);
  z-index: 3;
}
.dj-top .dj-fa .dj-fa-tag {
  display: inline-block;
  padding: 0.04rem 0.1rem;
  line-height: 1;
  color: #fff;
  background: #7759C2;
  border-radius: 0.2rem;
  position: relative;
  z-index: 4;
  font-size: 14px;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-tag {
    padding: 0.08rem 0.14rem;
  }
}
.dj-top .dj-fa .dj-fa-tag2 {
  display: inline-block;
  padding: 0.04rem 0.1rem;
  line-height: 1;
  color: #171321;
  background: -webkit-gradient(linear, left top, right top, from(rgba(252, 109, 38, 0.1)), to(rgba(119, 89, 194, 0.1)));
  background: -webkit-linear-gradient(left, rgba(252, 109, 38, 0.1) 0%, rgba(119, 89, 194, 0.1) 100%);
  background: -moz-linear-gradient(left, rgba(252, 109, 38, 0.1) 0%, rgba(119, 89, 194, 0.1) 100%);
  background: -o-linear-gradient(left, rgba(252, 109, 38, 0.1) 0%, rgba(119, 89, 194, 0.1) 100%);
  background: linear-gradient(90deg, rgba(252, 109, 38, 0.1) 0%, rgba(119, 89, 194, 0.1) 100%);
  border-radius: 0.2rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-tag2 {
    padding: 0.08rem 0.14rem;
  }
}
.dj-top .dj-fa .dj-fa-t1 {
  margin-top: 0.2rem;
  position: relative;
  z-index: 4;
}
.dj-top .dj-fa .dj-fa-t2 {
  margin-top: 0.1rem;
  min-height: 0.42rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-t2 {
    min-height: 0.6rem;
  }
}
.dj-top .dj-fa .dj-fa-price {
  position: relative;
  z-index: 4;
  position: absolute;
  top: 0.5rem;
  right: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.dj-top .dj-fa .dj-fa-price > i {
  color: #7759C2;
  font-style: normal;
}
.dj-top .dj-fa .dj-fa-price > span {
  line-height: 1;
  color: #7759C2;
}
.dj-top .dj-fa .dj-fa-price > div {
  padding-top: 0.14rem;
  padding-left: 0.02rem;
}
.dj-top .dj-fa .dj-fa-price p {
  line-height: 1.2;
}
.dj-top .dj-fa .dj-fa-ul-box {
  min-height: 4.4rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-ul-box {
    min-height: 5.4rem;
    margin-top: 0.3rem;
  }
}
.dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul {
  min-height: 4.2rem;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul {
    min-height: 5.2rem;
  }
}
.dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul > li {
  position: relative;
  padding-left: 0.2rem;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul > li {
    padding-left: 0.24rem;
    margin-top: 0.14rem;
  }
}
.dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul > li .svg {
  position: absolute;
  left: 0;
  top: 0.07rem;
  width: 0.1rem;
  height: 0.1rem;
  fill: #A498B9;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul > li .svg {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul > li .svg path,
.dj-top .dj-fa .dj-fa-ul-box .dj-fa-ul > li .svg rect {
  fill: #A498B9;
}
.dj-top .dj-fa .dj-btn {
  height: 0.96rem;
  margin-top: 0.3rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-btn {
    height: 1.2rem;
  }
}
.dj-top .dj-fa .dj-fa-ts {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0.2rem;
  height: 0.24rem;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-ts {
    height: 0.4rem;
  }
}
.dj-top .dj-fa .dj-fa-ts .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #7759C2;
  margin-right: 0.06rem;
}
@media (max-width: 991px) {
  .dj-top .dj-fa .dj-fa-ts .svg {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.dj-top .dj-fa .dj-fa-ts .svg path,
.dj-top .dj-fa .dj-fa-ts .svg rect {
  fill: #7759C2;
}
.dj-faq {
  padding-bottom: 1rem;
}
.dj-faq .index-title {
  padding-top: 0;
}
.dj-faq-ul {
  width: 10rem;
  margin: auto;
}
@media (max-width: 991px) {
  .dj-faq-ul {
    width: 100%;
  }
}
.dj-faq-ul > li {
  background: rgba(248, 248, 248, 0);
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
  padding: 0 0.3rem;
  margin-top: 0.1rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dj-faq-ul > li .qe {
  padding: 0.2rem 0;
  position: relative;
}
.dj-faq-ul > li .qe .svg {
  position: absolute;
  right: 0;
  top: 0.3rem;
  width: 0.2rem;
  height: 0.2rem;
  fill: #171321;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dj-faq-ul > li .qe .svg path,
.dj-faq-ul > li .qe .svg rect {
  fill: #171321;
}
.dj-faq-ul > li .rq {
  color: #666;
  border-top: 1px solid #ECECEC;
  padding: 0.2rem 0;
  display: none;
}
.dj-faq-ul > li:hover {
  background-color: #F9F8F9;
}
.dj-duibi-box {
  overflow: hidden;
}
.dj-duibi-box .index-title {
  padding-top: 0.26rem;
}
.dj-duibi-box .index-title > div {
  cursor: pointer;
}
.dj-duibi-box .index-title .icon .svg {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.dj-duibi-box .dj-duibi {
  width: 100%;
  margin: auto;
  position: relative;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-duibi {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.dj-duibi-box .dj-duibi .dj-floor {
  position: absolute;
  z-index: 2000;
  text-align: right;
  display: none;
  margin-top: 0.34rem;
}
@media (max-width: 1539px) {
  .dj-duibi-box .dj-duibi .dj-floor {
    display: none;
  }
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-duibi .dj-floor {
    display: none;
  }
}
.dj-duibi-box .dj-duibi .dj-floor .dj-f-item {
  position: relative;
  padding-right: 1.23rem;
  font-size: 0.16rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  line-height: 1.5;
  height: 0.6rem;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-f-item:last-child {
  height: 0;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-f-item span {
  text-decoration: none;
  color: #666;
  display: block;
  -webkit-transition: color 0.6s ease;
  -o-transition: color 0.6s ease;
  -moz-transition: color 0.6s ease;
  transition: color 0.6s ease;
  position: relative;
  top: -0.1rem;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-f-item::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 0;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
  width: 0.07rem;
  height: 0.07rem;
  right: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #EEEEEE;
  background: #fff;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-f-item.on span {
  color: #171321;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-f-item.on::before {
  background: #171321;
  border-color: #171321;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-line-bg {
  position: absolute;
  top: 0;
  right: 1.03rem;
  height: 100%;
  width: 1px;
  background: #eee;
}
.dj-duibi-box .dj-duibi .dj-floor .dj-line-active {
  position: absolute;
  top: 0;
  right: 1.03rem;
  height: 0;
  width: 1px;
  background: #171321;
  z-index: 1;
  -webkit-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  transition: height 0.3s linear;
}
.dj-duibi-box .dj-table-box {
  width: 100%;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table-box {
    width: 200%;
    padding: 0 0.3rem;
  }
}
.dj-duibi-box .dj-bb-box {
  width: 100%;
  background-color: #fff;
  left: 0;
  z-index: 2000;
}
.dj-duibi-box .dj-bb {
  width: 12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-left: 2rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: auto;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-bb {
    width: 100%;
    padding-left: 16.8%;
  }
}
.dj-duibi-box .dj-bb i {
  font-style: normal;
}
.dj-duibi-box .dj-bb > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 0.15rem 0.15rem 0 0;
  border: 1px solid #ECECEC;
  padding: 0.26rem;
  border-bottom: 0;
  text-align: center;
  margin-left: -1px;
}
.dj-duibi-box .dj-bb > li .dj-bb-price {
  margin-top: 0.1rem;
  min-height: 0.36rem;
}
.dj-duibi-box .dj-bb > li .dj-bb-price .font18 {
  font-weight: 500;
  margin-top: 0.08rem;
  display: inline-block;
}
.dj-duibi-box .dj-bb > li .btn {
  width: 1.4rem;
  height: 0.35rem;
  color: #171321;
  font-size: 0.16rem;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-bb > li .btn {
    font-size: 0.22rem;
    width: 1.6rem;
    height: 0.5rem;
  }
}
.dj-duibi-box .dj-bb > li .dj-bb-sy {
  color: #7759C2;
  margin-top: 0.08rem;
  display: inline-block;
}
.dj-duibi-box .dj-bb-zw {
  width: 100%;
  display: none;
}
.dj-duibi-box .dj-table {
  width: 12rem;
  margin: auto;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table {
    width: 100%;
  }
}
.dj-duibi-box .dj-table .tables-item {
  width: 100%;
  border-radius: 0.15rem;
  overflow: hidden;
  border: 1px solid #ECECEC;
  margin-bottom: 0.2rem;
}
.dj-duibi-box .dj-table .tables-item:nth-child(1) {
  border-radius: 0.15rem 0 0.15rem 0.15rem;
}
.dj-duibi-box .dj-table .table {
  width: 100%;
}
.dj-duibi-box .dj-table .table thead {
  cursor: pointer;
}
.dj-duibi-box .dj-table .table thead tr th {
  height: 0.7rem;
  border: 1px solid #ECECEC;
  background-color: #F0EEF5;
  border-top: 0;
  padding-left: 0.28rem;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table .table thead tr th {
    height: 0.9rem;
  }
}
.dj-duibi-box .dj-table .table thead tr th:first-child {
  border-left: 0;
}
.dj-duibi-box .dj-table .table thead tr th:last-child {
  border-right: 0;
}
.dj-duibi-box .dj-table .table thead tr th .icon {
  width: 0.28rem;
  height: 0.28rem;
  fill: #7759C2;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table .table thead tr th .icon {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.dj-duibi-box .dj-table .table thead tr th .icon path,
.dj-duibi-box .dj-table .table thead tr th .icon rect {
  fill: #7759C2;
}
.dj-duibi-box .dj-table .table thead tr th .jts {
  padding-right: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.dj-duibi-box .dj-table .table thead tr th .jts .svg {
  width: 0.18rem;
  height: 0.18rem;
  fill: #171321;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table .table thead tr th .jts .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.dj-duibi-box .dj-table .table thead tr th .jts .svg path,
.dj-duibi-box .dj-table .table thead tr th .jts .svg rect {
  fill: #171321;
}
.dj-duibi-box .dj-table .table tbody tr {
  background-color: #fff;
}
.dj-duibi-box .dj-table .table tbody tr:nth-child(2n) {
  background-color: #FAFAFC;
}
.dj-duibi-box .dj-table .table tbody tr td {
  padding: 0.18rem 0.38rem;
  border: 1px solid #ECECEC;
  border-bottom: 0;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table .table tbody tr td {
    padding: 0.22rem 0.38rem;
  }
}
.dj-duibi-box .dj-table .table tbody tr td:first-child {
  border-left: 0;
}
.dj-duibi-box .dj-table .table tbody tr td:last-child {
  border-right: 0;
}
.dj-duibi-box .dj-table .table tbody tr td .icon {
  width: 0.16rem;
  height: 0.16rem;
  fill: #469F3A;
}
@media (max-width: 991px) {
  .dj-duibi-box .dj-table .table tbody tr td .icon {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.dj-duibi-box .dj-table .table tbody tr td .icon path,
.dj-duibi-box .dj-table .table tbody tr td .icon rect {
  fill: #469F3A;
}
.dj-duibi-box .dj-table .table tbody tr td .no {
  color: #999;
}
.anli-class-box {
  padding-bottom: 1rem;
}
.anli-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.anli-item {
  width: 23.08%;
  background: #fff;
  border-radius: 0.15rem;
  margin-bottom: 0.5rem;
  margin-right: 2.56%;
  overflow: hidden;
  position: relative;
}
.anli-item:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .anli-item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.3rem;
  }
  .anli-item:nth-child(2n) {
    margin-right: 0;
  }
}
.anli-item .anli-tag {
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  z-index: 10;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.06rem 0.14rem;
  line-height: 1;
  display: inline-block;
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
}
.anli-item .anli-cover {
  width: 100%;
  height: 1.89rem;
  overflow: hidden;
}
.anli-item .anli-cover img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.anli-item .anli-bot {
  padding: 0 0.25rem;
}
.anli-item .anli-bot .anli-tit {
  height: 0.9rem;
  margin: 0.3rem 0;
}
@media (max-width: 991px) {
  .anli-item .anli-bot .anli-tit {
    height: 1.17rem;
    margin: 0.2rem 0;
  }
}
.anli-item .anli-bot .anli-flex {
  border-top: 1px solid #eee;
  padding: 0.05rem 0;
}
@media (max-width: 991px) {
  .anli-item .anli-bot .anli-flex {
    padding: 0.1rem 0;
  }
}
.anli-item .anli-bot .anli-flex .btn-box {
  margin: 0;
}
.anli-item .anli-bot .anli-flex .btn-box .btn {
  min-width: unset;
  min-height: unset;
  padding: 0;
}
.anli-item .anli-bot .anli-flex .anli-logo {
  width: 1.34rem;
  height: 0.5rem;
}
.anli-item:hover .anli-cover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.page-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0.3rem 0;
}
.page-box .page-li {
  min-width: 0.45rem;
  height: 0.45rem;
  padding: 0 0.1rem;
  background: transparent;
  border-radius: 0.08rem;
  border: 1px solid #CECBD5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0.1rem;
  font-size: 0.16rem;
  color: #999;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .page-box .page-li {
    width: 0.65rem;
    height: 0.65rem;
    font-size: 0.22rem;
    border-radius: 0.12rem;
  }
}
.page-box .page-li:nth-child(1) {
  margin-left: 0;
}
.page-box .page-li .svg {
  width: 0.16rem;
  height: 0.16rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  fill: #999;
}
@media (max-width: 991px) {
  .page-box .page-li .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.page-box .page-li .svg rect,
.page-box .page-li .svg path {
  fill: #999;
}
.page-box .page-li:hover,
.page-box .page-li.active {
  background: #171321;
  color: #fff;
  border-color: #171321;
}
.page-box .page-li:hover .svg,
.page-box .page-li.active .svg {
  fill: #fff;
}
.page-box .page-li:hover .svg rect,
.page-box .page-li.active .svg rect,
.page-box .page-li:hover .svg path,
.page-box .page-li.active .svg path {
  fill: #fff;
}
.page-box .page-next .svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.al-banner .al-tag {
  display: inline-block;
  padding: 0.08rem 0.17rem;
  color: #7759C2;
  border-radius: 0.05rem;
  position: relative;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.al-banner .al-tag::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(177deg, #7759C2, #FCA326);
  background: -moz-linear-gradient(177deg, #7759C2, #FCA326);
  background: -o-linear-gradient(177deg, #7759C2, #FCA326);
  background: linear-gradient(-87deg, #7759C2, #FCA326);
  border-radius: 0.05rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.al-banner .c-flex .c-right {
  margin-left: 2.1rem;
}
@media (max-width: 991px) {
  .al-banner .c-flex .c-right {
    margin-left: 0;
  }
}
.al-banner .c-flex .c-left .c-ul {
  border: 0;
}
.al-banner .c-flex .c-left .c-ul > li .svg {
  fill: #6D6B72;
}
.al-banner .c-flex .c-left .c-ul > li .svg path,
.al-banner .c-flex .c-left .c-ul > li .svg rect {
  fill: #6D6B72;
}
.al-xq-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.8rem;
  padding-bottom: 0.8rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .al-xq-box {
    display: block;
    margin-top: 0.5rem;
  }
}
.al-xq-box .al-xq-left {
  width: 3.4rem;
  min-width: 3.4rem;
}
@media (max-width: 991px) {
  .al-xq-box .al-xq-left {
    width: 100%;
  }
}
.al-xq-box .al-xq-left .al-xq-left-top {
  width: 100%;
  background: #FCFCFD;
  border-radius: 0.1rem;
  border: 1px solid #EAE7F3;
  padding: 0.3rem 0 0.2rem 0;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-logo {
  width: 2.14rem;
  margin-left: 0.12rem;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-t {
  padding: 0 0.2rem;
  margin-top: 0.34rem;
  line-height: 1;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-t span {
  display: inline-block;
  position: relative;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-t span .bj {
  width: 0.35rem;
  position: absolute;
  right: -0.06rem;
  bottom: 0;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-desc {
  padding: 0 0.2rem;
  margin-top: 0.16rem;
  color: #666;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp {
  width: 100%;
  border-top: 1px solid #eee;
  margin-top: 0.3rem;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul {
  padding: 0 0.2rem;
  margin-top: 0.2rem;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-item {
  margin-top: 0.1rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #666;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-item:hover {
  color: #7759C2;
  text-decoration: underline;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-item:hover .svg {
  opacity: 1;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-icon {
  width: 0.44rem;
  min-width: 0.44rem;
  height: 0.44rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  border: 1px solid #ECECEC;
  margin-right: 0.1rem;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-icon > div {
  width: 0.37rem;
  height: 0.37rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(213, 209, 221, 0.88);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(213, 209, 221, 0.88);
  border-radius: 0.05rem;
  border: 1px solid #ECECEC;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-icon > div .icon {
  width: 0.2rem;
  height: 0.2rem;
  fill: #958BAE;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-icon > div .icon path,
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .al-xq-icon > div .icon rect {
  fill: #958BAE;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .svg {
  width: 0.17rem;
  height: 0.12rem;
  fill: #7759C2;
  margin-left: 0.09rem;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .svg path,
.al-xq-box .al-xq-left .al-xq-left-top .al-xq-cp .al-xq-ul .svg rect {
  fill: #7759C2;
}
.al-xq-box .al-xq-left .al-xq-left-bot {
  width: 100%;
  border-radius: 0.15rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom center;
  margin-top: 0.2rem;
  padding: 0.2rem;
}
.al-xq-box .al-xq-left .al-xq-left-bot .tit {
  color: #fff;
  padding-top: 0.06rem;
}
.al-xq-box .al-xq-left .al-xq-left-bot .btn-box .btn {
  min-width: unset;
  min-height: unset;
}
.al-xq-box .al-xq-left .al-xq-left-bot .btn-box .btn-b {
  background: #fff;
  color: #171321;
  padding: 0.14rem 0.2rem;
  border-radius: 0.08rem;
}
.al-xq-box .al-xq-left .al-xq-left-bot .btn-box .btn-w {
  padding: 0.14rem 0.2rem;
  color: #fff;
}
.al-xq-box .al-xq-left .al-xq-left-bot .btn-box .btn-w .svg {
  fill: #fff;
}
.al-xq-box .al-xq-left .al-xq-left-bot .btn-box .btn-w .svg path,
.al-xq-box .al-xq-left .al-xq-left-bot .btn-box .btn-w .svg rect {
  fill: #fff;
}
.al-xq-box .al-xq-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 1.1rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .al-xq-box .al-xq-right {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin: 0;
    width: 100%;
    margin-top: 0.5rem;
  }
}
.al-xq-box .al-xq-right .al-right-item {
  margin-bottom: 0.5rem;
}
.al-xq-box .al-xq-right .al-right-item .tit {
  position: relative;
  padding-left: 0.3rem;
}
.al-xq-box .al-xq-right .al-right-item .tit .svg {
  width: 0.17rem;
  height: 0.27rem;
  position: absolute;
  left: 0;
  top: 0.05rem;
}
@media (max-width: 991px) {
  .al-xq-box .al-xq-right .al-right-item .tit .svg {
    top: 0.1rem;
  }
}
.al-xq-box .al-xq-right .al-right-item .desc {
  padding-left: 0.3rem;
  margin-top: 0.12rem;
  color: #666;
  line-height: 1.6;
}
.al-xq-box .al-xq-right .al-right-item .desc .a {
  display: block;
  text-decoration: underline;
  color: #7759C2;
  position: relative;
  padding-left: 0.14rem;
}
@media (max-width: 991px) {
  .al-xq-box .al-xq-right .al-right-item .desc .a {
    padding-left: 0.16rem;
  }
}
.al-xq-box .al-xq-right .al-right-item .desc .a::after {
  content: "";
  display: block;
  width: 0.06rem;
  height: 0.06rem;
  background: #7759C2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.11rem;
}
@media (max-width: 991px) {
  .al-xq-box .al-xq-right .al-right-item .desc .a::after {
    width: 0.08rem;
    height: 0.08rem;
    top: 0.13rem;
  }
}
.al-tui-box {
  width: 100%;
  background: #F6F5F7;
  padding-bottom: 1.4rem;
}
@media (max-width: 991px) {
  .al-tui-box {
    padding-bottom: 0.8rem;
  }
}
.al-tui-box .zq-swiper {
  height: auto;
}
.al-tui-box .zq-swiper .swiper-wrapper {
  height: auto;
}
.al-tui-box .zq-swiper .swiper-slide {
  width: 3.23rem !important;
  height: auto !important;
  background: #FFFFFF;
  border-radius: 0.15rem;
}
@media (max-width: 991px) {
  .al-tui-box .zq-swiper .swiper-slide {
    width: 3.3rem !important;
  }
}
.al-tui-box .zq-swiper .swiper-slide .anli-item {
  width: 100%;
  margin: 0;
}
.al-tui-box .zq-swiper .swiper-button-next,
.al-tui-box .zq-swiper .swiper-button-prev {
  border: 1px solid #E0DEE5;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.al-tui-box .zq-swiper .swiper-button-next:hover,
.al-tui-box .zq-swiper .swiper-button-prev:hover {
  background: #171321;
}
.al-tui-box .zq-swiper .swiper-button-next:hover .svg,
.al-tui-box .zq-swiper .swiper-button-prev:hover .svg {
  fill: #fff;
}
.al-tui-box .zq-swiper .swiper-button-next:hover .svg rect,
.al-tui-box .zq-swiper .swiper-button-prev:hover .svg rect,
.al-tui-box .zq-swiper .swiper-button-next:hover .svg path,
.al-tui-box .zq-swiper .swiper-button-prev:hover .svg path {
  fill: #fff;
}
.down-banner .btn-box .btn {
  padding: 0.17rem 0.3rem;
}
.down-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.down-ul .down-li {
  width: 19%;
  margin-right: 1.25%;
  padding: 0.3rem 0 0.3rem 0.2rem;
  background: #FAFAFC;
  border-radius: 0.15rem;
  margin-bottom: 0.2rem;
  border: 1px solid #EEEEEE;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.down-ul .down-li:nth-child(5n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .down-ul .down-li {
    width: 48%;
    margin-right: 4%;
  }
  .down-ul .down-li:nth-child(5n) {
    margin-right: 4%;
  }
  .down-ul .down-li:nth-child(2n) {
    margin-right: 0;
  }
}
.down-ul .down-li .icon {
  width: 0.78rem;
  height: 0.78rem;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .down-ul .down-li .icon {
    width: 0.88rem;
    height: 0.88rem;
  }
}
.down-ul .down-li .tit {
  margin-top: 0.4rem;
}
.down-ul .down-li .txt {
  margin-top: 0.01rem;
  color: #666;
  min-height: 0.44rem;
}
.down-ul .down-li .btn {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .down-ul .down-li .btn {
    font-size: 0.22rem;
  }
}
.down-ul .down-li:hover {
  background: #f5f5f8;
}
.down-sm {
  padding: 0.5rem;
  background: #FAFAFC;
  border-radius: 0.15rem;
  margin-top: 0.8rem;
  border: 1px solid #EEEEEE;
  margin-bottom: 1.4rem;
}
.down-sm .dowm-sm-u {
  margin-top: 0.3rem;
}
.down-sm .dowm-sm-i {
  padding-left: 0.34rem;
  color: #666;
  margin-top: 0.1rem;
  position: relative;
}
@media (max-width: 991px) {
  .down-sm .dowm-sm-i {
    padding-left: 0.44rem;
  }
}
.down-sm .dowm-sm-i a {
  color: #A989F5;
  text-decoration: underline;
}
.down-sm .dowm-sm-i .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #171321;
  position: absolute;
  left: 0;
  top: 0.04rem;
}
@media (max-width: 991px) {
  .down-sm .dowm-sm-i .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.down-sm .dowm-sm-i .svg path,
.down-sm .dowm-sm-i .svg rect {
  fill: #171321;
}
.down-sm .dowm-sm-i span {
  font-weight: 500;
  color: #171321;
}
.down-yz-box {
  width: 100%;
  background: #F0EEF5;
}
.down-yz {
  width: 12.2rem;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .down-yz {
    width: 92%;
  }
}
.down-yz-li {
  width: 49.2%;
  background: #FFFFFF;
  border-radius: 0.15rem;
  margin-bottom: 0.2rem;
  padding: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #eee;
}
@media (max-width: 991px) {
  .down-yz-li {
    width: 100%;
  }
}
.down-yz-li .lef {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 0.3rem;
}
.down-yz-li .lef .tit {
  min-height: 0.93rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.down-yz-li .lef .btn {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  margin-top: 0.2rem;
  color: #7759C2;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.down-yz-li .lef .btn .svg {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  fill: #7759C2;
}
.down-yz-li .lef .btn .svg path,
.down-yz-li .lef .btn .svg rect {
  fill: #7759C2;
}
@media (max-width: 991px) {
  .down-yz-li .lef .btn {
    font-size: 0.22rem;
  }
}
.down-yz-li:hover {
  background-color: #171321;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
.down-yz-li:hover .lef .tit {
  color: #fff;
}
.down-yz-li:hover .lef .btn {
  color: #fff;
}
.down-yz-li:hover .lef .btn .svg {
  fill: #fff;
}
.down-yz-li:hover .lef .btn .svg path,
.down-yz-li:hover .lef .btn .svg rect {
  fill: #fff;
}
.down-yz-li:hover .dowm-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}
.down-yz-li:hover .dowm-icon > div {
  background: #A989F5;
  border: 1px solid transparent;
  -webkit-box-shadow: inset 0 0 0.08rem rgba(255, 255, 255, 0.83);
  box-shadow: inset 0 0 0.08rem rgba(255, 255, 255, 0.83);
}
.down-yz-li:hover .dowm-icon > div .icon {
  fill: #fff;
}
.down-yz-li:hover .dowm-icon > div .icon path,
.down-yz-li:hover .dowm-icon > div .icon rect {
  fill: #fff;
}
.dowm-icon {
  width: 0.6rem;
  min-width: 0.6rem;
  height: 0.6rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #ECECEC;
  margin-right: 0.1rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dowm-icon > div {
  width: 0.5rem;
  height: 0.5rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.07rem 0.1rem 0px #E3DDEC;
  box-shadow: 0px 0.07rem 0.1rem 0px #E3DDEC;
  border-radius: 0.1rem;
  border: 1px solid #ECECEC;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dowm-icon > div .icon {
  width: 0.26rem;
  height: 0.26rem;
  fill: #958BAE;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.dowm-icon > div .icon path,
.dowm-icon > div .icon rect {
  fill: #958BAE;
}
.js-zc-box .index-title {
  padding-top: 0.5rem;
}
.js-zc-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.js-zc-ul .js-zc-li {
  width: 49.3%;
  padding: 0.7rem 0.5rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  border-radius: 0.15rem;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .js-zc-ul .js-zc-li {
    width: 100%;
  }
}
.js-zc-ul .js-zc-li * {
  color: #fff;
}
.js-zc-ul .js-zc-li .txt {
  margin-top: 0.2rem;
  min-height: 1rem;
}
.js-zc-ul .js-zc-li .btn-box .btn {
  min-width: 1.2rem;
  min-height: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #171321;
}
.js-zc-ul .js-zc-li .btn-box .btn-bor {
  color: #fff;
}
@media (max-width: 991px) {
  .js-table-box {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.26rem;
  }
}
.js-table-box .js-table-nei {
  width: 100%;
  border: 1px solid #ECECEC;
  border-radius: 0.15rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .js-table-box .js-table-nei {
    width: 150%;
  }
}
.js-table-box .js-table-nei .js-table {
  width: 100%;
}
.js-table-box .js-table-nei .js-table thead {
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
}
.js-table-box .js-table-nei .js-table thead tr th {
  color: #fff;
  padding: 0.26rem 0 0.26rem 0.6rem;
  text-align: left;
}
.js-table-box .js-table-nei .js-table tbody tr {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.js-table-box .js-table-nei .js-table tbody tr td {
  padding: 0.2rem 0.2rem 0.2rem 0.6rem;
  border-top: 1px solid #ECECEC;
}
.js-table-box .js-table-nei .js-table tbody tr td .zksq {
  cursor: pointer;
}
.js-table-box .js-table-nei .js-table tbody tr td .zksq .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #171321;
  margin-left: 0.1rem;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.js-table-box .js-table-nei .js-table tbody tr td .zksq .svg path,
.js-table-box .js-table-nei .js-table tbody tr td .zksq .svg rect {
  fill: #171321;
}
.js-table-box .js-table-nei .js-table tbody tr td .xl-p {
  margin-top: 0.14rem;
}
.js-table-box .js-table-nei .js-table tbody tr td .xl-p:nth-child(1) {
  margin-top: 0;
}
.js-table-box .js-table-nei .js-table tbody tr.content td {
  padding: 0;
  border: 0;
}
.js-table-box .js-table-nei .js-table tbody tr.content td .desc {
  display: none;
  padding-top: 0.2rem;
  padding: 0.2rem 0.2rem 0.2rem 0.6rem;
  border-top: 1px solid #ECECEC;
}
.js-ts {
  color: #666;
  margin-top: 0.26rem;
  padding: 0 0.13rem;
}
.js-ts p {
  margin-top: 0.05rem;
}
.js-sm {
  margin-top: 0.4rem;
}
.js-ad-box {
  width: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .js-ad-box {
    background-position: top center;
  }
}
.js-ad-box .js-ad {
  position: relative;
  height: 3.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .js-ad-box .js-ad {
    height: auto;
    padding: 0.8rem 0;
  }
}
.js-ad-box .js-ad .js-ad-left {
  padding-right: 5.2rem;
}
@media (max-width: 991px) {
  .js-ad-box .js-ad .js-ad-left {
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
}
.js-ad-box .js-ad .js-ad-left .tag {
  color: #A989F5;
}
.js-ad-box .js-ad .js-ad-left .tit {
  margin-top: 0.2rem;
}
.js-ad-box .js-ad .js-ad-left .btn-box {
  margin-top: 0.4rem;
}
.js-ad-box .js-ad .js-ad-left .btn-box .btn {
  padding: 0.16rem 0.28rem;
}
@media (max-width: 991px) {
  .js-ad-box .js-ad .js-ad-left .btn-box .btn {
    margin: auto;
    padding: 0.22rem 0.3rem;
  }
}
.js-ad-box .js-ad .js-ad-right {
  width: 3.45rem;
  position: absolute;
  right: 1.4rem;
  bottom: -0.82rem;
}
@media (max-width: 991px) {
  .js-ad-box .js-ad .js-ad-right {
    display: none;
  }
}
.de-banner .s-box .s-t2 {
  margin-top: 0;
}
.de-banner .s-box .btn-box .btn .svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.de-pg {
  width: 12rem;
  background: #FAFAFC;
  border: 1px solid #EEEEEE;
  border-radius: 0.15rem;
  margin: auto;
  margin-bottom: 1.4rem;
  height: 6.32rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .de-pg {
    width: 92%;
    padding: 0.3rem;
  }
}
.de-pg .de-pg-nei {
  width: 65.2%;
  background: #FFFFFF;
  border-radius: 0.1rem;
  margin: auto;
  padding: 0.55rem 0.4rem;
  text-align: center;
}
@media (max-width: 991px) {
  .de-pg .de-pg-nei {
    width: 98%;
    padding: 0.4rem 0.26rem;
  }
}
.de-pg .de-pg-nei .tit {
  line-height: 1;
  padding-bottom: 0.29rem;
  border-bottom: 1px solid #eee;
}
.de-pg .de-pg-nei .desc {
  text-align: left;
  width: 65%;
  margin: auto;
  color: #666;
  padding-top: 0.5rem;
}
@media (max-width: 991px) {
  .de-pg .de-pg-nei .desc {
    width: 100%;
  }
}
.de-pg .de-pg-nei .desc span {
  color: #171321;
  font-weight: 500;
}
.de-pg .de-pg-nei .desc .desc-c {
  padding-top: 0.3rem;
}
.de-pg .de-pg-nei .desc .desc-c p {
  margin-bottom: 0.05rem;
}
.de-pg .de-pg-nei .btn-box {
  margin-top: 0.4rem;
}
.de-pg .de-pg-nei .btn-box .btn {
  background: #EAE9EB;
  border-radius: 0.1rem;
  border: 1px solid #DCDAE0;
}
.de-pg .de-pa-zc {
  text-align: center;
  padding-top: 0.5rem;
  color: #C1BFC5;
}
.hz-hb-box {
  margin-top: 1.1rem;
}
.hz-quanyi-box {
  background: transparent;
  padding: 0;
  margin: 0;
}
.hz-quanyi-box .down-yz {
  width: 14rem;
  padding: 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .hz-quanyi-box .down-yz {
    width: 92%;
  }
}
.hz-quanyi-box .down-yz .down-yz-li {
  width: 32%;
  background-color: #EEEEEE;
  margin-right: 2%;
  margin-top: 0.3rem;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.hz-quanyi-box .down-yz .down-yz-li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .hz-quanyi-box .down-yz .down-yz-li {
    width: 100%;
    margin-right: 0;
  }
}
.hz-quanyi-box .down-yz .down-yz-li .lef .tit {
  min-height: unset;
}
.hz-quanyi-box .down-yz .down-yz-li .lef .ul {
  margin-top: 0.24rem;
}
.hz-quanyi-box .down-yz .down-yz-li .lef .xx-ie {
  padding-left: 0.24rem;
  margin-top: 0.05rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .hz-quanyi-box .down-yz .down-yz-li .lef .xx-ie {
    padding-left: 0.3rem;
  }
}
.hz-quanyi-box .down-yz .down-yz-li .lef .xx-ie .svg {
  top: 0.05rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hz-quanyi-box .down-yz .down-yz-li:hover .lef .xx-ie {
  color: #fff;
}
.hz-quanyi-box .down-yz .down-yz-li:hover .lef .xx-ie .svg {
  fill: #A989F5;
}
.hz-quanyi-box .down-yz .down-yz-li:hover .lef .xx-ie .svg path,
.hz-quanyi-box .down-yz .down-yz-li:hover .lef .xx-ie .svg rect {
  fill: #A989F5;
}
.meiti-box {
  background: #fff;
  padding-bottom: 0.6rem;
}
.meiti-box .index-title {
  padding-top: 0.2rem;
}
.meiti-box .anli-banner {
  height: 5.7rem;
}
@media (max-width: 991px) {
  .meiti-box .anli-banner {
    height: auto;
  }
}
.meiti-box .anli-banner .anli-slide {
  margin-top: 1px;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .meiti-box .anli-banner .anli-slide {
    width: 99%;
    margin: auto;
    margin-top: 1px;
  }
}
.meiti-box .anli-banner .anli-slide .anli-right {
  position: relative;
  overflow: visible;
  height: 4.8rem;
}
.meiti-box .anli-banner .anli-slide .anli-right * {
  position: relative;
  z-index: 2;
}
.meiti-box .anli-banner .anli-slide .anli-right::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#7759C2));
  background: -webkit-linear-gradient(bottom, #FCA326, #7759C2);
  background: -moz-linear-gradient(bottom, #FCA326, #7759C2);
  background: -o-linear-gradient(bottom, #FCA326, #7759C2);
  background: linear-gradient(0deg, #FCA326, #7759C2);
  border-radius: 0.15rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.meiti-box .anli-banner .anli-slide .anli-right .txt {
  width: 5rem;
  height: auto;
}
.meiti-box .anli-banner .anli-slide .anli-right .desc {
  width: 5rem;
  min-height: 1.1rem;
  color: #666;
  margin-top: 0.2rem;
}
.meiti-box .anli-banner .anli-slide .anli-right .riqi {
  color: #6D6D78;
}
.meiti-box .anli-banner .anli-slide .anli-right .riqi .svg {
  width: 0.14rem;
  height: 0.14rem;
  fill: #6D6D78;
  margin-right: 0.06rem;
}
@media (max-width: 991px) {
  .meiti-box .anli-banner .anli-slide .anli-right .riqi .svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.meiti-box .anli-banner .anli-slide .anli-right .riqi .svg path,
.meiti-box .anli-banner .anli-slide .anli-right .riqi .svg rect {
  fill: #6D6D78;
}
.meiti-box .anli-banner .anli-slide .anli-left {
  height: 4.8rem;
}
@media (max-width: 991px) {
  .meiti-box .anli-banner .anli-slide .anli-left {
    display: none;
  }
}
.x-xiala {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #D6D3DE;
  border-radius: 8px;
  z-index: 20;
}
.x-xiala .x-sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
  line-height: 48px;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .x-xiala .x-sp {
    font-size: 0.24rem;
    line-height: 0.8rem;
  }
}
.x-xiala .x-sp span {
  color: #666666;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.x-xiala .x-sp i {
  display: inline-block;
  margin-left: 0.1rem;
}
.x-xiala .x-sp i .svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: #9d9d9d;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.x-xiala .x-sp i .svg path,
.x-xiala .x-sp i .svg rect {
  fill: #9d9d9d;
}
@media (max-width: 767px) {
  .x-xiala .x-sp i .svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.x-xiala ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  -webkit-box-shadow: 0 0 0.07rem rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 0.07rem rgba(0, 0, 0, 0.11);
  padding: 5px 0;
  display: none;
  border-radius: 8px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 1.9rem;
}
.x-xiala ul li {
  padding: 0.1rem 0.2rem;
  color: #666;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 0.16rem;
}
@media (max-width: 767px) {
  .x-xiala ul li {
    font-size: 0.24rem;
  }
}
.x-xiala ul li a {
  color: #666;
  font-size: 16px;
}
@media (max-width: 767px) {
  .x-xiala ul li a {
    font-size: 0.24rem;
  }
}
.x-xiala ul li:hover {
  color: #a989f5;
  background-color: #f6f3fe;
}
.x-xiala ul li:hover a {
  color: #a989f5;
}
.mt-class {
  margin-top: 0.8rem;
}
@media (max-width: 991px) {
  .mt-class {
    display: block;
  }
}
.mt-class .maodian2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 48px;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
@media (max-width: 991px) {
  .mt-class .maodian2 {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    height: 0.8rem;
  }
}
.mt-class .maodian2 .md-u {
  padding: 5px;
}
@media (max-width: 991px) {
  .mt-class .maodian2 .md-u {
    padding: 0.08rem;
    border-radius: 0.12rem;
  }
}
.mt-class .maodian2 .md-u .md-a {
  height: 38px;
  min-width: 104px;
}
@media (max-width: 991px) {
  .mt-class .maodian2 .md-u .md-a {
    min-width: unset;
    height: 0.62rem;
    border-radius: 0.1rem;
  }
}
@media (max-width: 991px) {
  .mt-class .x-xiala {
    margin-top: 0.26rem;
  }
}
@media (max-width: 991px) {
  .mt-class .x-xiala .x-sp {
    width: 100%;
  }
}
.mt-list .anli-item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 0.3rem;
}
.mt-list .anli-item:nth-child(3n) {
  margin-right: 0;
}
.mt-list .anli-item:nth-child(4n) {
  margin-right: 2%;
}
@media (max-width: 991px) {
  .mt-list .anli-item {
    width: 48%;
    margin-right: 4%;
  }
  .mt-list .anli-item:nth-child(3n) {
    margin-right: 4%;
  }
  .mt-list .anli-item:nth-child(2n) {
    margin-right: 0;
  }
  .mt-list .anli-item:nth-child(4n) {
    margin-right: 0;
  }
}
.mt-list .anli-item .anli-tag {
  top: 0.1rem;
  left: 0.1rem;
}
.mt-list .anli-item .anli-cover {
  height: 3.13rem;
  border-radius: 0.15rem;
}
@media (max-width: 991px) {
  .mt-list .anli-item .anli-cover {
    height: 2.6rem;
  }
}
.mt-list .anli-item .anli-tit {
  min-height: 0.72rem;
  height: auto;
  margin: 0;
  padding: 0;
  margin-top: 0.2rem;
}
.mt-list .anli-item .anli-time {
  color: #6D6D78;
  padding-top: 0.3rem;
  line-height: 1;
}
.mt-list .anli-item .anli-flex {
  padding: 0.3rem 0;
  border: 0;
  margin: 0;
}
.mtxq-banner {
  width: 100%;
  height: auto;
  background-position: bottom center;
  padding-bottom: 0.4rem;
}
.mtxq-title {
  text-align: center;
  line-height: 1.2;
  margin-top: 0.6rem;
}
.mtxq-bot {
  margin-top: 0.6rem;
  padding: 0 0.2rem;
}
@media (max-width: 991px) {
  .mtxq-bot {
    padding: 0;
  }
}
.mtxq-bot * {
  color: #6D6D78;
}
.mtxq-bot .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #6D6D78;
  margin-right: 0.08rem;
}
@media (max-width: 991px) {
  .mtxq-bot .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.mtxq-bot .svg path,
.mtxq-bot .svg rect {
  fill: #6D6D78;
}
.mtxq-bot .mtxq-i {
  margin-right: 0.4rem;
}
.mtxq-bot .mtxq-right {
  color: #666;
}
.mtxq-bot .mtxq-right span {
  display: block;
  margin-right: 0.1rem;
}
.mtxq-bot .mtxq-right a {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.2rem;
  display: block;
}
.mtxq-bot .mtxq-right a::before {
  display: none;
}
@media (max-width: 991px) {
  .mtxq-bot .mtxq-right a {
    width: 0.3rem;
    height: 0.3rem;
  }
  .mtxq-bot .mtxq-right a:last-child {
    margin-right: 0;
  }
}
.mtxq-bot .mtxq-right .svg {
  width: 100%;
  height: 100%;
  fill: #B3AFBB;
}
.mtxq-bot .mtxq-right .svg path,
.mtxq-bot .mtxq-right .svg rect {
  fill: #B3AFBB;
}
.w1000 {
  width: 10rem;
  margin: auto;
}
@media (max-width: 991px) {
  .w1000 {
    width: 92%;
  }
}
.editer {
  padding: 0.8rem 0;
  font-size: 0.16rem;
  color: #171321;
}
@media (max-width: 991px) {
  .editer {
    font-size: 0.24rem;
  }
}
.editer img {
  max-width: 100%;
}
.editer video {
  width: 100%;
}
.mtxq-content {
  padding-bottom: 0.6rem;
}
.fanye {
  border-top: 1px solid #eee;
}
.fanye .svg {
  width: 0.12rem;
  height: 0.12rem;
  fill: #000;
  min-width: 0.12rem;
}
.fanye .svg path,
.fanye .svg rect {
  fill: #000;
}
@media (max-width: 991px) {
  .fanye .svg {
    width: 0.16rem;
    height: 0.16rem;
    min-width: 0.16rem;
  }
}
.fanye .fanye-prev {
  color: #171321;
  padding: 0.3rem 0;
}
.fanye .fanye-prev .svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 0.1rem;
}
.fanye .fanye-next {
  color: #171321;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.3rem 0;
}
.fanye .fanye-next .svg {
  margin-left: 0.1rem;
}
.fanye .fanye-next .no {
  color: #AEADAF;
}
.fanye .fanye-back {
  text-align: center;
  color: #171321;
  padding: 0.3rem 0;
}
.al-tui-box .mt-list .swiper-slide {
  width: 4.46rem !important;
}
@media (max-width: 991px) {
  .al-tui-box .mt-list .swiper-slide {
    width: 3.3rem !important;
  }
}
.al-tui-box .mt-list .swiper-button-next,
.al-tui-box .mt-list .swiper-button-prev {
  top: 45%;
}
.about-banner {
  width: 100%;
  height: 7rem;
  position: relative;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  text-align: center;
}
.about-banner .img {
  width: 2.97rem;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .about-banner .img {
    width: 2rem;
  }
}
.about-banner .about-banner-nei {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.about-banner .about-banner-nei .about-text {
  text-align: center;
  padding-top: 0.3rem;
}
.about-banner .about-banner-nei .about-text .tit {
  color: #fff;
}
.about-banner .about-banner-nei .about-text .txt {
  color: #fff;
  margin-top: 0.2rem;
}
.about-box .index-title {
  padding-bottom: 0.27rem;
}
.about-desc {
  width: 7.92rem;
  margin: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .about-desc {
    width: 92%;
  }
}
.about-datas {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.8rem;
}
@media (max-width: 991px) {
  .about-datas {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about-datas > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .about-datas > li {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 50%;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -moz-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    margin-bottom: 0.3rem;
  }
}
.about-datas .txt {
  color: #7759C2;
  line-height: 1;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.about-datas .txt span {
  color: #666;
  display: block;
  padding-bottom: 0.22rem;
}
.about-datas .txt div {
  font-weight: bold;
}
.about-wh-box {
  width: 100%;
  background: #FAFAFC;
  margin-top: 1.2rem;
  padding-bottom: 1rem;
}
.about-wh {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-wh > li {
  width: 24%;
  height: 4rem;
  margin-right: 1.333%;
  background-color: #FFFFFF;
  border-radius: 0.15rem;
  overflow: hidden;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom right;
  padding: 0.4rem 0.3rem;
  position: relative;
  margin-bottom: 0.2rem;
}
.about-wh > li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .about-wh > li {
    width: 48%;
    height: 4.5rem;
    margin-right: 4%;
    margin-bottom: 0.3rem;
  }
  .about-wh > li:nth-child(2n) {
    margin-right: 0;
  }
}
.about-wh > li .jia {
  width: 0.36rem;
  height: 0.36rem;
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  z-index: 2;
  fill: rgba(141, 133, 156, 0.2);
}
.about-wh > li .jia rect,
.about-wh > li .jia path {
  fill: rgba(141, 133, 156, 0.2);
}
.about-wh > li .hovers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.3rem;
  z-index: 2;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom right;
  background-color: #171321;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.about-wh > li .hovers * {
  color: #fff;
}
.about-wh > li .hovers .bot {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0.3rem;
}
.about-wh > li .hovers .bot .txt {
  margin-top: 0.24rem;
}
.about-wh > li .hovers .icons {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(169, 137, 245, 0.2);
  border-radius: 0.1rem;
  border: 1px solid rgba(236, 236, 236, 0.2);
}
@media (max-width: 991px) {
  .about-wh > li .hovers .icons {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.about-wh > li .hovers .icons .svg {
  width: 0.28rem;
  height: 0.28rem;
  fill: #fff;
}
@media (max-width: 991px) {
  .about-wh > li .hovers .icons .svg {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.about-wh > li .hovers .icons .svg path,
.about-wh > li .hovers .icons .svg rect {
  fill: #fff;
}
.about-wh > li:hover .hovers {
  opacity: 1;
}
.about-team-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 1.4rem;
}
@media (max-width: 991px) {
  .about-team-box {
    display: block;
    margin-top: 0.8rem;
  }
}
.about-team-box .img {
  width: 6.94rem;
  min-width: 6.94rem;
  border-radius: 0.15rem;
}
@media (max-width: 991px) {
  .about-team-box .img {
    width: 100%;
  }
}
.about-team-box .rig {
  margin-left: 2rem;
  padding-top: 0.6rem;
}
@media (max-width: 991px) {
  .about-team-box .rig {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    margin-left: 0;
    padding-top: 0.3rem;
  }
}
.about-team-box .rig .desc {
  margin-top: 0.3rem;
  color: #666;
}
@media (max-width: 991px) {
  .about-team-box .rig .desc {
    margin-top: 0.2rem;
  }
}
.about-team-box .rig .btn-box {
  margin-top: 0.6rem;
}
@media (max-width: 991px) {
  .about-team-box .rig .btn-box {
    margin-top: 0.4rem;
  }
}
.about-logo {
  background: #FAFAFC;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  padding: 0.5rem 0.9rem;
  margin-top: 1.4rem;
  position: relative;
}
@media (max-width: 991px) {
  .about-logo {
    display: block;
    padding: 0.3rem;
    margin-top: 0.8rem;
  }
}
.about-logo .img {
  width: 1.85rem;
  min-width: 1.85rem;
}
.about-logo .about-logo-t {
  width: 0.56rem;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
}
.about-logo .about-logo-s {
  margin: 0 0.8rem;
  width: 1px;
  background: rgba(207, 201, 221, 0.2);
  height: 1.26rem;
}
@media (max-width: 991px) {
  .about-logo .about-logo-s {
    width: 100%;
    height: 1px;
    margin: auto;
    margin-top: 0.4rem;
  }
}
@media (max-width: 991px) {
  .about-logo .rig {
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
.about-logo .rig .txt {
  margin-top: 0.1rem;
  color: #7C7984;
}
@media (max-width: 991px) {
  .about-logo .rig .txt {
    margin-top: 0.2rem;
  }
}
.join-cz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .join-cz {
    display: block;
  }
}
.join-cz > li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 0.3rem;
}
.join-cz > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .join-cz > li {
    width: 100%;
    margin-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.join-cz > li .img {
  width: 100%;
  height: 2.8rem;
  background: #FAFAFC;
  border-radius: 0.1rem;
  border: 1px solid #EEEEEE;
}
@media (max-width: 991px) {
  .join-cz > li .img {
    width: 3rem;
    height: auto;
    margin-right: 0.3rem;
  }
}
.join-cz > li .tit {
  margin-top: 0.26rem;
}
@media (max-width: 991px) {
  .join-cz > li .tit {
    margin-top: 0;
  }
}
.join-cz > li .txt {
  margin-top: 0.16rem;
  color: #666;
}
.join-fuli-box {
  width: 92%;
  max-width: 18rem;
  background-color: #FAFAFC;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  border-radius: 0.4rem;
  margin: auto;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .join-fuli-box {
    width: 92%;
    margin-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}
.join-fuli-box .join-ul {
  width: 14rem;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .join-fuli-box .join-ul {
    width: 92%;
  }
}
.join-fuli-box .join-ul > li {
  width: 24%;
  background: #FFFFFF;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  margin-right: 1.25%;
  margin-bottom: 0.2rem;
  padding: 0.3rem 0 0.3rem 0.3rem;
}
.join-fuli-box .join-ul > li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .join-fuli-box .join-ul > li {
    width: 48%;
    margin-right: 4%;
    padding: 0.3rem;
  }
  .join-fuli-box .join-ul > li:nth-child(2n) {
    margin-right: 0;
  }
}
.join-fuli-box .join-ul > li .tit {
  margin-top: 0.46rem;
}
.join-fuli-box .join-ul > li .txt {
  color: #666;
  margin-top: 0.05rem;
}
.join-sl-box {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
}
@media (max-width: 991px) {
  .join-sl-box {
    width: 92%;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1.3rem;
  }
}
.join-sl-box .img {
  width: 5.38rem;
}
@media (max-width: 991px) {
  .join-sl-box .img {
    width: 92%;
  }
}
.join-sl-box .tit {
  margin-top: 0.4rem;
}
.join-sl-box .txt {
  margin-top: 0.2rem;
}
.join-sl-box .btn-box {
  margin-top: 0.4rem;
}
.tk-banner {
  width: 100%;
  height: auto;
  background-position: bottom center;
  padding-bottom: 1rem;
}
.tk-banner .tk-title {
  color: #fff;
  text-align: center;
  margin-top: 0.6rem;
}
.tk-banner .tk-desc {
  color: #fff;
  text-align: center;
  margin-top: 0.2rem;
}
.tk-tit {
  padding: 1.2rem 0 0.6rem 0;
}
.tk-tit p {
  color: #666;
  margin-top: 0.1rem;
}
.tk-table {
  width: 100%;
}
.tk-table thead tr th {
  border: 1px solid #EEECF2;
  text-align: left;
  padding: 0.2rem 0.8rem;
}
@media (max-width: 991px) {
  .tk-table thead tr th {
    padding: 0.26rem 0.3rem;
  }
}
.tk-table tbody tr td {
  border: 1px solid #EEECF2;
  text-align: left;
  padding: 0.2rem 0.8rem;
}
@media (max-width: 991px) {
  .tk-table tbody tr td {
    padding: 0.26rem 0.3rem;
  }
}
.tk-table tbody tr td a {
  color: #7759C2;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.tk-table tbody tr td a:hover {
  text-decoration: underline;
}
.w1200 {
  width: 12rem;
  margin: auto;
}
.tkxq-banner {
  width: 100%;
  height: auto;
  background-position: bottom center;
  padding-bottom: 1rem;
  text-align: center;
  padding-top: 1.5rem;
}
.tkxq-time {
  margin-top: 0.2rem;
}
.big-box {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  padding-top: 1rem;
  padding-bottom: 0.9rem;
}
.bd-box {
  background-color: #fff;
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  padding: 0.4rem 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .bd-box {
    padding: 0.3rem;
  }
}
.bd-box .bd-left {
  width: 5.7rem;
}
@media (max-width: 991px) {
  .bd-box .bd-left {
    display: none;
  }
}
.bd-box .bd-left .bd-tit {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.4rem;
}
.bd-box .bd-left .bd-lx {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.46rem;
}
.bd-box .bd-left .bd-lx .bd-lx-l {
  padding-top: 0.06rem;
}
.bd-box .bd-left .bd-lx .bd-lx-l p {
  color: #666;
  padding-top: 0.4rem;
}
.bd-box .bd-left .bd-lx .bd-lx-l span {
  display: block;
  padding-top: 0.05rem;
  font-weight: bold;
  line-height: 1;
}
.bd-box .bd-left .bd-lx .bd-lx-r {
  text-align: center;
  padding-top: 0.6rem;
}
.bd-box .bd-left .bd-lx .bd-lx-r .img-box {
  padding: 0.09rem;
  background: #FAFAFC;
  border-radius: 0.1rem;
  border: 1px solid #EEEEEE;
}
.bd-box .bd-left .bd-lx .bd-lx-r .img {
  width: 1.08rem;
  height: 1.08rem;
  min-width: 1.08rem;
}
.bd-box .bd-left .bd-lx .bd-lx-r p {
  color: #999;
  margin-top: 0.1rem;
}
.bd-box .bd-left .bd-qy {
  padding-top: 0.5rem;
}
.bd-box .bd-left .bd-qy .bd-qy-t {
  color: #A989F5;
  margin-bottom: 0.18rem;
}
.bd-box .bd-left .bd-qy .bd-qy-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bd-box .bd-left .bd-qy .bd-qy-ul .bd-qy-item {
  width: 24%;
  height: 0.55rem;
  margin-right: 1.25%;
  margin-top: 0.1rem;
}
.bd-box .bd-left .bd-qy .bd-qy-ul .bd-qy-item:nth-child(4n) {
  margin-right: 0;
}
.bd-box .bd-left .bd-qy .bd-qy-ul .bd-qy-item .img {
  width: 100%;
  height: 100%;
}
.bd-box .bd-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 1.39rem;
}
@media (max-width: 991px) {
  .bd-box .bd-right {
    margin-left: 0;
  }
}
.bd-box .bd-right .bd-tit {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #eee;
}
@media (max-width: 991px) {
  .bd-box .bd-right .bd-tit {
    padding-bottom: 0.2rem;
  }
}
.bd-form {
  display: block;
  padding-left: 0.2rem;
}
@media (max-width: 991px) {
  .bd-form {
    padding-left: 0;
  }
}
.bd-form .bd-item-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.bd-form .bd-item-b .bd-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 0.2rem;
  margin-left: 0.3rem;
}
.bd-form .bd-item-b .bd-item:nth-child(1) {
  margin-left: 0;
}
.bd-form .bd-item-b .bd-item .bd-t {
  padding-bottom: 0.1rem;
  font-weight: 500;
}
.bd-form .bd-item-b .bd-item .bd-t span {
  color: #7759C2;
}
.bd-input {
  width: 100%;
  height: 50px;
  border: 1px solid #eee;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 991px) {
  .bd-input {
    height: 0.8rem;
    border-radius: 0.14rem;
  }
}
.bd-input .inp {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #171321;
  display: block;
  position: relative;
  z-index: 2;
  padding: 0 18px;
}
@media (max-width: 991px) {
  .bd-input .inp {
    font-size: 0.24rem;
    padding: 0 0.26rem;
  }
}
.bd-input .inp::-webkit-input-placeholder {
  color: #999;
}
.bd-input .inp:-moz-placeholder {
  color: #999;
}
.bd-input .inp::-moz-placeholder {
  color: #999;
}
.bd-input .inp:-ms-input-placeholder {
  color: #999;
}
.bd-input .inp::-ms-input-placeholder {
  color: #999;
}
.bd-input .inp::placeholder {
  color: #999;
}
.bd-input::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(283deg, #FCA326, #7759C2);
  background: -moz-linear-gradient(283deg, #FCA326, #7759C2);
  background: -o-linear-gradient(283deg, #FCA326, #7759C2);
  background: linear-gradient(167deg, #FCA326, #7759C2);
  border-radius: 10px;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.bd-input.on::before {
  opacity: 1;
}
.bd-input .bd-code {
  width: 140px;
  height: 50px;
  background: #DDDDDD;
  border-radius: 10px;
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #999999;
}
@media (max-width: 991px) {
  .bd-input .bd-code {
    width: 1.8rem;
    height: 0.8rem;
    border-radius: 0.14rem;
    font-size: 0.24rem;
  }
}
.bd-input .bd-code.on {
  background: #A989F5;
  color: #fff;
  cursor: pointer;
}
.bd-input .x-xiala {
  width: 100%;
  height: 100%;
  border: 0;
}
.bd-input .x-xiala .x-sp {
  width: 100%;
  height: 100%;
}
.bd-input .x-xiala .x-sp input::-webkit-input-placeholder {
  color: #999;
}
.bd-input .x-xiala .x-sp input:-moz-placeholder {
  color: #999;
}
.bd-input .x-xiala .x-sp input::-moz-placeholder {
  color: #999;
}
.bd-input .x-xiala .x-sp input:-ms-input-placeholder {
  color: #999;
}
.bd-input .x-xiala .x-sp input::-ms-input-placeholder {
  color: #999;
}
.bd-input .x-xiala .x-sp input::placeholder {
  color: #999;
}
.bd-input .x-xiala .x-sp i .svg {
  width: 12px;
  height: 12px;
}
@media (max-width: 991px) {
  .bd-input .x-xiala .x-sp i .svg {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.bd-input .svg {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  fill: #999;
}
@media (max-width: 991px) {
  .bd-input .svg {
    width: 0.22rem;
    height: 0.22rem;
  }
}
.bd-input .svg path,
.bd-input .svg rect {
  fill: #999;
}
.bd-upload {
  position: relative;
}
.bd-upload input {
  cursor: pointer;
  padding-right: 0.45rem !important;
}
.bd-upload input::-webkit-input-placeholder {
  color: #999;
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .bd-upload input::-webkit-input-placeholder {
    font-size: 0.18rem !important;
  }
}
.bd-upload input:-moz-placeholder {
  color: #999;
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .bd-upload input:-moz-placeholder {
    font-size: 0.18rem !important;
  }
}
.bd-upload input::-moz-placeholder {
  color: #999;
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .bd-upload input::-moz-placeholder {
    font-size: 0.18rem !important;
  }
}
.bd-upload input:-ms-input-placeholder {
  color: #999;
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .bd-upload input:-ms-input-placeholder {
    font-size: 0.18rem !important;
  }
}
.bd-upload input::-ms-input-placeholder {
  color: #999;
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .bd-upload input::-ms-input-placeholder {
    font-size: 0.18rem !important;
  }
}
.bd-upload input::placeholder {
  color: #999;
  font-size: 12px !important;
}
@media (max-width: 991px) {
  .bd-upload input::placeholder {
    font-size: 0.18rem !important;
  }
}
.bd-upload .inp-file {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.bd-textarea {
  width: 100%;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 991px) {
  .bd-textarea {
    height: 1.2rem;
    border-radius: 0.14rem;
  }
}
.bd-textarea .inp {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #171321;
  display: block;
  white-space: pre-wrap;
  word-break: break-all;
  position: relative;
  z-index: 2;
  padding: 16px 18px;
}
@media (max-width: 991px) {
  .bd-textarea .inp {
    font-size: 0.24rem;
    padding: 0.24rem 0.26rem;
  }
}
.bd-textarea .inp::-webkit-input-placeholder {
  color: #999;
}
.bd-textarea .inp:-moz-placeholder {
  color: #999;
}
.bd-textarea .inp::-moz-placeholder {
  color: #999;
}
.bd-textarea .inp:-ms-input-placeholder {
  color: #999;
}
.bd-textarea .inp::-ms-input-placeholder {
  color: #999;
}
.bd-textarea .inp::placeholder {
  color: #999;
}
.bd-textarea::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(283deg, #FCA326, #7759C2);
  background: -moz-linear-gradient(283deg, #FCA326, #7759C2);
  background: -o-linear-gradient(283deg, #FCA326, #7759C2);
  background: linear-gradient(167deg, #FCA326, #7759C2);
  border-radius: 10px;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.bd-textarea.on::before {
  opacity: 1;
}
.bd-checkbox {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bd-checkbox .bd-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  width: 20%;
  margin-bottom: 10px;
}
@media (max-width: 1380px) {
  .bd-checkbox .bd-option {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .bd-checkbox .bd-option {
    font-size: 0.24rem;
    width: 33.333%;
  }
}
.bd-checkbox .bd-option > i {
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #EEEEEE;
  margin-right: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 0.03rem;
}
@media (max-width: 991px) {
  .bd-checkbox .bd-option > i {
    width: 0.26rem;
    min-width: 0.26rem;
    height: 0.26rem;
    margin-top: 0.04rem;
    border-radius: 0.06rem;
  }
}
.bd-checkbox .bd-option > i .svg {
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  fill: #fff;
}
@media (max-width: 991px) {
  .bd-checkbox .bd-option > i .svg {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.bd-checkbox .bd-option > i .svg path,
.bd-checkbox .bd-option > i .svg rect {
  fill: #fff;
}
.bd-checkbox .bd-option.on > i {
  background: #171321;
  border-color: #171321;
}
.bd-checkbox .bd-option.on > i .svg {
  opacity: 1;
}
.bd-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #171321;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top right;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .bd-btn {
    height: 0.8rem;
    font-size: 0.24rem;
    margin-top: 0.2rem;
    border-radius: 0.14rem;
  }
}
.bd-radio {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .bd-radio {
    margin-top: 0.2rem;
  }
}
.bd-radio .bd-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  margin-right: 0.2rem;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .bd-radio .bd-option {
    font-size: 0.24rem;
  }
}
.bd-radio .bd-option > i {
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #EEEEEE;
  margin-right: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 0.03rem;
}
@media (max-width: 991px) {
  .bd-radio .bd-option > i {
    width: 0.26rem;
    min-width: 0.26rem;
    height: 0.26rem;
    margin-top: 0.04rem;
  }
}
.bd-radio .bd-option > i .svg {
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  fill: #fff;
}
@media (max-width: 991px) {
  .bd-radio .bd-option > i .svg {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.bd-radio .bd-option > i .svg path,
.bd-radio .bd-option > i .svg rect {
  fill: #fff;
}
.bd-radio .bd-option.on > i {
  background: #A989F5;
  border-color: #A989F5;
}
.bd-radio .bd-option.on > i .svg {
  opacity: 1;
}
.bd-radio .bd-option > div a {
  color: #7759C2;
  text-decoration: underline;
}
.bd-tan-box {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.bd-tan-nei {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bd-tan {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0.06rem 0.4rem 0px rgba(125, 119, 139, 0.1);
  box-shadow: 0px 0.06rem 0.4rem 0px rgba(125, 119, 139, 0.1);
  border-radius: 0.15rem;
  padding: 0.46rem 0.6rem 0.6rem;
  position: relative;
  background-position: bottom center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  max-height: 95vh;
  overflow: auto;
}
@media (max-width: 991px) {
  .bd-tan {
    width: 88%;
    padding: 0.4rem;
  }
}
.bd-tan .tit {
  font-size: 0.3rem;
  color: #171321;
  font-weight: 500;
}
.bd-tan .bd-width {
  width: 4.8rem;
}
@media (max-width: 991px) {
  .bd-tan .bd-width {
    width: 100%;
  }
}
.bd-tan .bd-width2 {
  width: 2.6rem;
}
@media (max-width: 991px) {
  .bd-tan .bd-width2 {
    width: 100%;
  }
}
.bd-tan .bd-width3 {
  width: 3.25rem;
}
@media (max-width: 991px) {
  .bd-tan .bd-width3 {
    width: 100%;
  }
}
.bd-tan .bd-form {
  padding: 0;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .bd-tan .bd-form .bd-item-b {
    display: block;
  }
}
@media (max-width: 991px) {
  .bd-tan .bd-form .bd-item-b .bd-item {
    margin-left: 0;
  }
}
.bd-tan .bd-btn {
  margin-top: 0.3rem;
}
.bd-tan .bd-close {
  width: 0.3rem;
  height: 0.3rem;
  background: rgba(23, 19, 33, 0.02);
  border-radius: 50%;
  border: 1px solid #E9E9EA;
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .bd-tan .bd-close {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.bd-tan .bd-close .svg {
  width: 0.1rem;
  height: 0.1rem;
  fill: #999;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .bd-tan .bd-close .svg {
    width: 0.16rem;
    height: 0.16rem;
  }
}
.bd-tan .bd-close .svg path,
.bd-tan .bd-close .svg rect {
  fill: #999;
}
.bd-tan .bd-close:hover .svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.bd-tan .bd-radio {
  margin-top: 0.2rem;
}
.bd-tan .ewm-box {
  width: 1.66rem;
  height: 1.66rem;
  background: #fff;
  border-radius: 0.1rem;
  margin: auto;
  position: relative;
}
.bd-tan .ewm-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#7759C2));
  background: -webkit-linear-gradient(bottom, #FCA326, #7759C2);
  background: -moz-linear-gradient(bottom, #FCA326, #7759C2);
  background: -o-linear-gradient(bottom, #FCA326, #7759C2);
  background: linear-gradient(0deg, #FCA326, #7759C2);
  border-radius: 0.1rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.bd-tan .ewm-box .img {
  width: 1.5rem;
  height: 1.5rem;
}
.bd-tan .ewm-p {
  text-align: center;
  padding-top: 0.36rem;
}
.EWMTan .bd-tan {
  min-width: 3.52rem;
  padding: 0.65rem 0.7rem 0.7rem;
}
.bd-yy {
  font-size: 0.14rem;
  color: #999;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bd-yy .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #A989F5;
  margin-right: 0.05rem;
}
.bd-yy .svg path,
.bd-yy .svg rect {
  fill: #A989F5;
}
@media (max-width: 991px) {
  .bd-yy {
    font-size: 0.24rem;
  }
}
.zx-tan {
  width: 3.76rem;
  background: #F8F8F8;
  -webkit-box-shadow: 0px 6px 40px 0px rgba(125, 119, 139, 0.1);
  box-shadow: 0px 6px 40px 0px rgba(125, 119, 139, 0.1);
  border-radius: 0.15rem;
  border: 1px solid #EEEEEE;
  position: fixed;
  right: -100%;
  top: 20%;
  z-index: 301;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .zx-tan {
    width: 70%;
  }
}
.zx-tan .zx-tan-top {
  background-color: #fff;
  width: 100%;
  padding: 0.14rem 0.2rem;
}
.zx-tan .zx-tan-top .icon {
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .zx-tan .zx-tan-top .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.zx-tan .zx-tan-top .zx-tan-close {
  cursor: pointer;
}
.zx-tan .zx-tan-con {
  padding: 0 0.2rem 0.2rem;
}
.zx-tan .zx-tan-con .times {
  text-align: center;
  padding: 0.2rem 0;
}
.zx-tan .zx-tan-con .times > span {
  display: inline-block;
  padding: 0.02rem 0.07rem;
  color: #fff;
  background: #E0E0E0;
  border-radius: 0.03rem;
}
.zx-tan .zx-tan-con .cons-b {
  width: 100%;
  background: #fff;
  border-radius: 0 0.15rem 0.15rem 0.15rem;
  padding: 0.2rem;
}
.zx-tan .zx-tan-con .cons-b .t1 {
  font-weight: 500;
}
.zx-tan .zx-tan-con .cons-b .t2 {
  color: #666;
  margin-top: 0.1rem;
}
.zx-tan .zx-tan-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}
.zx-tan .zx-tan-ul .zx-tan-li {
  width: 31.16%;
  margin-right: 3.26%;
  background: #FFFFFF;
  border-radius: 0.15rem;
  padding: 0.2rem 0;
  text-align: center;
  margin-top: 0.1rem;
}
.zx-tan .zx-tan-ul .zx-tan-li:nth-child(3n) {
  margin-right: 0;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.1rem;
  background: #F3EEFD;
  border: 1px solid #D0C5E7;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .zx-tan .zx-tan-ul .zx-tan-li .icon {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.zx-tan .zx-tan-ul .zx-tan-li .icon .svg {
  width: 60%;
  height: 60%;
  fill: #9D80E0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon .svg rect {
  fill: #9D80E0;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon1 {
  background: #F3EEFD;
  border-color: #D0C5E7;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon1 .svg {
  fill: #9D80E0;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon1 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon1 .svg rect {
  fill: #9D80E0;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon2 {
  background: #EEF6FD;
  border-color: #C2DBFA;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon2 .svg {
  fill: #4E91E4;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon2 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon2 .svg rect {
  fill: #4E91E4;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon3 {
  background: #EEFAF3;
  border-color: #BCE7CD;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon3 .svg {
  fill: #40B26D;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon3 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon3 .svg rect {
  fill: #40B26D;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon4 {
  background: #FDF6EE;
  border-color: #F4CDAA;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon4 .svg {
  fill: #E79042;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon4 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon4 .svg rect {
  fill: #E79042;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon5 {
  background: #FDEEFA;
  border-color: #F1C5E8;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon5 .svg {
  fill: #E388D1;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon5 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon5 .svg rect {
  fill: #E388D1;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon6 {
  background: #F0F3FC;
  border-color: #A3B6EA;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon6 .svg {
  fill: #486ACA;
}
.zx-tan .zx-tan-ul .zx-tan-li .icon6 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li .icon6 .svg rect {
  fill: #486ACA;
}
.zx-tan .zx-tan-ul .zx-tan-li > p {
  margin-top: 0.06rem;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon1 {
  background: #9D80E0;
  border-color: #9D80E0;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon1 .svg {
  fill: #F3EEFD;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon1 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon1 .svg rect {
  fill: #F3EEFD;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon2 {
  background: #4E91E4;
  border-color: #4E91E4;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon2 .svg {
  fill: #EEF6FD;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon2 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon2 .svg rect {
  fill: #EEF6FD;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon3 {
  background: #40B26D;
  border-color: #40B26D;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon3 .svg {
  fill: #EEFAF3;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon3 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon3 .svg rect {
  fill: #EEFAF3;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon4 {
  background: #E79042;
  border-color: #E79042;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon4 .svg {
  fill: #FDF6EE;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon4 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon4 .svg rect {
  fill: #FDF6EE;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon5 {
  background: #E388D1;
  border-color: #E388D1;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon5 .svg {
  fill: #FDEEFA;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon5 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon5 .svg rect {
  fill: #FDEEFA;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon6 {
  background: #486ACA;
  border-color: #486ACA;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon6 .svg {
  fill: #F0F3FC;
}
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon6 .svg path,
.zx-tan .zx-tan-ul .zx-tan-li:hover .icon6 .svg rect {
  fill: #F0F3FC;
}
.zx-tan .zx-tan-more {
  width: 100%;
  background: #fff;
  border-radius: 0 0.15rem 0.15rem 0.15rem;
  margin-top: 0.2rem;
  padding: 0.14rem 0.16rem;
}
.zx-tan .zx-tan-more .itm {
  padding: 0.12rem 0.14rem;
  background: #FAFAFC;
  border-radius: 0.05rem;
  margin-top: 0.1rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.zx-tan .zx-tan-more .itm:nth-child(1) {
  margin-top: 0;
}
.zx-tan .zx-tan-more .itm .btn {
  color: #171321;
  font-size: 0.12rem;
  min-width: unset;
  min-height: unset;
  padding: 0.06rem 0.07rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.zx-tan .zx-tan-more .itm .btn:hover {
  background: #fff !important;
}
.zx-tan .zx-tan-more .itm:hover {
  background: #f0f0f9;
}
.zx-tan .zx-tan-more .itm:hover .btn {
  background: #fff;
}
.xc-big {
  width: 100%;
  background-color: #171321;
}
.xc-banner {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  padding-top: 0.62rem;
}
@media (max-width: 991px) {
  .xc-banner {
    padding-top: 1rem;
  }
}
.xc-banner .mb-nav > a {
  color: rgba(255, 255, 255, 0.2);
}
.xc-banner .mb-nav > a.on {
  color: #fff;
}
.xc-banner .mb-nav > a .svg {
  fill: rgba(255, 255, 255, 0.2);
}
.xc-banner .mb-nav > a .svg path,
.xc-banner .mb-nav > a .svg rect {
  fill: rgba(255, 255, 255, 0.2);
}
.xc-banner .mb-nav > i {
  background: rgba(255, 255, 255, 0.2);
}
.xc-banner .mb-nav > i.on {
  background: #fff;
}
.xc-tit-box {
  text-align: center;
}
.xc-tit-box .xc-tit {
  color: #fff;
  padding-top: 0.07rem;
}
.xc-tit-box .xc-desc {
  padding-top: 0.2rem;
  width: 6.28rem;
  margin: auto;
  color: #fff;
}
.xc-zhuan-box {
  width: 100%;
  position: relative;
  padding-top: 0.92rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .xc-zhuan-box {
    padding-top: 0.6rem;
    padding-bottom: 0.1rem;
  }
}
.xc-zhuan-box .xc-zhuan-bj {
  width: 100%;
  position: absolute;
  bottom: -1.36rem;
  left: 0;
  z-index: 1;
}
.xc-tupu-box {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 1.4rem;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center bottom;
}
@media (max-width: 991px) {
  .xc-tupu-box {
    padding-bottom: 0.8rem;
  }
}
.xc-tupu-box .index-title {
  padding-top: 0.6rem;
  padding-bottom: 0.73rem;
}
@media (max-width: 991px) {
  .xc-tupu-box .index-title {
    padding-top: 1.6rem;
  }
}
.xc-tupu-box .xc-tupu-img {
  height: 5.19rem;
  margin: auto;
  display: block;
}
@media (max-width: 991px) {
  .xc-tupu-box .xc-tupu-img {
    width: 92%;
    height: auto;
  }
}
.xc-swiper {
  width: 87.4%;
  height: auto;
  margin: auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .xc-swiper {
    width: 77.4%;
  }
}
.xc-swiper .swiper-slide {
  width: 2.22rem !important;
  height: auto !important;
}
@media (max-width: 991px) {
  .xc-swiper .swiper-slide {
    width: 46% !important;
  }
}
.xc-swiper .swiper-slide .xc-slide .xc-imgs {
  width: 100%;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.21);
}
@media (max-width: 991px) {
  .xc-swiper .swiper-slide .xc-slide .xc-imgs {
    height: 3.4rem;
    border-radius: 0.16rem;
  }
}
.xc-swiper .swiper-slide .xc-slide .xc-imgs .img {
  width: 81.53%;
  height: 86%;
  display: block;
}
.xc-swiper .swiper-slide .xc-slide .tit {
  color: #fff;
  padding-top: 0.14rem;
  padding-bottom: 0.1rem;
  text-align: center;
}
@media (max-width: 991px) {
  .xc-swiper .swiper-slide .xc-slide .tit {
    padding-top: 0.16rem;
    padding-bottom: 0.14rem;
  }
}
.xc-swiper .swiper-slide .xc-slide .a {
  display: inline-block;
  color: #A989F5;
  padding: 0.05rem 0.07rem;
  line-height: 1;
  background: rgba(169, 137, 245, 0.1);
  border-radius: 0.12rem;
  border: 1px solid #A989F5;
}
@media (max-width: 991px) {
  .xc-swiper .swiper-slide .xc-slide .a {
    padding: 0.08rem 0.17rem;
    border-radius: 0.3rem;
  }
}
.xc-swiper .swiper-slide .xc-slide .a2 {
  background: rgba(252, 163, 38, 0.1);
  border: 1px solid #FCA326;
  color: #FCA326;
}
.xc-swiper .swiper-button-next {
  right: -1rem;
}
@media (max-width: 991px) {
  .xc-swiper .swiper-button-next {
    right: -0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.xc-swiper .swiper-button-prev {
  left: -1rem;
}
@media (max-width: 991px) {
  .xc-swiper .swiper-button-prev {
    left: -0.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.xc-zizhi-box {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  padding-bottom: 1.4rem;
}
@media (max-width: 991px) {
  .xc-zizhi-box {
    padding-bottom: 0.8rem;
  }
}
.xc-zizhi-swiper {
  height: 3.35rem;
}
@media (max-width: 991px) {
  .xc-zizhi-swiper {
    height: 4.05rem;
  }
}
.xc-zizhi-swiper .swiper-slide {
  width: 2.68rem !important;
  height: 2.88rem !important;
  background: #FFFFFF;
  border-radius: 0.15rem;
}
@media (max-width: 991px) {
  .xc-zizhi-swiper .swiper-slide {
    width: 48% !important;
    height: 3.5rem !important;
  }
}
.xc-zizhi-swiper .swiper-slide .xc-zizhi-slide {
  width: 100%;
  height: 100%;
  padding-top: 0.3rem;
}
.xc-zizhi-swiper .swiper-slide .xc-zizhi-slide .img {
  width: 1.41rem;
  height: 1.41rem;
  display: block;
  margin: auto;
}
@media (max-width: 991px) {
  .xc-zizhi-swiper .swiper-slide .xc-zizhi-slide .img {
    width: 1.61rem;
    height: 1.61rem;
  }
}
.xc-zizhi-swiper .swiper-slide .xc-zizhi-slide .tit {
  text-align: center;
  padding-top: 0.12rem;
}
@media (max-width: 991px) {
  .xc-zizhi-swiper .swiper-slide .xc-zizhi-slide .tit {
    padding-top: 0.16rem;
  }
}
.xc-zizhi-swiper .swiper-slide .xc-zizhi-slide .desc {
  text-align: center;
  padding-top: 0.05rem;
  color: #999;
}
@media (max-width: 991px) {
  .xc-zizhi-swiper .swiper-slide .xc-zizhi-slide .desc {
    padding-top: 0.1rem;
  }
}
.xc-zizhi-swiper .custom-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: rgba(23, 19, 33, 0.1);
  border-radius: 50%;
}
.xc-zizhi-swiper .custom-pagination .swiper-pagination-bullet-active {
  width: 0.3rem;
  border-radius: 0.08rem;
}
.xc-zizhi-swiper .custom-pagination .swiper-pagination-bullet-active::before {
  background: #171321;
  border-radius: 0.08rem;
}
.form-toast {
  width: 100%;
  height: 0.6rem;
  position: fixed;
  top: 0.88rem;
  left: 0;
  display: none;
  z-index: 99999;
}
.form-toast .toast {
  padding: 0.14rem 0.2rem;
  background: #fff;
  border-radius: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.16rem;
  color: #171321;
  position: relative;
}
.form-toast .toast .svg {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.1rem;
}
.form-toast .toast::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FCA326), to(#7759C2));
  background: -webkit-linear-gradient(bottom, #FCA326, #7759C2);
  background: -moz-linear-gradient(bottom, #FCA326, #7759C2);
  background: -o-linear-gradient(bottom, #FCA326, #7759C2);
  background: linear-gradient(0deg, #FCA326, #7759C2);
  border-radius: 0.1rem;
  z-index: 1;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.form-toast .toast.success .svg {
  fill: #A989F5;
}
.form-toast .toast.success .svg path,
.form-toast .toast.success .svg rect {
  fill: #A989F5;
}
.form-toast .toast.error .svg {
  fill: #FCA326;
}
.form-toast .toast.error .svg path,
.form-toast .toast.error .svg rect {
  fill: #FCA326;
}
