12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* pages/deviceDetail/detail.wxss */
- .container {
- padding: 20px;
- }
- .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;
- justify-content: space-between;
- align-items: center;
- padding: 10px 0;
- border-bottom: 1px solid #eee;
- }
- .label {
- font-size: 14px;
- }
- .arrow {
- font-size: 14px;
- color: #999;
- }
|