detail.wxss 574 B

12345678910111213141516171819202122232425262728293031323334353637
  1. page{
  2. background-color: #ebebeb;
  3. }
  4. .detail {
  5. border-radius: 0.5rem;
  6. background-color: #fff;
  7. margin: 0.2rem;
  8. }
  9. .detail-item {
  10. display: flex;
  11. padding: 0.4rem;
  12. }
  13. .detail-item label {
  14. width: 5rem;
  15. }
  16. .detail-item .imageList{
  17. display: flex;
  18. width: 100%;
  19. flex-wrap: wrap;
  20. }
  21. .detail-item .imageList .image-item{
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .detail-item image {
  26. height: 4rem;
  27. }
  28. .detail-btns {
  29. display: flex;
  30. justify-content: center;
  31. padding: 0.5rem;
  32. }
  33. .detail-btns view{
  34. display: flex;
  35. width: 8rem;
  36. justify-content: space-between;
  37. }