/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 html,
 body,
 div,
 span,
 applet,
 object,
 iframe,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 blockquote,
 pre,
 a,
 abbr,
 acronym,
 address,
 big,
 cite,
 code,
 del,
 dfn,
 em,
 img,
 ins,
 kbd,
 q,
 s,
 samp,
 small,
 strike,
 strong,
 sub,
 sup,
 tt,
 var,
 b,
 u,
 i,
 center,
 dl,
 dt,
 dd,
 ol,
 ul,
 li,
 fieldset,
 form,
 label,
 legend,
 table,
 caption,
 tbody,
 tfoot,
 thead,
 tr,
 th,
 td,
 article,
 aside,
 canvas,
 details,
 embed,
 figure,
 figcaption,
 footer,
 header,
 menu,
 nav,
 output,
 ruby,
 section,
 summary,
 time,
 mark,
 audio,
 video,
 input {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font-weight: normal;
   vertical-align: baseline;
 }

 /* HTML5 display-role reset for older browsers */
 article,
 aside,
 details,
 figcaption,
 figure,
 footer,
 header,
 menu,
 nav,
 section {
   display: block;
 }
 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "微软雅黑";
 }
 body {
   line-height: 1;
 }

 blockquote,
 q {
   quotes: none;
 }

 blockquote:before,
 blockquote:after,
 q:before,
 q:after {
   content: none;
 }

 table {
   border-collapse: collapse;
   border-spacing: 0;
 }

 /* custom */
 a {
   color: #7e8c8d;
   text-decoration: none;
   -webkit-backface-visibility: hidden;
 }

 li {
   list-style: none;
 }

 html,
 body {
   width: 100%;
   height: 100%;
 }

 body {
   background: #dddedf;
   -webkit-text-size-adjust: none;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }
 html {
   touch-action: manipulation;
 }
 input {
   appearance: none;
   -webkit-appearance: none;
 }
 i {
   display: block;
 }
 .clear {
   clear: both;
 }
 .clear:after {
   content: "020";
   display: block;
   height: 0;
   clear: both;
   visibility: hidden;
 }
 input::-ms-clear,
 input::-ms-reveal {
   display: none;
 }

.none {
  display: none !important;
}
.banner {
  position: absolute;
  top: 0;
  z-index: -1;
  min-width: 1200px;
  width: 100%;
  height: 620px;
  background: url("../img/banner.png") no-repeat;
  background-size: cover;
}
.banner img {
  width: 100%;
  height: 100%;
}
body {
  background: #fff;
}
header .header-content,
article,
section,
nav .nav-content,
figure .figure-content,
.swiper,
footer .footer-content {
  width: 1200px;
  margin: 0 auto;
}
header {
  width: 100%;
  height: 63px;
  z-index: 9999;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  position: fixed;
  top: 0;
}
header .header-content {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -ms-flex-pack: justify;
  position: relative;
}
@keyframes headerTagAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
header .guide {
  position: absolute;
  top: 50px;
  left: 0;
  display: none;
  z-index: 100;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-animation-name: headerTagAnimation;
  animation-name: headerTagAnimation;
}
header .guide span {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  margin-bottom: 0;
  line-height: 30px;
  color: #fff;
  width: 100%;
  font-size: 13px;
}
header .logo:hover ~ .guide {
  display: block;
}
header ul {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
}
header ul li {
  margin: 0 20px;
  display: flex;
  display: -ms-flexbox;
}
header ul li a {
  font-size: 16px;
  color: #333333;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header ul li:last-child {
  width: 110px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(-90deg, #7B56EE, #A185F6);
  border-radius: 18px;
}
header ul li:last-child a {
  font-size: 16px;
  color: #fff;
  display: block;
}
article {
  width: 1200px;
  margin: 143px auto 0;
  display: flex;
  display: -ms-flexbox;
}
article .article-left .title-h1 {
  display: flex;
  display: -ms-flexbox;
  justify-content: start;
  -ms-flex-pack: start;
  margin-bottom: 13px;
}
article .article-left .title-h1 h1 {
  font-size: 60px;
  color: #222222;
  font-weight: bold;
}
article .article-left .title-h1 img {
  height: 40px;
  position: absolute;
  z-index: -1;
}
article .article-left .article-icon {
  width: 98px;
  height: 40px;
  line-height: 40px;
  margin: -20px 0 0 5px;
}
article .article-left .title-h1 span {
  display: block;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
article .article-left .title-h3 h3 {
  font-size: 20px;
  color: #222222;
  margin-bottom: 30px;
}
article .article-left .list ul {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 480px;
}
article .article-left .list ul li {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  margin: 0 14px 20px 0;
}
article .article-left .list ul li span {
  font-size: 16px;
  color: #333333;
}
article .article-left .list ul li img {
  margin-right: 10px;
}
article .article-left .banner_tab_btn{
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
    display: flex; 
}
article .article-left .banner_tab_btn a:first-of-type{
  margin-right: 30px;
}
article .article-left a {
  width: 240px;
  height: 74px;
  background: linear-gradient(90deg, #7B56EE 0%, #A185F6 100%);
  box-shadow: 0px 12px 15px 0px rgba(141,130,246,0.5);
  border-radius: 37px;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 30px 0 30px;
  position: relative;
  overflow: hidden;
}
@keyframes spread {
  0% {
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -o-transform: scale(2);
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
  }
}

@-webkit-keyframes spread {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
  }
}

@-moz-keyframes spread {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
  }
}

@-o-keyframes spread {
  0% {
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -o-transform: scale(2);
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
  }
}
article .article-left a::after,
header ul li:last-child a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin-left: -140px;
  margin-top: -140px;
  animation: spread 1.5s infinite both;
}
article .article-left a img {
  margin-right: 10px;
}
article .article-left p {
  font-size: 14px;
  color: #666666;
  width: 566px;
  line-height: 24px;
}
article .article-right {
  margin-bottom: 50px;
  position: relative;
  width: 634px;
  height: 426px;
}
article .article-right a {
  width: 586px;
  height: 384px;
  display: block;
  position: relative;
  z-index: 2;
}
article .article-right img {
  margin-top: -40px;
}
article .article-right .profile-png {
  position: absolute;
  top: 20px;
  left: 0;
  width: 586px;
	height: 384px;
}
article .article-right .profile-gif {
  position: absolute;
  top: 200px;
  left: 120px;
  z-index: 1;
}
section {
  padding: 90px 0 80px;
}
section h2 {
  font-size: 36px;
  font-weight: 400;
  color: #212121;
  text-align: center;
  margin-bottom: 85px;
}
section ul {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
}
section ul li {
  padding: 0 16px 20px 16px;
  cursor: pointer;
}
section ul li.active {
  border-bottom: 3px solid #7F5AEF;
  cursor: default;
}
section ul li img {
  display: block;
  margin: 0 auto 20px;
}
section ul li span {
  font-size: 18px;
  color: #999999;
  opacity: 0.9;
  display: block;
  text-align: center;
}
section .section-content {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -ms-flex-pack: justify;
  padding-top: 72px;
}
section .section-content .section-left h3 {
  font-size: 30px;
  font-weight: bold;
  color: #212121;
  margin: 86px 0 36px;
}
section .section-content .section-left p {
  font-size: 16px;
  color: #999999;
  width: 240px;
  line-height: 30px;
}
section .section-content .section-left a {
  width: 200px;
  height: 68px;
  background: linear-gradient(-90deg, #7B56EE 0%, #A185F6 100%);
  box-shadow: 0px 8px 10px 0px rgba(141,130,246,0.5);
  border-radius: 10px;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 40px 0 30px;
  position: relative;
  overflow: hidden;
}
section .section-content .section-left a img {
  margin-left: 10px;
}
nav .nav-content {
  padding: 80px 0;
}
nav .nav-content h2 {
  font-size: 36px;
  color: #222222;
  text-align: center;
  margin-bottom: 60px;
}
nav .nav-content ul {
  display: flex;
  display: -ms-flexbox;
  margin-bottom: 30px;
}
nav .nav-content ul li {
  width: 110px;
  height: 111px;
  background: #ffffff;
  border-radius: 10px;
  margin-right: 10px;
}
nav .nav-content ul li:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
nav .nav-content ul li img {
  margin: 20px auto 10px;
  display: block;
}
nav .nav-content ul li span {
  font-size: 14px;
  line-height: 16px;
  color: #424242;
  display: block;
  text-align: center;
}
aside {
  width: 100%;
  background: #F9FAFF;
  min-width: 1200px;
}
aside .aside-content {
  width: 1200px;
  margin: 0 auto;
}
aside .aside-block {
  padding: 60px 0;
}
aside .aside-block h2 {
  font-size: 36px;
  color: #222222;
  text-align: center;
  margin-bottom: 60px;
}
aside .aside-block .aside-content {
  display: flex;
  display: -ms-flexbox;
}
aside .aside-block .aside-content .aside-img {
  display: block;
  height: 100%;
  margin-right: 40px;
}
aside .aside-block .aside-content .aside-list ul li {
  width: 447px;
  height: 105px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center;
  margin-bottom: 16px;
}
aside .aside-block .aside-content .aside-list ul li img {
  margin: 0 30px 0 -15px;
}
aside .aside-block .aside-content .aside-list ul li h3 {
  font-size: 16px;
  font-weight: bold;
  color: #424242;
  margin:18px 0 16px;
}
aside .aside-block .aside-content .aside-list ul li p {
  font-size: 14px;
  color: #666666;
  position: relative;
  margin-bottom: 10px;
}
aside .aside-block .aside-content .aside-list a {
  width: 200px;
  height: 68px;
  background: linear-gradient(-90deg, #7B56EE 0%, #A185F6 100%);
  box-shadow: 0px 8px 10px 0px rgba(141,130,246,0.5);
  border-radius: 10px;
  line-height: 68px;
  text-align: center;
  display: block;
  color: #fff;
  margin-top: 30px;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
aside .aside-block .aside-content .aside-list a img {
  margin-left: 10px;
}
aside .aside-block .aside-content .aside-list ul li a:hover {
  background: #ff7f21;
}
figure {
  padding: 90px 0 120px;
  background: url("../img/figureBanner.png") no-repeat;
  min-width: 1200px;
  background-size: cover;
}
figure h2 {
  font-size: 36px;
  color: #222222;
  text-align: center;
  margin-bottom: 50px;
}
figure ul {
  display: flex;
  display: -ms-flexbox;
}
figure ul li {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  margin-right: 32px;
  width: 260px;
}
figure ul li img {
  width: 106px;
  height: 106px;
  display: block;
  margin: 40px auto 30px;
}
figure ul li span {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
figure ul li p {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  padding: 0 28px;
  line-height: 24px;
  text-align: center;
}
.swiper {
  text-align: center;
}
.swiper h2 {
  font-size: 36px;
  color: #222222;
  text-align: center;
  margin: 120px 0 70px;
}
.swiper .swiperUnit {
  padding: 29px 20px;
}
.swiper .swiperUnit img {
  height: 73px;
  width: 73px;
  margin: 0 auto;
  border-radius: 50%;
}
.swiper .swiperUnit h3 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #333333;
  margin-top: 20px;
  margin-bottom: 10px;
}
.swiper .swiperUnit .position {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #999999;
}
.swiper .swiperUnit .divider {
  width: 244px;
  height: 1px;
  background-color: #dddddd;
  margin-top: 15px;
  margin-bottom: 41px;
}
.swiper .swiperUnit .content {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  width: 241px;
  text-align: left;
  color: #444444;
}
#certify {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#certify .swiper-container {
  width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 104px;
  padding-top: 69px;
}
#certify .swiper-slide {
  width: 285px !important;
  height: 395px !important;
  background: #fff;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  border-radius: 10px;
}
.swiper-button-prev {
  left: 0;
  width: 46px;
  height: 46px;
  background: url("../img/buttonPrev.png");
}
.swiper-button-prev:hover {
  background: url("../img/buttonPrevHover.png");
}
.swiper-button-next {
  right: 0;
  width: 46px;
  height: 46px;
  margin-top: -42px;
  background: url("../img/buttonNext.png");
}
.swiper-button-next:hover {
  background: url("../img/buttonNextHover.png");
}
.swiper-button-prev {
  margin-top: -42px;
}
.swiper-button-next::after {
  content: unset;
}
.swiper-button-prev {
  outline: unset;
}
.swiper-button-prev::after {
  content: unset;
}

.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  outline: unset;
}
footer {
  background: url("../img/footerBanner.png") no-repeat;
  width: 100%;
  min-width: 1200px;
  background-size: cover;
}
footer .footer-content {
  display: flex;
  display: -ms-flexbox;
  padding: 60px 70px 0;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-align: center;
}
footer .footer-content .footer-right {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  margin: 80px 0 0 80px;
}
footer .footer-content .footer-right h3 {
  color: #222222;
  font-size: 42px;
  color: #212121;
  margin-bottom: 20px;
}
footer .footer-content .footer-right span {
  margin-bottom: 60px;
  display: block;
  font-size: 20px;
  color: #565454;
}
footer .footer-content .footer-right a {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  width: 240px;
  height: 74px;
  line-height: 74px;
  text-align: center;
  font-size: 24px;
  background: linear-gradient(90deg, #7B56EE 0%, #A185F6 100%);
  box-shadow: 0px 12px 15px 0px rgba(141,130,246,0.5);
  border-radius: 10px;
  color: #fff;
}
footer .footer-content .footer-right a img {
  margin-right: 10px;
}
footer p {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #999;
  font-size: 12px;
  margin-top: 20px;
}
footer p a {
  color: #999;
  font-size: 12px;
}

.pc_broadside {
  width: 60px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 1px #E4E4FF;
  border-radius: 10px;
  position: fixed;
  z-index: 9;
  bottom: 100px;
  right: 46px;
}

.pc_broadside .list {
  width: 100%;
  padding: 16px 0;
  position: relative;
  cursor: pointer;
}

.pc_broadside .list:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 1px;
  background: #EEEEEE;
}

.pc_broadside .list>p {
  font-size: 12px;
  color: #8189A1;
  line-height: 16px;
}

.pc_broadside .list i {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 4px;
}

.pc_broadside .list i.software {
  background: url(../img/index/software.svg);
}

.pc_broadside .list i.welfare {
  background: url(../img/index/welfare.svg);
}

.pc_broadside .list i.batch {
  background: url(../img/index/batch.svg);
}

.pc_broadside .list i.top {
  width: 21px;
  height: 13px;
  margin-bottom: 0;
  background: url(../img/index/top.svg);
}

.pc_broadside .list:hover>p {
  color: #7B56EE;
}

.pc_broadside .list:hover i.software {
  background: url(../img/index/software_h.svg);
}

.pc_broadside .list:hover i.welfare {
  background: url(../img/index/welfare_h.svg);
}

.pc_broadside .list:hover i.batch {
  background: url(../img/index/batch_h.svg);
}

.pc_broadside .list:hover i.top {
  background: url(../img/index/top_h.svg);
}

.pc_broadside .list:hover .list-card {
  display: -ms-flexbox;
  display: flex;
}

.pc_broadside .list .list-card {
  display: none;
  position: absolute;
  width: 164px;
  height: 188px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 1px rgba(228, 228, 255, 0.68);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0);
  top: 0;
  left: -183px;
  box-sizing: border-box;
}

.pc_broadside .list .list-card::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #ffffff;
  right: -14px;
  top: 30px;
}

.pc_broadside .list .list-card img {
  width: 128px;
  height: 128px;
  margin-bottom: 8px;
}

.pc_broadside .list .list-card p {
  font-size: 12px;
  color: #333333;
}

.pc_broadside .list.backTop {
  padding: 14px 0;
}


.pc_broadside  .enterprise_procurement {
  width: 60px;
  height: 98px;
  background: linear-gradient(-90deg, #ff8f3b 0%, #ffa800 100%);
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff2cb;
 border-radius: 40px 40px 10px 10px;
  position: absolute;
  z-index: 9;
  top: -110px; 
  right: 0;
  text-align: center;
  cursor: pointer;
  display: block;

}
.pc_broadside  .enterprise_procurement img{
  margin: 8px auto 0;
}
.pc_broadside  .enterprise_procurement p{
  font-size: 14px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 16px;
  margin-top: 4px;
}

#pc,#mobile {
  display: none;
}
#pc{
  min-width: 1200px;
}

#mobile {
  line-height: 1;
  padding-bottom: 1.78rem;
}
.none {
  display: none !important;
}
.mobile-banner {
  width: 100%;
  min-height: 100vh;
  background: url(../img/index-mobile/mobile-banner_bg.png) no-repeat top;
  background-size: cover;
  position: relative;
  padding: 0.4rem 0;
}

.mobile-banner h1 {
  position: relative;
  margin-bottom: 0.13rem;
}
.mobile-banner h1 span {
  font-size: 0.56rem;
  font-weight: bold;
  color: #222222;
}
.mobile-banner h1 .corner {
  width: 1.06rem;
  height: 0.58rem;
  position: absolute;
  right: -1.06rem;
  top: -0.12rem;
}
.mobile-banner ul {
  width: 6.3rem;
}
.mobile-banner ol li {
  margin-top: 0.33rem;
}
.mobile-banner ul li {
  font-size: 0.24rem;
  color: #464a7c;
}
.mobile-banner ul li em {
  width: 0.29rem;
  height: 0.28rem;
  border-radius: 0.04rem;
  border: solid 1px #7b56ee;
  margin-right: 0.1rem;
}
.mobile-banner ul li em img {
  width: 0.19rem;
  height: 0.19rem;
}
.mobile-banner > img {
  width: 6.2rem;
  height: 6.15rem;
  margin: 1.22rem auto 0.93rem;
}
.mobile-footer .down_but,
.mobile-banner .down_but {
  width: 6.3rem;
  height: 1rem;
  background-image: linear-gradient(-90deg, #b39df8 0%, #9579f1 100%),
    linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
  box-shadow: 0rem 0.07rem 0.129rem 0.001rem rgba(151, 121, 242, 0.25),
    inset 0rem 0rem 0.24rem 0rem rgba(255, 255, 255, 0.35);
  border-radius: 0.5rem;
  font-size: 0.38rem;
  color: #fbfcfe;
  animation: shadow-pulse 2s infinite linear;
}
@keyframes shadow-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.mobile-banner .down_but img {
  width: 0.33rem;
  height: 0.4rem;
  margin-right: 0.2rem;
}
#mobile h2 {
  position: relative;
  font-size: 0.42rem;
  font-weight: bold;
  letter-spacing: 0.004rem;
  color: #7d59ed;
  text-align: center;
}
#mobile h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.29rem;
  width: 0.4rem;
  height: 0.1rem;
  background-color: #9a7ff2;
  border-radius: 0.05rem;
  opacity: 0.5;
}
#mobile h3 {
  font-size: 0.42rem;
  font-weight: bold;
  letter-spacing: 0.004rem;
  color: #ffffff;
  text-align: center;
}
.mobile-fun {
  width: 6.9rem;
  padding: 0.62rem 0 0.68rem;
  background-image: linear-gradient(0deg, #ffffff 0%, #efecff 100%),
    linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
  border-radius: 0.3rem;
  margin: 0.54rem auto 1.19rem;
}
.mobile-fun ul {
  width: 100%;
  margin-top: 0.1rem;
}
.mobile-fun ul li {
  width: calc(100% / 3);
  padding-top: 0.78rem;
}
.mobile-fun ul li img {
  width: 1.1rem;
  height: 1.1rem;
}
.mobile-fun ul li p {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  letter-spacing: -0.005rem;
  color: #333333;
}
.mobile-amend {
  width: 100%;
  padding: 0.67rem 0 0.62rem;
  background: url(../img/index-mobile/mobile-amend_bg.png) no-repeat
    center;
  background-size: cover;
}

.mobile-amend .mobile-amend-card {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper {
  padding-bottom: 0.7rem;
  position: relative;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper h3 {
  margin-bottom: 0.71rem;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper .mobile-amend-item {
  width: 6.6rem;
  height: 2rem;
  background-color: #fafafa;
  box-shadow: 0rem 0.08rem 0.1rem 0rem rgba(47, 84, 235, 0.14);
  border-radius: 0.3rem;
  margin: 0 auto 0.4rem;
  padding-left: 0.24rem;
  box-sizing: border-box;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper .mobile-amend-item img {
  width: 0.92rem;
  height: 0.92rem;
  margin-right: 0.2rem;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper .mobile-amend-item h4 {
  font-size: 0.32rem;
  font-weight: bold;
  color: #424242;
  margin-bottom: 0.1rem;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper .mobile-amend-item p {
  font-size: 0.24rem;
  line-height: 0.38rem;
  color: #999999;
}
.mobile-amend .mobile-amend-card .mobile-amend-swiper .swiper-pagination {
  bottom: 0;
  z-index: 8;
}
.mobile-amend
  .mobile-amend-card
  .mobile-amend-swiper
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 0.11rem;
}
.mobile-amend
  .mobile-amend-card
  .mobile-amend-swiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  width: 0.28rem;
  height: 0.28rem;
  background: url(../img/index-mobile/swiper-pagination-bullet-active.png)
    no-repeat center;
  background-size: 0.28rem;
  margin: 0 0.05rem;
}
.mobile-course {
  padding: 1rem 0.3rem 0;
}
.mobile-course .mobile-course-content {
  padding-top: 0.99rem;
}
.mobile-course .mobile-course-content .mobile-course-item {
  margin-bottom: 0.3rem;
  width: 3.35rem;
  background: #f8f8f8;
  border-radius: 0.08rem;
  overflow: hidden;
}
.mobile-course .mobile-course-content .mobile-course-item em {
  width: 3.35rem;
  height: 2.23rem;
  margin-bottom: 0.14rem;
}
.mobile-course .mobile-course-content .mobile-course-item em img {
  max-width: 100%;
  max-height: 100%;
}
.mobile-course
  .mobile-course-content
  .mobile-course-item
  .mobile-course-item-title {
  height: 0.68rem;
  padding: 0 0.18rem;
  font-size: 0.28rem;
  line-height: 0.34rem;
  letter-spacing: 0rem;
  color: #333333;
  margin-bottom: 0.17rem;
  display: block;
}
.mobile-course
  .mobile-course-content
  .mobile-course-item
  .mobile-course-item-int {
  padding: 0 0.18rem;
  font-size: 0.24rem;
  line-height: 0.34rem;
  color: #999999;
  margin-bottom: 0.27rem;
  display: block;
}
.mobile-course
  .mobile-course-content
  .mobile-course-item
  .mobile-course-item-time {
  padding: 0 0.18rem;
  font-size: 0.24rem;
  line-height: 0.34rem;
  color: #bbbbbb;
  padding-bottom: 0.14rem;
}
.mobile-course .mobile-course-more {
  width: 100%;
  height: 0.81rem;
  background-color: #f8f8f8;
  border-radius: 0.08rem;
  font-size: 0.28rem;
  color: #333333;
  margin-top: 0.2rem;
}
.mobile-relation {
  padding: 1rem 0 0.37rem;
}
.mobile-relation em {
  width: 4.8rem;
  height: 4.8rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
  border: solid 1px #cccccc;
  margin: 0.89rem auto 0.4rem;
}
.mobile-relation em img {
  width: 4.2rem;
  height: 4.2rem;
}
.mobile-relation span {
  font-size: 0.28rem;
  color: #666666;
  margin-bottom: 0.66rem;
}
.mobile-relation p {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #bbbbbb;
  text-align: center;
}
.mobile-relation p a {
  color: #bbbbbb;
}
.mobile-footer {
  position: fixed;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.78rem;
  background-color: #ffffff;
  box-shadow: 0rem -0.1rem 0.21rem 0rem rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.flex {
  display: -ms-flexbox;
  display: flex;
}
/*主轴为水平方向，起点在左边*/
.flexRow {
  -ms-flex-direction: row;
  flex-direction: row;
}
/*主轴为垂直方向，起点在上沿*/
.flexColumn {
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex1 {
  -ms-flex: 1;
  flex: 1;
}
/*交叉轴的起点对齐*/
.alignStart{
  -ms-flex-align: start;
  align-items: flex-start;
}
/*交叉轴的终点对齐*/
.alignEnd{
  -ms-flex-align: end;
  align-items: flex-end;
}
/*交叉轴的中点对齐*/
.alignCenter{
  -ms-flex-align: center;
  align-items: center;
}
/*项目的第一行文字的基线对齐*/
.alignBaseline{
  -ms-align-items: baseline;
  align-items: baseline;
}
/*如果项目未设置高度或设为auto，将占满整个容器的高度*/
.alignStretch{
  -ms-align-items: stretch;
  align-items: stretch;
}
/*换行，第一行在上方*/
.flexWrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/*主轴左对齐*/
.justifyStart {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
/*主轴右对齐*/
.justifyEnd {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
/*主轴居中对齐*/
.justifyCenter {
  -ms-flex-pack: center;
  justify-content: center;
}
/*主轴两端对齐,项目之间的间隔都相等*/
.justifyBetween {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/*每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍*/
.justifyAround {
  -ms-flex-pack: justify;
  justify-content: space-around;
}
/* 显示一行文字 */
.line1 {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 显示2行文字 */
.line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}