app.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. box-sizing: border-box;
  5. color: #333;
  6. /* font-family: helvetica, 'Heiti SC', PingFangSC-Light; */
  7. /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  8. }
  9. ::-webkit-scrollbar {
  10. width: 0!important;
  11. height: 0!important;
  12. }
  13. .uni-btn {
  14. line-height: 1;
  15. margin: 0;
  16. border: none;
  17. padding: 0;
  18. background: transparent;
  19. }
  20. .uni-btn::after {
  21. border: none;
  22. }
  23. page {
  24. height: 100%;
  25. }
  26. input :disabled {
  27. pointer-events: none;
  28. }
  29. .price {
  30. font-family: Arial, serif;
  31. display: inline-block;
  32. color: #eb2444;
  33. padding-bottom: 10rpx;
  34. padding-left: 10rpx;
  35. }
  36. li {
  37. list-style: none;
  38. }
  39. /* 价格数字显示不同大小 */
  40. .symbol {
  41. font-size: 24rpx;
  42. }
  43. .big-num {
  44. font-size: 32rpx;
  45. }
  46. .small-num {
  47. font-size: 24rpx;
  48. }
  49. /*
  50. *改变checkbox样式
  51. *自定义样式
  52. */
  53. /* reg */
  54. uni-checkbox-group {
  55. width: 100% !important;
  56. }
  57. uni-checkbox-group uni-label {
  58. width: 33% !important;
  59. display: inline-flex;
  60. margin-bottom: 20rpx;
  61. }
  62. /*checkbox 选项框大小 */
  63. uni-checkbox .uni-checkbox-input {
  64. width: 38rpx !important;
  65. height: 38rpx !important;
  66. border-radius: 50% !important;
  67. }
  68. /*checkbox选中后样式 */
  69. uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked {
  70. background: #e43130;
  71. border: 1px solid transparent !important;
  72. }
  73. /*checkbox选中后图标样式 */
  74. uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked::before {
  75. display: inline-block;
  76. width: 20rpx;
  77. height: 20rpx;
  78. line-height: 20rpx;
  79. text-align: center;
  80. font-size: 18rpx;
  81. color: #fff;
  82. background: transparent;
  83. transform: translate(-60%, -50%) scale(1);
  84. -webkit-transform: translate(-60%, -50%) scale(1);
  85. }
  86. /*
  87. *改变radio样式
  88. *自定义样式
  89. */
  90. /* 未选中的 背景样式 */
  91. uni-radio .uni-radio-input {
  92. height: 36rpx;
  93. width: 36rpx;
  94. border-radius: 50%;
  95. background: transparent;
  96. box-sizing: border-box;
  97. }
  98. /* 选中后的 背景样式 */
  99. uni-radio .uni-radio-input.uni-radio-input-checked {
  100. border: none !important;
  101. background: #e43130 !important;
  102. }
  103. /* 选中后的 对勾样式 */
  104. uni-radio .uni-radio-input.uni-radio-input-checked::before {
  105. border-radius: 50%;
  106. width: 32rpx;
  107. height: 32rpx;
  108. line-height: 32rpx;
  109. text-align: center;
  110. font-size: 20rpx;
  111. color: #fff;
  112. background: #e43130;
  113. border-radius: 50%;
  114. transform: translate(-50%, -50%) scale(1);
  115. -webkit-transform: translate(-50%, -50%) scale(1);
  116. }
  117. /* 底部按钮兼容 iPhone X以上 */
  118. @media screen and (width: 375px) and (height: 812px) {
  119. .container {
  120. padding-bottom: 70px;
  121. }
  122. }
  123. @media screen and (width: 414px) and (height: 736px) {
  124. .container {
  125. padding-bottom: 70px;
  126. }
  127. }
  128. .uni-swiper-dot-active {
  129. background-color: #eb2444;
  130. }
  131. .flex-center {
  132. display: flex;
  133. align-items: center;
  134. }
  135. .flex-column {
  136. flex-direction: column;
  137. }
  138. /* 字体大小 */
  139. .font-10 {
  140. font-size: 20upx;
  141. }
  142. .font-12 {
  143. font-size: 24upx;
  144. }
  145. .font-14 {
  146. font-size: 28upx;
  147. }
  148. .font-15 {
  149. font-size: 30upx;
  150. }
  151. .font-16 {
  152. font-size: 32upx;
  153. }
  154. .font-17 {
  155. font-size: 34upx;
  156. }
  157. /* 字重 */
  158. .f-w-500 {
  159. font-weight: 500;
  160. }
  161. .f-w-b {
  162. font-weight: bold;
  163. }
  164. /* 文字颜色 */
  165. .f-c-ff {
  166. color: #fff;
  167. }
  168. .f-c-9 {
  169. color: #999999;
  170. }
  171. .f-c-3d {
  172. color: #3d3d3d;
  173. }
  174. .f-c-77 {
  175. color: #777;
  176. }
  177. .f-c-00 {
  178. color: #000;
  179. }
  180. /* 圆角 */
  181. .r-5 {
  182. border-radius: 10upx;
  183. }
  184. .r-10 {
  185. border-radius: 20upx;
  186. }
  187. /* 背景 */
  188. .b-c {
  189. background-color: #EFEFEF;
  190. }
  191. .call-phone {
  192. color: #0078d4;
  193. padding: 0 20upx;
  194. }
  195. view,
  196. text {
  197. /* line-height: 1.5; */
  198. /* font-size: 28upx; */
  199. }
  200. .l-34 {
  201. line-height: 34upx;
  202. }
  203. .f-12 {
  204. font-size: 24upx;
  205. }
  206. .page {
  207. width: 100vw;
  208. min-height: 100vh;
  209. }
  210. .bee-btn {
  211. background-color: transparent;
  212. border: none;
  213. outline: none;
  214. margin: 0;
  215. line-height: 1.5;
  216. border-radius: 0;
  217. font-size: 28upx;
  218. color: #000;
  219. padding: 0;
  220. }
  221. .bee-btn::after {
  222. border: none;
  223. }
  224. .hiden-text {
  225. overflow: hidden;
  226. white-space: nowrap;
  227. text-overflow: ellipsis;
  228. }
  229. .p-color {
  230. color: #fa5151;
  231. }
  232. .f-s-b {
  233. display: flex;
  234. align-items: center;
  235. justify-content: space-between;
  236. }
  237. .f-f-s {
  238. display: flex;
  239. align-items: center;
  240. justify-content: flex-start;
  241. }
  242. .f-f-e {
  243. display: flex;
  244. align-items: center;
  245. justify-content: flex-end;
  246. }
  247. .f-center {
  248. display: flex;
  249. align-items: center;
  250. justify-content: center;
  251. }