index.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /**index.wxss**/
  2. @import "list/index-list.wxss";
  3. @import "publish/publishPhoto.wxss";
  4. page{
  5. position: fixed;
  6. width: 100%;
  7. height: 100%;
  8. overflow: hidden;
  9. }
  10. .htmlBox {
  11. position: fixed;
  12. width: 100%;
  13. height: 100%;
  14. overflow: hidden;
  15. }
  16. .logo {
  17. height: 10%;
  18. width: 100%;
  19. background-color: #f0e500;
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. .rtuCode-input-box{
  26. color:darkgray;
  27. font-size:30rpx;
  28. padding-left: 10rpx;
  29. padding-top: 2px;
  30. }
  31. .logo .titleIcon {
  32. height: 100rpx;
  33. display: inline-flex;
  34. justify-content: center;
  35. flex-direction: row;
  36. }
  37. .logo .imagebox {
  38. margin-left: 4rpx;
  39. margin-right: 4rpx;
  40. display: inline-flex;
  41. flex-direction: column;
  42. justify-content: center;
  43. }
  44. .logo .titleIconItem {
  45. width: 100rpx;
  46. }
  47. .county {
  48. width: 30%;
  49. }
  50. .viewBox {
  51. width: 100%;
  52. height: 90%;
  53. }
  54. .topBar {
  55. display: flex;
  56. flex-direction: row;
  57. justify-content: space-around;
  58. background-color: goldenrod;
  59. height: 10%;
  60. align-items: center;
  61. }
  62. .newsNormal {
  63. height: 40rpx;
  64. display: flex;
  65. align-items: flex-end;
  66. border-bottom: 2px transparent solid;
  67. color: black;
  68. }
  69. .newsSelected {
  70. border-bottom: 2px orchid solid;
  71. height: 40rpx;
  72. display: flex;
  73. align-items: flex-end;
  74. color: #21ac00;
  75. }
  76. .tabText {
  77. text-align: center;
  78. font-size: 32rpx;
  79. }
  80. .ViewContent {
  81. height: 100%;
  82. width: 100%;
  83. }
  84. .toolBar{
  85. width:100%;
  86. display: flex;
  87. flex-direction: row;
  88. justify-content: center;
  89. margin-top: 20rpx;
  90. margin-bottom: 20rpx;
  91. }
  92. .listContainer {
  93. height: 100%;
  94. /* padding-left: 16rpx; */
  95. display: flex;
  96. flex-direction: column;
  97. /*background: #efeff4;*/
  98. }
  99. .titlebox {
  100. width: 100%;
  101. height: 60rpx;
  102. margin: 4rpx 4rpx 4rpx 4rpx;
  103. display: flex;
  104. flex-direction: row;
  105. white-space: nowrap;
  106. justify-content: center;
  107. align-items: center;
  108. }
  109. .publish_button {
  110. height:80rpx;
  111. width: 200rpx;
  112. background-color: yellow;
  113. border-top-left-radius: 40rpx;
  114. border-bottom-left-radius: 40rpx;
  115. display: flex;
  116. flex-direction: row;
  117. align-items: center;
  118. }
  119. .publish_button image{
  120. height: 60rpx;
  121. width: 60rpx;
  122. margin-left: 40rpx;
  123. }
  124. .publish_button_box{
  125. height:80rpx;
  126. width: 200rpx;
  127. position: absolute;
  128. right: 0rpx;
  129. bottom: 40rpx;
  130. }
  131. .pulish_button_show{
  132. animation: move_show 1s 1;
  133. animation-fill-mode:forwards;
  134. }
  135. .pulish_button_hide{
  136. animation: move_hide 1s 1;
  137. animation-fill-mode:forwards;
  138. }
  139. @keyframes move_show{
  140. from {right:-200rpx;}
  141. to {right:0rpx;}
  142. }
  143. @keyframes move_hide{
  144. from {right:0rpx;}
  145. to {right:-200rpx;}
  146. }
  147. .flex-wrp{
  148. display: flex;
  149. justify-content: center;
  150. }
  151. /* .weui-input input{
  152. border-style: groove;
  153. border-color: red;
  154. } */
  155. view.search {
  156. display: flex;
  157. flex-direction: row;
  158. height: 100rpx;
  159. width: 100%;
  160. background: #efeff4;
  161. align-items: center;
  162. margin-bottom: 5px;
  163. }
  164. view.searchItem {
  165. display: flex;
  166. width: 100%;
  167. height: 70rpx;
  168. background: #fff;
  169. flex-direction: row;
  170. border-radius: 10rpx;
  171. margin-left: 16rpx;
  172. }
  173. view.searchItem image {
  174. height: 40rpx;
  175. width: 40rpx;
  176. align-self: center;
  177. margin-left: 10rpx;
  178. margin-right: 20rpx;
  179. }
  180. view.searchItem input {
  181. flex: 1;
  182. font-size:30rpx;
  183. padding-top: 7px;
  184. padding-left: 10px;
  185. }