49 lines
737 B
Plaintext
49 lines
737 B
Plaintext
/* pages/device_status/index.wxss */
|
|
|
|
.device-page {
|
|
min-height: 100vh;
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
.device-container {
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.device-panel {
|
|
margin-bottom: 24rpx;
|
|
border-radius: 12rpx;
|
|
overflow: hidden;
|
|
background-color: #fff;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.device-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 16rpx;
|
|
color: #0052d9;
|
|
}
|
|
|
|
.sub-device-cell {
|
|
padding: 20rpx 32rpx;
|
|
}
|
|
|
|
.status-tag-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
/* 适配不同状态的标签样式 */
|
|
.t-tag--success {
|
|
color: #07c160 !important;
|
|
}
|
|
|
|
.t-tag--primary {
|
|
color: #0052d9 !important;
|
|
}
|
|
|
|
.t-tag--warning {
|
|
color: #ff9702 !important;
|
|
}
|