* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    display: flex;
    max-width: 1260px;
    margin: 0px auto 40px auto;
    gap: 20px;
}
.container_bottom {
    display: flex;
    max-width: 1260px;
    margin: 0px auto 0px auto;
    gap: 20px;
}

/* 左侧大卡片样式 */
.large-card {
    width: 236px;
    height: 580px;
    background-color: #fff;
    overflow: hidden;
    
}

.large-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右侧小卡片区域 */
.small-cards {
    flex: 1;
    display: grid;
    max-height: 575px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

/* 小卡片样式 */
.card {
    width: 236px;
    position: relative;
}

.card-base {
    width: 100%;
    height: 280px;
    background-color: #fff;
    position: relative;
}

.card-image {
    width: 100%;
    height: 236px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: gainsboro;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44px; /* 280-236=44px */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    z-index: 1;
}
       /* 配景图片样式 */

        .background-container_48 {
            background-image: url('/assets/zhendong/2025/cpzx/img/mb1.png');
            background-size: cover;
            background-position: center;
        }
        .background-container_52 {
            background-image: url('/assets/zhendong/2025/cpzx/img/mb2.png');
            background-size: cover;
            background-position: center;
        }
        .background-container_49 {
            background-image: url('/assets/zhendong/2025/cpzx/img/mb3.png');
            background-size: cover;
            background-position: center;
        }
        .background-container_51 {
            background-image: url('/assets/zhendong/2025/cpzx/img/mb4.png');
            background-size: cover;
            background-position: center;
        }
        .background-container_50 {
            background-image: url('/assets/zhendong/2025/cpzx/img/mb5.png');
            background-size: cover;
            background-position: center;
        }