/* 个人中心样式 */
.profile-page {
    background: #f5f5f5;
}

/* 用户信息卡片 */
.user-info {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    background: #f23030;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.avatar i {
    font-size: 30px;
    color: #fff;
}

.info h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.info p {
    font-size: 14px;
    color: #666;
}

/* 菜单列表 */
.menu-list {
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item i:first-child {
    font-size: 20px;
    color: #f23030;
    margin-right: 10px;
}

.menu-item span {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.menu-item i:last-child {
    font-size: 14px;
    color: #999;
} 