123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /* 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: 450rpx;
- height: 450rpx;
- background-color: white;
- border-radius: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.3);
- }
- .progress-bar-container {
- width: 90%;
- height: 20rpx;
- background-color: #e0e0e0;
- border-radius: 10rpx;
- overflow: hidden;
- }
- .progress-bar {
- height: 100%;
- background-color: #4caf50;
- /* 进度条颜色 */
- transition: width 0.3s ease-in-out;
- }
|