index.acss 1.7 KB

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