电速宝
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

index.wxss 1.1KB

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