index.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* pages/tabber/news/index.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. padding: 210rpx 0 0;
  6. background: #F4F4F4;
  7. }
  8. .nav {
  9. position: fixed;
  10. left: 0;
  11. top: 0;
  12. }
  13. .topBox {
  14. padding: 24rpx 30rpx;
  15. background: #FFFFFF;
  16. }
  17. .topBox .input {
  18. width: 524rpx;
  19. height: 80rpx;
  20. background: #F6F6F6;
  21. border-radius: 8rpx;
  22. padding: 0 30rpx;
  23. }
  24. .topBox .input .icon {
  25. font-size: 24rpx;
  26. color: #666666;
  27. width: 110rpx;
  28. position: relative;
  29. }
  30. .topBox .input .icon::after {
  31. content: '';
  32. position: absolute;
  33. right: 0;
  34. top: 50%;
  35. transform: translate(-50%, 0%);
  36. width: 0;
  37. height: 0;
  38. display: block;
  39. border-top: 10rpx solid #9B9B9B;
  40. border-bottom: 10rpx solid transparent;
  41. border-left: 10rpx solid transparent;
  42. border-right: 10rpx solid transparent;
  43. }
  44. .topBox .btn {
  45. width: 136rpx;
  46. height: 68rpx;
  47. line-height: 68rpx;
  48. background: #52A1FF;
  49. border-radius: 8rpx;
  50. }
  51. .menu {
  52. background-color: #FFFFFF;
  53. }
  54. .menu .box {
  55. width: 250rpx;
  56. height: 88rpx;
  57. background: #FFFFFF;
  58. font-size: 28rpx;
  59. color: #333333;
  60. }
  61. .list {
  62. padding: 24rpx 32rpx;
  63. }
  64. .list .item {
  65. width: 686rpx;
  66. /* height: 274rpx; */
  67. background: #FFFFFF;
  68. border-radius: 8rpx;
  69. padding: 32rpx 24rpx;
  70. }
  71. .list .item .top .le {
  72. font-size: 28rpx;
  73. font-weight: 500;
  74. color: #333333;
  75. }
  76. .list .item .top .lr {
  77. font-size: 24rpx;
  78. color: #999999;
  79. }
  80. .list .item .time {
  81. font-size: 26rpx;
  82. color: #666666;
  83. }
  84. .list .item .contioner .box {
  85. width: 196rpx;
  86. height: 116rpx;
  87. background: #F8F8F8;
  88. border-radius: 8rpx;
  89. flex-direction: column;
  90. }
  91. .list .item .contioner .box .num {
  92. font-size: 28rpx;
  93. font-weight: 500;
  94. color: #333333;
  95. }
  96. .list .item .contioner .box .tips {
  97. font-size: 24rpx;
  98. color: #999999;
  99. }
  100. .header_view{
  101. position: fixed;
  102. top: 0;
  103. left: 0;
  104. z-index: 2;
  105. width: 100vw;
  106. background: #fff;
  107. padding: 0 30rpx;
  108. }
  109. .input_select_left{
  110. flex: 1;
  111. height: 80rpx;
  112. border-radius: 8rpx;
  113. background: #f6f6f6;
  114. }
  115. .input_select_left>view:nth-child(1){
  116. margin: 0 30rpx;
  117. justify-content: center;
  118. font-size: 24rpx;
  119. color: #666;
  120. }
  121. .input_select_left>view:nth-child(2){
  122. flex: 1;
  123. height: 80rpx;
  124. font-size: 24rpx;
  125. color: #333;
  126. }
  127. .select_inp_input{
  128. width: 100%;
  129. height: 100%;
  130. }
  131. .input_select_right{
  132. margin-left: 30rpx;
  133. width: 136rpx;
  134. height: 68rpx;
  135. border-radius: 8rpx;
  136. background: #52A1FF;
  137. font-size: 28rpx;
  138. color: #fff;
  139. }
  140. .input_select_view{
  141. margin: 24rpx 0;
  142. }
  143. .select_inp_icon{
  144. width: 20rpx;
  145. height: 20rpx;
  146. display: inline-block;
  147. margin-left: 6rpx;
  148. }
  149. .header_bottom{
  150. font-size: 28rpx;
  151. color: #333;
  152. height: 88rpx;
  153. }
  154. .header_bottom>view{
  155. flex: 1;
  156. display: flex;
  157. justify-content: center;
  158. align-items: center;
  159. border-right: 1rpx solid #ededed;
  160. }
  161. .header_bottom>view:nth-last-child(1){
  162. border-right: 0 solid #ededed;
  163. }
  164. .header_bottom_icon{
  165. display: inline-block;
  166. width: 24rpx;
  167. height: 24rpx;
  168. margin-left: 6rpx;
  169. }
  170. .font_maxw{
  171. max-width: 180rpx;
  172. display: -webkit-box;
  173. -webkit-box-orient: vertical;
  174. -webkit-line-clamp: 1;
  175. overflow: hidden;
  176. }