index.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* components/dotLine/index.wxss */
  2. /* 提示信息 */
  3. .tip {
  4. display: flex;
  5. justify-content: center;
  6. margin-bottom: 50rpx;
  7. }
  8. .dot-area {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. flex-direction: column;
  13. width: 100rpx;
  14. }
  15. .dot-area>text {
  16. position: absolute;
  17. top: 70rpx;
  18. color: #F0F0F0;
  19. font-size: 24rpx;
  20. }
  21. .dot {
  22. width: 32rpx;
  23. height: 32rpx;
  24. border-radius: 50%;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. .dot::after {
  30. position: absolute;
  31. content: '';
  32. width: 16rpx;
  33. height: 16rpx;
  34. border-radius: 50%;
  35. }
  36. .dot-start {
  37. border: 1px solid #F0F0F0;
  38. transition: all 0.3s ease ;
  39. }
  40. .dot-start::after {
  41. background-color: #F0F0F0;
  42. transition: all 0.3s ease ;
  43. }
  44. .dot-end {
  45. border: 1px solid transparent;
  46. transition: all 0.3s ease ;
  47. }
  48. .dot-end::after {
  49. background-color: #69A5FF;
  50. transition: all 0.3s ease ;
  51. }
  52. .dot-line-area {
  53. height: 70rpx;
  54. display: flex;
  55. justify-content: flex-start;
  56. align-items: center;
  57. }
  58. .dot-line {
  59. /* width: 140rpx; */
  60. height: 8rpx;
  61. border-radius: 8rpx;
  62. background-color: #F0F0F0;
  63. z-index: 999;
  64. }
  65. .dot-line-behind {
  66. position: absolute;
  67. height: 8rpx;
  68. border-radius: 8rpx;
  69. background-color: #69A5FF;
  70. }
  71. .text-light {
  72. color: #69A5FF !important;
  73. transition: all 0.3s ease ;
  74. }
  75. .text-white {
  76. color: #F0F0F0 !important;
  77. transition: all 0.3s ease ;
  78. }