info.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. }
  89. .main .foot {
  90. position: fixed;
  91. width: 96vw;
  92. bottom: 8vh;
  93. right: 1vw;
  94. text-align: right;
  95. }
  96. .main .foot .mymatch {
  97. display: inline-block;
  98. width: 10vw;
  99. padding: 1vw;
  100. text-align: center;
  101. background-color: green;
  102. color: #fff;
  103. font-size: 14px;
  104. border-radius: 5px;
  105. }
  106. .two {
  107. display: flex;
  108. flex-direction: column;
  109. border-radius: 5px;
  110. background-color: #f1f1f1;
  111. color: #666;
  112. }
  113. .two .two_1 {
  114. width: 80vw;
  115. }
  116. .two .two_1 input {
  117. width: 96%;
  118. height: 30px;
  119. font-size: 15px;
  120. margin: 5px;
  121. padding: 3px;
  122. background-color: #fff;
  123. }
  124. .two .two_1 textarea {
  125. width: 96%;
  126. font-size: 15px;
  127. padding: 3px;
  128. margin: 5px;
  129. background-color: #fff;
  130. }
  131. .two .two_2 {
  132. width: 80vw;
  133. text-align: center;
  134. }
  135. .two .two_2 button {
  136. width: 30%;
  137. font-size: 14px;
  138. padding: 2vw 0;
  139. }