123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- .col-steps {
- padding: 0 0 0 28px;
- overflow: hidden;
- background-color: #fff;
- .col-step {
- display: block;
- float: none;
- padding: 10px 0;
- line-height: 18px;
- position: relative;
- flex: 1;
- color: #7a7a7a;
- font-size: 13px;
- &:last-child .col-step__line {
- border: 0;
- }
- }
- .col-step_circle {
- position: absolute;
- top: 19px;
- left: -18px;
- z-index: 1;
- width: 18px;
- height: 18px;
- font-size: 12px;
- border-radius: 50%;
- background: var(--van-primary);
- transform: translate(-50%, -50%);
- text-align: center;
- line-height: 20px;
- color: #fff;
- }
- .col-step__line {
- top: 16px;
- left: -19px;
- width: 0px;
- border-left: 1px dashed var(--van-primary);
- height: 100%;
- position: absolute;
- transform: background-color 0.3s;
- }
- .stepSection {
- .stepTitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 13px;
- color: #999;
- .stepTitleNum {
- font-size: 14px;
- font-weight: 500;
- }
- .active {
- color: var(--van-primary);
- }
- }
- .stepTitleText {
- font-size: 13px;
- color: #999999;
- line-height: 18px;
- }
- .stepContent {
- padding-top: 6px;
- font-size: 13px;
- color: #7a7a7a;
- line-height: 20px;
- }
- .state0,
- .state1,
- .state2 {
- font-weight: 500;
- font-size: 14px;
- color: #ff802c;
- line-height: 22px;
- }
- .state2 {
- color: #2dc7aa;
- }
- .state2 {
- color: #999999;
- }
- }
- .videoText {
- margin-top: 6px;
- background: #2dc7aa;
- border-radius: 11px;
- font-weight: 500;
- font-size: 12px;
- color: #ffffff;
- padding: 0 5px;
- line-height: 22px;
- display: inline-block;
- }
- .videoImg {
- margin-top: 10px;
- width: 150px;
- height: 100px;
- position: relative;
- border-radius: 4px;
- overflow: hidden;
- :global {
- .van-image {
- width: inherit;
- height: inherit;
- }
- }
- .videoStop {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- .videoList {
- padding: 16px;
- .videoTitle {
- font-size: 18px;
- font-weight: 500;
- color: #333333;
- line-height: 30px;
- display: flex;
- align-items: center;
- i {
- display: inline-block;
- width: 4px;
- height: 18px;
- margin-right: 8px;
- border-radius: 2px;
- background-color: var(--van-primary);
- }
- }
- .videoSection {
- padding-top: 12px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- max-height: 60vh;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .videoItem {
- width: 100%;
- border-radius: 6px;
- margin-bottom: 8px;
- }
- :global {
- .plyr {
- // width: 130px;
- min-width: 50%;
- }
- .vjs-poster {
- background-size: cover;
- }
- }
- }
|