ota.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. .button {
  19. margin-top: 128rpx;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. margin-inline: 64rpx;
  24. font-size: 32rpx;
  25. font-weight: Medium;
  26. color: white;
  27. text-align: center;
  28. border-radius: 44rpx;
  29. height: 88rpx;
  30. }
  31. .background {
  32. position: absolute;
  33. top: 0;
  34. left: 0;
  35. width: 100%;
  36. height: 100%;
  37. background-color: rgba(0, 0, 0, 0.7);
  38. /* 半透明黑色背景 */
  39. }
  40. .content {
  41. width: 558rpx;
  42. height: 404rpx;
  43. background-color: white;
  44. border-radius: 24rpx;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.3);
  49. }
  50. .progress-container {
  51. position: relative;
  52. margin-inline: 56rpx;
  53. margin-top: 615rpx;
  54. }
  55. .pro_title {
  56. font-weight: 500;
  57. font-size: 32rpx;
  58. color: #333333;
  59. text-align: center;
  60. font-style: normal;
  61. }
  62. .pro_tips {
  63. margin-inline: 34rpx;
  64. font-size: 28rpx;
  65. color: #666666;
  66. text-align: center;
  67. font-style: normal;
  68. }
  69. .progress {
  70. width: 100%;
  71. }
  72. .progress-text {
  73. position: absolute;
  74. top: 50%;
  75. left: 50%;
  76. transform: translate(-50%, -50%);
  77. color: white;
  78. font-size: 24rpx;
  79. z-index: 1;
  80. font-weight: 500;
  81. }