12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* pages/deviceInfo/deviceInfo.wxss */
- .form-group {
- background-color: #fff;
- padding: 0 30rpx;
- }
- .form-item {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- line-height: 3.5;
- border-bottom: solid 1px #f8f8f8;
- padding: 0 20rpx;
- }
- .form-label {
- white-space: nowrap;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(44, 44, 50, 1);
- }
- .form-value {
- width: 100%;
- text-align: right;
- /* color: #999; */
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- }
- .u-unit {
- margin-left: 20rpx;
- color: #333;
- }
- .remark-info {
- width: 80%;
- height: 120rpx;
- line-height: 1;
- }
- .local-icon {
- width: 54rpx;
- height: 54rpx;
- vertical-align: center;
- }
- .left-icon {
- width: 38rpx;
- height: 38rpx;
- margin-right: 8rpx;
- }
- .save-op {
- margin-top: 60rpx;
- padding: 30rpx 60rpx;
- }
- .save-op button {
- font-size: 28rpx;
- }
- .save-op view {
- margin-top: 10rpx;
- }
- .edit-user-btn {
- padding: 6rpx 20rpx;
- background-color: #2d8cf0;
- color: #fff;
- margin-left: 20rpx;
- font-size: 24rpx;
- border-radius: 5rpx;
- }
- .input-bats {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- .input-bat-item {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- }
- .input-bat-type {
- width: 50px;
- border: solid 1px #f8f8f8;
- padding-right: 10px;
- }
- .save-btn {
- width: 100%;
- height: 90rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- margin: 0 auto;
- background: rgba(17, 191, 150, 1);
- border-radius: 45rpx;
- }
|