/* 用户信息头部 */
.user-header {
    background: linear-gradient(to right, #ff6b6b, #ff8e8e);
    padding: 30px 20px;
    color: #fff;
}

.user-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    margin-right: 15px;
}

.user-detail {
    flex: 1;
}

.username {
    font-size: 20px;
    margin: 0 0 5px;
}

.user-id {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* 内容区域 */
.container {
    padding: 15px;
    margin-bottom: 60px;
}

/* 公共section样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.view-all {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

/* 订单导航 */
.order-section {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-nav {
    display: flex;
    justify-content: space-between;
}

.order-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.order-nav-item img {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.order-nav-item span {
    font-size: 12px;
}

/* 功能列表 */
.feature-section {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.feature-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.feature-item span {
    font-size: 12px;
} 