growth.wxss 802 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* parents/pages/growth/growth.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/loading/loading.wxss';
  4. .list {
  5. padding: 10rpx 20rpx;
  6. position: relative;
  7. }
  8. .list::after {
  9. content: "";
  10. position: absolute;
  11. left: 30rpx;
  12. top: 0;
  13. height: 100%;
  14. border-left: dashed 1rpx #ccc;
  15. z-index: -1;
  16. }
  17. .li {
  18. margin: 20rpx auto;
  19. background: #fff;
  20. border-radius: 18rpx;
  21. padding: 30rpx;
  22. }
  23. .li-label {
  24. font-size: 26rpx;
  25. color: #000;
  26. margin: 40rpx auto 20rpx auto;
  27. padding-left: 34rpx;
  28. position: relative;
  29. }
  30. .li-label::after {
  31. content: "";
  32. position: absolute;
  33. top: 50%;
  34. left: 0;
  35. transform: translateY(-50%);
  36. width: 20rpx;
  37. height: 20rpx;
  38. border-radius: 100rpx;
  39. background: linear-gradient(90deg,rgba(81,206,255,1),rgba(0,183,255,1));
  40. }