/*body {*/
/*    background: #f5f6f7;*/
/*    font-family: Arial, Helvetica, sans-serif;*/
/*}*/

/*.container {*/
/*    width: 900px;*/
/*    margin: 30px auto;*/
/*    background: #fff;*/
/*    padding: 20px;*/
/*    border-radius: 6px;*/
/*}*/

.category-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.category-btn {
    padding: 6px 14px;
    border: 1px solid #ccc;
    background: #f2f2f2;
    cursor: pointer;
    border-radius: 4px;
}

.category-btn.active {
    background: #409eff;
    color: #fff;
    border-color: #409eff;
}

/* 物品网格 */
.item-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* 单个物品 */
.item {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
}

.item img {
    width: 100%;
    display: block;
    margin-bottom: 8px;
}

/*.item {*/
/*    position: relative;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/

/*    aspect-ratio: 1 / 1;   !* 固定为正方形 *!*/
/*    overflow: hidden;*/
/*}*/

/*.item img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain;   !* 或 cover，看你想不想裁剪 *!*/
/*}*/


.price-input {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* 底部 */
.footer {
    margin-top: 20px;
    text-align: right;
}
