firmware.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .top_item {
  2. display: flex;
  3. justify-content: space-between;
  4. text-align: center;
  5. color: #797979;
  6. font-size: 30rpx;
  7. padding: 20rpx 40rpx 20rpx 40rpx;
  8. }
  9. .top_item_left {
  10. color: black;
  11. font-size: 35rpx;
  12. }
  13. .update {
  14. margin-top: 100rpx;
  15. align-items: center;
  16. display: flex;
  17. justify-content: center;
  18. }
  19. .update>view {
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. width: 520rpx;
  24. height: 80rpx;
  25. border-radius: 45rpx;
  26. font-size: 35rpx;
  27. font-weight: 400;
  28. color: #FFFFFF;
  29. }
  30. .update>view.action {
  31. background: #6547A3;
  32. }
  33. .update_progress_public {
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. width: 100%;
  38. height: 100vh;
  39. }
  40. .update_progress_mask {
  41. position: fixed;
  42. top: 0;
  43. left: 0;
  44. width: 100%;
  45. height: 100%;
  46. background-color: rgba(0, 0, 0, 0.5);
  47. z-index: 999;
  48. }
  49. .update_progress_modal {
  50. position: fixed;
  51. top: 50%;
  52. left: 50%;
  53. transform: translate(-50%, -50%);
  54. background-color: #fff;
  55. padding: 30rpx;
  56. /* 置顶优先级 */
  57. z-index: 1000;
  58. }
  59. progress {
  60. width: 100%;
  61. margin: 10rpx auto;
  62. }