.content .products-list{
    width: 100%;
    margin-top: 30px;
}
.content .products-list ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.content .products-list li{
    width: 32%;
    margin-right: 2%;
    padding-top: 10px;
    background-color: #FFFFFF;
    cursor: pointer;
}
.content .products-list li:nth-child(3n){
    margin-right: 0;
}
.content .products-list li .item-img{
    width: 100%;
    aspect-ratio: 4 / 3; /* 1:1 的宽高比，即高度等于宽度 */
    transition: all 0.3s ease-in-out; /* 添加过渡效果 */
}
.content .products-list li .item-img img{
    width: 100%;
    height: 100%;
}
.content .products-list li .item_title{
    height: 56px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 16px;
    color: #262626;
    line-height: 28px;
    margin: 10px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.content .products-list li:hover .item_title{
    color: #15499A;
}
.content .products-list li:hover .item-img{
    transform: translateY(-10px);
}

.content .pagination{
    margin-top: 20px;
}

.content .content-content{
    width: 100%;
    margin-top: 50px;
}
.content .post_title{
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 24px;
    color: #262626;
    line-height: 36px;
    margin-bottom: 30px;
    text-align: center;
}
.content .post_content img{
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.content .post_content p,
.content .post_content span{
    text-wrap: wrap !important;
}
.content .post_content embed{
    max-width:100%!important;
}
.content-bottom{
    margin-top: 50px;
}
.content-bottom .prev,
.content-bottom .next{
    font-size: 14px;
    color: #15499A;
    line-height: 21px;
    cursor: pointer;
}
.content-bottom .prev{
    float: left;
}
.content-bottom .next{
    float: right;
}

.content .content-item{
    margin: 60px auto;
}
.content .content-item .content-item-text{
    font-size: 16px;
    color: #666666;
    line-height: 24px;
}
.content .company-profile{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content .company-profile .company-profile-left,
.content .company-profile .company-profile-right{
    width: 49%;
}
.content .company-profile .company-profile-right img{
    width: 100%;
}
.content .company-profile .company-profile-left .title{
    text-align: left;
}
.content .company-profile .company-profile-left .company-profile-left-line{
    width: 120px;
    height: 8px;
    background-color: #15499A;
    margin: 20px 0 40px;
}

.content .scale .scale-content{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .scale .scale-content img,
.content .scale .scale-content .scale-text{
    width: 49%;
}

.content .honor .content-item-text,
.content .business .content-item-text{
    margin-top: 40px;
}


.content-text{
    font-family: Arial, Arial;
    font-size: 16px;
    color: #333333;
    line-height: 33px;
}
.content-title{
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 36px;
    color: #000000;
    line-height: 28px;
    text-align: center;
    margin: 40px 0 30px;
}
.service-content img{
    width: 100%;
    margin-top: 30px;
}



@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .content .content-item{
        margin: 50px auto;
    }
    .content .content-item .content-item-text{
        font-size: 14px;
        line-height: 21px;
    }
    .content .honor .content-item-text, .content .business .content-item-text{
        margin-top: 30px;
    }
    .content .products-list li .item_title{
        font-size: 14px;
        line-height: 21px;
        height: 42px;
    }
    .content .post_title{
        font-size: 22px;
    }
}
@media only screen and (max-width: 1000px) {
    .content .content-item{
        margin: 40px auto;
    }
    .content .content-item .content-item-text{
        font-size: 12px;
        line-height: 18px;
    }
    .content .honor .content-item-text, .content .business .content-item-text{
        margin-top: 20px;
    }
    .content .products-list li .item_title{
        font-size: 14px;
        line-height: 21px;
        height: 42px;
    }
    .content .post_title{
        font-size: 20px;
    }
}


