style.less 856 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .top-body{
  2. border-top: .0625rem solid #e6e6e6;
  3. line-height: 1.5;
  4. padding: 1.25rem 10%;
  5. align-items: center;
  6. box-sizing: border-box;
  7. background: #fff;
  8. margin: 1rem 0;
  9. }
  10. .table-interface{
  11. overflow-y: auto;
  12. overflow-x: hidden;
  13. height: calc(100% - 3rem);
  14. }
  15. .top-body .top-con{
  16. font-weight: bold;
  17. }
  18. .showImg{
  19. display: flex;
  20. justify-content: space-between;
  21. width: 100%;
  22. >div{
  23. flex: 1;
  24. >img{
  25. width: 100%;
  26. }
  27. }
  28. }
  29. .banshi{
  30. line-height: 1;
  31. font-size: 0;
  32. >div{
  33. display: flex;
  34. justify-content: space-between;
  35. margin-bottom: 10px;
  36. >div{
  37. flex: 1;
  38. border: 1px solid #ccc;
  39. min-height: 100px;
  40. width: calc(100% - 2px);
  41. margin-right: 2px;
  42. >img{
  43. cursor: pointer;
  44. width: 100%;
  45. }
  46. &:last-of-type{
  47. margin-right: 0;
  48. }
  49. }
  50. }
  51. }