detail.wxss 686 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* pages/deviceDetail/detail.wxss */
  2. /* pages/settings/settings.wxss */
  3. .container {
  4. padding: 20px;
  5. }
  6. .img_section {
  7. width: 100%;
  8. height: 648rpx;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. }
  13. .avatar {
  14. width: 470rpx;
  15. height: 432rpx;
  16. background: #F2F5F7;
  17. border-radius: 24rpx;
  18. }
  19. .section {
  20. margin-bottom: 20px;
  21. }
  22. .title {
  23. font-size: 16px;
  24. font-weight: bold;
  25. margin-bottom: 10px;
  26. }
  27. .item {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. padding: 10px 0;
  32. border-bottom: 1px solid #eee;
  33. }
  34. .label {
  35. font-size: 14px;
  36. }
  37. .arrow {
  38. font-size: 14px;
  39. color: #999;
  40. }