.productCenter220429 {
    max-width: 1300px;
    margin: 0 auto;
}
.productCenter220429 * {
    box-sizing: border-box;
}
.productCenter220429 ul:after {
    content: "";
    height: 0;
    display: block;
    clear: both;
    visibility: hidden;
}
.productCenter220429 ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.productCenter220429 ul li {
    width: 315px;
    overflow: hidden;
    padding: 14px;
    background-color: #fff;
    /* 卡片圆角 + 阴影 */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}
/* hover悬浮加深阴影效果 */
.productCenter220429 ul li:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.productCenter220429 ul li:nth-child(3n) {
    margin-right: 0;
}
.productCenter220429 ul li a {
    text-decoration: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* 删除图片容器圆角 */
.productCenter220429 ul li a .proImg {
    overflow: hidden;
}
.productCenter220429 ul li a .proImg img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: none;
    display: block;
    transition: all 0.6s;
    object-fit: contain;
}
.productCenter220429 ul li a .content {
    background: #ffffff;
    font-size: 20px;
    height: 70px;
    width: 100%;
    margin-top: 10px;
}
.productCenter220429 ul li a .content .dec,
.productCenter220429 ul li a .content .dec2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #333;
}
.productCenter220429 ul li a .content .dec2 {
    font-size: 14px;
    color: grey;
}
.productCenter220429 ul li a .content .dec3 {
    font-size: medium;
    color: #393939;
    margin-top: 5px;
}
