info.wxss 2.6 KB

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