.xhs_content{
    background: linear-gradient( 331deg, #FAFBFF 0%, #F0F3FF 100%);
}
.pm,.xhs_serve,.alzs,.our_promise_content{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    h3{
        font-family: PingFangSC, PingFang SC;
        font-weight: 600;
        font-size: 36px;
        color: #20262C;
        text-align: center;
        padding: 100px 0;
    }
}
.pm_content{
    display: flex;
}
.pm_content_left{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.pm_card_1{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #FFFFFF;
    box-shadow: 0px 0px 18px 11px rgba(203,204,231,0.1);
    border-radius: 10px;
    padding: 20px 40px;
    gap: 20px;
    p{
        font-family: PingFangSC, PingFang SC;
        font-size: 20px;
        color: #20262C;
    }
}
.pm_card_hover:hover{
    cursor: pointer;
    background: linear-gradient( 315deg, #665EFF 0%, #4195FF 100%);
    box-shadow: 2px 2px 17px 5px rgba(36,33,100,0.23);
    border-radius: 10px;
    img{
        filter: brightness(0) invert(1);
    }
    p{
        color: #fff;
    }
}
.pm_content_right{
    flex: 1;
}
.timeline_card{
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 35px 0;
    p{
        font-family: PingFangSC, PingFang SC;
        font-weight: 400;
        font-size: 20px;
        color: #20262C;
    }
}
.pm_content_right_card{
    background-image: url('img/right_card_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 80px;
    padding-top: 70px;
    padding-bottom: 38px;
    h4{
        font-family: PingFangSC, PingFang SC;
        font-weight: 500;
        font-size: 28px;
        color: #3C4CFF;
    }
}
.xhs_serve_card{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.xhs_serve_card_1{
    width: 33.3%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 18px 11px rgba(203,204,231,0.1);
    border-radius: 16px;
    transition: box-shadow 0.3s ease;
    padding: 30px;
    img{
        width: 70%;
        height: auto;
    }
    h2{
        font-family: PingFangSC, PingFang SC;
        font-weight: 600;
        font-size: 24px;
        color: #3C32FF;
        padding: 35px 0;
    }
    p{
        font-family: PingFangSC, PingFang SC;
        font-weight: 400;
        font-size: 16px;
        color: #20262C;
        line-height: 25px;
    }
}
/* 添加序号样式 */
.card-number {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #3498FF 0%, #3C37FF 100%);
    border-radius: 16px 0px 16px 0px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 40px;
}
.xhs_serve_card1_hover:hover{
    cursor: pointer;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
}

#ljxq{
    display: block;
    text-align: center;
    padding: 50px 0;
}
.alzs_wrapper {
    position: relative;
    margin-top: 270px;
}

.alzs-bg {
    width: 100%;
    display: block;
}

.alzs_content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.alzs{
    padding-bottom: 100px;
}
.our_promise{
    background-image: url('img/beijing1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 60px;
}
.promise_card{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.promise_card_1{
    width: 25%;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.89);
    padding: 15px;
    p{
        font-family: PingFangSC, PingFang SC;
        font-weight: 500;
        font-size: 24px;
        color: #3C32FF;
    }
}
.promise_card_1_hover:hover{
    cursor: pointer;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
}





/* 移动端 适配 */

@media (max-width: 768px) {
    .xhs_content,.our_promise{
        padding: 15px;
    }
    .pm_content{
        flex-wrap: wrap;
    }
    .pm_card_1{
        padding: 20px 112px;
    }
    .pm_content_right_card{
        padding: 0 35px;
        padding-top: 50px;
        padding-bottom: 50px;
        #right-title{
            font-size: 22px;
        }
        #right-subtitle{
               font-size: 14px;
        }
        #right-content{
            font-size: 18px;
        }
    }
    .xhs_serve_card{
        flex-wrap: wrap;
    }
    .xhs_serve_card_1{
        width: 100%;
        h2{
            font-size: 22px;
        }
    }
    .alzs_content{
        position: inherit;
        flex-wrap: wrap;
        gap: 20px;
    }
    .alzs-bg{
        display: none;
    }
    .alzs_wrapper{
        margin-top: 0;
    }
    .promise_card_1{
       width: 100%;
	  img{
        width: 35%;
       }
       p{
        font-size: 22px;
       }
    }
    .promise_card{
        gap: 20px;
    }
    .pm,.xhs_serve,.alzs,.our_promise_content{

        h3{
            font-family: PingFangSC, PingFang SC;
            font-weight: 600;
            font-size: 25px;
            color: #20262C;
            text-align: center;
            padding: 50px 0;
        }
    }
    
}
