circle-progress.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* components/circle/circle.wxss */
  2. .container {
  3. position: relative;
  4. width: 100%;
  5. height: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: center;
  9. align-items: center;
  10. margin:0;
  11. padding:0;
  12. /* background-color: #34343d; */
  13. }
  14. .progress_box {
  15. position: absolute;
  16. width: 100%;
  17. height: 100%;
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. background-color: transparent;
  22. margin:0;
  23. padding:0;
  24. }
  25. .progress_bg {
  26. position: absolute;
  27. width: 100%;
  28. height: 100%;
  29. margin:0;
  30. padding:0;
  31. }
  32. .progress_canvas {
  33. width: 100%;
  34. height: 100%;
  35. margin:0;
  36. padding:0;
  37. }
  38. .progress_text {
  39. position: absolute;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. width:100%;
  44. margin:0;
  45. padding:0;
  46. }
  47. .progress_info {
  48. font-size: 16rpx;
  49. text-align: center;
  50. /* letter-spacing: 2rpx; */
  51. color: #21ADFF;
  52. margin:0;
  53. padding:0;
  54. }
  55. .progress_info.dis {
  56. color: #B6B3C1;
  57. margin:0;
  58. padding:0;
  59. }