index.module.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .orchestraStory {
  2. padding-bottom: calc(10px + env(safe-area-inset-bottom));
  3. }
  4. .cellGroup {
  5. margin: 12px 13px 0;
  6. overflow: hidden;
  7. border-radius: 10px;
  8. :global {
  9. .van-cell {
  10. font-size: 16px;
  11. color: #333333;
  12. padding: 16px 12px;
  13. }
  14. }
  15. }
  16. .storySteps {
  17. background-color: transparent;
  18. padding-top: 12px;
  19. :global {
  20. .van-step--vertical {
  21. padding-right: 13px;
  22. &::after {
  23. border-width: 0 !important;
  24. }
  25. }
  26. }
  27. .stepTimes {
  28. display: flex;
  29. align-items: center;
  30. justify-content: space-between;
  31. font-size: 20px;
  32. font-weight: bold;
  33. color: #333333;
  34. .stepTime {
  35. font-family: 'DINA';
  36. padding-bottom: 6px;
  37. }
  38. .stepEdit {
  39. font-size: 14px;
  40. font-weight: 400;
  41. color: #777777;
  42. display: flex;
  43. align-items: center;
  44. :global {
  45. .van-icon {
  46. font-size: 14px;
  47. margin-right: 3px;
  48. }
  49. }
  50. }
  51. }
  52. .content {
  53. padding-top: 8px;
  54. font-size: 14px;
  55. color: #666666;
  56. line-height: 20px;
  57. }
  58. .storySwipe {
  59. padding-top: 6px;
  60. --van-swipe-indicator-size: 8px;
  61. .swipeImg {
  62. width: 100%;
  63. height: 200px;
  64. border-radius: 10px;
  65. overflow: hidden;
  66. background-color: #eaeaea;
  67. background-repeat: no-repeat;
  68. background-position: center;
  69. background-image: url('../images/icon-photo-default.png');
  70. }
  71. }
  72. .iconActive {
  73. width: 18px;
  74. height: 18px;
  75. }
  76. .iconInactive {
  77. width: 12px;
  78. height: 12px;
  79. }
  80. }