ota.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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: fixed;
  33. top: 0;
  34. left: 0;
  35. right: 0;
  36. bottom: 0;
  37. background-color: rgba(0, 0, 0, 0.7);
  38. display: flex;
  39. justify-content: center;
  40. align-items: center;
  41. z-index: 1000;
  42. }
  43. .content {
  44. background-color: white;
  45. padding-inline: 20px;
  46. border-radius: 10px;
  47. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  48. width: 558rpx;
  49. height: 404rpx;
  50. }
  51. .pro_title {
  52. font-weight: 500;
  53. font-size: 32rpx;
  54. color: #333333;
  55. text-align: center;
  56. font-style: normal;
  57. margin-top: 64rpx;
  58. }
  59. .progress-container {
  60. position: relative;
  61. margin-inline: 32rpx;
  62. margin-top: 46rpx;
  63. /* 根据需要调整 */
  64. }
  65. .progress {
  66. width: 100%;
  67. }
  68. .progress-text {
  69. position: absolute;
  70. top: 50%;
  71. transform: translateY(-50%);
  72. color: white;
  73. font-size: 16px;
  74. z-index: 1;
  75. white-space: nowrap;
  76. }
  77. .pro_tips {
  78. margin-top: 48rpx;
  79. margin-inline: 34rpx;
  80. font-size: 28rpx;
  81. color: #666666;
  82. text-align: center;
  83. font-style: normal;
  84. }