stroke.wxss 783 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* pages/detail/stroke.wxss */
  2. .stroke_detail {
  3. height: 100vh;
  4. box-sizing: border-box;
  5. color: var(--base-color);
  6. line-height: 1.8em;
  7. overflow-y: auto;
  8. }
  9. .stroke_detail .van-step--vertical:after {
  10. border: none;
  11. }
  12. .custom {
  13. background-color: var(--base-background-00) !important;
  14. }
  15. .stroke_item {
  16. min-height: 2em;
  17. color: var(--base-color);
  18. position: relative;
  19. margin: 0 50rpx;
  20. padding: 0 0 0 40rpx;
  21. line-height: 1.5em;
  22. }
  23. .stroke_item .stroke_line {
  24. position: absolute;
  25. top: 0;
  26. bottom: 0;
  27. width: 3rpx;
  28. left: 15rpx;
  29. background-color: var(--base-color);
  30. height: 100%;
  31. padding-top: 1.2em;
  32. }
  33. .stroke_item .stroke_proint {
  34. width: 10rpx;
  35. height: 10rpx;
  36. border-radius: 50%;
  37. margin-left: -5rpx;
  38. background-color: var(--base-color);
  39. }