.yn-ct-plate-ftl-v21 .content-box {
    width: 100%;
    aspect-ratio: 1/0.6;
}

.yn-ct-plate-ftl-v21 .img-box {
    width: 100%;
    height: 100%;
    border-radius: 10px;  
}

.yn-ct-plate-ftl-v21 .img-box img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all 1s ease;
}

.yn-ct-plate-ftl-v21 .img-box:hover img {
    transform: scale(1.1);
}

.yn-ct-plate-ftl-v21 .title {
    width: 100%;
    color: var(--black);
    font-family: "Modern Era";
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
}

.yn-ct-plate-ftl-v21 .sub-title{
    width: 100%;
    color: var(--black);
    font-family: "Modern Era";
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
}

/* 移动端样式 */
@media (max-width: 767px) {
    /* 缩小移动端文字大小，避免溢出 */
    .yn-ct-plate-ftl-v21 .title {
        font-size: 16px;
        line-height: 20px;
    }
    .yn-ct-plate-ftl-v21 .sub-title {
        font-size: 14px;
        line-height: 16px;
    }
    /* 移动端图片容器圆角稍小，适配小屏 */
    .yn-ct-plate-ftl-v21 .img-box,
    .yn-ct-plate-ftl-v21 .img-box img {
        border-radius: 8px;
    }
}