create.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /* pages/order/index.wxss */
  2. .center {
  3. text-align: center;
  4. }
  5. .van-button--primary {
  6. background-color: rgb(15, 179, 123) !important;
  7. border-color:rgb(15, 179, 123) !important;
  8. }
  9. .my-swipe {
  10. width: 100%;
  11. z-index: 1;
  12. height: 185px;
  13. }
  14. .my-swipe .img {
  15. width: 100%;
  16. }
  17. .wx-swiper-dots {
  18. margin-bottom: 20px;
  19. }
  20. .box {
  21. box-sizing: border-box;
  22. width: 100%;
  23. min-height: 60vh;
  24. background-color: #ffffff;
  25. border-radius: 20px 20px 0 0;
  26. position: absolute;
  27. top: 185px;
  28. left: 0;
  29. z-index: 0;
  30. box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
  31. padding: 0 15px 80px 15px;
  32. }
  33. .box .h3 {
  34. font-size: 16px;
  35. padding: 15px 0;
  36. }
  37. .box .h3 .small {
  38. font-size: 12px;
  39. color: rgb(255, 0, 0);
  40. font-weight: normal;
  41. }
  42. .box .h3 .small2 {
  43. font-size: 12px;
  44. color: #afa8a8;
  45. font-weight: normal;
  46. }
  47. .box .h3 .span {
  48. font-size: 14px;
  49. color: #ccc;
  50. font-weight: normal;
  51. float: right;
  52. }
  53. .box .input-box {
  54. position: relative;
  55. margin-bottom: 10px;
  56. }
  57. .box .input-box .my-input {
  58. box-sizing: border-box;
  59. width: 100%;
  60. height: 44px;
  61. line-height: 44px;
  62. border: 0;
  63. border-radius: 5px;
  64. box-shadow: 0 1px 2px 2px rgba(15, 179, 123, 0.1);
  65. padding-left: 25px;
  66. font-size: 18px;
  67. font-weight: bold;
  68. color:red;
  69. }
  70. .box .input-box .input-left, .input-right {
  71. position: absolute;
  72. top: 0;
  73. z-index: 999;
  74. line-height: 44px;
  75. font-size: 12px;
  76. color: red;
  77. }
  78. .box .input-box .input-left {
  79. left: 10px;
  80. font-weight: bold;
  81. line-height: 46px;
  82. }
  83. .box .input-box .input-right {
  84. right: 10px;
  85. color: #999;
  86. }
  87. .box .gas .van-button {
  88. line-height: 1.5em;
  89. border-radius: 3px;
  90. margin-bottom: 10px;
  91. height: 54px;
  92. }
  93. .box .gas .van-button .p {
  94. font-size: 9px;
  95. margin-block: 0;
  96. }
  97. .box .gas .van-button--default {
  98. background-color: #eee;
  99. color: rgb(102,101,104);
  100. }
  101. .box .btn-money .van-button {
  102. border: 0;
  103. box-shadow: 0 1px 2px 2px rgba(15, 179, 123, 0.1);
  104. color: rgb(168, 170, 170);
  105. height: 40px;
  106. }
  107. .box .tips {
  108. padding: 10px;
  109. color: rgb(240, 180, 80);
  110. }
  111. .box .tips van-icon {
  112. vertical-align: middle;
  113. }
  114. .box .tips .span {
  115. font-size: 14px;
  116. }
  117. .box .van-popup {
  118. box-sizing: border-box;
  119. padding: 10px 20px 0 20px;
  120. top: 20vh;
  121. }
  122. .van-goods-action {
  123. position: fixed;
  124. right: 0;
  125. bottom: 0;
  126. left: 0;
  127. display: flex;
  128. align-items: center;
  129. box-sizing: content-box;
  130. height: 80px;
  131. padding: 0 15px;
  132. background-color: #fff;
  133. }
  134. /* ---弹窗css--- */
  135. .modal-mask {
  136. width: 100%;
  137. height: 100%;
  138. position: fixed;
  139. top: 0;
  140. left: 0;
  141. background: #000;
  142. opacity: 0.5;
  143. overflow: hidden;
  144. color: #fff;
  145. }
  146. .modal-dialog {
  147. width: 72%;
  148. position: absolute;
  149. top: 30%;
  150. left: 14%;
  151. background: #fff;
  152. border-radius: 12rpx;
  153. }
  154. .modal-content{
  155. text-align: center;
  156. }
  157. .modal-content .show{
  158. width: 450rpx;
  159. height: 323rpx;
  160. display: block;
  161. margin: 0 auto;
  162. margin-top: -118rpx;
  163. z-index: 10000;
  164. }
  165. .iconWx{
  166. width:52rpx;
  167. height: 41rpx;
  168. padding-right: 20rpx;
  169. }
  170. .iconPhone{
  171. width:56rpx;
  172. height: 56rpx;
  173. padding-right: 15rpx;
  174. }
  175. .modal-content view:nth-of-type(2){
  176. font-size: 38rpx;
  177. color: #333333;
  178. line-height: 1;
  179. }
  180. .modal-content view:nth-of-type(3){
  181. font-size: 26rpx;
  182. color: #9c9c9c;
  183. margin: 18rpx 0 29rpx;
  184. line-height: 1;
  185. }
  186. .modal-content button:nth-of-type(1){
  187. width: 80%;
  188. height: 80rpx;
  189. border-radius: 60rpx;
  190. margin: 0 auto 80rpx;
  191. font-size: 30rpx;
  192. color: #fff;
  193. background: #31cc32;
  194. display: flex;
  195. flex-direction: row;
  196. align-items: center;
  197. justify-content: center;
  198. padding: 0;
  199. box-sizing: border-box;
  200. }
  201. .modal-content button:nth-of-type(1)::after{
  202. border: none;
  203. }
  204. .modal-content .wxLogin{
  205. font-size: 26rpx;
  206. color: #424242;
  207. display: flex;
  208. flex-direction: row;
  209. align-items: center;
  210. justify-content: center;
  211. margin: 38rpx 0 80rpx;
  212. }
  213. button::after{
  214. border: none;
  215. }
  216. .mask_layer {
  217. width: 100%;
  218. height: 100%;
  219. position: fixed;
  220. z-index: 999;
  221. left:0;top:0;
  222. background: #000;
  223. opacity: 0.5;
  224. overflow: hidden;
  225. }
  226. .modal_box {
  227. width: 76%;
  228. overflow: hidden;
  229. position: fixed;
  230. top: 50%;
  231. left: 0;
  232. z-index: 1001;
  233. background: #fafafa;
  234. margin: -150px 12% 0 12%;
  235. border-radius: 3px;
  236. }
  237. .title {
  238. padding: 15px;
  239. text-align: center;
  240. background-color: gazure;
  241. }
  242. .content {
  243. overflow-y: scroll; /*超出父盒子高度可滚动*/
  244. }
  245. .input_show1{
  246. margin: 0 auto;
  247. width: 80%;
  248. margin-left: 10%;
  249. font-size: 32rpx;
  250. text-align: center;
  251. }
  252. .btn1 {
  253. width: 100%;
  254. margin-top: 65rpx;
  255. display: flex;
  256. flex-direction: row;
  257. align-items: center;
  258. justify-content: space-between;
  259. box-sizing: border-box;
  260. background-color: white;
  261. }
  262. .btn2 {
  263. width: 100%;
  264. margin-top: 65rpx;
  265. display: flex;
  266. flex-direction: row;
  267. align-items: center;
  268. justify-content: space-between;
  269. box-sizing: border-box;
  270. background-color: white;
  271. }
  272. .cancel {
  273. width: 100%;
  274. padding: 10px;
  275. text-align: center;
  276. color: black;
  277. }
  278. .Sure {
  279. width: 100%;
  280. padding: 10px;
  281. color: #44b549;
  282. background-color: white;
  283. border-left: 1px solid #d0d0d0;
  284. text-align: center;
  285. }
  286. .modalMsg {
  287. text-align: center;
  288. margin-top: 45rpx;
  289. display: block;
  290. }