index.scss 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .page{
  2. height:100vh;
  3. background: #F1F1F1;
  4. }
  5. .content{
  6. padding: 0 32rpx;
  7. padding-top: 24rpx;
  8. padding-bottom: 24rpx;
  9. .item{
  10. background: #FFFFFF;
  11. border-radius: 0rpx 24rpx 0rpx 24rpx;
  12. padding: 0 24rpx;
  13. display: flex;
  14. flex-direction: column;
  15. margin-bottom: 24rpx;
  16. .line{
  17. display: flex;
  18. justify-content:space-between;
  19. align-items: center;
  20. // border-bottom:2rpx solid #E6E6E6 ;
  21. height: 140rpx;
  22. .left{
  23. font-size: 32rpx;
  24. font-family: PingFang-SC-Bold, PingFang-SC;
  25. color: #333333;
  26. }
  27. .right{
  28. font-size: 32rpx;
  29. font-family: PingFang-SC-Medium, PingFang-SC;
  30. font-weight: 500;
  31. color: #333333;
  32. display: flex;
  33. align-items: center;
  34. .avatar{
  35. width: 100rpx;
  36. height: 100rpx;
  37. border-radius: 50%;
  38. margin-right: 20rpx;
  39. }
  40. .arr{
  41. width: 14rpx;
  42. height: 24rpx;
  43. }
  44. }
  45. }
  46. .line:last-child{
  47. border-bottom: none;
  48. }
  49. }
  50. }
  51. switch{
  52. // width: 83rpx;
  53. // height: 40rpx;
  54. }