/* 布局相关样式 */
.top-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
    gap: 20px;
}

.user-info-container, .shop-box {
    width: 45%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}
