.yn_plate.yn_plate_115_v2 {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 0;
}
.yn_plate_115_v2 .plate-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.yn_plate_115_v2 .tour-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 4px;
    transition: border-color 0.2s;
}
.yn_plate_115_v2 .tour-item-link:hover {
    background-color: #efefef;
}

.yn_plate_115_v2 .tour-item-layout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.yn_plate_115_v2 .tour-img {
    flex: 0 0 10%;
    position: relative;
    height: 0;
    padding-top: 10%;
    margin: 0 auto;
}
.yn_plate_115_v2 .tour-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    border-radius: 4px;
}

.yn_plate_115_v2 .tour-content {
    margin-bottom: 0;
    flex: 0 0 84%;
}
.yn_plate_115_v2 .tour-content h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #222;
    line-height: 1.4;
}
.yn_plate_115_v2 .tour-content .itinerary,
.yn_plate_115_v2 .tour-content .highlights {
    line-height: 1.5;
    margin: 0 0 3px;
    color: #999;
    font-size: 14px;
}
.yn_plate_115_v2 .tour-content strong {
    font-weight: 500;
    color: #FF6B00;
}

@media (max-width: 768px) {
    /* 保持横向flex布局，调整间距 */
    .yn_plate_115_v2 .tour-item-layout {
        gap: 10px;
        align-items: center; /* 可选：让图片和文字垂直居中，视觉更协调 */
    }
    /* 增大移动端图片尺寸（从10%调至20%，保持正方形比例） */
    .yn_plate_115_v2 .tour-img {
        flex: 0 0 20%;
        padding-top: 20%;
    }
    /* 适配图片宽度，调整内容区占比（84%→75%，总占比+间距≈100%） */
    .yn_plate_115_v2 .tour-content {
        flex: 0 0 75%;
    }
    /* 可选：移动端文字略调大，适配布局 */
    .yn_plate_115_v2 .tour-content h5 {
        font-size: 14px;
    }
    .yn_plate_115_v2 .tour-content .itinerary,
    .yn_plate_115_v2 .tour-content .highlights {
        font-size: 13px;
    }
}