.Box1 {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 25%;
    background-image: url('../img/pageBanner/product.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width:1200px){
    .Box1 {
        padding-top: 25%;
    }
}
@media screen and (max-width:991px){
    .Box1 {
        padding-top: 270px;
    }
}
.Box2{
    margin-top: 50px;
}
.Box2 .row{
    margin: 0 auto;
}

.Box2 .cpBox{
    display: flex;
    justify-content: space-between;
    height: 175px;
    margin-bottom: 20px;
}
@media screen and (max-width:576px) {
    .Box2 .cpBox{
        height: fit-content;
    }
}
.Box2 .cpBox:not(:last-child){
    border-bottom: 1px solid #cccccc79;
    padding-bottom: 20px;
}
.Box2 .cpBox .imgs{
    width: 20%;
    /* height: 100%; */
    overflow: hidden;
    /* background-color: red; */
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
} 
.Box2 .cpBox .imgs img{
    width: 90%;
    height: 90%;
    object-fit: contain; 
    position: absolute;
    transition: 0.3s;
}
.Box2 .cpBox .imgs:hover img{
    transform: scale(1.05);
}
.Box2 .cpBox .text{
    width: 80%;
    padding-left: 20px;
    padding-bottom: 30px;
}
.Box2 .cpBox .text h5{
    color: #333;
    margin-bottom: 10px;
    transition: 0.3s;
}
.Box2 .cpBox .text h5:hover{
    color: #0793F5;
}
.Box2 .cpBox .text p,
.Box2 .cpBox .text div
{
    font-size: 14px;
    color: #222; 
    display: -webkit-box;
    -webkit-line-clamp: 3;  /* 限制行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.Box2 .cpBox .text a > div:has(.child:nth-child(5))::after {
    content: '...';
    position: relative;
    right: 10px; /* 靠右显示 */
    top: 50%;
    transform: translateY(-50%);
    background: #fff; /* 用背景覆盖后面的子元素边缘 */
    padding: 0 5px;
    color: #666;
    font-size: 16px;
  }

  /* 隐藏第5个及以后的子元素 */
  .Box2 .cpBox .text a > div:nth-child(n+8) {
    display: none;
  }

@media screen and (max-width:576px) {
    .Box2 .cpBox{
        display: block;
    }
    .Box2 .cpBox .imgs{
        box-shadow: none;
        width: auto;
        justify-content: left;
    }
    .Box2 .cpBox .imgs img{
        position: relative;
        width: auto;
        height: 170px;
        object-fit: cover;
    }
    .Box2 .cpBox .text{
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }
    .Box2 .cpBox .text p{
        -webkit-line-clamp: 4;
    }
} 


.page{
    display: flex;
    align-items: center;
    justify-content: left;
}
.page li{
    list-style-type: none;
    position: relative;
    padding: 8px 18px;
    background-color: #0A68C7;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}
.page li.thisclass{
    background-color: #0793F5;
}
.page li:hover{
    background-color: #0793F5;
}
.page li a{ 
    color: white;
}