/* 拉卡拉产品中心栏目卡片样式 */
.list-wrap{padding:40px 0;}
.titlebox{text-align:center;margin-bottom:40px;}
.article-title{font-size:32px;color:#0056b3;margin-bottom:12px;}
.intro-text{font-size:16px;color:#666;max-width:800px;margin:0 auto;line-height:1.8;}
/* 产品卡片网格容器 */
.pro-card-box{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
}
/* 单张产品卡片 */
.list-item{
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 12px rgba(0,86,179,0.1);
    overflow:hidden;
    transition: all 0.3s ease;
}
.list-item:hover{
    transform: translateY(-6px);
    box-shadow:0 8px 24px rgba(0,86,179,0.18);
}
/* 产品图片区域 */
.pro-img{
    width:100%;
    height:220px;
    overflow:hidden;
    background:#f5f8ff;
}
.pro-img a{display:block;width:100%;height:100%;}
.pro-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
    display:block;
}
.list-item:hover .pro-img img{
    transform: scale(1.06);
}
/* 卡片文字内容 */
.list-info{padding:20px;}
.list-info h3{
    font-size:18px;
    margin:0 0 10px;
    line-height:1.4;
}
.list-info h3 a{color:#222;text-decoration:none;}
.list-info h3 a:hover{color:#0056b3;}
.time{font-size:13px;color:#999;margin-bottom:10px;}
.desc{
    font-size:14px;color:#666;line-height:1.7;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:72px;
}
/* 分页 */
.pagelist{margin-top:50px;text-align:center;}
/* 移动端适配 */
@media(max-width:768px){
    .pro-card-box{grid-template-columns:1fr;gap:20px;}
    .article-title{font-size:24px;}
    .pro-img{height:180px;}
    .list-wrap{padding:20px 0;}
}