user.wxss 2.5 KB

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