steps.module.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .messagebox{
  2. width: 190PX;
  3. background: #FFFFFF;
  4. border: 2px solid #01C1B5;
  5. color: #000000;
  6. font-size: 13PX;
  7. padding: 10PX 16PX;
  8. border-radius: 8PX;
  9. position: relative;
  10. line-height: 1.8;
  11. margin-bottom: 20PX;
  12. >h3{
  13. color: #01C1B5;
  14. font-size: 17PX;
  15. margin: 0;
  16. // margin-bottom: 10PX;
  17. }
  18. &::after{
  19. content: '';
  20. position: absolute;
  21. bottom: -17PX;
  22. right: 10PX;
  23. background: url('./icon.png') no-repeat center;
  24. width: 20PX;
  25. height: 20PX;
  26. background-size: contain;
  27. }
  28. }
  29. @keyframes changsize {
  30. 0% {
  31. transform: scale(.9);
  32. }
  33. 50% {
  34. transform: scale(1);
  35. }
  36. 100% {
  37. transform: scale(.9);
  38. }
  39. }
  40. .cloneParent{
  41. background-color: rgb(1, 193, 181);
  42. // padding: 0;
  43. padding-top: 0!important;
  44. border-radius: 10PX;
  45. min-height: 60PX;
  46. animation-duration: 1.5s;
  47. animation-name: changsize;
  48. animation-iteration-count:infinite;
  49. display: inline-flex!important;
  50. align-items: center;
  51. :global{
  52. .van-button{
  53. border: none;
  54. width: calc(20px * var(--screen));
  55. height: calc(20px * var(--screen));
  56. background-color: transparent;
  57. }
  58. .van-badge__wrapper{
  59. .van-badge{
  60. font-size: calc(8px * var(--screen));
  61. word-break: keep-all;
  62. background-color: #ECECEC;
  63. color: #333;
  64. }
  65. }
  66. .van-circle__text{
  67. font-size: calc(6px * var(--screen));
  68. color: #fff;
  69. text-align: center;
  70. padding: 0;
  71. }
  72. }
  73. &.step-1{
  74. display: flex;
  75. min-width: calc(2.66667rem * var(--screen));
  76. width: 200%;
  77. max-width: calc(5.33333rem * var(--screen));
  78. button{
  79. display: none;
  80. }
  81. >div{
  82. width: 100%;
  83. >div{
  84. min-width: calc(2.66667rem * var(--screen));
  85. width: 200%;
  86. max-width: calc(5.33333rem * var(--screen));
  87. // background: rgba(1, 193, 181, 0.1);
  88. display: flex;
  89. align-items: center;
  90. height: calc(0.64rem * var(--screen));
  91. padding: 0 calc(0.10667rem * var(--screen));
  92. border-radius: calc(0.4rem * var(--screen));
  93. :global{
  94. .van-notice-bar__content{
  95. transform: translateX(0)!important;
  96. }
  97. }
  98. }
  99. }
  100. :global{
  101. .van-notice-bar{
  102. background-color: transparent;
  103. }
  104. }
  105. }
  106. &.step-0{
  107. padding-left: 10PX;
  108. padding-right: 10PX;
  109. min-height: 100PX;
  110. img{
  111. position: static;
  112. margin-top: 0;
  113. // height: 100PX;
  114. // width: 54PX;
  115. }
  116. // display: inline-block;
  117. }
  118. }
  119. .btn{
  120. width: 100PX;
  121. height: 32PX;
  122. }
  123. .box{
  124. position: fixed;
  125. box-shadow: rgba(33, 33, 33, 0.8) 0px 0px 0px 5000px;
  126. transition: all .25s;
  127. transform: scale(1.3);
  128. border-radius: 8px;
  129. }