电速宝
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.wxss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .slide-container {
  2. position: relative;
  3. overflow: hidden;
  4. border-radius: 40px;
  5. background-color: #f5f5f5;
  6. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1) inset;
  7. transition: background-color 0.3s;
  8. }
  9. /* 已滑动区域样式 */
  10. .slide-progress {
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. background-color: #eaffea; /* 滑动过的区域颜色 */
  15. z-index: 1;
  16. border-top-right-radius:100rpx;
  17. border-bottom-right-radius:100rpx;
  18. transition: background-color 0.3s ease;
  19. }
  20. /* 成功状态下的滑动区域颜色 */
  21. .slide-container.success .slide-progress {
  22. background-color: #00c775; /* 验证成功后的颜色 */
  23. }
  24. .slide-track {
  25. position: absolute;
  26. width: 100%;
  27. height: 100%;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. z-index: 2;
  32. }
  33. .track-text {
  34. font-size: 14px;
  35. color: #666;
  36. }
  37. .slide-container.success .track-text {
  38. color: #fff;
  39. }
  40. .slide-block {
  41. position: absolute;
  42. top: 0;
  43. background-color: #fff;
  44. margin-top: 3rpx;
  45. border-radius: 40px;
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  50. z-index: 3;
  51. touch-action: none;
  52. }
  53. .block-icon {
  54. color: #00c775;
  55. }