index.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. .base-login {
  2. position: fixed;
  3. right: 0;
  4. bottom: 0;
  5. left: 0;
  6. z-index: 56;
  7. border-radius: .2rem .2rem 0 0;
  8. background: #FFFFFF;
  9. -webkit-transform: translateY(100%);
  10. -moz-transform: translateY(100%);
  11. -ms-transform: translateY(100%);
  12. -o-transform: translateY(100%);
  13. transform: translateY(100%);
  14. -webkit-transition: -webkit-transform 0.3s;
  15. transition: -webkit-transform 0.3s;
  16. -o-transition: -o-transform 0.3s;
  17. -moz-transition: transform 0.3s, -moz-transform 0.3s;
  18. transition: transform 0.3s;
  19. transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
  20. }
  21. .base-login.on {
  22. -webkit-transform: translateY(0);
  23. -moz-transform: translateY(0);
  24. -ms-transform: translateY(0);
  25. -o-transform: translateY(0);
  26. transform: translateY(0);
  27. }
  28. .base-login > a:first-child {
  29. position: absolute;
  30. top: .3rem;
  31. right: .3rem;
  32. z-index: 2;
  33. }
  34. .base-login > a:first-child .iconfont {
  35. font-size: .27rem;
  36. color: #8A8A8A;
  37. }
  38. .base-login > div:nth-child(2) {
  39. padding: .4rem 0 .33rem;
  40. font-weight: bold;
  41. font-size: .36rem;
  42. line-height: .5rem;
  43. text-align: center;
  44. color: #282828;
  45. }
  46. .base-login > div:nth-child(3) {
  47. display: -webkit-box;
  48. display: -webkit-flex;
  49. display: -moz-box;
  50. display: -ms-flexbox;
  51. display: flex;
  52. -webkit-box-pack: center;
  53. -webkit-justify-content: center;
  54. -moz-box-pack: center;
  55. -ms-flex-pack: center;
  56. justify-content: center;
  57. padding: .4rem 0 .33rem;
  58. font-size: .36rem;
  59. line-height: .5rem;
  60. color: #282828;
  61. }
  62. .base-login > div:nth-child(3) label ~ label {
  63. margin: 0 0 0 1rem;
  64. }
  65. .base-login > div:nth-child(3) input:checked + span {
  66. font-weight: bold;
  67. color: #191C6E;
  68. }
  69. .base-login > label:nth-child(4) {
  70. position: relative;
  71. display: -webkit-box;
  72. display: -webkit-flex;
  73. display: -moz-box;
  74. display: -ms-flexbox;
  75. display: flex;
  76. -webkit-box-align: center;
  77. -webkit-align-items: center;
  78. -moz-box-align: center;
  79. -ms-flex-align: center;
  80. align-items: center;
  81. padding: .44rem .6rem .33rem;
  82. }
  83. .base-login > label:nth-child(4)::after {
  84. content: "";
  85. position: absolute;
  86. right: .45rem;
  87. bottom: 0;
  88. left: .45rem;
  89. z-index: 2;
  90. height: 1px;
  91. border-width: 0 0 1px;
  92. border-style: solid;
  93. border-color: #CCCCCC;
  94. }
  95. .base-login .iconfont {
  96. font-size: .4rem;
  97. color: #C3C3C3;
  98. }
  99. .base-login > label:nth-child(4) input {
  100. -webkit-box-flex: 1;
  101. -webkit-flex: 1;
  102. -moz-box-flex: 1;
  103. -ms-flex: 1;
  104. flex: 1;
  105. min-width: 0;
  106. margin: 0 0 0 .25rem;
  107. font-size: .3rem;
  108. line-height: .42rem;
  109. color: #282828;
  110. }
  111. .base-login > label:nth-child(4) input::-webkit-input-placeholder {
  112. color: #CCCCCC;
  113. }
  114. .base-login > label:nth-child(4) input:-moz-placeholder {
  115. color: #CCCCCC;
  116. }
  117. .base-login > label:nth-child(4) input::-moz-placeholder {
  118. color: #CCCCCC;
  119. }
  120. .base-login > label:nth-child(4) input:-ms-input-placeholder {
  121. color: #CCCCCC;
  122. }
  123. .base-login > label:nth-child(4) input::-ms-input-placeholder {
  124. color: #CCCCCC;
  125. }
  126. .base-login > label:nth-child(4) input::placeholder {
  127. color: #CCCCCC;
  128. }
  129. .base-login > div:nth-child(5) {
  130. position: relative;
  131. display: -webkit-box;
  132. display: -webkit-flex;
  133. display: -moz-box;
  134. display: -ms-flexbox;
  135. display: flex;
  136. -webkit-box-align: center;
  137. -webkit-align-items: center;
  138. -moz-box-align: center;
  139. -ms-flex-align: center;
  140. align-items: center;
  141. padding: .44rem .6rem .33rem;
  142. }
  143. .base-login > div:nth-child(5)::after {
  144. content: "";
  145. position: absolute;
  146. right: .45rem;
  147. bottom: 0;
  148. left: .45rem;
  149. z-index: 2;
  150. height: 1px;
  151. border-width: 0 0 1px;
  152. border-style: solid;
  153. border-color: #CCCCCC;
  154. }
  155. .base-login > div:nth-child(5) label {
  156. -webkit-box-flex: 1;
  157. -webkit-flex: 1;
  158. -moz-box-flex: 1;
  159. -ms-flex: 1;
  160. flex: 1;
  161. display: -webkit-box;
  162. display: -webkit-flex;
  163. display: -moz-box;
  164. display: -ms-flexbox;
  165. display: flex;
  166. -webkit-box-align: center;
  167. -webkit-align-items: center;
  168. -moz-box-align: center;
  169. -ms-flex-align: center;
  170. align-items: center;
  171. min-width: 0;
  172. }
  173. .base-login > div:nth-child(5) input {
  174. -webkit-box-flex: 1;
  175. -webkit-flex: 1;
  176. -moz-box-flex: 1;
  177. -ms-flex: 1;
  178. flex: 1;
  179. min-width: 0;
  180. margin: 0 0 0 .25rem;
  181. font-size: .3rem;
  182. line-height: .42rem;
  183. color: #282828;
  184. }
  185. .base-login > div:nth-child(5) input::-webkit-input-placeholder {
  186. color: #CCCCCC;
  187. }
  188. .base-login > div:nth-child(5) input:-moz-placeholder {
  189. color: #CCCCCC;
  190. }
  191. .base-login > div:nth-child(5) input::-moz-placeholder {
  192. color: #CCCCCC;
  193. }
  194. .base-login > div:nth-child(5) input:-ms-input-placeholder {
  195. color: #CCCCCC;
  196. }
  197. .base-login > div:nth-child(5) input::-ms-input-placeholder {
  198. color: #CCCCCC;
  199. }
  200. .base-login > div:nth-child(5) input::placeholder {
  201. color: #CCCCCC;
  202. }
  203. .base-login > div:nth-child(5) button {
  204. font-size: .26rem;
  205. line-height: .37rem;
  206. color: #191C6E;
  207. }
  208. .base-login > div:nth-child(5) button:disabled {
  209. color: #999999;
  210. }
  211. .base-login > label:nth-child(6) {
  212. position: relative;
  213. display: -webkit-box;
  214. display: -webkit-flex;
  215. display: -moz-box;
  216. display: -ms-flexbox;
  217. display: flex;
  218. -webkit-box-align: center;
  219. -webkit-align-items: center;
  220. -moz-box-align: center;
  221. -ms-flex-align: center;
  222. align-items: center;
  223. padding: .44rem .6rem .33rem;
  224. }
  225. .base-login > label:nth-child(6)::after {
  226. content: "";
  227. position: absolute;
  228. right: .45rem;
  229. bottom: 0;
  230. left: .45rem;
  231. z-index: 2;
  232. height: 1px;
  233. border-width: 0 0 1px;
  234. border-style: solid;
  235. border-color: #CCCCCC;
  236. }
  237. .base-login > label:nth-child(6) input {
  238. -webkit-box-flex: 1;
  239. -webkit-flex: 1;
  240. -moz-box-flex: 1;
  241. -ms-flex: 1;
  242. flex: 1;
  243. min-width: 0;
  244. margin: 0 0 0 .25rem;
  245. font-size: .3rem;
  246. line-height: .42rem;
  247. color: #282828;
  248. }
  249. .base-login > label:nth-child(6) input::-webkit-input-placeholder {
  250. color: #CCCCCC;
  251. }
  252. .base-login > label:nth-child(6) input:-moz-placeholder {
  253. color: #CCCCCC;
  254. }
  255. .base-login > label:nth-child(6) input::-moz-placeholder {
  256. color: #CCCCCC;
  257. }
  258. .base-login > label:nth-child(6) input:-ms-input-placeholder {
  259. color: #CCCCCC;
  260. }
  261. .base-login > label:nth-child(6) input::-ms-input-placeholder {
  262. color: #CCCCCC;
  263. }
  264. .base-login > label:nth-child(6) input::placeholder {
  265. color: #CCCCCC;
  266. }
  267. .base-login > div:nth-child(7) {
  268. padding: .3rem .6rem 0;
  269. font-size: 0;
  270. }
  271. .base-login > div:nth-child(7) label {
  272. font-size: 0;
  273. }
  274. .base-login > div:nth-child(7) .iconfont {
  275. display: inline-block;
  276. width: .3rem;
  277. height: .3rem;
  278. border: 1px solid #C3C3C3;
  279. border-radius: 50%;
  280. -webkit-box-sizing: border-box;
  281. -moz-box-sizing: border-box;
  282. box-sizing: border-box;
  283. vertical-align: middle;
  284. font-size: 0;
  285. line-height: .3rem;
  286. text-align: center;
  287. color: #C3C3C3;
  288. }
  289. .base-login > div:nth-child(7) input:checked + .iconfont {
  290. border: 0;
  291. background: #191C6E;
  292. font-size: .2rem;
  293. color: #FFFFFF;
  294. }
  295. .base-login > div:nth-child(7) label span {
  296. margin-left: .12rem;
  297. vertical-align: middle;
  298. font-size: .24rem;
  299. line-height: .33rem;
  300. color: #B2B2B2;
  301. }
  302. .base-login > div:nth-child(7) a {
  303. vertical-align: middle;
  304. font-size: .24rem;
  305. line-height: .33rem;
  306. color: #191C6E;
  307. }
  308. .base-login > div:nth-child(8) {
  309. padding: .6rem .3rem 0;
  310. }
  311. .base-login > div:nth-child(8) button {
  312. width: 100%;
  313. height: .86rem;
  314. border-radius: .43rem;
  315. background: #191C6E;
  316. font-size: .3rem;
  317. color: #FFFFFF;
  318. }
  319. .base-login > div:nth-child(9) {
  320. padding: .25rem 0 .35rem;
  321. font-size: 0;
  322. text-align: center;
  323. }
  324. .base-login > div:nth-child(9) span {
  325. font-size: .26rem;
  326. line-height: .37rem;
  327. color: #999999;
  328. }
  329. .base-login > div:nth-child(9) a {
  330. font-size: .26rem;
  331. line-height: .37rem;
  332. color: #999999;
  333. }
  334. .base-login > div:nth-child(9) a:nth-child(2) {
  335. color: #191C6E;
  336. }
  337. .base-login > div:nth-child(9) a:nth-child(3) {
  338. padding: 0 .2rem 0 0;
  339. }
  340. .base-login > div:nth-child(9) a:last-child {
  341. position: relative;
  342. padding: 0 0 0 .2rem;
  343. }
  344. .base-login > div:nth-child(9) a:last-child::before {
  345. content: "";
  346. position: absolute;
  347. top: .08rem;
  348. bottom: .08rem;
  349. left: 0;
  350. z-index: 2;
  351. width: 1px;
  352. border-width: 0 0 0 1px;
  353. border-style: solid;
  354. border-color: #ABABAB;
  355. }