/* 顶部导航 */
.geng-town-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #87CEEB;
    color: #fff;
}

.geng-town-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.geng-town-title {
    font-size: 18px;
    font-weight: 500;
}

.geng-town-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.geng-town-right i {
    font-size: 20px;
}

/* 商品列表区域 */
.geng-town-container {
    padding: 12px;
    padding-top: 66px; /* 顶部导航的高度 + 间距 */
    background: #f5f5f5;
    min-height: calc(100vh - 60px); /* 减去底部导航的高度 */
}

.geng-town-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.geng-town-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.geng-town-product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.geng-town-product-info {
    padding: 8px;
}

.geng-town-product-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.geng-town-product-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.geng-town-price-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.geng-town-price-info {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.geng-town-current-price {
    display: flex;
    align-items: baseline;
}

.geng-town-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff2b2b;
}

.geng-town-unit {
    font-size: 12px;
    color: #999;
    margin-left: 2px;
}

.geng-town-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.geng-town-save-tag {
    font-size: 10px;
    color: #ff2b2b;
    background: #fff0f0;
    padding: 1px 4px;
    border-radius: 2px;
}

.geng-town-reward-tag {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 6px;
    background: #fff0f0;
    color: #ff2b2b;
    border-radius: 4px;
    font-size: 10px;
    width: fit-content;
}

.geng-town-reward-tag i {
    font-size: 12px;
}

/* 适配安全区域 */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .geng-town-container {
        padding-bottom: calc(env(safe-area-inset-bottom) + 60px);
    }
} 