12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .container {
- position: relative;
- height: 100vh;
- padding: 38rpx 24rpx;
- background: url(https://reader-wx.ai160.com/images/reader/sell/bg1.jpg) no-repeat;
- background-size: contain;
- }
- .container .userBox {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .container .userBox .left {
- display: flex;
- }
- .container .userBox .left .avatar {
- width: 106rpx;
- height: 106rpx;
- border-radius: 50%;
- border: 1rpx solid white;
- }
- .container .userBox .left .identity {
- margin-left: 24rpx;
- }
- .container .userBox .left .identity .nickName {
- margin: 6rpx 0 20rpx;
- font-size: 30rpx;
- }
- .container .userBox .left .identity .tag {
- padding: 5rpx 20rpx;
- border-radius: 20rpx;
- font-size: 22rpx;
- font-weight: bold;
- color: #FC6E1C;
- background: #FFFFFF;
- }
- .container .bottom {
- position: absolute;
- width: 100%;
- padding: 26rpx 0;
- bottom: 0;
- left: 0;
- background-color: white;
- }
- .container .bottom .btn {
- margin: 0 auto;
- width: 466rpx;
- padding: 14rpx 0;
- background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
- border-radius: 39rpx;
- color: white;
- }
|