1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pages/deviceDetail/detail.wxss */
- .container {}
- .img_section {
- width: 100%;
- height: 648rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .avatar {
- width: 470rpx;
- height: 432rpx;
- background: #F2F5F7;
- border-radius: 24rpx;
- }
- .section {
- margin-bottom: 20px;
- }
- .title {
- font-size: 16px;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .item {
- display: flex;
- align-items: center;
- border-bottom: 1px solid #e0e0e0;
- justify-content: space-between;
- margin-inline: 32rpx;
- height: 120rpx;
- }
- .left-content {
- display: flex;
- align-items: center;
- }
- .label {
- font-size: 16px;
- color: #333333;
- margin-left: 32rpx;
- }
- .arrow {
- width: 20px;
- height: 20px;
- margin-right: 16rpx;
- }
- .switch {
- width: 88rpx;
- height: 44rpx;
- margin-right: 16rpx;
- }
- .red {
- width: 10rpx;
- height: 10rpx;
- margin-top: -14rpx;
- background-color: #6546A3;
- border-radius: 50%;
- margin-left: 12rpx;
- }
- .question {
- margin-left: 8rpx;
- width: 40rpx;
- height: 40rpx;
- }
|