.swiper {
    width: 100%;
}
.swiperBao{
    position: relative;
    margin-top: 50px;
}
.swiper-button-next, .swiper-button-prev{
    background: #fff;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    --swiper-navigation-size: 30px;
}
.swiper-pagination {
    bottom: -30px !important;
}
.swiper-button-next{
    right: -80px;
}
.swiper-button-prev{
    left: -80px;
}
.swiper-slide {
    min-height: 200px;
    text-align: center;
    font-size: 18px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.home-intro-data {
    margin: 50px 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    padding: 30px 0;
}

.home-intro-data .home-intro-data-item {
    display: flex;
    align-items: center;
}
    
.home-intro-data .home-intro-data-item img {
    width: 54px;
    height: 54px;
    display: block;
    margin: 0 10px;
}
    
.home-intro-data .home-intro-data-item .home-intro-data-textbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    
.home-intro-data .home-intro-data-item .home-intro-data-textbox p {
    margin-bottom: 0;
}
    
.home-intro-data .home-intro-data-item .home-intro-data-textbox .home-intro-data-number {
    font-size: 28px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #006EDC;
}
    
.home-intro-data .home-intro-data-item .home-intro-data-textbox .home-intro-data-text {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}

/* Legal */
.legal-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0 0 120px 0;
    overflow: hidden;
    background: #F8F9FA;
}

/* Finance */
.finance-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 109px 0;
    overflow: hidden;
}
.finance-section .finance-item{
    list-style: none;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}
.finance-section .finance-item .finance-list{
    height: 520px;
    padding: 30px 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 3px 12px 0px rgb(0 110 220 / 8%);
    transition: 0.5s;
    margin-bottom: 20px;
}
.finance-section .finance-item .finance-list:hover {
    transform: scale(1.1); 
}
.finance-section .finance-item .finance-item-img{
    display: block;
    text-align: center;
    padding-top: 10px;
}
.finance-section .finance-item .finance-item-img img{
    width: 30%;
}
.finance-section .finance-item .finance-item-title{
    text-align: center;
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
    margin: 28px 0 22px;
}
.finance-section .finance-item .finance-item-subtitle p{
    text-align: center;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    cursor: pointer;
    margin-bottom: 8px;
}

/* Case */
.case-section{
    position: relative;
    padding: 109px 0;
    overflow: hidden;
    background: #F8F9FA;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.case-section .case-item{
    background: #FFF;
    box-shadow: 0px 3px 12px 0px rgb(0 110 220 / 8%);
    margin-right: 16px;
}
.case-section .case-item .case-img{
    display: block;
}
.case-section .case-item .case-img img{
    width: 100%;
}
.case-section .case-item .case-title{
    display: block;
    text-align: left;
    padding: 10px 10px 0 10px;
    font-size: 18px;
    font-weight: 500;
}
.case-section .case-item .case-head{
    display: flex;
    margin: 10px;
    font-size: 12px;
    text-align: left;
}
.case-section .case-item .case-head .case-head-intro{
    margin-left: 10px;
}
.case-section .case-item .case-head .case-head-intro span{
    font-size: 16px;
    font-weight: 500;
}
.case-section .case-item .case-head .case-head-intro .case-head-yw{
    margin: 8px 0;color:#666;
}

/* Customer */
.customer-section{
    position: relative;
    padding: 109px 0;
    overflow: hidden;
    background: #FFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.customer-section .customer-lists {
    margin-top: 30px;
    display: flex;
    animation: baochong 8s linear infinite;
}
.customer-section .customer-lists .images{
    display: inline-block;
    margin: 0 5px;
    padding: 10px;
    border: 1px solid #e5e5e5;
;
}
.customer-section .customer-lists .images img{
    height: 60px;
}
@keyframes baochong {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 850px){
    .finance-section .finance-item{display: block;}
    .home-intro-data .home-intro-data-item{margin: 5px 0;}
    .home-intro-data .home-intro-data-item .home-intro-data-textbox .home-intro-data-number{font-size: 18px;}
    .home-intro-data .home-intro-data-item .home-intro-data-textbox .home-intro-data-text{font-size: 14px;}
    .finance-section .finance-item .finance-list{height: auto;}
}