| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .orchestraStory {
- padding-bottom: calc(10px + env(safe-area-inset-bottom));
- }
- .cellGroup {
- margin: 12px 13px 0;
- overflow: hidden;
- border-radius: 10px;
- :global {
- .van-cell {
- font-size: 16px;
- color: #333333;
- padding: 16px 12px;
- }
- }
- }
- .storySteps {
- background-color: transparent;
- padding-top: 12px;
- :global {
- .van-step--vertical {
- padding-right: 13px;
- &::after {
- border-width: 0 !important;
- }
- }
- }
- .stepTimes {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 20px;
- font-weight: bold;
- color: #333333;
- .stepTime {
- font-family: 'DINA';
- padding-bottom: 6px;
- }
- .stepEdit {
- font-size: 14px;
- font-weight: 400;
- color: #777777;
- display: flex;
- align-items: center;
- :global {
- .van-icon {
- font-size: 14px;
- margin-right: 3px;
- }
- }
- }
- }
- .content {
- padding-top: 8px;
- font-size: 14px;
- color: #666666;
- line-height: 20px;
- }
- .storySwipe {
- padding-top: 6px;
- --van-swipe-indicator-size: 8px;
- .swipeImg {
- width: 100%;
- height: 200px;
- border-radius: 10px;
- overflow: hidden;
- background-color: #eaeaea;
- background-repeat: no-repeat;
- background-position: center;
- background-image: url('../images/icon-photo-default.png');
- }
- }
- .iconActive {
- width: 18px;
- height: 18px;
- }
- .iconInactive {
- width: 12px;
- height: 12px;
- }
- }
|