ota.wxss 1.6 KB

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