.home .banner {
  /* width: 1300px; */
  margin: 0 auto;
}

.home .banner .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  max-height:680px;
}

.home .banner .swiper-pagination {
  bottom: 26px;
}

.home .banner .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

.home .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.home .box {
  padding: 70px 0 100px;
}

.home .process {
  background: rgb(219, 228, 243) url('./home-bg-01.png') no-repeat bottom left;
  background-size: 100%;
  opacity: 80%;
}

.home .box .title {
  position: relative;
  text-align: center;
  padding-bottom: 7px;
}

.home .box .title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: #2a82e4;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.home .box .title h2 {
  font-size: 42px;
  color: #000;
  font-weight: 500;
}

.home .box .title h2 a {
  color: #000;
}

.home .box .title p {
  font-size: 18px;
  color: #999;
  margin-top: 8px;
}

.home .process .process-swiper {
  display: none;
}

.home .process .container {
  margin-top: 40px;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-content: space-between;
}

.home .process .container .card {
  width: calc(25% - 20px);
  margin-right: 0;
  height: 250px;
  margin-right: 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 1);
  border-radius: 8px;
  box-shadow: 0 -2px 0 0 #2a82e4;
  padding: 20px 30px 40px 40px;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(63, 132, 235, 0.15);
  transition: all 0.3s ease-in-out;
}
.home .process .container .card:nth-child(n+4){
  margin-right: 0px;
}
.home .process .container .card:hover {
  transform: translateY(-5px);
  background: #e8f1fe;;
  box-shadow: 0 2px 4px rgba(63, 132, 235, 0.15);
}

.home .process .container .card .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.home .process .container .card .top span {
  font-size: 24px;
  color: #000;
}

.home .process .container .card .top div {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .process .container .card .top div img {
  max-width: 100%;
  max-height: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.home .process .container .card:hover .top div img {
  transform: scale(1.2);
}

.home .process .container .card .bottom {
  margin-top: 24px;
}

.home .process .container .card .bottom a {
  position: relative;
  font-size: 18px;
  display: inline-block;
  padding-left: 28px;
  min-width: 49%;
  margin-bottom: 4px;
}

.home .process .container .card .bottom a::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #2a82e4;
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
}

.home .service {
  background: url('./home-bg-2.png') no-repeat bottom right;
  background-size: cover;
  padding-bottom: 146px;
  opacity: 80%;
}

.home .service .container {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.home .service .container .card {
  flex: 1 1 0;
  min-width: 0;
  height: 480px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 50px 50px 40px;
  box-shadow: 0 0 0 rgba(28, 113, 212, 0.15);
  transition: all 0.3s linear;
}

.home .service .container .card .top {
  height: 114px;
  overflow: hidden;
  transition: all 0.3s linear;
  line-height:28px;
}

.home .service .container .card .middle {
  position: relative;
  height: 230px;
  transition: all 0.2s linear;
}

.home .service .container .card .middle img {
  display: block;
  width: 118px;
  height: 118px;
  position: absolute;
  left: 0;
  transform: translateX(0);
  transition: all 0.3s linear;
}

.home .service .container .card .middle span {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 134px;
  transform: translateX(0);
  transition: all 0.3s linear, color 0s linear;
}

.home .service .container .card .bottom {
  color: transparent;
  height: 0;
  overflow: hidden;
  margin-top: 15px;
  transition: all 0.25s linear;
}

.home .service .container .card .bottom a {
  /* display: inline-block; */
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

/* .home .service .container .card .bottom a:nth-child(n) {
  width: 59%;
}

.home .service .container .card .bottom a:nth-child(2n) {
  width: 39%;
} */

.home .service .container .card .more {
  color: #2a82e4;
  display: block;
  text-align: left;
}

.home .service .container .card:hover {
  box-shadow: 0 2px 4px rgba(28, 113, 212, 0.15);
  background: linear-gradient(180deg, rgba(28, 113, 212, 1) 0%, rgba(41, 153, 227, 1) 80.56%);
}

.home .service .container .card:hover .top {
  height: 0;
  color: transparent;
}

.home .service .container .card:hover .middle {
  height: 174px;
}

.home .service .container .card:hover .middle img {
  left: 50%;
  transform: translateX(-50%);
}

.home .service .container .card:hover .middle span {
  color: #fff;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.home .service .container .card:hover .bottom {
  color: #fff;
  height: 200px;
}

.home .service .container .card:hover .more {
  display: none;
}

.home .information {
  /* padding-bottom: 200px; */
  background: url('./home-bg-3.png') no-repeat bottom center/100% 100%;
  background-size: cover;
  opacity: 80%;
}

.home .information .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 40px;
}

.home .information .container .card {
  width: 800px;
  height: 160px;
  border-radius: 8px;
  background: #fff;
  padding: 13px 20px 13px 40px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transform: translateX(0);
  box-shadow: 0 0 0 rgba(63, 132, 235, 0.15);
  transition: all 0.3s ease-in-out;
}

.home .information .container .card:hover {
  box-shadow: 0 2px 4px rgba(63, 132, 235, 0.15);
  /* transform: translateX(-10px); */
  transform: scale(1.1);
}

.home .information .container .card .left {
  width: 0;
  flex: 1;
  padding-right: 20px;
}

.home .information .container .card .left a {
  font-size: 18px;
  color: #000;
}

.home .information .container .card .left span {
  display: block;
  font-size: 14px;
  color: #999;
  padding-left: 25px;
  background: url('./home-icon-17.png') no-repeat left center / 16px 16px;
  margin-top: 5px;
}
.home .information .container .card .right{
  width: 200px;
  padding-left: 20px;
  box-sizing: content-box;
  display: flex;
  justify-content: flex-end;
  border-left: 2px solid #4f6bfd;
}
.home .information .container .card .right img {
  display: block;
  height: 100px;
}

.home .core {
  padding-bottom: 128px;
  background: url('./home-bg-4.png') no-repeat bottom center;
  background-size: cover;
  opacity: 80%;
}

.home .core .container {
  margin-top: 40px;
}

.home .core .container .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 300px;
  padding-right: 240px;
}

.home .core .container .top div {
  color: #006edb;
}

.home .core .container .top div p {
  font-size: 30px;
}

.home .core .container .top div p strong {
  font-size: 48px;
}

.home .core .container .top div span {
  display: inline-block;
  margin-top: 10px;
}

.home .core .container .bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 90px;
}

.home .core .container .bottom div {
  width: 522px;
  height: 176px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(63, 132, 235, 0.15);
  padding: 40px 38px;
  line-height: 32px;
}

.home .core .container .bottom div strong {
  color: #d40202;
}
.home .core .container .bottom div em{
  color: #d40202;
  font-weight: bold;
}

/* 移动端 */
#app.mobile.home .banner .swiper-wrapper {
  width: 7.5rem;
  height: 3.06rem;
}

#app.mobile.home .banner .swiper-wrapper img {
  width: 100%;
  height: 100%;
}

#app.mobile.home .banner .swiper-pagination {
  height: 0.12rem;
  bottom: 0.1rem;
  display: flex;
  justify-content: center;
}

#app.mobile.home .banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  border: 0.02rem solid #fff;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0.06rem);
}

#app.mobile.home .box {
  padding: 0.3rem 0;
}

#app.mobile.home .box .title {
  padding-bottom: 0.07rem;
}

#app.mobile.home .box .title h2 {
  font-size: 0.3rem;
}

#app.mobile.home .box .title p {
  font-size: 0.12rem;
  margin-top: 0.04rem;
}

#app.mobile.home .box .title::after {
  width: 0.5rem;
  height: 0.03rem;
  border-radius: 0.02rem;
}

#app.mobile.home .process {
  width: 7.5rem;
  background-color: #dbe4f3;
  background-size: 100%;
}

#app.mobile.home .process>.container {
  display: none;
}

#app.mobile.home .process .process-swiper {
  display: block;
  padding: 0 0.2rem 0.32rem;
  height: 5.2rem;
  margin-top: 0.3rem;
  width: 100%;
}

#app.mobile.home .process .process-swiper .card {
  width: 3.45rem !important;
  border-radius: 0.08rem;
  padding: 0.2rem 0.2rem 0.3rem 0.3rem;
  background: rgba(255, 255, 255, 0.9);
}

#app.mobile.home .process .process-swiper .card .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

#app.mobile.home .process .process-swiper .card .top span {
  font-size: 0.24rem;
  color: #000;
}

#app.mobile.home .process .process-swiper .card .top div {
  width: 0.42rem;
  height: 0.42rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#app.mobile.home .process .process-swiper .card .top div img {
  max-width: 100%;
  max-height: 100%;
}

#app.mobile.home .process .process-swiper .card .bottom {
  margin-top: 0.24rem;
}

#app.mobile.home .process .process-swiper .card .bottom a {
  font-size: 0.18rem;
  padding-left: 0.23rem;
  margin-bottom: 0.24rem;
  position: relative;
  display: inline-block;
  min-width: 49%;
}

#app.mobile.home .process .process-swiper .card .bottom a::before {
  width: 0.08rem;
  height: 0.08rem;
  left: 0.01rem;
  top: 50%;
  content: '';
  display: block;
  background: #2a82e4;
  position: absolute;
  transform: translateY(-50%) rotateZ(45deg);
}

#app.mobile.home .process .process-swiper .swiper-pagination {
  bottom: 0;
}

#app.mobile.home .process .process-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: transparent;
  border: 0.02rem solid #fff;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0.06rem);
}

#app.mobile.home .process .process-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

#app.mobile.home .service {
  width: 7.5rem;
  background-color: #edf0f5;
  background-size: 100%;
}

#app.mobile.home .service .container {
  display: none;
}

.home .service .service-swiper {
  display: none;
}

#app.mobile.home .service .service-swiper {
  display: block;
  padding: 0 0.2rem 0.32rem;
  margin-top: 0.3rem;
}

#app.mobile.home .service .service-swiper .card {
  width: 3.45rem !important;
  height: 4.1rem;
  border-radius: 0.15rem;
  padding: 0.4rem 0.3rem 0.3rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 rgba(28, 113, 212, 0.15);
  transition: all 0.3s linear;
}

#app.mobile.home .service .service-swiper .card .top {
  font-size: 0.16rem;
  height: 0.88rem;
  overflow: hidden;
  transition: all 0.3s linear;
}

#app.mobile.home .service .service-swiper .card .middle {
  height: 2rem;
  position: relative;
  transition: all 0.2s linear;
}

#app.mobile.home .service .service-swiper .card .middle img {
  width: 1.18rem;
  height: 1.18rem;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}

#app.mobile.home .service .service-swiper .card .middle span {
  width: 1.18rem;
  text-align: center;
  font-size: 0.24rem;
  top: 1.34rem;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear, color 0s linear;
}

#app.mobile.home .service .service-swiper .card .bottom {
  font-size: 0.18rem;
  margin-top: 0.24rem;
  color: transparent;
  height: 0;
  overflow: hidden;
  transition: all 0.25s linear;
}

#app.mobile.home .service .service-swiper .card .bottom a {
  margin-bottom: 0.16rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 0.16rem;
}

#app.mobile.home .service .service-swiper .card .bottom a:nth-child(n) {
  width: 59%;
}

#app.mobile.home .service .service-swiper .card .bottom a:nth-child(2n) {
  width: 39%;
}

#app.mobile.home .service .service-swiper .card .more {
  color: #2a82e4;
  font-size: 0.16rem;
  display: block;
  text-align: center;
}

#app.mobile.home .service .service-swiper .card.active {
  box-shadow: 0 2px 4px rgba(28, 113, 212, 0.15);
  background: linear-gradient(180deg, rgba(28, 113, 212, 1) 0%, rgba(41, 153, 227, 1) 80.56%);
}

#app.mobile.home .service .service-swiper .card.active .top {
  height: 0;
  color: transparent;
}

#app.mobile.home .service .service-swiper .card.active .middle {
  height: 1.67rem;
}

#app.mobile.home .service .service-swiper .card.active .middle img {
  left: 50%;
  transform: translateX(-50%);
}

#app.mobile.home .service .service-swiper .card.active .middle span {
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

#app.mobile.home .service .service-swiper .card.active .bottom {
  color: #fff;
  height: 1.62rem;
}

#app.mobile.home .service .service-swiper .card.active .more {
  display: none;
}

#app.mobile.home .service .service-swiper .swiper-pagination {
  bottom: 0;
}

#app.mobile.home .service .service-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: transparent;
  border: 0.02rem solid #fff;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0.06rem);
}

#app.mobile.home .service .service-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

#app.mobile.home .information {
  padding-bottom: 0.6rem;
  background-size: 100%;
  background-color: #dfeafc;
}

#app.mobile.home .information .container {
  margin-top: 0.3rem;
  padding: 0 0.2rem;
}

#app.mobile.home .information .container .card {
  width: 100%;
  height: 1.26rem;
  border-radius: 0.08rem;
  padding: 0.13rem 0.2rem 0.13rem 0.3rem;
  margin-bottom: 0.2rem;
  background: rgba(255, 255, 255, 0.9);
}

#app.mobile.home .information .container .card:last-child {
  margin-bottom: 0;
}

#app.mobile.home .information .container .card:hover {
  transform: translateX(0px);
}

#app.mobile.home .information .container .card .left {
  /* width: 4.16rem; */
}
#app.mobile.home .information .container .card .right {
  width: 1.96rem;
}
#app.mobile.home .information .container .card .left a {
  font-size: 0.18rem;
}

#app.mobile.home .information .container .card .left span {
  display: block;
  font-size: 0.14rem;
  padding-left: 0.25rem;
  background-size: 0.16rem 0.16rem;
  margin-top: 0.05rem;
}

#app.mobile.home .information .container .card .right img {
  height: 1rem;
}

#app.mobile.home .core {
  padding-bottom: 0.5rem;
}

#app.mobile.home .core .container {
  margin-top: 0.3rem;
  padding: 0 0.4rem;
}

#app.mobile.home .core .container .top {
  padding-left: 0;
  padding-right: 0;
}

#app.mobile.home .core .container .top div p {
  font-size: 0.3rem;
}

#app.mobile.home .core .container .top div p strong {
  font-size: 0.48rem;
}

#app.mobile.home .core .container .top div span {
  font-size: 0.16rem;
  margin-top: 0.1rem;
}

#app.mobile.home .core .container .bottom {
  display: block;
  margin-top: 0.3rem;
  position: relative;
}

#app.mobile.home .core .container .bottom div {
  margin: 0 auto;
  width: 6rem;
  height: 1.36rem;
  border-radius: 0.08rem;
  box-shadow: 0 0.02rem 0.04rem rgba(63, 132, 235, 0.15);
  padding: 0.23rem 0.3rem;
  line-height: 0.3rem;
  font-size: 0.18rem !important;
}

.home .core .container .bottom img {
  display: none;
}

#app.mobile.home .core .container .bottom img {
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  position: absolute;
  left: 50%;
  bottom: -0.175rem;
  transform: translateX(-50%);
}