.headerTop .navList {
  position: relative;
  margin: 0 50px;
  cursor: pointer;
}
.headerTop .navList:hover .nav_item {
  display: block;
}
.headerTop .navList .nav_item {
  display: none;
  position: absolute;
  top: 0;
  background-color: transparent;
  padding-top: 50px;
  animation: menu6 0.3s ease-in-out forwards;
}
.headerTop .navList .nav_item .nav_bg {
  border-radius: 15px;
  padding: 24px;
  background: #fff;
  width: 300px;
  box-shadow: 1px 3px 24px rgba(0, 0, 0, 0.2);
}
.headerTop .navList .nav_item .nav_title {
  font-size: 20px;
  font-weight: bold;
}
.headerTop .navList .nav_item li {
  margin-top: 32px;
  display: flex;
  cursor: pointer;
}
.headerTop .navList .nav_item li:hover {
  opacity: 0.8 !important;
}
.headerTop .navList .nav_item li a {
  display: flex;
}
.headerTop .navList .nav_item li a .item {
  margin-left: 10px;
}
.headerTop .navList .nav_item li a .item .title {
  font-size: 14px;
  font-weight: bold;
}
.headerTop .navList .nav_item li a .item .subtitle {
  color: #999;
  font-size: 12px;
}
.processBox {
  padding: 80px 0;
}
.coreBox {
  padding: 80px 0;
  background: linear-gradient(141deg, #F0F3FF 0%, #ECF7FF 50%, #ECEFFF 100%);
}
.coreBox .tabBox .item {
  flex: 1;
}
.coreBox .slideBox {
  padding-top: 45px;
  display: flex;
  justify-content: space-between;
}
.coreBox .slideBox .left .item {
  padding: 40px 0;
  max-width: 410px;
}
.coreBox .slideBox .left .item:first-child {
  border-bottom: 1px solid #E2E8F1;
}
.coreBox .slideBox .left .item .title {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.coreBox .slideBox .left .item .title::before {
  content: '';
  width: 3px;
  height: 18px;
  background: #0048E8;
  border-radius: 4px;
  display: inline-block;
  margin-right: 5px;
}
.coreBox .slideBox .left .item .subtitle {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}
.reliableBox {
  padding: 90px 0;
}
.reliableBox .contend {
  display: flex;
  justify-content: space-between;
}
.reliableBox .contend .rightBox {
  max-width: 50%;
}
.reliableBox .contend .rightBox .slideBox {
  padding-top: 50px;
}
.reliableBox .contend .rightBox .slideBox .item .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.reliableBox .contend .rightBox .slideBox .item .text {
  font-size: 14px;
  line-height: 1.6;
}
.reliableBox .contend .rightBox .slideBox .con {
  display: flex;
  padding-top: 30px;
}
.reliableBox .contend .rightBox .slideBox .con li {
  flex: 1;
  padding: 30px;
  margin-right: 16px;
  border-radius: 8px;
}
.reliableBox .contend .rightBox .slideBox .con li h4 {
  font-size: 14px;
}
.reliableBox .contend .rightBox .slideBox .con li .number {
  font-size: 40px;
  font-weight: 800;
}
.reliableBox .contend .rightBox .slideBox .con li .number span {
  font-size: 24px;
  margin-left: 5px;
}
.reliableBox .contend .rightBox .slideBox .con li:first-child {
  background: #EAF6FF;
}
.reliableBox .contend .rightBox .slideBox .con li:last-child {
  background: #FFF2F2;
  margin-right: 0;
}
.majorBox {
  background: url(../images/index/major/major_bg.png) center center no-repeat;
  color: #fff;
  padding: 90px 0;
}
.majorBox ul {
  display: flex;
  justify-content: space-between;
}
.majorBox ul li {
  position: relative;
  transition: all 0.6s;
  border-radius: 16px;
  overflow: hidden;
}
.majorBox ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 100%;
  height: 100%;
  background: pink;
  transform: skew(-30deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
}
.majorBox ul li:hover::before {
  transition: all 0.3s;
  left: 140%;
}
.majorBox ul li:hover {
  transform: translateY(-20px);
  box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.15);
}
.majorBox ul li .item {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%) translateY(-70%);
  text-align: center;
}
.majorBox ul li .item h4 {
  margin-bottom: 10px;
}
.majorBox ul li .item p {
  font-size: 12px;
  line-height: 1.6;
}
.partnerBox {
  padding: 90px 0;
  overflow: hidden;
}
.partnerBox .cont {
  animation: swipper 40s linear infinite;
  white-space: nowrap;
}
.partnerBox .cont li {
  margin-right: 30px;
  display: inline-block;
}
.partnerBox .cont li img:hover {
  transition: all 0.3s;
  transform: scale(1.2);
}
.partnerBox .cont_rever {
  animation: swipper_reversal 40s linear infinite;
}
.contactBox {
  padding: 90px 0;
  background: url(../images/index/contact_bg.png) center center no-repeat;
  color: #fff;
}
.contactBox h3 {
  font-size: 36px;
}
.contactBox p {
  font-size: 20px;
  margin: 15px 0 60px 0;
}
.contactBox .lookMore {
  display: inline-block;
  color: #0048E8;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.87) 0%, rgba(255, 255, 255, 0.65) 100%);
  padding: 12px 50px;
  border-radius: 30px;
}
.contactBox .lookMore:hover {
  opacity: 0.8;
}
.tabBox {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid #E8E3E1;
}
.tabBox .item {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
}
.tabBox .item p {
  margin-top: 12px;
  white-space: nowrap;
}
.tabBox .item:hover {
  cursor: pointer;
  color: #0048E8;
}
.tabBox .active {
  color: #0048E8;
}
.tabBox .active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0048E8;
  border-radius: 12px;
  animation: ad_width 7s linear forwards;
}
.tabBox .active_two {
  color: #0048E8;
}
.tabBox .active_two::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0048E8;
  border-radius: 12px;
  width: 100%;
}
.tckBox {
  position: relative;
  z-index: 100;
  display: none;
}
.tckBox .tckBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.tckBox .tckCentent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 40px 60px;
}
.tckBox .closeBtn {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  line-height: 1;
  padding: 5px;
}
.tckBox .closeBtn:hover {
  color: #0048E8;
}
.tckBox .formBox {
  text-align: center;
}
.tckBox .formBox h3 {
  margin-bottom: 40px;
  font-weight: 800;
}
.tckBox .formBox p {
  margin: 20px;
  font-size: 12px;
}
.animationStop {
  animation-play-state: paused !important;
}
.animationStop::before {
  animation-play-state: paused !important;
}
.animationRun {
  animation-play-state: running !important;
}
.animationRun::before {
  animation-play-state: running !important;
}
@keyframes ad_width {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes swipper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes swipper_reversal {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes menu6 {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
