51 lines
820 B
Plaintext
51 lines
820 B
Plaintext
/* pages/device/detail/detail.wxss */
|
|
.container {
|
|
min-height: 100vh;
|
|
background-color: #F5F5F5;
|
|
padding: 24rpx 32rpx 120rpx;
|
|
}
|
|
|
|
.detail-card {
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
padding: 32rpx;
|
|
margin-bottom: 24rpx;
|
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.card-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 32rpx;
|
|
padding-bottom: 24rpx;
|
|
border-bottom: 1rpx solid #EEEEEE;
|
|
}
|
|
|
|
.device-title {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.remark-content {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
line-height: 1.8;
|
|
padding: 24rpx;
|
|
background: #F5F5F5;
|
|
border-radius: 12rpx;
|
|
}
|
|
|
|
.action-buttons {
|
|
margin-top: 48rpx;
|
|
}
|
|
|