firmware.wxss 1011 B

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. .container {
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. height: 100vh;
  38. }
  39. .mask {
  40. position: fixed;
  41. top: 0;
  42. left: 0;
  43. width: 100%;
  44. height: 100%;
  45. background-color: rgba(0, 0, 0, 0.5);
  46. z-index: 999;
  47. }
  48. .modal {
  49. position: fixed;
  50. top: 50%;
  51. left: 50%;
  52. transform: translate(-50%, -50%);
  53. background-color: #fff;
  54. padding: 20rpx;
  55. z-index: 1000;
  56. }
  57. progress {
  58. width: 100%;
  59. margin: 10rpx auto;
  60. }