1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .user-center-card {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- height: 480rpx;
- // background-image: url('https://cdn-we-retail.ym.tencent.com/miniapp/template/user-center-bg-v1.png');
- background-size: cover;
- background-repeat: no-repeat;
- background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 70%, rgba(245, 245, 245, 1) 100%);
- &__header {
- margin-top: 192rpx;
- margin-bottom: 48rpx;
- height: 96rpx;
- line-height: 48rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- color: #333;
- position: relative;
- }
- &__header__avatar {
- width: 96rpx;
- height: 96rpx;
- border-radius: 48rpx;
- overflow: hidden;
- }
- &__header__name {
- font-size: 36rpx;
- line-height: 48rpx;
- color: #333;
- font-weight: bold;
- margin-left: 24rpx;
- margin-right: 16rpx;
- }
- &__header__phone {
- font-size: 28rpx;
- line-height: 48rpx;
- color: #555;
- margin-left: 24rpx;
- margin-right: 16rpx;
- }
- &__header__transparent {
- position: absolute;
- left: 0;
- top: 0;
- background-color: transparent;
- height: 100%;
- width: 100%;
- }
- &__icon {
- line-height: 96rpx;
- }
- }
- .text-big {
- font-size: 46rpx;
- }
- .w-100 {
- width: 100%;
- }
- .editbtn {
- color: #555 !important;
- padding: 0 0 0 20rpx;
- }
|