/* pages/my/my.scss */ .my-page { min-height: 100vh; padding-top: 60rpx; background: linear-gradient(to bottom, #eff6ee 0%, #f5f5f5 50%, #f5f5f5 100%); .user-section { padding: 32rpx 32rpx 0; display: flex; align-items: center; .user-image { width: 100rpx; height: 100rpx; // background: #ddd; border: 8rpx solid #fff; border-radius: 50%; } .user-name { margin-left: 24rpx; font-size: 32rpx; } } .order-enter-container { padding: 40rpx 24rpx 24rpx; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24rpx; .order-enter { padding: 32rpx 0; min-width: calc(50% - 16rpx); background: #fff; border-radius: 12rpx; display: flex; align-items: center; justify-content: center; } .order-enter__img { width: 80rpx; height: 80rpx; // border-radius: 50%; // border: 8rpx solid #ddd; font-size: 56rpx; // background-color: #ddd; } .order-enter__text { margin-left: 12rpx; font-size: 24rpx; } } .other-enter__title { padding-left: 32rpx; font-size: 28rpx; } .other-enter-container { margin: 24rpx; padding: 24rpx; border-radius: 12rpx; background: #fff; .other-enter { // margin-top: 32rpx; display: flex; align-items: center; gap: 40rpx; .other-enter__item { display: flex; flex-direction: column; align-items: center; } .other-enter__img { width: 80rpx; height: 80rpx; font-size: 54rpx; // border-radius: 50%; // border: 8rpx solid #fff; // background: #ddd; } .other-enter__text { margin-top: 6rpx; font-size: 24rpx; } } } }