Files
bodyWeight/pages/configureDevice/configureDevice.wxss
T
2025-05-29 08:45:04 +08:00

82 lines
1.4 KiB
Plaintext

.configureDevice {
width: 100%;
height: 100%;
position: relative;
padding: 0 30rpx 20rpx;
box-sizing: border-box;
}
.configureDevice::before {
content: '';
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 550rpx;
background: linear-gradient(0deg, #F5F7FB 0%, #D8EAFD 100%);
}
.progress {
width: 100%;
height: 160rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
}
.progressList {
flex: 1;
}
.progressList>view:nth-of-type(1) {
width: 52rpx;
height: 52rpx;
overflow: hidden;
border-radius: 50%;
display: flex;
position: relative;
align-items: center;
justify-content: center;
margin: 0 auto 20rpx;
}
.progressList>view:nth-of-type(1)::before {
content: "";
}
.progressList>view:nth-of-type(1)::after {
content: "";
}
.progressList>view:nth-of-type(1)>view {
color: #FFFFFF;
font-size: 24rpx;
font-weight: bold;
line-height: 40rpx;
overflow: hidden;
border-radius: 50%;
text-align: center;
}
.progressList>view:nth-of-type(2) {
color: #77849E;
height: 24rpx;
font-size: 24rpx;
line-height: 24rpx;
text-align: center;
}
.active {
color: #3194FB !important;
font-weight: bold !important;
}
.content {
width: 100%;
border-radius: 16rpx;
height: calc(100% - 160rpx);
background-color: #FFFFFF;
}