index.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .container {
  2. position: relative;
  3. height: 100vh;
  4. padding: 38rpx 24rpx;
  5. background: url(https://reader-wx.ai160.com/images/reader/sell/bg1.jpg)no-repeat;
  6. background-size: contain;
  7. .userBox {
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. .left {
  12. display: flex;
  13. .avatar {
  14. width: 106rpx;
  15. height: 106rpx;
  16. border-radius: 50%;
  17. border: 1rpx solid white;
  18. }
  19. .identity {
  20. margin-left: 24rpx;
  21. .nickName {
  22. margin: 6rpx 0 20rpx;
  23. font-size: 30rpx;
  24. }
  25. .tag {
  26. padding: 5rpx 20rpx;
  27. border-radius: 20rpx;
  28. font-size: 22rpx;
  29. font-weight: bold;
  30. color: #FC6E1C;
  31. background: #FFFFFF;
  32. }
  33. }
  34. }
  35. }
  36. .bottom {
  37. position: absolute;
  38. width: 100%;
  39. padding: 26rpx 0;
  40. bottom: 0;
  41. left: 0;
  42. background-color: white;
  43. .btn {
  44. margin: 0 auto;
  45. width: 466rpx;
  46. padding: 14rpx 0;
  47. background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
  48. border-radius: 39rpx;
  49. color: white;
  50. }
  51. }
  52. }