电速宝
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. border-radius: 40px;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  49. z-index: 3;
  50. touch-action: none;
  51. }
  52. .block-icon {
  53. color: #00c775;
  54. }