info.less 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. // background-color: #fff;
  7. }
  8. .zero:last-child {
  9. margin: 0;
  10. }
  11. .one {
  12. flex-grow: 1;
  13. position: relative;
  14. width: 96vw;
  15. .scroll-view {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. right: 0;
  20. bottom: 0;
  21. .infos {
  22. display: flex;
  23. flex-direction: column;
  24. flex-wrap: wrap;
  25. align-content: flex-start;
  26. justify-content: space-between;
  27. .top {
  28. width: 96vw;
  29. border-bottom: 1px dashed #cccccc;
  30. .one_1 {
  31. text-align: center;
  32. font-weight: bold;
  33. font-size: 20px;
  34. padding: 6vw 0;
  35. }
  36. .one_2 {
  37. display: flex;
  38. justify-content: space-between;
  39. font-size: 16px;
  40. color: #666666;
  41. padding: 2vw 0;
  42. text {
  43. padding-right: 5px;
  44. }
  45. }
  46. }
  47. .cont {
  48. width: 96vw;
  49. padding: 2vw 0 0 0;
  50. border-bottom: 1px dashed #ffc0c0;
  51. }
  52. .bom {
  53. padding: 5px;
  54. .list {
  55. display: flex;
  56. flex-direction: column;
  57. margin: 0 0 8px 0;
  58. padding: 5px 0;
  59. border-bottom: 1px dashed #cccccc;
  60. .list_1 {
  61. display: flex;
  62. flex-direction: row;
  63. .name {
  64. width: 20vw;
  65. }
  66. .list_bom {
  67. width: 74vw;
  68. display: flex;
  69. flex-direction: column;
  70. .title {
  71. font-size: 15px;
  72. }
  73. .content {
  74. color: #666;
  75. font-size: 14px;
  76. }
  77. }
  78. }
  79. .time {
  80. width: 93vw;
  81. font-size: 14px;
  82. text-align: right;
  83. }
  84. }
  85. }
  86. }
  87. }
  88. }
  89. .foot {
  90. position: fixed;
  91. width: 96vw;
  92. bottom: 8vh;
  93. right: 1vw;
  94. text-align: right;
  95. .mymatch {
  96. display: inline-block;
  97. width: 10vw;
  98. padding: 1vw;
  99. text-align: center;
  100. background-color: green;
  101. color: #fff;
  102. font-size: 14px;
  103. border-radius: 5px;
  104. }
  105. }
  106. }
  107. .two {
  108. display: flex;
  109. flex-direction: column;
  110. border-radius: 5px;
  111. background-color: #f1f1f1;
  112. color: #666;
  113. .two_1 {
  114. width: 80vw;
  115. input {
  116. width: 96%;
  117. height: 30px;
  118. font-size: 15px;
  119. margin: 5px;
  120. padding: 3px;
  121. background-color: #fff;
  122. }
  123. textarea {
  124. width: 96%;
  125. font-size: 15px;
  126. padding: 3px;
  127. margin: 5px;
  128. background-color: #fff;
  129. }
  130. }
  131. .two_2 {
  132. width: 80vw;
  133. text-align: center;
  134. button {
  135. width: 30%;
  136. font-size: 14px;
  137. padding: 2vw 0;
  138. }
  139. }
  140. }