index.scss 1.1 KB

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