wishList.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. page {
  2. background-color: #161616;
  3. width:750rpx;height:100vh;
  4. }
  5. .page {
  6. background-color: #161616;
  7. }
  8. .list_info {
  9. display: flex;flex-direction: column;justify-content: flex-start;align-items: center;color:#fff;
  10. width:750rpx;
  11. .item {
  12. margin-top: 20rpx;color:#fff;font-size: 28rpx;
  13. display: flex;flex-direction: row;justify-content: center;align-items: center;
  14. width: 690rpx;height: 156rpx;
  15. background: #28292D;
  16. border-radius: 28rpx;
  17. .avator {
  18. width: 116rpx;height: 116rpx;margin-left:14rpx;
  19. background: #161616;
  20. border-radius: 28rpx;
  21. display: flex;flex-direction: row;justify-content: center;align-items: center;
  22. .icon {
  23. width:100rpx;height:100rpx;border-radius: 20rpx;
  24. }
  25. }
  26. .left {
  27. width:370rpx;display: flex;flex-direction: column;justify-content: flex-start;align-items: flex-start;
  28. margin-left:20rpx;
  29. .name {
  30. font-size: 32rpx;margin-bottom:20rpx;
  31. }
  32. .jindu {
  33. display: flex;flex-direction: row;justify-content: flex-start;align-items: center;
  34. .bord {
  35. width: 216rpx;height: 20rpx;margin-left:0rpx;
  36. background: #0F0F0F;
  37. border-radius: 24rpx;
  38. .active {
  39. width: 0%;height: 20rpx;
  40. background: linear-gradient( 142deg, #FF5967 0%, #FF2A95 100%);
  41. border-radius: 24rpx;
  42. }
  43. }
  44. .tips {
  45. margin-left:20rpx;font-weight: 400;font-size: 24rpx;color: #FF3D83;
  46. }
  47. }
  48. }
  49. .right {
  50. width:190rpx;
  51. .btn_submit {
  52. width: 168rpx;height: 72rpx;
  53. background: linear-gradient( 142deg, #FF5967 0%, #FF2A95 100%);
  54. border-radius: 28rpx 28rpx 28rpx 28rpx;
  55. display: flex;flex-direction: column;justify-content: center;align-items: center;
  56. }
  57. .state {
  58. width:168rpx;height: 72rpx;text-align: center;line-height: 72rpx;
  59. }
  60. }
  61. }
  62. }
  63. .blankHeight {
  64. height:300rpx;
  65. }