
.yn_plate .ct-plate-ftl-v7-city-right {
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
    font-family: "Times New Roman", serif;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.ct-plate-ftl-v7-city-right .plate-wrap {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: flex-start;
}
.ct-plate-ftl-v7-city-right .plate-content {
    flex: 0 0 40%;
    max-width: 40%;
    padding-top: 33px;
    order: 2;
    text-align: right; 
}
.ct-plate-ftl-v7-city-right .conrent-name h2 {
    font-size: 42px;
    font-weight: 700;
    color: #00334e;
    margin: 0 0 15px 0;
    line-height: 1.1;
}
.ct-plate-ftl-v7-city-right .conrent-name h2 span {
    display: block;
}
.ct-plate-ftl-v7-city-right .conrent-name h2 small {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
    display: block;
    font-style: normal;
}
.ct-plate-ftl-v7-city-right .content h6 {
    font-size: 23px;
    line-height: 1.6;
    color: #00334e;
    margin: 0 0 30px 0;
    font-weight: 550;
    font-family: "Times New Roman", serif;
}
.ct-plate-ftl-v7-city-right .content-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}
.ct-plate-ftl-v7-city-right .content-btn p {
    margin: 0;
    font-size: 23px;
    color: #666;
    line-height: 1.4;
    font-family: "Times New Roman", serif;
}
.ct-plate-ftl-v7-city-right .content-btn p:first-child {
    color: #666;
    font-weight: 500;
}
.ct-plate-ftl-v7-city-right .content-btn p span {
    display: inline-block;
}
.ct-plate-ftl-v7-city-right .plate-img {
    flex: 0 0 60%;
    max-width: 60%;
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ct-plate-ftl-v7-city-right .plate-img .img-item {
    display: block;
    transition: transform 0.5s ease;
    transform-origin: center center;
}
.ct-plate-ftl-v7-city-right .plate-img .img-item:hover {
    transform: scale(1.03);
}
.ct-plate-ftl-v7-city-right .plate-img .img-item img {
    width: 100%;
    height: 250px;
    display: block;
    border: none;
    object-fit: cover;
}
.ct-plate-ftl-v7-city-right .plate-img .top-img {
    width: 100%;
}
.ct-plate-ftl-v7-city-right .plate-img .bottom-imgs {
    display: flex;
    width: 100%;
    gap: 8px;
}
.ct-plate-ftl-v7-city-right .plate-img .bottom-imgs .img-item {
    flex: 1;
}

/* -------------------------- 移动端样式（无!important，靠选择器优先级生效） -------------------------- */
@media (max-width: 768px) {
    /* 1. 提升选择器特异性：叠加父级类名，优先级高于组件默认样式 */
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap,
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap.container {
        float: none;
        position: relative;
        border: none;
        border-collapse: separate;
        overflow: hidden;
        min-height: auto;
        box-sizing: border-box;
        /* 核心布局：垂直堆叠 */
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        align-items: center;
    }

    /* 2. 文字/图片区域：高特异性选择器，覆盖默认样式 */
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap .plate-img,
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap .plate-content {
        flex: none; /* 修正中文分号为英文分号 */
        padding-right: 10px;
        padding-left: 10px;
        max-width: 100%;
        width: 100%;
        order: initial;
        text-align: left;
        padding-top: 0;
    }

    /* 3. 图片自适应：高特异性选择器 */
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap .plate-img .img-item img {
        height: auto; /* 取消固定高度 */
        max-height: 200px; /* 限制最大高度 */
        object-fit: cover;
    }

    /* 4. 按钮区域左对齐 */
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap .plate-content .content-btn {
        align-items: flex-start;
        margin-bottom: 10px;
    }

    /* 5. 底部图片垂直堆叠 */
    .yn_plate.ct-plate-ftl-v7-city-right .plate-wrap .plate-img .bottom-imgs {
        flex-direction: column;
        gap: 10px;
    }
}