.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    width: 100%;
    height: 100%;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li a {
    width: 100%;
    height: 100%;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .li-box {
    width: 100%;
    height: 100%;
    position: relative;
    left: 0px;
    top: 0px;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* 文字容器 - 关键：在图片上面 */
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .text-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* 在遮罩层上面 */
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    pointer-events: none;
    /* 不阻止鼠标事件 */
}

/* 悬停效果 */
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .li-box:hover .img-box img {
    transform: scale(1.1);
}

/* 悬停时增强遮罩层 */
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .li-box:hover .img-box::after {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.0) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

/* 悬停时文字效果 */
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .li-box:hover .text-name {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 平滑过渡 */
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box::after,
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .text-name,
.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box img {
    transition: all 0.5s ease;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li {

    /* 前两个li：50%宽度，第一行 */
    &:nth-child(1),
    &:nth-child(2) {
        width: calc(50% - (32px * 1) /2);
        /* 50%宽度减去一半间距 */
        height: 340px;
    }

    /* 后三个li：33.33%宽度，第二行 */
    &:nth-child(3),
    &:nth-child(4),
    &:nth-child(5) {
        width: calc(33.333% - (32px * 2)/3);
        /* 33.33%宽度减去调整后的间距 */
        height: 340px;
        /* 与前一行相同高度 */
    }
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 2px;

    transition: all 0.5s ease;
    display: block;
}

.yn-ct-plate-ftl-v1 .yn-ct-plate-btn-box {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

    margin: 20px 0 10px 0;
}

/* 移动端样式 */
@media (max-width: 767px) {
    .yn-ct-plate-ftl-v1 .yn-ct-plate-body ul {
        gap: 15px;
        /* 移动端减少间距 */
    }

    .yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li {
        width: 100% !important;
        height: 160px !important;
    }

    .yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box {
        border-radius: 4px;
    }

    .yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .img-box img {
        height: 160px;
    }

    .yn-ct-plate-ftl-v1 .yn-ct-plate-body ul li .text-name {
        font-size: 18px;
    }
}