rtuConstructionReport.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. @import "/pages/wxgrid/wxgrid.wxss";
  2. .publishContainer {
  3. width: 100%;
  4. height: 50%;
  5. }
  6. .publishContainer text{
  7. font-size:0.8rem;
  8. color:gray;
  9. }
  10. .mapBox{
  11. width: 100%;
  12. height: 50%;
  13. }
  14. .controls {
  15. position: relative;
  16. top: 10%;
  17. height: 280rpx;
  18. width: 80%;
  19. left: 10%;
  20. background-color: whitesmoke;
  21. }
  22. .title {
  23. width: 100%;
  24. height: 100rpx;
  25. background-color: #5C6F73;
  26. font-size: 18rpx;
  27. color: blue;
  28. display: flex;
  29. flex-direction: row;
  30. white-space: nowrap;
  31. justify-content: flex-start;
  32. }
  33. .desc {
  34. width: 100%;
  35. height: 180rpx;
  36. display: block;
  37. background-color: whitesmoke;
  38. font-size: 30rpx;
  39. white-space: pre-line;
  40. color: black;
  41. padding: 10rpx;
  42. }
  43. .look{
  44. color:lightblue;
  45. font-size: 22rpx;
  46. border-bottom: 1px blue solid;
  47. display:flex;
  48. flex-direction: column;
  49. justify-content: center;
  50. margin-left: 50rpx;
  51. }
  52. .headIcon {
  53. width: 80rpx;
  54. height: 80rpx;
  55. margin: 10rpx;
  56. border-radius: 10rpx;
  57. }
  58. .name {
  59. height: 100rpx;
  60. font-size: 30rpx;
  61. margin-left: 20rpx;
  62. color: whitesmoke;
  63. display:flex;
  64. flex-direction: column;
  65. justify-content: center;
  66. }
  67. .location-info{
  68. position: relative;
  69. top: 0rpx;
  70. width: 80%;
  71. left: 0rpx;
  72. width:100%;
  73. height:200rpx;
  74. background-color: rgba(0,0,0,0.3);
  75. }
  76. .location-info-text{
  77. font-size: 26rpx;
  78. color:white;
  79. margin-left:10rpx;
  80. margin-top:10rpx;
  81. }
  82. .descInputBox {
  83. width: 100%;
  84. height: 20%;
  85. display: flex;
  86. flex-direction: row;
  87. justify-content: center;
  88. white-space: nowrap;
  89. padding-top: 10rpx;
  90. }
  91. .descInput {
  92. background-color: transparent;
  93. height: 80rpx;
  94. font-size: 30rpx;
  95. border-bottom: 1px gray solid;
  96. margin-left: 20rpx;
  97. margin-right: 20rpx;
  98. width: 100%;
  99. }
  100. .photoBox {
  101. width: 100%;
  102. display: flex;
  103. flex-direction: row;
  104. justify-content: center;
  105. padding-top: 40rpx;
  106. }
  107. .scroll-list {
  108. width: 96%;
  109. margin-left: auto;
  110. margin-right: auto;
  111. }
  112. .photo {
  113. width: 600rpx;
  114. height: 600rpx;
  115. }
  116. .item-img {
  117. width: 120rpx;
  118. height: 120rpx;
  119. margin: 5rpx 5rpx 5rpx 5rpx;
  120. border-radius: 12rpx;
  121. }
  122. .buttonBox {
  123. height: 100rpx;
  124. width: 100%;
  125. margin-top: 10rpx;
  126. margin-bottom: 10rpx;
  127. position: absolute;
  128. bottom: 0rpx;
  129. left: 0rpx;
  130. display: flex;
  131. flex-direction: row;
  132. justify-content: center;
  133. }
  134. .buttonBox button {
  135. width: 90%;
  136. }
  137. .textarea {
  138. font-size: 28rpx;
  139. /* margin: 10%; */
  140. background-color:white;
  141. width: 95%;
  142. /* height: 100%; */
  143. /* margin-top: 10rpx; */
  144. padding:10rpx;
  145. }
  146. .placeholder {
  147. font-size: 0.7rem;
  148. color: darkgray;
  149. }
  150. .weather-text{
  151. word-break: break-all;
  152. font-size: 24rpx;
  153. color: gray;
  154. }
  155. .weather-text-title{
  156. font-size: 26rpx;
  157. color: #426666;
  158. }
  159. .location-text{
  160. font-size: 26rpx;
  161. color: gray;
  162. }
  163. .address-text{
  164. /* word-break: break-all; */
  165. font-size: 26rpx;
  166. color: gray;
  167. }
  168. .top-info{
  169. background-color: white;
  170. height: 330rpx;
  171. }
  172. .rtuCode-box{
  173. background-color: white;
  174. margin-top: 20rpx;
  175. display: flex;
  176. flex-direction: row;
  177. height: 80rpx;
  178. align-items: center;
  179. }
  180. .rtuCode-text{
  181. margin-left:10px;
  182. margin-right:10px;
  183. color: #426666;
  184. }
  185. .prog-info{
  186. background-color: white;
  187. margin-top: 20rpx;
  188. }
  189. .submit-button{
  190. background-color: #426666;
  191. }
  192. .button-check{
  193. height: 100%;
  194. display: flex;
  195. justify-content: center;
  196. flex-direction: column;
  197. }
  198. .check-btn{
  199. height: 22px;
  200. width: 60px;
  201. background-color: #669999;
  202. }
  203. .btn-hover-class{
  204. background-color:coral;
  205. }