index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .main {
  2. display: flex;
  3. flex-direction: column;
  4. width: 100vw;
  5. }
  6. .main .one {
  7. float: left;
  8. width: 95%;
  9. overflow: hidden;
  10. padding: 20rpx;
  11. }
  12. .main .one .one_1 {
  13. float: left;
  14. width: 100%;
  15. font-size: 28rpx;
  16. font-weight: bold;
  17. padding: 5px 0;
  18. }
  19. .main .one .one_2 {
  20. float: left;
  21. width: 100%;
  22. }
  23. .main .one .one_2 view {
  24. float: left;
  25. width: 50%;
  26. font-size: 22rpx;
  27. color: #666;
  28. }
  29. .main .one .one_2 view:nth-child(2) view {
  30. width: 100%;
  31. text-align: right;
  32. color: #000000;
  33. font-weight: bold;
  34. }
  35. .main .info {
  36. position: relative;
  37. flex-grow: 1;
  38. }
  39. .main .info .two {
  40. height: 62vh;
  41. display: flex;
  42. flex-direction: row;
  43. }
  44. .main .info .two .two_1 {
  45. position: relative;
  46. width: 25vw;
  47. background-color: #fafafa;
  48. display: flex;
  49. flex-direction: column;
  50. }
  51. .main .info .two .two_1 .infoTab {
  52. text-align: center;
  53. padding: 10px 0px;
  54. border-bottom: 1px dashed #ccc;
  55. font-size: 13px;
  56. font-weight: bold;
  57. }
  58. .main .info .two .two_1 .infoActive {
  59. color: #409eff;
  60. }
  61. .main .info .two .two_2 {
  62. flex-grow: 1;
  63. position: relative;
  64. display: flex;
  65. flex-direction: column;
  66. }
  67. .main .info .two .two_1 .info .info_right .info_right1 {
  68. float: left;
  69. width: 100%;
  70. overflow-y: auto;
  71. }
  72. .main .info .two .two_2 .list {
  73. float: left;
  74. width: 93%;
  75. padding: 8px;
  76. border-bottom: 1px solid #f1f1f1;
  77. }
  78. .main .info .two .two_2 .list .image {
  79. float: left;
  80. width: 30%;
  81. }
  82. .main .info .two .two_2 .list .image image {
  83. width: 100%;
  84. height: 70px;
  85. border-radius: 10px;
  86. }
  87. .main .info .two .two_2 .list .other {
  88. float: left;
  89. width: 68%;
  90. padding: 0 0 0 5px;
  91. }
  92. .main .info .two .two_2 .list .other .other_1 {
  93. float: left;
  94. width: 100%;
  95. font-size: 15px;
  96. font-weight: bold;
  97. color: #000000;
  98. }
  99. .main .info .two .two_2 .list .other .other_2 {
  100. float: left;
  101. width: 100%;
  102. }
  103. .main .info .two .two_2 .list .other .other_2 .other_2num {
  104. float: left;
  105. width: 45%;
  106. font-size: 12px;
  107. padding: 5px 0;
  108. color: #666;
  109. }
  110. .main .info .two .two_2 .list .other .other_2 .other_2num text {
  111. color: #ff0000;
  112. }
  113. .main .info .two .two_2 .list .other .other_2 .other_2btn {
  114. float: left;
  115. width: 55%;
  116. }
  117. .main .info .two .two_2 .list .other .other_3 {
  118. float: left;
  119. width: 100%;
  120. color: #ff0000;
  121. font-size: 15px;
  122. }
  123. .main .btn {
  124. display: flex;
  125. align-items: center;
  126. width: 100%;
  127. background-color: #ffffff;
  128. }
  129. .main .btn .btn_1 {
  130. float: left;
  131. width: 64%;
  132. padding: 0 10px;
  133. color: #ff0000;
  134. font-size: 20px;
  135. }
  136. .main .btn .btn_2 {
  137. float: left;
  138. width: 30%;
  139. text-align: center;
  140. }
  141. .main .btn .btn_2 button {
  142. height: 50px;
  143. background-color: #409eff;
  144. }
  145. .scroll-view {
  146. position: absolute;
  147. top: 0;
  148. left: 0;
  149. right: 0;
  150. bottom: 0;
  151. }
  152. .scroll-view .list-scroll-view {
  153. display: flex;
  154. flex-direction: column;
  155. }