detail.wxss 651 B

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