58 lines
927 B
Plaintext
58 lines
927 B
Plaintext
/* packageD/energy/powerCheck/powerCheck.wxss */
|
|
.list {
|
|
height: 100vh;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.lis {
|
|
height: 103rpx;
|
|
margin: 40rpx 25rpx 0 25rpx;
|
|
border-bottom: solid 2rpx #f5f7fa;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.left {
|
|
width: 160rpx;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
font-size: 28rpx;
|
|
line-height: 27rpx;
|
|
}
|
|
|
|
.right {
|
|
width: 150rpx;
|
|
height: 60rpx;
|
|
background-image:
|
|
linear-gradient(
|
|
-60deg,
|
|
#ff8a66 0%,
|
|
#ff4946 100%
|
|
),
|
|
linear-gradient(
|
|
#03ddc8,
|
|
#03ddc8
|
|
);
|
|
background-blend-mode:
|
|
normal,
|
|
normal;
|
|
box-shadow:
|
|
0rpx 4rpx 8rpx 0rpx
|
|
rgba(255, 79, 73, 0.13);
|
|
border-radius: 30rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 28rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.none {
|
|
text-align: center;
|
|
color: #03ddc8;
|
|
font-size: 28rpx;
|
|
padding-top: 80rpx;
|
|
}
|