/* 前台专属样式 - 复刻图片UI */
/* 首页banner */
.banner {
    width: 100%;
    height: 180px;
    background: url(/public/images/banner.jpg) no-repeat center;
    background-size: cover;
    margin-bottom: 10px;
}

/* 功能按钮组 */
.btn-group {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: #fff;
    margin-bottom: 10px;
}

.btn-group .btn {
    width: 30%;
    padding: 15px 0;
    font-size: 16px;
}

/* 个人中心 */
.user-center {
    padding: 20px;
}

.user-info {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.user-info .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: #007bff;
    color: #fff;
    line-height: 80px;
    font-size: 30px;
}

.user-info .phone {
    font-size: 16px;
    margin-bottom: 5px;
}

.user-info .id {
    color: #999;
    font-size: 12px;
}

/* 积分/拍豆展示 */
.score-box {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.score-item {
    text-align: center;
}

.score-item .num {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.score-item .text {
    font-size: 14px;
    color: #666;
}

.score-item .btn {
    padding: 5px 10px;
    font-size: 12px;
    margin-top: 5px;
}

/* 商城商品 */
.goods-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
}

.goods-item {
    width: 48%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.goods-item .cover {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.goods-item .info {
    padding: 10px;
}

.goods-item .name {
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.goods-item .points {
    color: #dc3545;
    margin-bottom: 5px;
}

.goods-item .btn {
    width: 100%;
    padding: 8px 0;
    font-size: 12px;
}