/* 全局重置 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body{
    padding: 0px 0px;
}
/* 最外层唯一DIV容器 */
.newKsfw_img_card_wrap{
    width: 260px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
/* 清除ul默认列表圆点、内边距 */
.newKsfw_ul_reset{
    list-style: none;
}
/* 顶部大图ul列表容器 */
.newKsfw_top_ul{
    width: 100%;
}
/* 顶部大图li：无圆角、无阴影、无边框 */
.newKsfw_top_li{
    width: 100%;
    background: transparent;
    overflow: hidden;
    transition: all 0.2s ease;
}
/* 顶部大图悬浮上浮效果，和小卡片统一 */
.newKsfw_top_li:hover{
    transform: translateY(-4px);
}
.newKsfw_top_li img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* 下方6张卡片网格ul容器 一行2列 */
.newKsfw_grid_ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
/* 网格li：无圆角、无阴影、无边框 */
.newKsfw_grid_li{
    width: 100%;
    background: transparent;
    overflow: hidden;
    transition: all 0.2s ease;
}
/* 小卡片悬浮上浮 */
.newKsfw_grid_li:hover{
    transform: translateY(-4px);
}
.newKsfw_grid_li img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* 移动端适配 */
@media (max-width:320px){
    .newKsfw_img_card_wrap{
        width: 240px;
    }
}