index.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .wux-cell-group--card {
  2. margin: 30rpx
  3. }
  4. .wux-cell-group__hd {
  5. padding: 30rpx 30rpx 18rpx;
  6. font-size: 28rpx;
  7. color: rgba(0,0,0,.45);
  8. width: 100%;
  9. box-sizing: border-box
  10. }
  11. .wux-cell-group__bd {
  12. position: relative;
  13. background-color: #fff;
  14. overflow: hidden
  15. }
  16. .wux-cell-group--has-line > .wux-cell-group__bd::after {
  17. content: " ";
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. width: 200%;
  22. height: 200%;
  23. transform: scale(.5);
  24. transform-origin: 0 0;
  25. pointer-events: none;
  26. box-sizing: border-box;
  27. border: 0 solid #d9d9d9;
  28. border-top-width: 1PX;
  29. border-bottom-width: 1PX
  30. }
  31. .wux-cell-group__ft {
  32. padding: 18rpx 30rpx 30rpx;
  33. font-size: 28rpx;
  34. color: rgba(0,0,0,.45)
  35. }
  36. .wux-cell-group--card > .wux-cell-group__hd {
  37. padding-left: 0;
  38. padding-right: 0
  39. }
  40. .wux-cell-group--card > .wux-cell-group__bd,
  41. .wux-cell-group--card > .wux-cell-group__ft {
  42. border-radius: 12rpx
  43. }
  44. .wux-cell-group--card > .wux-cell-group__bd::after,
  45. .wux-cell-group--card > .wux-cell-group__ft::after {
  46. display: none!important
  47. }