.quailty_item {
    display: inline-flex;
    margin-top: 30px;
    padding-bottom: 7%;
    position: relative;
}

.quailty_item .title {
    width: 16%;
    float: left;
}

.quailty_item .title h5 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.quailty_item .title h6 {
    margin-top: 0;
    font-size: 18px;
    color: #c9c9c9;
    line-height: 2;
    margin-bottom: 20px;
    padding: 0;
}

.quailty_item .title .line {
    width: 1px;
    position: absolute;
    height: 76%;
    left: 3%;
    background: #dcdddd;
    top: 100px;
}

.quailty_item .info {
    width: 56%;
    padding-left: 1%;
    float: left;
    font-size: 16px;
    color: #666666;
    line-height: 2;
    box-sizing: border-box;
    padding-right: 13%;
    overflow: hidden;
}

.page_wap_banner {
    display: none;
}

.quailty_item .img {
    width: 28%;
    float: left;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s;
}

.quailty_item .img img {
    width: 100%;
    transition: all 0.5s;
}

.quailty_item .img:hover {
    box-shadow: 0 0 20px rgb(0 0 0 / 50%);
}

.quailty_item .img:hover img {
    transform: scale(1.1);
}

img {
    vertical-align: middle;
}

/*最大屏幕分辨率为1280px*/
@media screen and (max-width:1280px){

}
/*最小屏幕分辨率为1280px且最大为1440px*/
@media (min-width: 1280px) and (max-width:1440px){
    .quailty_item .title h5 {
        margin-bottom: 0;
        font-size: 20px;
    }

    .quailty_item .title h6 {
        font-size: 16px;
    }

    .quailty_item .info {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px){

    .quailty_item {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 1rem;
        margin-top: 0;

    }

    .quailty_item .title {
        width: 100%;
    }

    .quailty_item .title h6 {
        font-size: 1rem;
        font-style: normal;
        font-weight: 500;
        font-family: "Arial";
        line-height: 2;
        margin-bottom: 1rem;
    }

    .quailty_item .title .line {
        display: none;
    }

    .quailty_item .info {
        width: 100%;
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
    }

    .quailty_item .info .page_wap_banner {
        margin-bottom: 1rem;
    }

    .page_wap_banner {
        display: block;
    }

    .page_wap_banner img {
        width: 100%;
    }

    .quailty_item .img {
        display: none;
    }
}