index.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .item-list-simple-container {
  2. display: flex;
  3. align-items: center;
  4. justify-content: flex-start;
  5. flex-direction: column;
  6. .list-item {
  7. width: 100%;
  8. height: 120rpx;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. margin-top: 20rpx;
  13. .item-icon{
  14. width: 38rpx;
  15. height: 42rpx;
  16. display: flex;
  17. flex-shrink: 0;
  18. }
  19. .list-item-right{
  20. display: flex;
  21. flex-grow: 1;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: space-around;
  25. margin-left: 30rpx;
  26. >view{
  27. width: 100%;
  28. text-align: left;
  29. }
  30. .item-title{
  31. box-sizing: border-box;
  32. font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  33. font-weight: 650;
  34. color: #333333;
  35. }
  36. .item-content{
  37. box-sizing: border-box;
  38. font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  39. font-weight: 650;
  40. color: #aaaaaa;
  41. font-size: 28rpx;
  42. }
  43. }
  44. }
  45. }