@charset "utf-8";
/*统一的样式*/
/* reset */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  box-sizing: border-box;
}
/*默认外边距 和 内边距*/
/*去圆点*/
img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
/*边框会合并为一个单一的边框*/
/**/
button,
input,
select,
textarea {
  font-size: 100%;
}
/* 使得表单元素在 ie 下能继承字体大小 */
input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}
/*字体系列 字体大小 字体样式 字体粗细 都继承父元素*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  padding: 0px;
  font-size: inherit;
}
.h4,
.h5,
.h6,
h4,
h5,
h6 {
  font-weight: bold;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/* 将斜体扶正 */
/*input:focus{box-shadow: 0 0 10px #999; outline: none;}   /*边框阴影*/
/*轮廓取消*/
/* link */
a {
  text-decoration: none;
  color: inherit;
  transition: 0s;
  font-size: inherit;
}
/*清除超链接的下划线*/
a:hover {
  text-decoration: none;
  color: inherit;
}
.clear {
  clear: both;
}
/*清除浮动*/
/*统一的样式*/
ol,
ul,
dl {
  margin: 0px;
}
html body {
  margin: 0px auto;
  min-width: 320px;
  font-size: 100%;
  font-family: "微软雅黑", "Microsoft YaHei", "SimSun", "宋体";
  overflow-x: hidden;
}
main {
  font-size: 16px;
}
html::-webkit-scrollbar-thumb {
  background: #7943FE;
  border-radius: 6px;
}
html::-webkit-scrollbar-corner {
  background: #7943FE;
}
html::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
/*=================公共头部样式           开始==========================*/
header {
  padding-top: 64px;
}
.hea {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 40px;
  position: fixed;
  z-index: 1111;
  top: 0px;
  left: 0px;
}
.hea .hea-logo {
  width: 110px;
  height: 32px;
}
.hea > p {
  width: 92px;
  line-height: 34px;
  border-radius: 4px;
  border: 1px solid #6D6D6D;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #282828;
  transition: 0.35s;
}
.hea > p:hover {
  opacity: 0.7;
}
.hea a.hea-a {
  display: block;
  width: 96px;
  line-height: 36px;
  height: 36px;
  background-color: #7943FE;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: 0.35s;
  margin-right: 20px;
}
.hea a.hea-a:hover {
  opacity: 0.6;
}
.hea .hea-login {
  width: 68px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #6D6D6D;
  cursor: pointer;
  transition: 0.35s;
  line-height: 36px;
  font-size: 14px;
  font-weight: 500;
  color: #282828;
  text-align: center;
}
.hea .hea-login:hover {
  opacity: 0.6;
}
.hea ul.hea-menu {
  flex: 1;
}
.hea ul.hea-menu > li {
  position: relative;
  margin-left: 40px;
  float: left;
  height: 64px;
  line-height: 64px;
  cursor: pointer;
}
.hea ul.hea-menu > li::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: #7943FE;
  opacity: 0;
  bottom: 0;
  transition: 0.35s;
}
.hea ul.hea-menu > li > p {
  font-size: 14px;
  font-weight: 400;
  color: #303133;
}
.hea ul.hea-menu > li > p i {
  position: relative;
}
.hea ul.hea-menu > li:hover > p {
  color: #7943FE;
}
.hea ul.hea-menu > li:hover > p i {
  transform: rotateX(180deg);
}
.hea ul.hea-menu > li:hover::after {
  opacity: 1;
}
.hea ul.hea-menu > li:hover .hea-menu_list {
  opacity: 1;
  visibility: visible;
}
.hea ul.hea-menu li.price-class {
  display: none;
}
.hea .hea-menu_list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 20px;
  z-index: 10;
  width: max-content;
  opacity: 0;
  transition: 0.35s;
  visibility: hidden;
}
.hea .hea-menu_list h5 {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  line-height: 32px;
  height: 32px;
  background: #F3F3F3;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 12px;
}
.hea .hea-menu_list ul {
  float: left;
  margin-right: 10px;
}
.hea .hea-menu_list ul:nth-last-child(1) {
  margin-right: 0px;
}
.hea .hea-menu_list ul li {
  float: left;
  margin-right: 20px;
}
.hea .hea-menu_list ul h6 {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  line-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.hea .hea-menu_list ul h6 i {
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 8px;
}
.hea .hea-menu_list ul p {
  padding-left: 24px;
  padding-right: 20px;
  font-size: 14px;
  color: #303133;
  line-height: 40px;
  height: 40px;
}
.hea .hea-menu_list ul p span {
  font-size: 12px;
  padding: 2px 3px;
  border-radius: 4px;
  color: #fff;
  margin-left: 4px;
}
.hea .hea-menu_list ul p span:nth-of-type(1) {
  margin-left: 0px;
}
.hea .hea-menu_list ul p span.new {
  background-color: #2CAE14;
}
.hea .hea-menu_list ul p span.hot {
  background-color: #FF2B52;
}
.hea .hea-menu_list ul p span.default {
  background-color: #CFD7E2;
}
.hea .hea-menu_list ul p a:hover {
  color: #9162F4;
}
.hea .hea-user {
  display: none;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.hea .hea-user .hea-user_avatar {
  font-size: 36px;
  color: #CFD7E2;
  margin-right: 5px;
}
.hea .hea-user:active > i,
.hea .hea-user:hover > i {
  transform: rotateX(180deg);
}
.hea .hea-user:active .hea-user_info,
.hea .hea-user:hover .hea-user_info {
  opacity: 1;
  visibility: visible;
}
.hea .hea-user .hea-user_info {
  position: absolute;
  top: 100%;
  left: 0px;
  margin-left: -80px;
  background-color: #fff;
  width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 10;
}
.hea .hea-user .hea-user_info .text {
  padding: 16px 12px;
}
.hea .hea-user .hea-user_info .hea-user_out {
  cursor: pointer;
}
.hea .hea-user .hea-user_info .hea-user_out:hover p {
  color: #7943FE;
}
.hea .hea-user .hea-user_info span {
  font-size: 12px;
  color: #A8ABB2;
  line-height: 20px;
}
.hea .hea-user .hea-user_info p {
  font-size: 14px;
  color: #020202;
  line-height: 22px;
}
.hea .hea-user_in {
  display: flex;
}
.hea .meun-btn {
  position: relative;
  width: 32px;
  height: 32px;
  display: none;
  cursor: pointer;
  z-index: 555;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 20px;
}
.hea .meun-btn span {
  top: 50%;
  left: 0px;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 25px;
  margin-top: -1px;
  background: #020202;
  transition: 0.2s ease;
}
.hea .meun-btn span::nth-of-type(1) {
  position: absolute;
  transform: rotate(45deg);
}
.hea .meun-btn span::nth-of-type(3) {
  position: absolute;
  transform: rotate(-45deg);
}
.hea .meun-btn span::nth-of-type(2) {
  width: 0px;
}
.hea .meun-btn-open span:nth-of-type(1) {
  position: absolute;
  transform: rotate(45deg);
}
.hea .meun-btn-open span:nth-of-type(3) {
  position: absolute;
  transform: rotate(-45deg);
}
.hea .meun-btn-open span:nth-of-type(2) {
  width: 0px;
}
.hea-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
}
.second_nav {
  animation-duration: 1s;
  animation-fill-mode: both;
  visibility: hidden;
  pointer-events: none;
  border-top: 1px solid rgba(47, 30, 86, 0.1);
  position: fixed;
  top: 64px;
  left: 0px;
  bottom: 0px;
  z-index: 5555;
  width: 100%;
  background: #fff;
  animation-duration: 0.5s;
}
.second_nav_lsit {
  border-right: 1px solid rgba(47, 30, 86, 0.1);
  width: 220px;
  height: 100%;
}
.second_nav_lsit li {
  width: 100%;
  position: relative;
}
.second_nav_lsit li p.second_nav_title {
  position: relative;
  display: block;
  height: 56px;
  line-height: 56px;
  overflow: hidden;
  padding: 0px 20px 0px 24px;
  margin: 0px;
  font-size: 16px;
  color: #3d3d3d;
  font-weight: normal;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.4s;
  border-left: 4px solid transparent;
}
.second_nav_lsit li.li_act p.second_nav_title {
  border-left-color: #7943FE;
  color: #7943FE;
}
.second_nav_lsit .second_nav_v2 {
  display: none;
  position: fixed;
  right: 0;
  width: calc(100% - 220px);
  top: 0;
  z-index: 555;
  height: 100%;
  z-index: 10;
  overflow-y: auto;
}
.second_nav_lsit dl h5 {
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  line-height: 40px;
  height: 40px;
  background: #F3F3F3;
  padding: 0 24px;
}
.second_nav_lsit dl h6 {
  padding-left: 24px;
  font-size: 16px;
  font-weight: bold;
  color: #303133;
  line-height: 56px;
  height: 56px;
  display: flex;
  padding-right: 24px;
  align-items: center;
  position: relative;
}
.second_nav_lsit dl h6 i {
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 8px;
}
.second_nav_lsit dl h6 i.fa {
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -8px;
}
.second_nav_lsit dl a {
  display: none;
}
.second_nav_lsit dl p {
  padding-left: 48px;
  padding-right: 20px;
  font-size: 14px;
  color: #303133;
  line-height: 48px;
  height: 48px;
}
.second_nav_lsit dl p span {
  font-size: 12px;
  padding: 2px 3px;
  border-radius: 4px;
  color: #fff;
  margin-left: 4px;
}
.second_nav_lsit dl p span:nth-of-type(1) {
  margin-left: 0px;
}
.second_nav_lsit dl p span.new {
  background-color: #2CAE14;
}
.second_nav_lsit dl p span.hot {
  background-color: #FF2B52;
}
.second_nav_lsit dl p span.default {
  background-color: #CFD7E2;
}
.second_nav_lsit dl p a:hover {
  color: #9162F4;
}
.second_nav_lsit .second_nav_ddAct a {
  display: block;
}
.second_nav_lsit .second_nav_ddAct .fa {
  transform: rotateX(180deg);
}
.second_nav_block {
  pointer-events: auto !important;
  visibility: visible !important;
}
.banner-warp {
  background: url('../images/bg_banner.png') no-repeat center center;
  background-size: cover;
}
.banner {
  position: relative;
}
.banner .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.banner .banner-img {
  height: 480px;
  width: 480px;
}
.banner .banner-words {
  padding-top: 80px;
  height: 480px;
  padding-left: 48px;
}
.banner .banner-words h3 {
  font-size: 48px;
  font-weight: bold;
  color: #282828;
  line-height: 67px;
  padding-bottom: 4px;
}
.banner .banner-words h4 {
  font-size: 20px;
  font-weight: normal;
  color: #6D6D6D;
  line-height: 28px;
  padding-bottom: 40px;
}
.banner .banner-words p {
  width: 128px;
  line-height: 44px;
  height: 44px;
  background-color: #7943FE;
  border-radius: 4px;
  float: left;
  margin-right: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: 0.35s;
}
.banner .banner-words p:hover {
  opacity: 0.6;
}
.banner .banner-words .words-btn__qq {
  background-color: #fff;
  color: #303133;
}
.banner .swiper-pagination_banner {
  position: absolute;
  bottom: 96px;
  left: 0px;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  padding-left: 48px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 48px;
  height: 4px;
  border-radius: 1px;
  overflow: hidden;
  background: rgba(170, 170, 170, 0.6);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #7943FE;
  -webkit-animation: pageMove 5s infinite;
  animation: pageMove 5s infinite;
}
@keyframes pageMove {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.hea-dec {
  margin: 0;
  position: relative;
  top: -56.5px;
  z-index: 10;
  background: #FFFFFF;
  box-shadow: 0px 16px 32px 0px rgba(243, 238, 255, 0.6);
  border-radius: 4px;
  border: 1px solid;
  border-image: linear-gradient(180deg, #e2d7fa, #f4f1fb) 1 1;
}
.hea-dec li {
  box-shadow: inset -1px 0px 0px 0px rgba(226, 216, 250, 0.5);
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 113px;
}
.hea-dec li h2 {
  font-size: 20px;
  font-weight: bold;
  color: #282828;
  line-height: 28px;
  padding-bottom: 2px;
}
.hea-dec li p {
  font-size: 14px;
  font-weight: 400;
  color: #6D6D6D;
  line-height: 20px;
}
/*=================公共头部样式           结束============================*/
/*=================首页样式              开始===========================*/
h2.main-block__title {
  font-size: 32px;
  font-weight: bold;
  color: #282828;
  line-height: 45px;
  text-align: center;
  margin-bottom: 15px;
}
h3.main-block__dec {
  font-size: 16px;
  font-weight: 400;
  color: #282828;
  line-height: 24px;
  text-align: center;
  margin-bottom: 15px;
}
.main-block1 {
  margin-bottom: 48px;
}
.main-block1 a {
  display: block;
}
.main-block1 ul {
  display: flex;
  justify-content: space-between;
}
.main-block1 ul li {
  box-shadow: 0px 8px 24px 0px rgba(244, 241, 251, 0.6);
  border-radius: 4px;
  border: 1px solid #C8DEFA;
  width: 31.5%;
  display: flex;
  align-items: center;
}
.main-block1 ul li::before {
  content: '';
  display: block;
  width: 100px;
  height: 100px;
  background: url('../images/block1-icon1.png') no-repeat center center;
  background-size: contain;
  margin: 24px;
}
.main-block1 ul li:nth-of-type(2)::before {
  background: url('../images/block1-icon2.png') no-repeat center center;
  background-size: contain;
}
.main-block1 ul li:nth-of-type(3)::before {
  background: url('../images/block1-icon3.png') no-repeat center center;
  background-size: contain;
}
.main-block1 ul li .words h6 {
  font-size: 24px;
  font-weight: bold;
  color: #282828;
  line-height: 33px;
  margin-bottom: 3px;
}
.main-block1 ul li .words p {
  font-size: 16px;
  font-weight: bold;
  color: #C8DEFA;
  line-height: 22px;
}
.main-block1 .main-block1_a {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.main-block1 .main-block1_a a {
  width: 128px;
  line-height: 44px;
  height: 44px;
  background-color: #7943FE;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: 0.35s;
}
.main-block1 .main-block1_a a:hover {
  opacity: 0.6;
}
.main-block1 .main-block1_video {
  margin-bottom: 20px;
}
.main-block1 .main-block1_video .block1-video_cont {
  position: relative;
  padding: 28.125% 0px;
}
.main-block1 .main-block1_video video {
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.main-block2 {
  padding-top: 48px;
}
.main-block2 li {
  float: left;
  width: 23%;
  height: 280px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 0px rgba(244, 241, 251, 0.6);
  border-radius: 4px;
  background: linear-gradient(180deg, #F6F4FF 0%, #FFFFFF 100%);
  border-radius: 4px 4px 0px 0px;
  overflow: hidden;
  cursor: pointer;
  padding-top: 48px;
  margin-right: 2%;
  margin-bottom: 32px;
}
.main-block2 li:nth-of-type(4n) {
  margin-right: 0px;
}
.main-block2 li i {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  margin: 0px auto 8px auto;
}
.main-block2 li h6 {
  font-size: 20px;
  font-weight: bold;
  color: #282828;
  line-height: 28px;
  text-align: center;
  margin-bottom: 16px;
}
.main-block2 li p {
  font-size: 14px;
  font-weight: 400;
  color: #6D6D6D;
  line-height: 22px;
  text-align: center;
  overflow: hidden;
  height: 44px;
  padding: 0 32px;
  margin-bottom: 78px;
  transition: 0.55s;
}
.main-block2 li span {
  width: 104px;
  line-height: 36px;
  background: #7943FE;
  border-radius: 4px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 auto;
  transition: 0.35s;
}
.main-block2 li span:hover {
  opacity: 0.7;
}
.main-block2 li .words {
  position: relative;
  transition: 0.3s;
}
.main-block2 li:hover {
  background: linear-gradient(180deg, #F6F4FF 0%, #FFFFFF 100%);
  box-shadow: 0px 16px 32px 0px rgba(212, 203, 232, 0.6);
  border-radius: 4px;
}
.main-block2 li:hover .words {
  transform: translateY(-190px);
  transition: 0.65s;
}
.main-block2 li:hover p {
  height: 144px;
  padding-top: 32px;
}
.main-block3 {
  padding-top: 48px;
}
.main-block3 .clearfix {
  position: relative;
}
.main-block3__left {
  background: url('../images/block3-bg1.png') no-repeat center center;
  background-size: cover;
  float: left;
  width: 50%;
  height: 380px;
}
.main-block3__left .words {
  float: right;
  width: 528px;
  margin-right: 72px;
}
.main-block3__left .words h5 {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 33px;
  margin-top: 48px;
}
.main-block3__left .words h6 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 22px;
  margin-top: 16px;
}
.main-block3__left .words ul {
  width: 100%;
  margin-top: 40px;
}
.main-block3__left .words li {
  float: left;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 22px;
}
.main-block3__left .words li::before {
  display: block;
  content: '';
  width: 56px;
  height: 56px;
  margin-right: 12px;
}
.main-block3__left .words li:nth-of-type(1)::before {
  background: url('../images/block3-icon1.png') no-repeat center center;
  background-size: contain;
}
.main-block3__left .words li:nth-of-type(2)::before {
  background: url('../images/block3-icon2.png') no-repeat center center;
  background-size: contain;
}
.main-block3__left .words li:nth-of-type(3)::before {
  background: url('../images/block3-icon3.png') no-repeat center center;
  background-size: contain;
}
.main-block3__left .words li:nth-of-type(4)::before {
  background: url('../images/block3-icon4.png') no-repeat center center;
  background-size: contain;
}
.main-block3__right {
  float: left;
  width: 50%;
  background-color: #7943FE;
  position: relative;
  height: 380px;
}
.main-block3__right .words {
  float: left;
  margin-left: 72px;
  height: 100%;
  position: relative;
}
.main-block3__right .words h5 {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 33px;
  margin-top: 48px;
}
.main-block3__right .words h6 {
  font-size: 64px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 90px;
}
.main-block3__right .words p {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 20px;
  margin-top: 4px;
  opacity: 0.5;
}
.main-block3__right .words a {
  position: absolute;
  left: 0px;
  bottom: 72px;
  display: block;
  width: 240px;
  line-height: 44px;
  border-radius: 4px;
  border: 1px solid #FFFFFF;
  font-size: 16px;
  font-weight: normal;
  color: #FFFFFF;
  text-align: center;
  transition: 0.35s;
}
.main-block3__right .words a:hover {
  background-color: #fff;
  color: #282828;
}
.main-block3__right::after {
  background: url('../images/block3-bg2.png') no-repeat center center;
  width: 320px;
  height: 320px;
  background-size: contain;
  content: '';
  position: absolute;
  left: 432px;
  bottom: -48px;
  z-index: 10;
}
.main-block4 {
  background: #F8F7FF;
  padding-top: 48px;
  padding-bottom: 48px;
}
.block4-swiper {
  display: block;
  position: relative;
}
.block4-swiper .swiper-slide {
  background: #FFFFFF;
  padding: 40px 32px;
  height: auto;
  border-right: 1px solid rgba(47, 30, 86, 0.1);
}
.block4-swiper .swiper-slide div {
  display: flex;
  margin-bottom: 8px;
  align-items: flex-end;
}
.block4-swiper .swiper-slide span {
  font-size: 22px;
  color: #D7C7FF;
  font-style: normal;
  line-height: 30px;
  height: 30px;
  font-weight: 600;
  margin-left: 4px;
}
.block4-swiper .swiper-slide i {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.block4-swiper .swiper-slide h5 {
  font-size: 20px;
  color: #282828;
  line-height: 28px;
  margin-bottom: 16px;
}
.block4-swiper .swiper-slide p {
  font-size: 14px;
  font-weight: 400;
  color: #282828;
  line-height: 22px;
}
.block4-swiper .swiper-prev,
.block4-swiper .swiper-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  z-index: 11;
  color: #fff;
  cursor: pointer;
  outline: none;
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  border-radius: 50%;
}
.block4-swiper .swiper-prev {
  left: 0px;
}
.block4-swiper .swiper-next {
  right: 0px;
}
.main-block4__warp {
  margin-top: 32px;
}
.main-block4__topWarp {
  display: flex;
  justify-content: center;
}
.main-block4__topWarp .main-block4__top {
  width: 240px;
  background: #2F1E56;
  padding: 32PX;
  height: 540px;
  position: relative;
}
.main-block4__topWarp .main-block4__top h5 {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 33px;
  padding-bottom: 16px;
}
.main-block4__topWarp .main-block4__top p {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  color: rgba(255, 255, 255, 0.8);
  line-height: 22px;
  margin-bottom: 24px;
}
.main-block4__topWarp .main-block4__top img {
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 50px;
  left: 32px;
}
.main-block4__topWarp .main-block4__top::after {
  background: url('../images/block4-bg1.png') no-repeat center right;
  background-size: cover;
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 124px;
}
.main-block4__topWarp .video_cont {
  width: 960px;
}
.main-block4__topWarp .video_cont .video_cont-warp {
  width: 100%;
  padding: 28.125% 0px;
  position: relative;
}
.main-block4__topWarp .video_cont video {
  top: 0px;
  left: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.main-block5 {
  margin-top: 48px;
  background: #F8F7FF;
  padding-top: 48px;
}
.main-block5 ul {
  padding-top: 32px;
  padding-bottom: 16px;
}
.main-block5 ul li {
  background-color: #fff;
  float: left;
  width: 17.84%;
  margin-bottom: 32px;
  margin-right: 2.16%;
}
.main-block5 ul li:nth-of-type(5n) {
  margin-right: 0px;
}
.main-block6 {
  padding-top: 48px;
  margin-bottom: 30px;
}
.block6-swiper {
  padding-top: 32px;
  padding-bottom: 60px;
}
.block6-swiper .swiper-slide__left {
  float: left;
  width: 50%;
  height: 300px;
  background: url('../images/block6-bg2.png') no-repeat center center;
  background-size: cover;
  padding-top: 64px;
}
.block6-swiper .swiper-slide__left img {
  width: 140px;
  height: 72px;
  margin: 0 auto;
  margin-bottom: 4px;
  text-align: center;
  display: block;
}
.block6-swiper .swiper-slide__left h5 {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 33px;
  margin-bottom: 16px;
  text-align: center;
}
.block6-swiper .swiper-slide__left p {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 22px;
  padding: 0 84px;
  text-align: center;
}
.block6-swiper .swiper-slide__right {
  float: left;
  width: 50%;
  height: 300px;
  background: #fff;
  position: relative;
  padding: 40px 48px 0px 32px;
  box-shadow: 0px 8px 24px 0px rgba(244, 241, 251, 0.6);
}
.block6-swiper .swiper-slide__right i {
  width: 140px;
  height: 72px;
  margin: 0 auto;
  margin-bottom: 4px;
  background: url('../images/block6-bg1.png') no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 24px;
  right: 48px;
}
.block6-swiper .swiper-slide__right h5 {
  font-size: 24px;
  font-weight: bold;
  color: #282828;
  line-height: 33px;
  margin-bottom: 16px;
}
.block6-swiper .swiper-slide__right p {
  font-size: 14px;
  color: #282828;
  line-height: 22px;
}
/*=================首页样式            结束=======================*/
footer {
  background-color: #2F1E56;
  padding-top: 40px;
}
.foo-ipad {
  display: none;
}
.foo-cont {
  display: flex;
  justify-content: space-between;
}
.foo-cont ul {
  float: left;
}
.foo-cont ul:nth-of-type(1) {
  margin-right: 80px;
}
.foo-cont ul h5 {
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 28px;
  margin-bottom: 16px;
}
.foo-cont ul li {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 20px;
  margin-bottom: 16px;
}
.foo-cont ul li:hover a {
  color: #fff;
}
.foo-cont ul li:last-child {
  margin-bottom: 0px;
}
.foo-right {
  padding-top: 17px;
}
.foo-right .foo-code {
  float: left;
  margin-right: 56px;
}
.foo-right .foo-code img {
  width: 120px;
  height: 120px;
}
.foo-right p {
  text-align: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 20px;
}
.foo-right .foo-logo {
  width: 220px;
  height: 98px;
  display: block;
  float: left;
  margin-right: 80px;
  margin-top: 40px;
}
.foo-xian {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}
.foo-link {
  padding-top: 24px;
  padding-bottom: 16px;
  text-align: center;
}
.foo-link p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 17px;
  text-align: center;
  padding-bottom: 16px;
}
.foo-link span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 17px;
  text-align: center;
  transition: 0.35s;
}
.foo-link a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 17px;
  text-align: center;
  transition: 0.35s;
}
.foo-link a:hover {
  color: #ffffff;
}
aside ul {
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 0px rgba(244, 241, 251, 0.6);
  border-radius: 4px;
  border: 1px solid #E5E5E5;
}
aside ul li {
  position: relative;
  width: 72px;
  height: 72px;
  box-shadow: inset 0px -1px 0px 0px #E5E5E5;
}
aside ul li .fix_box {
  transition: 0.4s;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
aside ul li .fix_box > a {
  transition: 0.4s;
  min-width: 72px;
  min-height: 72px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #282828;
  line-height: 17px;
}
aside ul li i {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 2px auto;
  overflow: hidden;
  transition: 0.4s;
}
aside ul li:nth-of-type(1) i {
  background: url(../images/aside-weixin1.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(2) i {
  background: url(../images/aside-qq1.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(3) i {
  background: url(../images/aside-phone1.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(1):hover i {
  background: url(../images/aside-weixin2.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(2):hover i {
  background: url(../images/aside-qq2.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(3):hover i {
  background: url(../images/aside-phone2.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(4) i {
  background: url(../images/aside-top1.png) center no-repeat;
  background-size: contain;
}
aside ul li:nth-of-type(4):hover i {
  background: url(../images/aside-top2.png) center no-repeat;
  background-size: contain;
}
aside .aside-code {
  width: 160px;
  height: 160px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 0px rgba(226, 220, 240, 0.8);
  border: 1px solid #E5E5E5;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  transition: 0.35s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  margin-top: -60px;
  right: 80px;
}
aside .aside-code img {
  display: block;
  width: 120px;
  height: 120px;
}
aside .aside-code p {
  font-size: 12px;
  color: #282828;
  line-height: 17px;
}
aside .aside-phone {
  width: 186px;
  height: 56px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 0px rgba(226, 220, 240, 0.8);
  border: 1px solid #E5E5E5;
  transition: 0.35s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  right: 80px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7943FE;
}
aside ul li:hover a {
  color: #7943FE;
}
aside ul li:hover .aside-code,
aside ul li:hover .aside-phone {
  opacity: 1;
  visibility: visible;
}
aside ul .register_a,
aside ul .go_top {
  display: none;
}
/*=================产品样式            开始==========================*/
.pro-hea .pro-hea-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pro-hea p {
  border: 0px;
  position: relative;
  line-height: 64px;
}
.pro-hea p:nth-of-type(2)::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 3px;
  background: #7943FE;
  border-radius: 1px;
}
.pro-banner {
  background: url(../images/pro-banner.png) no-repeat center center;
  background-size: 100% 100%;
}
.pro-banner .layout {
  display: flex;
  justify-content: space-between;
}
.pro-banner .banner-img {
  height: 420px;
  width: 420px;
}
.pro-banner .banner-words {
  padding-top: 80px;
  height: 420px;
  width: 50%;
}
.pro-banner .banner-words h3 {
  font-size: 48px;
  font-weight: bold;
  color: #282828;
  line-height: 67px;
  padding-bottom: 4px;
}
.pro-banner .banner-words h4 {
  font-size: 20px;
  font-weight: normal;
  color: #6D6D6D;
  line-height: 28px;
  padding-bottom: 40px;
}
.pro-banner .banner-words p {
  width: 128px;
  line-height: 44px;
  height: 44px;
  background-color: #7943FE;
  border-radius: 4px;
  float: left;
  margin-right: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: 0.35s;
}
.pro-banner .banner-words p:hover {
  opacity: 0.6;
}
.pro-banner .banner-words .words-btn__qq {
  background-color: #FFD653;
  color: #2F1E56;
}
.pro-dec {
  background: #FFFFFF;
  box-shadow: inset 0px -1px 0px 0px #E5E5E5;
  display: flex;
  justify-content: center;
}
.pro-dec li a {
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #282828;
  line-height: 22px;
  padding: 15px 40px 27px 40px;
  position: relative;
}
.pro-dec li a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 3px;
  background: #7943FE;
  border-radius: 1px;
  opacity: 0;
  transition: 0.35s;
}
.pro-dec li a:hover::after {
  opacity: 1;
}
.pro-block1 {
  padding-top: 48px;
}
.pro-block1 .pro-block1__cont {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.pro-block1 .pro-block1__cont .words {
  width: 50%;
  padding: 0px 40px 0px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pro-block1 .pro-block1__cont .words h5 {
  font-size: 0.32rem;
  color: #282828;
  line-height: 0.45rem;
  margin-bottom: 0.2rem;
}
.pro-block1 .pro-block1__cont .words p {
  font-size: 16px;
  color: #282828;
  line-height: 24px;
  position: relative;
  margin-bottom: 0.16rem;
}
.pro-block1 .pro-block1__cont .words p::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #7943FE;
  top: 10px;
  border-radius: 50%;
  left: -16px;
}
.pro-block1 .pro-block1__cont .words p.pro-block1__ask,
.pro-block1 .pro-block1__cont .words p.pro-block1__answer {
  color: #7943FE;
}
.pro-block1 .pro-block1__cont .words p.pro-block1__ask::after,
.pro-block1 .pro-block1__cont .words p.pro-block1__answer::after {
  content: 'Q：';
  font-size: 16px;
  color: #7943FE;
  top: 0px;
  margin-top: 0px;
  left: -25px;
  line-height: 24px;
  width: auto !important;
  height: auto !important;
  background-color: transparent;
}
.pro-block1 .pro-block1__cont .words p.pro-block1__answer {
  color: #282828;
}
.pro-block1 .pro-block1__cont .words p.pro-block1__answer::after {
  content: 'A：';
  color: #282828;
}
.pro-block1 .pro-block1__cont img {
  width: 50%;
}
.pro-block2 {
  background-color: #F8F7FF;
  padding: 48px 0px;
}
.pro_block2_hd {
  width: 100%;
  overflow: hidden;
}
.pro_block2_hd .swiper-wrapper {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.pro_block2_hd .swiper-wrapper p {
  font-size: 20px;
  color: #282828;
  position: relative;
  line-height: 80px;
  transition: 0.35s;
  cursor: pointer;
}
.pro_block2_hd .swiper-wrapper p::after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -2px;
  height: 3px;
  background: #7943FE;
  transition: 0.35s;
  opacity: 0;
}
.pro_block2_hd .swiper-wrapper p:hover {
  color: #7943FE;
}
.pro_block2_hd .swiper-wrapper p:hover::after {
  opacity: 1;
}
.pro_block2_hd .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
.pro_block2_hd .swiper-wrapper .swiper-slide.active p {
  color: #7943FE;
}
.pro_block2_hd .swiper-wrapper .swiper-slide.active p::after {
  opacity: 1;
}
.pro_block2_bd {
  padding: 40px 0px 0px;
}
.pro_block2_bd .swiper-slide p {
  font-size: 20px;
  color: #282828;
  line-height: 28px;
  text-align: center;
  margin-bottom: 40px;
  padding: 0px 98px;
}
.pro_block2_bd .swiper-slide img {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.pro-block3 {
  padding-top: 48px;
}
.pro-block3 ul {
  margin-top: 32px;
}
.pro-block3 li {
  float: left;
  width: 380px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px 0px rgba(244, 241, 251, 0.6);
  border-radius: 4px;
  background: linear-gradient(180deg, #F6F4FF 0%, #FFFFFF 100%);
  border-radius: 4px 4px 0px 0px;
  overflow: hidden;
  padding-top: 48px;
  margin-right: 30px;
  margin-bottom: 32px;
}
.pro-block3 li:nth-of-type(3n) {
  margin-right: 0px;
}
.pro-block3 li i {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0px auto 8px auto;
}
.pro-block3 li h6 {
  font-size: 20px;
  font-weight: bold;
  color: #282828;
  line-height: 28px;
  text-align: center;
  margin-bottom: 16px;
}
.pro-block3 li p {
  font-size: 14px;
  font-weight: 400;
  color: #6D6D6D;
  line-height: 22px;
  height: 110px;
  padding: 0 32px;
  transition: 0.55s;
}
.pro-block3 li .words {
  position: relative;
  transition: 0.3s;
}
.pro-block3Change {
  background: #F8F7FF;
}
.pro-block3Change li {
  background: #fff;
  box-shadow: none;
}
.about-block1 {
  padding: 96px 0px;
}
.about-block1 .layout {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-block1 img {
  width: 50%;
}
.about-block1 .words {
  width: 50%;
  padding-left: 62px;
  padding-right: 40px;
}
.about-block1 .words h5 {
  font-size: 32px;
  color: #282828;
  line-height: 45px;
  margin-bottom: 20px;
}
.about-block1 .words p {
  font-size: 16px;
  color: #282828;
  line-height: 24px;
}
.about-block2 {
  padding: 48px 0px 72px 0;
  background: #F8F7FF;
}
.about-block2 ul {
  margin-top: 48px;
}
.about-block2 li {
  padding: 16px;
  width: 31.6%;
  margin-right: 2.6%;
  float: left;
  background-color: #fff;
}
.about-block2 li:nth-of-type(2n+3) {
  margin-right: 0px;
}
.about-block2 li .pic {
  width: 100%;
  position: relative;
  padding: 33.3% 0px;
}
.about-block2 li .pic img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-block2 li .words {
  padding: 16px;
}
.about-block2 li .words h5 {
  font-size: 16px;
  font-weight: bold;
  color: #282828;
  line-height: 24px;
  height: 48px;
  margin-bottom: 8px;
}
.about-block2 li .words p {
  font-size: 14px;
  color: #6D6D6D;
  line-height: 22px;
}
.about-banner {
  background: url(../images/about-banner-bg.png) no-repeat center center;
  background-size: cover;
}
/*=================产品样式            结束===================================*/
/*=================部分公共样式            开始==========================*/
.wrapper {
  width: 100%;
  min-width: 320px;
  margin: auto;
}
.layout {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1200px) {
  .layout {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.clearfix::after {
  clear: both;
  content: '';
  width: 0px;
  height: 0px;
  overflow: hidden;
  display: block;
}
.ulclearfix ul::after {
  display: block;
  overflow: hidden;
  clear: both;
  width: 0px;
  height: 0px;
  content: '';
}
.liclearfix li::after {
  display: block;
  overflow: hidden;
  clear: both;
  width: 0px;
  height: 0px;
  content: '';
}
.ScrollStop {
  overflow: hidden !important;
  height: 100vh;
}
/*=================部分公共样式            结束===================================*/
