contract_detail.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. body {
  2. font-size: 3.7vw !important;
  3. background-color: rgb(251, 251, 251);
  4. margin: 0 !important;
  5. padding: 0 !important;
  6. background-color: rgb(251, 251, 251) !important;
  7. }
  8. .top {
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. padding-right: 2vw;
  13. z-index: 1000;
  14. }
  15. .contract-detail{
  16. margin-top: 7vh;
  17. }
  18. .item-1, .item-3, .item-5, .item-7, .item-9{
  19. display: flex;
  20. flex-direction: column;
  21. margin: 4vw 0;
  22. padding: 0vw 4vw;
  23. }
  24. .item-2, .item-4, .item-6, .item-8, .item-10{
  25. background-color: #fff;
  26. margin: 0 4vw;
  27. box-shadow: 0 1px 3px 0 rgb(5 32 96 / 10%);
  28. padding: 2vw 2vw;
  29. }
  30. .item-1{
  31. }
  32. .title{
  33. margin-bottom: 1vw;
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. }
  38. .item-inner{
  39. display: flex;
  40. margin-bottom: 0.5vw;
  41. }
  42. .content{
  43. width: 50%;
  44. }
  45. #filesBox li{
  46. width: 28vw;
  47. height: auto;
  48. }
  49. #filesBox{
  50. /*padding: 2vw;*/
  51. text-align: center;
  52. display: flex;
  53. flex-direction: row;
  54. flex-wrap: wrap;
  55. }
  56. #filesBox img{
  57. height: 15vw !important;
  58. }
  59. #filesBox p{
  60. width: 27vw;
  61. text-align: center;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. white-space: nowrap;
  65. }
  66. #filesBox layui-btn-group{
  67. display: none;
  68. }