/* 个人中心页面样式 */
/* 用户信息区 */
.user-section {
    background: linear-gradient(to bottom, #FF4400, #FF6633);
    color: #fff;
    padding: 20px 15px;
    margin-bottom: 10px;
}

.user-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.settings-btn,
.message-btn {
    position: relative;
    margin-left: 20px;
}

.settings-btn i,
.message-btn i {
    font-size: 20px;
}

.message-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #fff;
    color: #FF4400;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.info {
    flex: 1;
}

.info .name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.member-level {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.member-level i {
    color: #FFD700;
    margin-right: 5px;
}

.edit-btn i {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.user-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item .number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* 订单区域 */
.order-section {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header .title {
    font-size: 16px;
    font-weight: bold;
}

.section-header .more {
    color: #999;
    font-size: 12px;
}

.section-header .more i {
    margin-left: 5px;
}

.order-menu {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.menu-item {
    position: relative;
    flex: 1;
}

.menu-item i {
    font-size: 24px;
    color: #666;
    margin-bottom: 5px;
}

.menu-item span {
    display: block;
    font-size: 12px;
    color: #666;
}

.menu-item .badge {
    position: absolute;
    top: -5px;
    right: 20%;
    background-color: #FF4400;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
}

/* 资产区域 */
.assets-section {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px;
}

.assets-list {
    display: flex;
    justify-content: space-between;
}

.asset-item {
    text-align: center;
}

.asset-item .number {
    font-size: 16px;
    font-weight: bold;
    color: #FF4400;
    margin-bottom: 5px;
}

.asset-item .label {
    font-size: 12px;
    color: #666;
}

/* 工具区域 */
.tools-section {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 60px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.tool-item {
    text-align: center;
}

.tool-item i {
    font-size: 24px;
    color: #666;
    margin-bottom: 5px;
}

.tool-item span {
    display: block;
    font-size: 12px;
    color: #666;
} 