mobileCommon.scss 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. .fade-enter-active, .fade-leave-active {
  2. transition: opacity 0.5s
  3. }
  4. .fade-enter, .fade-leave-active {
  5. opacity: 0
  6. }
  7. .mobile{
  8. padding:0 15px;
  9. min-height:100vh;
  10. background: #eaeaea;
  11. color:#333;
  12. padding-top:.15rem;
  13. }
  14. .page-part{
  15. margin-bottom:.4rem;
  16. .img-list{
  17. .item{
  18. display:inline-block;
  19. width:45%;
  20. height: 2.2rem;
  21. text-align: center;
  22. margin:0 .15rem .15rem;
  23. box-shadow: .05rem .05rem .2rem rgba(0,0,0,.7);
  24. border-radius: .1rem;
  25. padding: .25rem;
  26. img{
  27. width:90%;
  28. height:1.3rem;
  29. padding:.2rem;
  30. }
  31. p{
  32. font-size: 14px;
  33. color: #999;
  34. }
  35. }
  36. }
  37. img{
  38. margin-left:.1rem;
  39. }
  40. }
  41. .mint-cell-wrapper{
  42. border:1px solid #b5b5b5;
  43. }
  44. .page-part a{
  45. transition: all .2s ease;
  46. color:#333;
  47. &:hover{
  48. color:#666;
  49. }
  50. }
  51. .page-part a.rgba{
  52. transition: all .2s ease;
  53. color:#2d8cf0;
  54. &:hover{
  55. color:#f44336;
  56. }
  57. }
  58. .f-main{
  59. background: #fff;
  60. padding:0.55rem .3rem 1.1rem;
  61. .content-top{
  62. border-bottom:1px solid #b5b5b5;
  63. position:relative;
  64. p{
  65. font-size: .4rem;
  66. color:#787878;
  67. margin-bottom:.35rem;
  68. }
  69. a.go{
  70. transition: all .2s ease;
  71. position: absolute;
  72. top: 0;
  73. right: 0;
  74. font-size: .28rem;
  75. i{
  76. margin-right: .06rem;
  77. }
  78. }
  79. a.back{
  80. transition: all .2s ease;
  81. &:hover{
  82. border:.02rem solid #f44336;
  83. }
  84. position: absolute;
  85. top: 0;
  86. right: 0;
  87. display:inline-block;
  88. border:.02rem solid #2d8cf0;
  89. padding: .05rem;
  90. border-radius:50%;
  91. i{
  92. font-size: .3rem;
  93. font-weight: bold;
  94. }
  95. }
  96. }
  97. .f-form{
  98. padding-top:.6rem;
  99. .security{
  100. font-size: .32rem;
  101. color:#666;
  102. }
  103. .pwd{
  104. font-size: .14rem;
  105. color:#a0a0a0;
  106. margin: .2rem auto;
  107. em{
  108. display: inline-block;
  109. line-height: .14rem;
  110. margin:.05rem .2rem;
  111. width: .45rem;
  112. height: .1rem;
  113. background: #999;
  114. }
  115. .sm{background:#ff4e00}
  116. .md{background: #22ac38}
  117. .ld{background: #00a0e9}
  118. .smstep{color:#ff4e00}
  119. .mdstep{color: #22ac38}
  120. .ldstep{color: #00a0e9}
  121. }
  122. .token{
  123. display:inline-block;
  124. padding: 0 .5rem;
  125. text-align: center;
  126. border-left:1px solid #b5b5b5;
  127. margin-left: .1rem;
  128. color:#2d8cf0;
  129. }
  130. .token-no{
  131. display:inline-block;
  132. padding: 0 .5rem;
  133. text-align: center;
  134. border-left:1px solid #b5b5b5;
  135. margin-left: .1rem;
  136. color:#666;
  137. }
  138. }
  139. }
  140. .page-last{
  141. text-align: center;
  142. margin-bottom:1.3rem;
  143. h4{
  144. margin:.65rem auto;
  145. font-weight: normal;
  146. span{
  147. font-size: .7rem;
  148. margin-left:.2rem;
  149. color:#29b300;
  150. }
  151. }
  152. p{
  153. font-size: .28rem;
  154. color:#8b8b8b;
  155. }
  156. }
  157. ::-webkit-scrollbar {
  158. width: 0;
  159. height: 1px;
  160. }
  161. ::-webkit-scrollbar-thumb {
  162. border-radius: 5px;
  163. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  164. background: rgba(0, 0, 0, 0.2);
  165. }
  166. .passwd {
  167. font-size: .14rem;
  168. color: #a0a0a0;
  169. margin: .2rem auto;
  170. text-align: right;
  171. }
  172. .itemgreen{
  173. color:#2d8cf0;
  174. }
  175. .listitem {
  176. height: 1rem;
  177. line-height: 1rem;
  178. border-bottom: solid 1px #eee;
  179. text-align: center;
  180. &:first-child {
  181. border-top: solid 1px #eee;
  182. }
  183. }
  184. .mint-popup {
  185. width: 100%;
  186. height: 100%;
  187. background-color: #fff;
  188. }
  189. .mint-popup .mint-button {
  190. position: absolute;
  191. width: 90%;
  192. top: 50%;
  193. left: 5%;
  194. transform: translateY(-50%);
  195. }
  196. .mint-button .mint-button-text{
  197. margin: 0;
  198. font-weight: normal;
  199. }
  200. .login-btn{
  201. margin-top:.9rem;
  202. border-top:1px solid #bfbfbf;
  203. text-align: center;
  204. padding-top:.3rem;
  205. p{
  206. color:#a1a1a1;
  207. font-size: .26rem;
  208. margin-bottom:.4rem;
  209. }
  210. }
  211. //未验证手机弹框
  212. .valid-phone .el-dialog {
  213. position: absolute;
  214. width: 5rem;
  215. height: 2rem;
  216. margin: 0 auto;
  217. left: 50%;
  218. top: 50%;
  219. margin-left: -2.5rem;
  220. margin-top: -1rem !important;
  221. }
  222. .valid-phone .el-dialog .el-dialog__header {
  223. display: none;
  224. }
  225. .valid-phone .el-dialog .el-dialog__body .set-tip{
  226. margin: 0 auto;
  227. text-align: center;
  228. width: 100%;
  229. height: 100%;
  230. }
  231. .valid-phone .el-dialog .el-dialog__body .set-tip p{
  232. margin-bottom: .2rem;
  233. margin-top: 0;
  234. font-size: .24rem;
  235. color: #000;
  236. }
  237. .valid-phone .el-dialog .el-dialog__body .set-tip a{
  238. display: inline-block;
  239. width: 1rem;
  240. height: .5rem;
  241. line-height: .5rem;
  242. text-align: center;
  243. font-size: .24rem;
  244. color: #fff;
  245. background: #00a0e9;
  246. border-radius: 0.06rem;
  247. }
  248. //上传图片
  249. .phone-btn-blank{
  250. position: relative;
  251. display: inline-block;
  252. width: 100%;
  253. line-height: .94rem;
  254. height: 48px;
  255. text-align: left;
  256. border: 1px solid #b5b5b5;
  257. overflow: hidden;
  258. cursor: pointer;
  259. }
  260. .phone-btn-blank .fa {
  261. margin-left: .2rem;
  262. font-size: .4rem;
  263. }
  264. .phone-btn-blank span.upload {
  265. margin-left: .15rem;
  266. line-height: .94rem;
  267. font-size: .32rem;
  268. color: #c9c9c9;
  269. }
  270. .phone-btn-blank input[type='file']{
  271. position: absolute;
  272. top: 0;
  273. left: 0;
  274. width: 100%;
  275. min-height: 48px;
  276. opacity: 0;
  277. border: none;
  278. }
  279. .phone-btn-blank:hover, .phone-btn-blank[disabled] {
  280. border-color: #c0c4cc;
  281. background: #e6e6e6;
  282. color: #333;
  283. }
  284. .phone-btn-blank:hover span.upload{
  285. color: #000;
  286. }
  287. //地址选择小图标
  288. .fa.fa-p {
  289. position: absolute;
  290. right: .42rem;
  291. bottom: .2rem;
  292. font-size: .4rem;
  293. color: #888;
  294. }
  295. .fa.fa-picture-o{
  296. right: .3rem;
  297. }
  298. //地址选择弹出框
  299. .mint-popup-bottom {
  300. top: 50%;
  301. }
  302. //等待审核中
  303. .page-last.page-wait {
  304. h4 {
  305. span{
  306. font-size: .5rem;
  307. color: #323232;
  308. font-weight: normal;
  309. }
  310. }
  311. p{
  312. text-align: left;
  313. font-size: .3rem;
  314. color: #8b8b8b;
  315. }
  316. }
  317. //复选框
  318. .el-checkbox__input.is-checked+.el-checkbox__label {
  319. color: #a1a1a1;
  320. }
  321. //下拉选择框
  322. .page-part select{
  323. padding-left: .22rem;
  324. width: 100%;
  325. height: 48px;
  326. border: 1px solid #b5b5b5;
  327. appearance:none;
  328. -moz-appearance:none; /* Firefox */
  329. -webkit-appearance:none; /* Safari 和 Chrome */
  330. }