12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* 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 {
- width: 20px;
- height: 20px;
- 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;
- }
|