.main .banner {
  background: linear-gradient(240deg, #8246F0 0%, #0D53D7 100%);
  margin-top: -80px;
  padding-top: 100px;
}

.main .banner .name {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main .content {
  width: 1200px;
  margin: 0 auto;
}

.main .content .banner-info {
  text-align: center;
  margin-bottom: 40px;
}

.main .content .banner-info .title {
  font-size: 60px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  line-height: 120px;
}

.main .content .banner-info .title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 2px;
}

.main .content .banner-info .sub-title {
  font-size: 24px;
  color: #FFFFFF;
  margin-top: 20px;
}

.main .content .banner-scroll {
  text-align: center;
  position: relative;
  min-height: 180vh;
  padding: 20px 0 200px 0;
}

.main .content .banner-scroll .scroll-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.main .content .banner-scroll .scroll-wrapper .site-name {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30%;
  right: -30%;
}

.main .content .banner-scroll .canvas {
  position: relative;
  z-index: 2;
}

.main .content .banner-scroll .canvas img {
  box-shadow: 0px 0px 18px 0px rgba(183, 185, 228, 0.19);
}


.main .content .banner-scroll .panel1 {
  position: absolute;
  z-index: 3;
  top: 320px;
  right: 280px;
  opacity: 0;
}

.main .content .banner-scroll .panel2 {
  position: absolute;
  z-index: 3;
  top: 480px;
  left: 200px;
  opacity: 0;
}

.main .content .banner-scroll .panel3 {
  position: absolute;
  z-index: 3;
  bottom: -20px;
  right: 300px;
}

.main .content .banner-scroll .panel4 {
  position: absolute;
  z-index: 3;
  bottom: -40px;
  right: 260px;
  opacity: 0;
}

.main .content .banner-scroll .panel5 {
  width: 226px;
  height: 284px;
  background: #D8BE0F;
  border-radius: 6px;
  position: absolute;
  top: 200px;
  right: 180px;
  z-index: 1;
}

.main .content .banner-scroll .panel6 {
  width: 226px;
  height: 284px;
  background: #D8510F;
  border-radius: 6px;
  position: absolute;
  top: 350px;
  left: 180px;
  z-index: 1;
}

.main .content .banner-scroll .bubble1 {
  position: absolute;
  z-index: 3;
  top: 340px;
  left: 410px;
  opacity: 0;
  animation-fill-mode: forwards;
}

.main .content .banner-scroll .active .bubble1 {
  animation-name: bubble1;
  animation-duration: .5s;
  animation-iteration-count: 1;
}

.main .content .banner-scroll .bubble2 {
  position: absolute;
  z-index: 3;
  top: 360px;
  left: 580px;
  opacity: 0;
  animation-fill-mode: forwards;
}


.main .content .banner-scroll .active .bubble2 {
  animation-name: bubble2;
  animation-duration: .5s;
  animation-iteration-count: 1;
}

.main .content .banner-scroll .bubble3 {
  position: absolute;
  z-index: 3;
  top: 550px;
  left: 530px;
  opacity: 0;
  animation-fill-mode: forwards;
}

.main .content .banner-scroll .active .bubble3 {
  animation-name: bubble2;
  animation-duration: .5s;
  animation-iteration-count: 1;
}

@keyframes bubble1 {
  0% {
    width: 18px;
    height: 18px;
    opacity: 0
  }

  25% {
    width: 30px;
    height: 20px;
    opacity: .5
  }

  50% {
    width: 44px;
    height: 28px;
    opacity: 1
  }

  75% {
    width: 50px;
    height: 30px;
    opacity: 1
  }

  to {
    width: 44px;
    height: 28px;
    opacity: 1
  }
}

@keyframes bubble2 {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0
  }

  25% {
    width: 50px;
    height: 50px;
    opacity: .5
  }

  50% {
    width: 60px;
    height: 60px;
    opacity: 1
  }

  75% {
    width: 70px;
    height: 70px;
    opacity: 1
  }

  to {
    width: 60px;
    height: 60px;
    opacity: 1
  }
}

.main .media-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  transition: all .5s;
  z-index: 100;
}

.main .media-nav.active {
  transform: translateX(-50%) translateY(100px);
}

.main .media-type {
  width: 150px;
  height: 100px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  text-align: center;
  padding: 15px 0;
  transition: all .3s;
  box-shadow: 0px 0px 24px 5px rgb(139 145 157 / 9%);
}

.main .media-type:first-child {
  border-radius: 6px 0px 0px 0px;
}

.main .media-type:last-child {
  border-radius: 0px 6px 0px 0px;
}

.main .media-type .type-icon {
  width: 40px;
  transition: all .3s;
}

.main .media-type .type-name {
  color: #333333;
  margin-top: 10px;
}

.main .media-type:hover {
  height: 130px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 6px 6px 0px 0px;
  padding: 30px 0;
}

.main .media-type:hover .type-icon {
  width: 44px;
}

.main .media-type:hover .type-name {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}

.main .mini-program {
  width: 1200px;
  margin: 70px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main .mini-program .title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  position: relative;
  padding-bottom: 40px;
}

.main .mini-program .title::before {
  content: '';
  width: 78px;
  height: 6px;
  background: #236AE3;
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.main .mini-program .desc {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin-top: 30px;
  width: 500px;
}

/* .main .mini-program .mini-code {
  width: 520px;
  height: 520px;
  background: #E7ECFF;
  border-radius: 50%;
} */

.main .scroll-box {
  width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #EEEEEE;
  padding-left: 670px;
  position: relative;
}

.main .scroll-box .sticky-box {
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
}

.main .scroll-box .sticky-box .sticky-wrapper {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  min-height: 100vh;
  width: 620px;
  flex-shrink: 0;
  margin-right: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main .scroll-box .sticky-box .sticky-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-right: 30px;
}

.main .scroll-box .sticky-box .img-box {
  width: 480px;
  height: 480px;
  background: #E7ECFF;
  border-radius: 50%;
  align-items: center;
  position: relative;
}

.main .scroll-box .sticky-box .img-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: all .5s;
}

.main .scroll-box .sticky-box .img-box .active {
  opacity: 1;
}

.main .scroll-box .sticky-box .menu-box {
  margin-left: 26px;
  z-index: 10;
  background-color: #fff;
}

.main .scroll-box .sticky-box .menu-box .menu-item {
  margin: 30px 0;
  cursor: pointer;
  color: #333333;
  position: relative;
  line-height: 24px;
  cursor: pointer;
}

.main .scroll-box .sticky-box .menu-box .menu-item:nth-child(2) {
  transform: translateX(10px);
}

.main .scroll-box .sticky-box .menu-box .menu-item.active {
  font-weight: bold;
}

.main .scroll-box .item-box .item-title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 60px;
}


.main .scroll-box .scroll-arc .arc-line1 {
  box-sizing: border-box;
  border: 4px solid #E7ECFF;
  border-bottom-right-radius: 380px;
  border-top-right-radius: 380px;
  width: 380px;
  height: 760px;
  border-left: none;
  position: absolute;
  right: 0;
  top: 0;
}

.main .scroll-box .scroll-arc .arc-line2 {
  position: absolute;
  top: 0;
  right: 1px;
  z-index: 1;
  height: 760px;
  width: 380px;
  border: 2px solid #0E53D7;
  box-sizing: border-box;
  border-bottom-right-radius: 380px;
  border-top-right-radius: 380px;
  border-left: none;
  transform-origin: 0% 50%;
  transform: rotate(-180deg);
  transition: all .5s;
}


.main .scroll-box .scroll-arc .arc-line3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 760px;
  width: 380px;
  border: 4px solid #E7ECFF;
  box-sizing: border-box;
  border-bottom-right-radius: 380px;
  border-top-right-radius: 380px;
  border-left: none;
  transform-origin: 0% 50%;
  transform: rotate(-180deg);
  transition: all .5s;
}

.main .scroll-box .scroll-arc {
  width: 100px;
  height: 760px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -140px;
}

.main .scroll-box .scroll-anchor {
  min-height: 100vh;
  display: flex;
  align-items: center;
}


.main .scroll-box .item-box .advantage-item {
  margin-top: 50px;
  padding-left: 60px;
  position: relative;
}

.main .scroll-box .item-box .advantage-item .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

.main .scroll-box .item-box .advantage-item .circle::before {
  width: 6px;
  height: 6px;
  background: #999999;
  border-radius: 50%;
  content: '';
  position: absolute;
  left: 17px;
  top: 17px;
}

.main .scroll-box .item-box .advantage-item .circle svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

.main .scroll-box .item-box .advantage-item .circle circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  transform: translate(2px, 2px);
}

.main .scroll-box .item-box .advantage-item .circle circle:nth-child(2) {
  stroke-dasharray: 116;
}

.main .scroll-box .item-box .advantage-item .circle circle:nth-child(2) {
  stroke-dashoffset: calc(116 - (116 * 200) / 100);
  stroke: #0E53D7;
  transition: all .5s;
}

.main .scroll-box .item-box .advantage-item:hover .circle circle:nth-child(2) {
  stroke-dashoffset: calc(116 - (116 * 100) / 100);
}

.main .scroll-box .item-box .advantage-item:hover .circle::before {
  background-color: #236AE3;
}

.main .scroll-box .item-box .advantage-item .advantage-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 40px;
}

.main .scroll-box .item-box .advantage-item .advantage-desc {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}

.main .scroll-box .item-box .security-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main .scroll-box .item-box .security-box .security-item {
  width: 45%;
  margin-top: 20px;
}

.main .scroll-box .item-box .security-box .security-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main .scroll-box .item-box .security-box .security-title .security-icon {
  margin-right: 10px;
}

.main .scroll-box .item-box .security-box .security-info {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
}

.main .scroll-box .item-box .service-item {
  margin-bottom: 25px;
}

.main .scroll-box .item-box .service-item .service-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 15px;
}

.main .scroll-box .item-box .service-item .service-info {
  font-size: 14px;
  color: #333333;
  line-height: 22px;
}

.main .resource-box {
  padding: 70px 0;
  background-size: cover;
  background-repeat: no-repeat;
}


.main .resource-box .swiper-wrapper {
  animation: right-effect 30s linear infinite;
}


.main .resource-box .resource-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 30px;
}


.main .resource-box .content {
  padding-top: 20px;
  overflow: hidden;
}

.main .resource-box .content .resource-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 2600px;
}

.main .resource-box .content .resource-list:hover {
  animation-play-state: paused;
}

.main .resource-box .content .to-right {
  animation: right-effect 30s linear infinite;
}

.main .resource-box .content .to-left {
  animation: left-effect 30s linear infinite;
}

@keyframes right-effect {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

@keyframes left-effect {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.main .resource-box .resource-item {
  width: 310px;
  height: 200px;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 30px;
  margin: 0 10px;
  transition: all .5s;
  display: block;
}

.main .resource-box .resource-item:hover {
  transform: translateY(-5px);
}

.main .resource-box .resource-item .icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.main .resource-box .resource-item .item-name {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 30px;
  display: inline-block;
  vertical-align: middle;
}

.main .resource-box .resource-item .iconfont {
  border-radius: 50%;
  color: #CCCCCC;
  display: inline-block;
  text-align: center;
  line-height: 26px;
  margin-top: 2px;
  font-size: 26px;
  float: right;
}

.main .resource-box .resource-item:hover .iconfont {
  color: #236AE3;
}

.main .resource-box .resource-item .item-desc {
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.main .process {
  padding: 70px 0;
}

.main .process .process-title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  text-align: center;
}

.main .process .process-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #333333;
  margin-top: 60px;
}

.main .process .process-tabs .process-tab {
  margin: 0 20px;
  cursor: pointer;
}

.main .process .process-tabs .active {
  font-weight: bold;
}

.main .process .process-content {
  display: none;
  padding: 30px 0;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

.main .process .process-content.active {
  display: block;
}

.main .process ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.main .process ul:nth-child(2) {
  padding: 0 10px;
}

.main .process ul i {
  font-size: 60px;
  color: #3D63DD;
}

.main .process .arrow i {
  font-size: 24px;
  color: #ccc;
}

.main .process .arrow i:first-child {
  opacity: 0.4;
}

.main .process .arrow i:nth-child(2) {
  opacity: 0.7;
}

.main .school {
  padding: 60px 0;
  background: #F6F6F6;
}

.main .school .school-title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-bottom: 60px;
}

.main .school .school-box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main .school .school-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.main .school .school-flex:last-child {
  margin-bottom: 0;
}

.main .school .school-item {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 25px 30px;
  margin-right: 30px;
  width: 280px;
  align-self: stretch;
}

.main .school .school-left {
  align-self: stretch;
}

.main .school .school-left .school-item {
  height: 100%;
}

.main .school .school-left .school-item .more {
  margin-top: 100px;
}

.main .school .school-flex .school-item:last-child {
  margin-right: 0;
}

.main .school .school-item.school-last {
  flex: 1;
}

.main .school .school-item.school-last .article-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.main .school .school-item.school-last .article-flex .article-title {
  width: 48%;
}

.main .school .school-item:hover {
  box-shadow: 0px 0px 24px 5px rgba(139, 145, 157, 0.09);
}

.main .school .school-item .item-title {
  display: flex;
  justify-content: flex-start;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  align-items: center;
}

.main .school .school-item .item-title .icon {
  margin-right: 15px;
}

.main .school .school-item .article-title {
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  width: 100%;
  display: block;
  margin-top: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.main .school .school-item .article-title:hover {
  color: #236AE3;
}

.main .school .school-item .more {
  font-size: 14px;
  color: #999999;
  margin-top: 20px;
  display: inline-block;
  display: flex;
  align-items: center;
}

.main .school .school-item .more .iconfont {
  font-size: 16px;
  margin-left: 5px;
  transition: all .5s ease-in;
  color: #ccc;
}

.main .school .school-item:hover .more {
  color: #236AE3;
}

.main .school .school-item:hover .iconfont {
  transform: translateX(20px);
  color: #236AE3;
}

.main .partner {
  padding: 60px 0 80px 0;
  text-align: center;
}

.main .partner .partner-title {
  font-size: 40px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 60px;
}

.main .partner .partner-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  margin: 30px auto;
}

.main .partner .partner-icon:nth-child(3) {
  padding: 0 90px;
}

.main .partner .partner-icon img{
  transition: all .3s;
}

.main .partner .partner-icon img:hover {
  box-shadow: 0 0 14px 0px rgb(173 173 173 / 25%);
  transform: translateY(-4px);
}
