ota.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* pages/OTA/ota.wxss */
  2. .item {
  3. display: flex;
  4. align-items: center;
  5. border-bottom: 1px solid #e0e0e0;
  6. justify-content: space-between;
  7. margin-inline: 32rpx;
  8. height: 120rpx;
  9. }
  10. .label {
  11. font-size: 16px;
  12. color: #333333;
  13. margin-left: 32rpx;
  14. }
  15. .arrow {
  16. margin-right: 16rpx;
  17. }
  18. .left-content {
  19. display: flex;
  20. align-items: center;
  21. }
  22. .red {
  23. width: 15rpx;
  24. height: 15rpx;
  25. margin-top: -14rpx;
  26. background-color: red;
  27. border-radius: 50%;
  28. margin-left: 12rpx;
  29. }
  30. .button_title {
  31. font-size: 32rpx;
  32. font-weight: Medium;
  33. color: white;
  34. }
  35. .button {
  36. margin-top: 128rpx;
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. margin-inline: 64rpx;
  41. text-align: center;
  42. border-radius: 44rpx;
  43. height: 88rpx;
  44. }
  45. .background {
  46. position: fixed;
  47. top: 0;
  48. left: 0;
  49. right: 0;
  50. bottom: 0;
  51. background-color: rgba(0, 0, 0, 0.7);
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. z-index: 1000;
  56. }
  57. .content {
  58. background-color: white;
  59. padding-inline: 20px;
  60. border-radius: 10px;
  61. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  62. width: 558rpx;
  63. height: 404rpx;
  64. }
  65. .pro_title {
  66. font-weight: 500;
  67. font-size: 32rpx;
  68. color: #333333;
  69. text-align: center;
  70. font-style: normal;
  71. margin-top: 64rpx;
  72. }
  73. .progress-container {
  74. position: relative;
  75. margin-inline: 32rpx;
  76. margin-top: 46rpx;
  77. /* 根据需要调整 */
  78. }
  79. .progress {
  80. width: 100%;
  81. }
  82. .progress-text {
  83. position: absolute;
  84. top: 50%;
  85. transform: translateY(-50%);
  86. color: white;
  87. font-size: 16px;
  88. z-index: 1;
  89. white-space: nowrap;
  90. }
  91. .pro_tips {
  92. margin-top: 48rpx;
  93. margin-inline: 34rpx;
  94. font-size: 28rpx;
  95. color: #666666;
  96. text-align: center;
  97. font-style: normal;
  98. }