

.choose-section{
    background:#fff;
    padding:50px 5%;
    font-family:Arial,Helvetica,sans-serif;
}


.choose-title{
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:#111;
    position:relative;
    margin-bottom:45px;
}


.choose-title:after{
    content:"";
    width:40px;
    height:3px;
    background:#ff7a00;
    display:block;
    margin:15px auto 0;
}



/*优势布局*/

.choose-list{

    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:35px;

}



.choose-item{

    display:flex;
    align-items:center;
    gap:15px;

}



.choose-icon img{

    width:48px;
    height:48px;
    object-fit:contain;

}



.choose-text h3{

    font-size:16px;
    color:#111;
    margin:0 0 6px;
    font-weight:700;

}



.choose-text p{

    margin:0;
    color:#666;
    font-size:13px;
    line-height:1.5;

}




@media(max-width:900px){

.choose-list{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.choose-list{

grid-template-columns:1fr;

}


.choose-item{

justify-content:center;

}

}


