.user-info {
    background: linear-gradient(45deg, #FF8FB1, #FFB6C1);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin-right: 15px;
}

.username {
    font-size: 18px;
    margin-bottom: 5px;
}

.user-id {
    font-size: 12px;
    opacity: 0.8;
}

.section {
    background: #fff;
    margin: 10px 0;
    padding: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header a {
    color: #999;
    font-size: 12px;
    text-decoration: none;
}

.order-icons {
    display: flex;
    justify-content: space-between;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item i {
    font-size: 24px;
    color: #87CEEB;
    margin-bottom: 5px;
}

.icon-item span {
    font-size: 12px;
    color: #666;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item i {
    font-size: 24px;
    color: #98FB98;
    margin-bottom: 5px;
}

.service-item span {
    font-size: 12px;
    color: #666;
} 