index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <style lang="scss">
  2. .step{
  3. width: 100%;
  4. height: auto;
  5. padding: 10rpx 30rpx;
  6. box-sizing: border-box;
  7. overflow: hidden;
  8. background-color: #fff;
  9. color: #666;
  10. }
  11. .step .modle{
  12. width: 100%;
  13. height: 100rpx;
  14. margin-top: 10rpx; }
  15. .step .modle .mol{
  16. width: 100%;
  17. height: 52rpx;
  18. position: relative; }
  19. .step .mol-line{
  20. width: 100%;
  21. height: 4rpx;
  22. background-color: #e6e6e6;
  23. position: absolute;
  24. left: 0;
  25. top: 50%;
  26. transform: translateY(-50%);}
  27. .step .mol-ites{
  28. width: 100%;
  29. height: 100%;
  30. position: absolute;}
  31. .mol-ites .ite{
  32. width: 52rpx;
  33. height: 52rpx;
  34. border-radius: 50%;
  35. border: 1px solid #f5f5f5;
  36. background-color: #fff;
  37. box-sizing: border-box;
  38. position: absolute;
  39. left: 0;
  40. top: 0;
  41. z-index: 2;}
  42. .mol-ites .ite .n{
  43. width: 44rpx;
  44. height: 44rpx;
  45. line-height: 44rpx;
  46. text-align: center;
  47. border-radius: 50%;
  48. background-color: #f5f5f5;
  49. position: absolute;
  50. left: 50%;
  51. top: 50%;
  52. transform: translate(-50%,-50%);
  53. font-size: 22rpx;}
  54. .mol-ites .ite::after{
  55. content: "";
  56. width: 80rpx;
  57. height: 4rpx;
  58. background-color: transparent;
  59. position: absolute;
  60. left: 52rpx;
  61. top: 50%;
  62. margin-top: -2rpx;
  63. z-index: 2;}
  64. .mol-ites .ite:last-of-type::after{ width: 0;}
  65. .mol-ites .ite:nth-of-type(2){ left: 107rpx;}
  66. .mol-ites .ite:nth-of-type(3){ left: 214rpx;}
  67. .mol-ites .ite:nth-of-type(4){ left: 321rpx;}
  68. .mol-ites .ite:nth-of-type(5){ left: 428rpx;}
  69. .mol-ites .ite:nth-of-type(6){ left: 535rpx;}
  70. .mol-ites .ite:nth-of-type(7){ left: 642rpx;}
  71. .mol-ites .ite.hover{ border-color: rgb(97, 165, 238);}
  72. .mol-ites .ite.hover .n{ background-color: rgb(97, 165, 238); color: #fff;}
  73. .mol-ites .ite.hover::after{ background-color: rgb(97, 165, 238); }
  74. .moday{
  75. width: 100%;
  76. height:40rpx;
  77. overflow: hidden;
  78. position: relative;
  79. margin-top:16rpx;}
  80. .moday .dd{
  81. width: 52rpx;
  82. height: 40rpx;
  83. line-height: 1;
  84. text-align: center;
  85. font-size: 22rpx;
  86. position: absolute;
  87. left: 0;
  88. bottom: 0;}
  89. .moday .dd:nth-of-type(2){ left: 107rpx;}
  90. .moday .dd:nth-of-type(3){ left: 214rpx;}
  91. .moday .dd:nth-of-type(4){ left: 321rpx;}
  92. .moday .dd:nth-of-type(5){ left: 428rpx;}
  93. .moday .dd:nth-of-type(6){ left: 535rpx;}
  94. .moday .dd:nth-of-type(7){ left: 642rpx;}
  95. </style>
  96. <template>
  97. <view></view>
  98. </template>
  99. <script>
  100. </script>