list.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. page {
  2. box-sizing: border-box;
  3. padding-top: 20rpx;
  4. background: #F3F5F9;
  5. }
  6. .item-box {
  7. width: 100%;
  8. height: 110rpx;
  9. background: white;
  10. position: relative;
  11. overflow: hidden;
  12. padding: 15rpx 0 15rpx 120rpx;
  13. border-bottom: 2rpx solid #F3F5F9;
  14. box-sizing: border-box;
  15. }
  16. .item-box-icon {
  17. position: absolute;
  18. left: 30rpx;
  19. top: 20rpx;
  20. width: 70rpx;
  21. height: 70rpx;
  22. }
  23. .item-box text {
  24. color: var(--black);
  25. box-sizing: border-box;
  26. display: block;
  27. height: 40rpx;
  28. }
  29. .item-box text:last-child {
  30. color: var(--darkGray);
  31. padding-top: 10rpx;
  32. font-size: 20rpx;
  33. }
  34. .item-box-add {
  35. font-size: 70rpx;
  36. text-align: center;
  37. color: var(--darkGray);
  38. line-height: 60rpx;
  39. position: absolute;
  40. left: 30rpx;
  41. top: 20rpx;
  42. width: 70rpx;
  43. height: 70rpx;
  44. border-radius: 100rpx;
  45. background-color: var(--greyLight);
  46. }
  47. .item-box-add-text {
  48. width: 100%;
  49. height: 100%;
  50. line-height: 80rpx;
  51. color: var(--darkGray);
  52. }
  53. .item-box-default {
  54. position: absolute;
  55. right: 30rpx;
  56. top: 35rpx;
  57. width: 35rpx;
  58. height: 35rpx;
  59. }
  60. .item-default {
  61. width: 100%;
  62. font-size: 30rpx;
  63. line-height: 180rpx;
  64. text-align: center;
  65. color: var(--darkGray);
  66. background: white;
  67. }