* { margin: 0; padding: 0; box-sizing: border-box; }
    
/* 1. 背景层：生鲜市场那种红火、热闹的感觉 */
.page-bg{position:fixed;top:0;left:0;width:100vw;height:100vh;background:url('../images/bg.jpg') no-repeat center center;background-size:cover;z-index:-1;}

/* 2. 遮罩层：让背景半透明，文字更清晰 */
.mask{width:100%;min-height:100vh;background:rgba(0,0,0,0.35);padding:20px 15px 40px;margin: 0 auto;}

/* 3. 内容卡片：白色半透，干净清爽 */
.content-card{background:rgba(255,255,255,0.9);border-radius:18px;padding:25px 20px;box-shadow:0 10px 30px rgba(0,0,0,0.1);max-width: 768px;margin: 0 auto;}

/* 4. 标题样式：生鲜常用的橙色/红色，强调活力 */
.title{font-size:22px;font-weight:bold;color:#E63946; text-align:center;margin-bottom:20px;border-bottom:2px dashed #eee;padding-bottom:15px;}

/* 5. 商品列表：Flex布局，左右分列 */
.goods-list{display:flex;flex-direction:column;gap:15px;}
.goods-list img{max-width: 100%;}

/* 底部提示 */
.tips{text-align:center;margin-top:25px;font-size:13px;color:#666;}