memberInfo.wxss 525 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .wrap {
  2. padding: 30rpx;
  3. background-color: #fff;
  4. }
  5. .cell {
  6. position: relative;
  7. margin-bottom: 30rpx;
  8. padding-bottom: 10rpx;
  9. }
  10. .cell::after {
  11. content: '';
  12. position: absolute;
  13. left: 0;
  14. bottom: 0;
  15. right: 0;
  16. height: 1px;
  17. transform: scaleY(.5);
  18. border-bottom: 1px solid #c8c7cc;
  19. }
  20. .cell-title {
  21. color: #000;
  22. margin-bottom: 20rpx;
  23. font-weight: bold;
  24. font-size: 24rpx;
  25. }
  26. .cell .img {
  27. width: 120rpx;
  28. height: 120rpx;
  29. border-radius: 5px;
  30. }
  31. .cell-content {
  32. font-size: 34rpx;
  33. color: #666;
  34. }