app.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. /* padding: 200rpx 0; */
  9. box-sizing: border-box;
  10. }
  11. .custom-info-btn{
  12. padding: 5px 25px;
  13. width: auto;
  14. height: auto;
  15. display: flex;
  16. justify-content: center;
  17. border-radius: 3px;
  18. background-color: #7a7777;
  19. }
  20. .custom-info-btn:active{
  21. background-color: #c2b8b8;
  22. box-shadow: 1px 1px 5px black;
  23. }
  24. /* 方块组件 */
  25. .rounded-chunk{
  26. width: 100%;
  27. height: auto;
  28. /* display: flex; */
  29. padding: 5px;
  30. box-sizing: border-box;
  31. }
  32. .rounded-chunk > .chunk{
  33. width: 100%;
  34. height: auto;
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: center;
  38. align-items: center;
  39. background-color: #f5f5f5;
  40. border-radius: 3px;
  41. box-shadow: 1px 1px 5px black;
  42. }
  43. .chunk-title{
  44. width: 100%;
  45. font-size: large;
  46. height: auto;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. padding: 5px;
  51. box-sizing: border-box;
  52. background-color: #f5f5f5;
  53. box-shadow: 1px 1px 5px black;
  54. }
  55. .c-content{
  56. width: 100%;
  57. height: auto;
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: center;
  61. align-items: center;
  62. padding: 5px;
  63. box-sizing: border-box;
  64. background-color: #f5f5f5;
  65. box-shadow: 1px 1px 5px black;
  66. }
  67. .line{
  68. width: 100%;
  69. height: 35px;
  70. display: flex;
  71. box-sizing: border-box;
  72. align-items: center;
  73. background-color: #f5f5f5;
  74. padding: 5px;
  75. }
  76. .line > .info{
  77. width: 70%;
  78. height: 100%;
  79. display: flex;
  80. /* justify-content: center; */
  81. align-items: center;
  82. box-sizing: border-box;
  83. border-right: 1px solid #d9d9d9;
  84. }
  85. .line > .select{
  86. width: 30%;
  87. height: 100%;
  88. display: flex;
  89. justify-content: center;
  90. align-items: center;
  91. }
  92. .align-left{
  93. text-align: left;
  94. }
  95. /** 上半圆 **/
  96. .rounded-t{
  97. border-radius: 3px 3px 0 0;
  98. }
  99. /** 下半圆 **/
  100. .rounded-b{
  101. border-radius: 0 0 3px 3px;
  102. }
  103. .hr-b{
  104. border-bottom: 1px solid #d9d9d9;
  105. }
  106. .hr-t{
  107. border-top: 1px solid #d9d9d9;
  108. }
  109. /* 字体大小 */
  110. .bool-font{
  111. font-weight: bold;
  112. }
  113. .font-xxl{
  114. font-size: xx-large;
  115. }
  116. .font-xl{
  117. font-size: x-large;
  118. }
  119. .font-l{
  120. font-size: large;
  121. }
  122. .font-m{
  123. font-size: medium;
  124. }
  125. .font-s{
  126. font-size: small;
  127. }
  128. .font-xs{
  129. font-size: x-small;
  130. }
  131. /* 字体颜色 */
  132. .red{
  133. color: red;
  134. }
  135. .black{
  136. color: black;
  137. }
  138. .gray{
  139. color: gray;
  140. }
  141. .white{
  142. color: white;
  143. }
  144. .green{
  145. color: green;
  146. }
  147. /* 横向排列 */
  148. .flex-row{
  149. display: flex;
  150. flex-direction: row;
  151. justify-content: center;
  152. align-items: center;
  153. }
  154. .w-full{
  155. width: 100%;
  156. }
  157. .mx-10{
  158. margin-left: 10px;
  159. margin-right: 10px;
  160. }
  161. .text-red{
  162. color: red;
  163. }
  164. .mt-sm{
  165. margin-top: 5px;
  166. }
  167. .mt{
  168. margin-top: 10px;
  169. }
  170. .mt-xl{
  171. margin-top: 15px;
  172. }
  173. .mt-xxl{
  174. margin-top: 20px;
  175. }
  176. .p2{
  177. padding: 2px;
  178. }
  179. .pt-2{
  180. padding-top: 2px;
  181. }
  182. .pb-2{
  183. padding-bottom: 2px;
  184. }
  185. .pl-2{
  186. padding-left: 2px;
  187. }
  188. .pr-2{
  189. padding-right: 2px;
  190. }
  191. .rounded{
  192. border-radius: 3px;
  193. }