detail.wxss 770 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 1rem;
  12. }
  13. .detail-item label {
  14. width: 5rem;
  15. margin-right: 2rem;
  16. }
  17. .detail-item .imageList{
  18. display: flex;
  19. width: 100%;
  20. flex-wrap: wrap;
  21. align-items: center;
  22. }
  23. .detail-item .imageList .image-item{
  24. display: flex;
  25. flex-direction: column;
  26. }
  27. .detail-item .imageList image {
  28. height: 4rem;
  29. width: 4rem;
  30. }
  31. .detail-item .imageList label {
  32. font-size: 14px;
  33. text-decoration: underline;
  34. color: green;
  35. margin-left: 1rem;
  36. }
  37. .detail-btns {
  38. display: flex;
  39. justify-content: center;
  40. padding: 0.5rem;
  41. }
  42. .detail-btns view{
  43. display: flex;
  44. width: 8rem;
  45. justify-content: space-between;
  46. }