detail.wxss 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. margin-top: 5px;
  31. margin-right: 2px;
  32. }
  33. .detail-item .imageList text {
  34. font-size: 14px;
  35. text-decoration: underline;
  36. color: green;
  37. margin-left: 1rem;
  38. }
  39. .detail-btns {
  40. display: flex;
  41. justify-content: center;
  42. padding: 0.5rem;
  43. }
  44. .detail-btns view{
  45. display: flex;
  46. width: 16rem;
  47. justify-content: space-between;
  48. }