2025-06-06 15:07:26 +08:00

61 lines
988 B
Plaintext

.device-list-container {
padding: 10px;
}
.device-item {
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
border-bottom: 4rpx solid #f1f5fe;
}
.device-field {
margin-bottom: 8px;
}
.field-label {
font-weight: bold;
display: inline-block;
width: 80px;
}
.field-value {
display: inline-block;
}
.navBox {
display: flex;
align-items: center;
padding: 0 20rpx;
box-sizing: border-box;
margin-bottom: 20rpx;
}
.navItem {
flex: 1;
white-space: nowrap;
font-weight: 400;
font-size: 28rpx;
color: #555555;
text-align: center;
}
.active {
font-weight: bold;
position: relative;
font-size: 32rpx;
}
.active::after {
content: '';
width: 90%;
height: 10rpx;
background: #2583FF;
border-radius: 0rpx 0rpx 0rpx 0rpx;
position: absolute;
left: 50%;
bottom: -8rpx;
transform: translateX(-50%);
}