.productCenter5 {
    position: relative;
}

.productCenter5 * {
    box-sizing: border-box;
}

.productCenter5Bg {
    /* PHP - 背景 */
    height: 440px;
    position: absolute;
    width: 100%;
    object-fit: fill;
}

.productCenter5Content {
    /* PHP - 容器 */
    max-width: 1200px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -600px;
    top: 140px;
    width: 100%;
}

.productCenter5Top {
    /* PHP - 顶部 */
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}

.productCenter5Top .title {
    /* PHP - 顶部标题 */
    font-size: 28px;
    line-height: 1.5;
}

.productCenter5Top .enTitle {
    /* PHP - 顶部标题2 */
    line-height: 1.5;
    font-size: 34px;
    font-weight: bold;
}

.productCenter5Top .line {
    line-height: 1.5;
}

.productCenter5List {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}

.productCenter5List:after {
    content: "";
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

/* 核心修改：4列均分计算 24.25% 每格，右间距1%，3个间隔总和3%
24.25 * 4 + 1 * 3 = 100% 刚好填满一行 */
.productCenter5List .productCenter5Item {
    /* PHP - 数据项 */
    width: 24.25%;
    display: inline-block;
    box-shadow: 0 0px 10px rgb(0 0 0 / 16%);
    font-size: 16px;
    box-sizing: border-box;
    margin-right: 1%;
    background: #fff;
    margin-bottom: 1%;
}

.productCenter5List .productCenter5Item:nth-child(4n) {
    margin-right: 0;
}

.productCenter5List .productCenter5Item:hover a .pro-img img {
    transform: scale(1.1);
}

.productCenter5List .productCenter5Item:hover a .pro-tit {
    /* PHP - 数据项经过时标题 */
    background: #10aa9c;
    color: #fff;
}

.productCenter5List .productCenter5Item a {
    display: block;
    text-decoration: none;
}

.productCenter5List .productCenter5Item a .pro-img {
    /* PHP - 数据项图片 */
    overflow: hidden;
    height: 270px;
    width: 100%;
}

.productCenter5List .productCenter5Item a .pro-img img {
    transition: all 0.6s;
    /* 等比例铺满容器，超出裁切，不拉伸 */
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    /* 删除原来偏移、缩放多余样式 */
    max-width: unset;
    margin-left: 0;
}

.productCenter5List .productCenter5Item a .pro-tit {
    /* PHP - 数据项标题 */
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
}

.productCenter5List .productCenter5Item a .pro-tit .content {
    /* PHP - 数据项标题 */
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}