123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* pages/OTA/ota.wxss */
- .item {
- display: flex;
- align-items: center;
- border-bottom: 1px solid #e0e0e0;
- justify-content: space-between;
- margin-inline: 32rpx;
- height: 120rpx;
- }
- .label {
- font-size: 16px;
- color: #333333;
- margin-left: 32rpx;
- }
- .arrow {
- margin-right: 16rpx;
- }
- .button {
- margin-top: 128rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-inline: 64rpx;
- font-size: 32rpx;
- font-weight: Medium;
- color: white;
- text-align: center;
- border-radius: 44rpx;
- height: 88rpx;
- }
- .background {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.7);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1000;
- }
- .content {
- background-color: white;
- padding-inline: 20px;
- border-radius: 10px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- width: 558rpx;
- height: 404rpx;
- }
- .pro_title {
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- text-align: center;
- font-style: normal;
- margin-top: 64rpx;
- }
- .progress-container {
- position: relative;
- margin-inline: 32rpx;
- margin-top: 46rpx;
- /* 根据需要调整 */
- }
- .progress {
- width: 100%;
- }
- .progress-text {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- color: white;
- font-size: 16px;
- z-index: 1;
- white-space: nowrap;
- }
- .pro_tips {
- margin-top: 48rpx;
- margin-inline: 34rpx;
- font-size: 28rpx;
- color: #666666;
- text-align: center;
- font-style: normal;
- }
|