@charset "utf-8";

/* ===== 优选路线区域 ===== */
.Recommended_route {
    width: 100%;
    margin: 60px auto 0;
}

.routewenzi {
    width: 1200px;
    margin: 0 auto;
}

/* 标题区域 */
.heizi {
    text-align: center;
    margin-bottom: 30px;
}

.tjlx {
    font-size: 34px;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tjlxEgh {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 分类导航和更多按钮 */
#tour_box {
    position: relative;
    margin-bottom: 30px;
}

#tour_box .hd {
    display: inline-block;
    margin: 0;
    padding: 0;
}

#tour_box .hd ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#tour_box .hd ul li {
    float: left;
    margin-right: 30px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

#tour_box .hd ul li:hover {
    color: #009B96;
}

#tour_box .hd ul li.active {
    color: #009B96;
    font-weight: 500;
}

#tour_box .hd ul li.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009B96;
}

#tour_box .more {
    float: right;
    font-size: 16px;
    color: #999;
    line-height: 36px;
}

#tour_box .more a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

#tour_box .more a:hover {
    color: #009B96;
}

/* 路线列表 */
.lyimg {
    width: 100%;
    clear: both;
    padding-top: 20px;
}

.lyimg ul {
    list-style: none;
    margin: 0 -15px;
    padding: 0;
    overflow: hidden;
}

.lyimg ul li {
    float: left;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

/* 路线卡片 */
.lytp1 {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.lytp1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,155,150,0.15);
    border-bottom-color: #009B96;
}

/* 图片区域 */
.lytp1_1 {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.lytp1_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lytp1:hover .lytp1_1 img {
    transform: scale(1.05);
}

/* 路线名称 */
.jdname {
    padding: 15px 15px 5px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 价格 */
.price {
    padding: 0 15px 15px;
    font-size: 20px;
    font-weight: 600;
    color: #ff6b6b;
    display: inline-block;
}

.price:before {
    content: '￥';
    font-size: 14px;
    font-weight: normal;
    margin-right: 2px;
}

.price:after {
    content: '起';
    font-size: 14px;
    font-weight: normal;
    color: #999;
    margin-left: 2px;
}

/* 箭头 */
.arrow {
    float: right;
    padding: 0 15px 15px;
    font-size: 18px;
    color: #ccc;
    transition: color 0.3s;
}

.lytp1:hover .arrow {
    color: #009B96;
}

/* 清除浮动 */
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

/* 响应式 */
@media (max-width: 1200px) {
    .routewenzi {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .lyimg ul li {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #tour_box .hd ul li {
        margin-right: 15px;
        font-size: 16px;
    }
    
    .lyimg ul li {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        float: none;
    }
}