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

.yn_plate_116_v3 {
    width: 100%;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.plate-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.plate-inner h2 {
    font-size: 22px;
    color: #FF6B00;
    margin-bottom: 10px;
    font-weight: 600;
}

.plate-inner > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}
.tours-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.tour-item {
    flex: 1;
    min-width: 250px;
}

/* 核心修改：固定百分比宽高比（基于父容器100%宽度） */
.tour-img-wrap {
    width: 100%; /* 宽度占父容器（tour-item）100%（可改为80%/90%等百分比） */
    position: relative; /* 作为图片绝对定位的参考 */
    height: 0; /* 高度由padding-top撑开，避免双重高度 */
    padding-top: 60%; /* 固定宽高比：60% = 高度=宽度的60%（10:6/5:3，可调整） */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* 图片填满百分比容器，保持比例 */
.tour-img-wrap img {
    position: absolute; /* 脱离文档流，填满容器 */
    top: 0;
    left: 0;
    width: 100%; /* 填满容器宽度（父容器的100%百分比） */
    height: 100%; /* 填满容器高度（由padding-top撑开的60%） */
    object-fit: cover; /* 保持图片比例，裁剪溢出部分 */
    display: block;
    transition: transform 0.3s ease;
}
.tour-img-wrap img:hover {
    transform: scale(1.03); /* 保留hover缩放效果 */
}

.tour-info {
    text-align: left;
    padding: 0 4px;
}

.tour-info h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
}

.tour-info > p:first-of-type {
    height: 70px;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    min-width: 0;
}
.tour-info .tour-from {
    font-size: 14px;
    text-align: right;
}
.tour-info .tour-days{
    font-size: 13px;
    margin-bottom :0;
}

.tour-info > p:last-of-type span {
    font-size: 16px;
    color: #e63946;
    font-weight: 500;
}