12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* 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: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.7);
- /* 半透明黑色背景 */
- }
- .content {
- width: 558rpx;
- height: 404rpx;
- background-color: white;
- border-radius: 24rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.3);
- }
- .progress-container {
- position: relative;
- margin-inline: 56rpx;
- margin-top: 615rpx;
- }
- .pro_title {
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- text-align: center;
- font-style: normal;
- }
- .pro_tips {
- margin-inline: 34rpx;
- font-size: 28rpx;
- color: #666666;
- text-align: center;
- font-style: normal;
- }
- .progress {
- width: 100%;
- }
- .progress-text {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: white;
- font-size: 24rpx;
- z-index: 1;
- font-weight: 500;
- }
|