.intro,
.case,
.honor,
.news,
.service,
.advantage,
.partner {
    padding: 30px 0;
}


.intro-detail{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
}

.intro-text{
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
}

.intro-img{
    width: 60%;
}

.intro-img img{
    border-radius: 5px;
    width: 100%;
}

.intro-text h3{
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: #083090;
}

.intro-text h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #083090;
}

.intro-text p{
    line-height: 35px;
}

@media(max-width:767px) {
    .intro-detail{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .intro-text,
    .intro-img{
        width: 100%;
    }
}


.case{background-color: #eee;}

.section-title {
    color: #397ac0;
    font-weight: 500;
    font-size: 38px;
    line-height: 50px;
    padding-bottom: 40px;
    text-align: center;
    text-shadow: 3px 3px 5px #397ac0;
}


.case .case-list {
    display: flex;
    flex-wrap: wrap; 
}


.case .case-list .case-item {
    transition: width 1.5s ease; /* 添加过渡效果 */
    width: 15%;
    margin-right: 2%;
    display: block;
    overflow: hidden;
    /* border-radius: 10px; */
    position: relative;
}

.case-list .case-item .item-title{
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    font-size: 16px;
    z-index: 9999;
    background-color: #000;
    opacity: 0.5;
    justify-content: space-between;
    align-items: center;
}


.case-list .case-item .item-title a {
    display: block;
    white-space: wrap;
    word-wrap: break-word;
    overflow: hidden;
    width: 100%;
    text-align: center;
    opacity: 1;
    color: #fff;
}



.case .case-list .case-item.on{
    transition: width 1.5s ease; /* 添加过渡效果 */
    width: 49%;
}

.case-list .case-item.on .item-title{
    display: none;
}

.case .case-list .case-item:last-child {
    margin-right: 0 !important;
}

.case-list .case-item .item-img{
    overflow: hidden;
    /* border-radius: 10px; */
    height: 500px;
}

.case-list .case-item.on .item-img{
    width: 100%;
}

.case-list .case-item .item-img a{
    display: block;
    /* border-radius: 10px; */
    width: 100%;
    height: 100%;
}


.case-list .case-item .item-img img{
    /* border-radius: 10px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .case-list .case-item.on .item-img a:hover img{transform:scale(1.05);}  */

@media(max-width:767px) {
    .case-item {
        width: 100% !important;
        margin: 10px 0;
    }

    .case-list .case-item .item-img{
        height: 100%;
        width: 100%;
    }

    .case-list .case-item .item-title{
        display: none;
    }
}



.advantage {
    /* background: url(/uploads/photo/images/advantage.webp) ; */
    background-size: cover;
    color: #fff;
    background-color: #083090;
}

.advantage-list {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}


.advantage-list .advantage-item {
    width: 20%;
    display: block;
    align-items: center;

}

.advantage-item .item-number,
.advantage-item .item-content {
    display: flex;
    align-items: center;
    justify-content: center;
}


.advantage-item .item-number .odometer,
.advantage-item .item-number .percent,
.advantage-item .item-number .text {
    font-size: 45px;
    font-weight: 500;
    line-height: 1;
    padding-right: 3px;
    overflow: hidden;
}

.advantage-item .item-number .increment {
    font-size: 30px;
    font-weight: 500;
    margin-top: -25px;
    margin-left: 6px;
}

.advantage-item .item-content {
    margin-top: 10px;
}

.advantage-item .item-content .text {
    font-size: 18px;
}

@media(max-width:767px) {
    .advantage-list {
        padding: 0;
    }
    .advantage-item {
        width: 100% !important;
        padding: 30px 0;
    }
}

.honor {
    position: relative;
    background-color: ;
}

.honor-content {
    position: relative;
    z-index: 8;
}

.honor-swiper {
    overflow: hidden;
}

.honor-outer {
    width: 10000%;
}

.honor-item {
    float: left;
    width: .2%;
    padding: 0 10px; /* 添加左右间距 */
    box-sizing: border-box;
}

.honor-item img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* 添加圆角 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 添加阴影 */
}

@media(max-width:1200px) {
    .honor-content {
        margin-top: 18px;
    }
}

@media(max-width:992px) {
    .honor-item {
        width: .33%;
        padding: 0 8px; /* 中等屏幕稍小间距 */
    }
}

@media(max-width:767px) {
    .honor-item {
        width: .5%;
        padding: 0 5px; /* 小屏幕更小间距 */
    }
}

/* 沪友奖牌 */
.medal {
    position: relative;
    background-color: ;
}

.medal-content {
    position: relative;
    z-index: 8;
}

.medal-swiper {
    overflow: hidden;
}

.medal-outer {
    width: 10000%;
}

.medal-item {
    float: left;
    width: .2%;
    padding: 0 10px; /* 添加左右间距 */
    box-sizing: border-box;
}

.medal-item img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* 添加圆角 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 添加阴影 */
}

@media(max-width:1200px) {
    .medal-content {
        margin-top: 18px;
    }
}

@media(max-width:992px) {
    .medal-item {
        width: .33%;
        padding: 0 8px; /* 中等屏幕稍小间距 */
    }
}

@media(max-width:767px) {
    .medal-item {
        width: .5%;
        padding: 0 5px; /* 小屏幕更小间距 */
    }
}


.service-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.service_c5map {
    width: 930px;
    position: relative;
}

.service_c5lx {
    width: 35%;
    padding-top: 20px;
}

.service_c5lx dl {
    border-bottom: 1px solid #E7E7E7;
    padding: 26px 0px 26px 55px;
}

.service_c5lx dl dt img {
    width: 40px;
    height: 40px;
    position: absolute;
    left: -55px;
    top: 0px;
}

.service_c5lx dl dt {
    position: relative;
    font: 24px / 38px syb;
    margin-bottom: 10px;
}

.service_c5lx dl dd {
    font-size: 16px;
    line-height: 28px;
    color: #888888;
    margin-bottom: 10px;
    text-align: justify;
}

.service_c5line {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}


.service_c5map i{ position:absolute; background-size:930px auto!important;}
.service_c5line i:nth-child(1){ background: url(/uploads/photo/images/maps/service_map0.png) no-repeat left top; left: 0px; top: 0px; right: 0px; bottom: 0px;}

@keyframes abthani{
	0% {height:0;}
	90% {height:100%; opacity:1;}	
	100% { opacity:0;}	
}

@keyframes abtvani{
	0% {width:0;}
	90% {width:100%; opacity:1;}
	100% { opacity:0;}
}

.service_c5line i:nth-child(2){background: url(/uploads/photo/images/maps/service_map1.png) no-repeat right top; right:0; top:0; bottom:0; animation:abtvani 7s linear infinite;}
.service_c5line i:nth-child(3){background: url(/uploads/photo/images/maps/service_map2.png) no-repeat right top; right:0; top:0; bottom:0; animation:abtvani 9s linear infinite;}
.service_c5line i:nth-child(4){background: url(/uploads/photo/images/maps/service_map3.png) no-repeat right top; right:0; top:0; bottom:0; animation:abtvani 5s linear infinite;}
.service_c5line i:nth-child(5){background: url(/uploads/photo/images/maps/service_map4.png) no-repeat right top; right:0; top:0; bottom:0; animation:abtvani 6s linear infinite;}
.service_c5line i:nth-child(6){background: url(/uploads/photo/images/maps/service_map5.png) no-repeat right top; right:0; top:0; bottom:0; animation:abtvani 3s linear infinite;}
.service_c5line i:nth-child(7){background: url(/uploads/photo/images/maps/service_map6.png) no-repeat right top; right:0; top:0; bottom:0; animation:abtvani 6s linear infinite;}
.service_c5line i:nth-child(8){background: url(/uploads/photo/images/maps/service_map7.png) no-repeat left top; right:0; top:0; left:0; animation:abthani 6s linear infinite;}
.service_c5line i:nth-child(9){background: url(/uploads/photo/images/maps/service_map8.png) no-repeat left top; right:0; top:0; left:0; animation:abthani 4s linear infinite;}
.service_c5line i:nth-child(10){background: url(/uploads/photo/images/maps/service_map9.png) no-repeat left top; right:0; top:0; left:0; animation:abthani 6s linear infinite;}
.service_c5line i:nth-child(11){background: url(/uploads/photo/images/maps/service_map10.png) no-repeat left top; right:0; top:0; left:0; animation:abthani 3.5s linear infinite;}
.service_c5line i:nth-child(12){background: url(/uploads/photo/images/maps/service_map11.png) no-repeat left top; right:0; top:0; left:0; animation:abthani 7s linear infinite;}
.service_c5line i:nth-child(13){background: url(/uploads/photo/images/maps/service_map12.png) no-repeat left top; right:0; top:0; left:0; animation:abthani 9s linear infinite;}
.service_c5line i:nth-child(14){background: url(/uploads/photo/images/maps/service_map13.png) no-repeat left top; left:0; top:0; bottom:0; animation:abtvani 6s linear infinite;}

@media (max-width: 1799px) {
    .service_c5lx dl dd {
        font-size: 14px;
        line-height: 24px;
    }

    .service_c5lx dl{padding-top:12px; padding-bottom:5px;}
    .service_c5lx dl dt{font-size:20px;}
    .service_c5lx dl dd{font-size:14px; line-height:24px;}
    .service_c5map{width:700px;}
    .service_c5map i{ background-size:700px auto!important;}
    .service_c5map{height:503px; margin-top:20px;}
}

@media (max-width:993px){
.service-content {display:block;}
.service_c5map{margin-left:auto; margin-right:auto;}
.service_c5lx{ width:100%;}
}

@media (max-width:767px){
.service_c5map {width:300px;}
.service_c5map i{ background-size:300px auto!important;}
.service_c5map {height:220px; margin-top:20px;}
.service_c5lx dl dt{font-size:18px;}
}


.news {
    color: #fff;
    background-color: ;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.news-list .news-item{
    width: 25%;
    padding: 15px;
}


.news-list .news-item dl dt{
    text-align: center;
}

@media(max-width:992px) {
    .news-item {
        width: 50% !important;
    }
}

@media(max-width:767px) {
    .news-item {
        width: 100% !important;
    }
}



/*
.partner-content {
    position: relative;
    z-index: 8;
}

.partner-swiper {
    overflow: hidden;
}

.partner-outer {
    width: 10000%;
}

.partner-item {
    float: left;
    height: 60px;
    margin: 20px;
}
*/

/* .partners{
    display: flex;
    padding: 0 0.5%;
}

.partner-item {
    width: 11%;
    padding: 5px 10px;
}

.partner-item dl dd {
    display: flex;
    flex-wrap: wrap;
}

.partner-item dl dd span{
    width: 100%;
    text-align: center;
    line-height: 40px;
} */


.partners{
    display: flex;
    flex-wrap: wrap;
}

.partner-item {
    width: 10%;
    padding: 5px 10px;
}

.partner-item dl dd {
    display: flex;
    flex-wrap: wrap;
}

.partner-item dl dd span{
    width: 100%;
    text-align: center;
    line-height: 40px;
}


@media(max-width:992px) {
    .partner-item {
        width: 25%;
        padding: 5px 5px;
    }
}
