/**
 * 首页极简样式 - 游贵州AI
 * 快速规划 | 热门活动轮播 | 精选推荐 | 底部Tab
 */
.home-plan {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.home-plan .plan-badge {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    background: rgba(46,139,87,0.12);
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
}
.home-plan h2 { font-size: 18px; color: #333; margin-bottom: 16px; }
.home-plan .form-row { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.home-plan .form-row input,
.home-plan .form-row select {
    flex: 1;
    min-width: 90px;
    padding: 12px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
}
.home-plan .plan-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
}
.home-plan .plan-btn:hover { background: #26834a; }
.home-plan .plan-link {
    font-size: 14px;
    color: var(--primary);
    margin-top: 12px;
    display: block;
}

/* 热门活动轮播 */
.home-hot-section { padding: 0 0 16px; }
.home-hot-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 20px 16px 12px;
}
.home-carousel-wrap {
    position: relative;
    overflow: hidden;
}
.home-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 44px 8px 16px;
    scrollbar-width: none;
}
.home-carousel::-webkit-scrollbar { display: none; }
.home-carousel-item {
    flex-shrink: 0;
    width: 85%;
    max-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
}
.home-carousel-item .act-img {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg,#e8f5f1,#f5ecd8);
    object-fit: cover;
}
.home-carousel-item .act-body { padding: 12px; }
.home-carousel-item .act-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-carousel-item .act-meta { font-size: 13px; color: #666; }
.home-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(46,139,87,0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-carousel-btn.prev { left: 4px; }
.home-carousel-btn.next { right: 4px; }

/* 精选推荐 */
.home-rec-section { padding: 0 16px 80px; }
.home-rec-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.home-rec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.home-rec-tag {
    padding: 12px 20px;
    background: #F5F5F5;
    border-radius: 24px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.home-rec-tag:hover {
    background: rgba(46,139,87,0.15);
    color: var(--primary);
}
