﻿/* 顶部用户信息栏 */
.mine-header { background: linear-gradient(135deg, #e53935, #ff6b6b); padding: 60px 20px 30px; color: #fff; }
.user-info { position: relative; display: flex; align-items: center; justify-content: space-between; }
.user-left { display: flex; align-items: center; }
.user-avatar { width: 71px; height: 71px; border: 1px solid #fff; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.user-avatar img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.user-title { width: 100%; text-wrap: nowrap; }
.user-name { font-size: 18px; font-weight: bold; margin-bottom: 5px; }
.user-desc { font-size: 12px; opacity: 0.8; }
/* 头部按钮 */
.header-logout { position: absolute; top: 40px; right: 0; font-size: 12px; border: 1px solid #fff; padding: 2px 8px; border-radius: 15px; }
.header-logout i { font-size: 12px; }
.header-login { background-color: #ccc; color: #000; font-size: 12px; border: 1px solid #eee; padding: 2px 8px; border-radius: 15px; }
.header-login:hover, .header-login:active, .header-login:focus { border-color: #eee !important; background-color: #ccc !important; color: #000 !important; }
.header-login i { font-size: 12px; }
/* 订单模块 */
.order-card { margin: -20px 10px 20px; background: #fff; border-radius: 8px; padding: 15px; box-shadow: 0 2px 10px #00000010; position: relative; z-index: 10; }
.order-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 15px; }
.order-title span:last-child { font-size: 12px; color: #999; }
.order-list { display: flex; justify-content: space-around; text-align: center; }
.order-item { position: relative; }
.order-item .iconfont { font-size: 32px; }
.order-item p { font-size: 14px; color: #333; }
.order-item .cont-tip { position: absolute; top: -8px; right: -8px; }
/* 九宫格菜单卡片 */
.menu-card { background: #fff; margin: 10px; border-radius: 8px; padding: 15px 10px; }
/* 四列两行九宫格布局 */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px 5px; text-align: center; }
.grid-menu-item, a { text-decoration: none; display: flex; flex-direction: column; align-items: center; }
.grid-icon { width: 40px; height: 40px; color: #f46b6b; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 6px; }
.grid-icon .iconfont { font-size: 40px; }
.grid-text { font-size: 12px; color: #666; }
