home.less 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. .login-content{
  2. width: 737px;
  3. opacity: 1;
  4. border-radius: 16px;
  5. background: rgba(255, 255, 255, 0.4);
  6. box-shadow: 0px 4px 10px rgba(44, 83, 100, 0.1);
  7. backdrop-filter: blur(4px);
  8. padding: 100px 167px;
  9. }
  10. .login-title{
  11. width: 100%;
  12. height: 36px;
  13. opacity: 1;
  14. /** 文本1 */
  15. font-size: 24px;
  16. font-weight: 700;
  17. letter-spacing: 0px;
  18. line-height: 36px;
  19. color: rgba(51, 54, 70, 1);
  20. text-align: center;
  21. vertical-align: top;
  22. }
  23. .login-account{
  24. .login-inputClear{
  25. padding: 30px 0 0 0;
  26. .login-label{
  27. height: 20px;
  28. opacity: 1;
  29. /** 文本1 */
  30. font-size: 14px;
  31. font-weight: 400;
  32. letter-spacing: 0px;
  33. line-height: 20px;
  34. color: rgba(51, 54, 70, 1);
  35. vertical-align: top;
  36. margin-bottom: 10px;
  37. }
  38. }
  39. }
  40. .login-code{
  41. width: 100%;
  42. display: flex;
  43. }
  44. .aui-content {
  45. padding: 40px 60px;
  46. min-height: 100vh;
  47. }
  48. .aui-container {
  49. max-width: 1000px;
  50. margin: 0 auto;
  51. box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
  52. position: fixed;
  53. top: 50%;
  54. left: 50%;
  55. width: 92%;
  56. height: auto;
  57. -webkit-transform: translateX(-50%) translateY(-50%);
  58. -moz-transform: translateX(-50%) translateY(-50%);
  59. -ms-transform: translateX(-50%) translateY(-50%);
  60. transform: translateX(-50%) translateY(-50%);
  61. -webkit-transform: translateX(-50%) translateY(-50%);
  62. }
  63. .aui-form {
  64. width: 100%;
  65. background: #eee;
  66. display: -webkit-box;
  67. display: -moz-box;
  68. display: -ms-flexbox;
  69. display: -webkit-flex;
  70. display: flex;
  71. }
  72. .aui-image {
  73. padding: 180px 80px;
  74. flex-basis: 60%;
  75. -webkit-flex-basis: 60%;
  76. background-color: #0198cd;
  77. background-image: url(../icon/jeecg_ad.gif);
  78. background-size: cover;
  79. }
  80. .aui-image-text {
  81. top: 50%;
  82. left: 50%;
  83. width: 100%;
  84. }
  85. .aui-formBox {
  86. flex-basis: 40%;
  87. -webkit-flex-basis: 40%;
  88. box-sizing: border-box;
  89. padding: 30px 20px;
  90. background: #fff;
  91. box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.1);
  92. }
  93. .aui-logo {
  94. width: 180px;
  95. height: 80px;
  96. position: absolute;
  97. top: 2%;
  98. left: 8%;
  99. z-index: 4;
  100. }
  101. .aui-account-line {
  102. padding-top: 20px;
  103. padding-bottom: 40px;
  104. }
  105. .aui-code-line {
  106. position: absolute;
  107. right: 0;
  108. top: 0;
  109. border-left: 3px solid #fff;
  110. height: 42px;
  111. padding: 0 15px;
  112. line-height: 40px;
  113. font-size: 14px;
  114. cursor: pointer;
  115. }
  116. .aui-eye {
  117. position: absolute;
  118. right: 20px;
  119. top: 10px;
  120. width: 20px;
  121. cursor: pointer;
  122. }
  123. .aui-input-line {
  124. background: #f5f5f9;
  125. border-radius: 2px;
  126. position: relative;
  127. margin: 12px 0;
  128. }
  129. .aui-input-line input {
  130. width: 100%;
  131. padding: 12px 10px;
  132. border: none;
  133. color: #333333;
  134. font-size: 14px;
  135. background: unset;
  136. padding-left: 40px;
  137. }
  138. .aui-input-line .icon {
  139. position: absolute;
  140. top: 10px;
  141. left: 10px;
  142. }
  143. .icon-line-user {
  144. background-image: url(../icon/icon-line-user.png);
  145. }
  146. .icon-line-tel {
  147. background-image: url(../icon/icon-line-tel.png);
  148. }
  149. .icon-line-msg {
  150. background-image: url(../icon/icon-line-msg.png);
  151. }
  152. .icon-line-pad {
  153. background-image: url(../icon/icon-line-pad.png);
  154. }
  155. .aui-forgot .aui-input-line input {
  156. padding-left: 20px;
  157. }
  158. .aui-forgot .aui-input-line {
  159. background: none;
  160. border: 1px solid #dbdbdb;
  161. border-radius: 2px;
  162. }
  163. .aui-forgot .aui-input-line:focus {
  164. border-color: #1b90ff;
  165. }
  166. .aui-forgot .aui-input-line:hover {
  167. border-color: #1b90ff;
  168. }
  169. .aui-forgot .aui-input-line .aui-code-line {
  170. border-left: 1px solid #dbdbdb;
  171. height: 40px;
  172. color: #1b90ff;
  173. }
  174. .aui-step-box {
  175. width: 100%;
  176. height: auto;
  177. position: relative;
  178. overflow: hidden;
  179. margin-top: 50px;
  180. margin-bottom: 20px;
  181. }
  182. .aui-step-box::after {
  183. position: absolute;
  184. top: 20px;
  185. left: 50%;
  186. width: 76%;
  187. margin-left: -38%;
  188. height: 1px;
  189. background: #bcbcbc;
  190. content: '';
  191. }
  192. .aui-step-item {
  193. width: 33.333%;
  194. float: left;
  195. text-align: center;
  196. position: relative;
  197. z-index: 2;
  198. }
  199. .aui-step-tags em {
  200. width: 40px;
  201. height: 40px;
  202. border: 8px solid #fff;
  203. line-height: 1.3;
  204. border-radius: 100px;
  205. background: #bcbcbc;
  206. display: block;
  207. margin: 0 auto;
  208. font-style: normal;
  209. color: #fff;
  210. font-size: 19px;
  211. font-weight: 500;
  212. }
  213. .aui-step-tags p {
  214. font-size: 14px;
  215. color: #bcbcbc;
  216. }
  217. .activeStep .aui-step-tags em {
  218. background: #1b90ff;
  219. }
  220. .activeStep .aui-step-tags p {
  221. color: #1b90ff;
  222. }
  223. .aui-success {
  224. position: absolute;
  225. top: 50%;
  226. left: 50%;
  227. height: 80px;
  228. width: 100%;
  229. margin-top: -40px;
  230. margin-left: -50%;
  231. }
  232. .aui-success-icon {
  233. width: 40px;
  234. margin: 0 auto;
  235. }
  236. .aui-success h3 {
  237. width: 100%;
  238. text-align: center;
  239. color: #515151;
  240. font-size: 18px;
  241. padding-top: 20px;
  242. }
  243. .aui-form-nav {
  244. text-align: center;
  245. padding-bottom: 20px;
  246. }
  247. .aui-form-nav .aui-flex-box {
  248. color: #040404;
  249. font-size: 18px;
  250. font-weight: 500;
  251. cursor: pointer;
  252. }
  253. .aui-clear-left {
  254. text-align: left;
  255. }
  256. .aui-clear-left .activeNav::after {
  257. left: 18px;
  258. }
  259. .activeNav {
  260. position: relative;
  261. }
  262. .activeNav::after {
  263. content: '';
  264. position: absolute;
  265. z-index: 0;
  266. bottom: -10px;
  267. left: 50%;
  268. margin-left: -15px;
  269. width: 30px;
  270. height: 4px;
  271. background: #1b90ff;
  272. border-radius: 100px;
  273. }
  274. .phone .aui-inputClear {
  275. padding-left: 0;
  276. }
  277. .phone .aui-inputClear input {
  278. //padding-left: 1px;
  279. }
  280. .phone .aui-inputClear .aui-code {
  281. text-align: right;
  282. width: auto;
  283. bottom: 10px;
  284. }
  285. .phone .aui-inputClear .aui-code a {
  286. color: #1b90ff;
  287. font-size: 14px;
  288. }
  289. .phoneChina {
  290. position: absolute;
  291. bottom: 10px;
  292. left: 0;
  293. font-size: 14px;
  294. color: #040404;
  295. }
  296. .phoneChina::after {
  297. position: absolute;
  298. right: -25px;
  299. bottom: 0;
  300. content: '';
  301. background-image: url(../icon/icon_dow.png);
  302. background-size: 18px;
  303. width: 18px;
  304. height: 18px;
  305. }
  306. .phoneChina:before {
  307. position: absolute;
  308. right: -42px;
  309. bottom: -15px;
  310. content: ' ';
  311. background: #fff;
  312. width: 18px;
  313. height: 18px;
  314. }
  315. .aui-ewm {
  316. width: 280px;
  317. margin: 0 auto;
  318. }
  319. .aui-formEwm {
  320. padding: 50px 40px 55px 40px;
  321. }
  322. .aui-inputClear {
  323. width: 100%;
  324. border-bottom: 1px solid #cccccc;
  325. position: relative;
  326. padding-left: 20px;
  327. background: #fff;
  328. margin-bottom: 8px;
  329. margin-top: 20px;
  330. }
  331. .aui-inputClear .icon {
  332. position: absolute;
  333. top: 10px;
  334. left: 0;
  335. }
  336. .aui-inputClear input {
  337. width: 100%;
  338. padding: 10px;
  339. border: none;
  340. color: #333333;
  341. font-size: 14px;
  342. background: none;
  343. }
  344. .aui-code {
  345. position: absolute;
  346. right: 8px;
  347. bottom: 0;
  348. width: 115px;
  349. cursor: pointer;
  350. }
  351. .icon-code {
  352. background-image: url(../icon/icon-user.png);
  353. }
  354. .icon-password {
  355. background-image: url(../icon/icon-password.png);
  356. }
  357. .icon-code {
  358. background-image: url(../icon/icon-code.png);
  359. }
  360. .aui-inputClear:focus {
  361. border-bottom: 1px solid #1b90ff;
  362. }
  363. .aui-inputClear:hover {
  364. border-bottom: 1px solid #1b90ff;
  365. }
  366. .aui-choice {
  367. position: relative;
  368. font-size: 12px;
  369. display: -webkit-box;
  370. display: -webkit-flex;
  371. display: flex;
  372. -webkit-box-align: center;
  373. -webkit-align-items: center;
  374. align-items: center;
  375. position: relative;
  376. color: #040404;
  377. }
  378. .aui-choice input {
  379. width: 14px;
  380. height: 14px;
  381. cursor: pointer;
  382. }
  383. .aui-forget a {
  384. color: #1b90ff;
  385. font-size: 12px;
  386. }
  387. .aui-forget a:hover {
  388. text-decoration: underline;
  389. }
  390. .aui-formButton {
  391. padding-top: 10px;
  392. }
  393. .aui-formButton a {
  394. height: 42px;
  395. padding: 10px 15px;
  396. font-size: 14px;
  397. border-radius: 8px;
  398. border-color: #67b5ff;
  399. background: #1b90ff;
  400. width: 100%;
  401. cursor: pointer;
  402. border: none;
  403. color: #fff;
  404. margin: 8px 0;
  405. display: block;
  406. text-align: center;
  407. }
  408. .aui-formButton a:focus {
  409. opacity: 0.9;
  410. }
  411. .aui-formButton a:hover {
  412. opacity: 0.9;
  413. }
  414. .aui-formButton .aui-linek-code {
  415. background: #fff;
  416. color: #3c3c3c;
  417. border: 1px solid #dbdbdb;
  418. }
  419. .aui-formButton .aui-linek-code:hover {
  420. color: #1b90ff;
  421. border: 1px solid #1b90ff;
  422. }
  423. .aui-third-text {
  424. font-size: 12px;
  425. color: #3c3c3c;
  426. margin-top: 25px;
  427. margin-bottom: 25px;
  428. }
  429. .aui-third-text span {
  430. color: #afafaf;
  431. display: block;
  432. width: 38%;
  433. margin: 0 auto;
  434. text-align: center;
  435. position: relative;
  436. background: #fff;
  437. z-index: 100;
  438. font-size: 12px;
  439. }
  440. .aui-third-border {
  441. position: relative;
  442. }
  443. .aui-third-border::after {
  444. content: '';
  445. position: absolute;
  446. z-index: 0;
  447. top: 8px;
  448. left: 0;
  449. width: 100%;
  450. height: 1px;
  451. border-top: 1px solid #d9d9d9;
  452. -webkit-transform: scaleY(0.5);
  453. transform: scaleY(0.5);
  454. -webkit-transform-origin: 0 100%;
  455. transform-origin: 0 100%;
  456. }
  457. .aui-third-login {
  458. width: 30px;
  459. height: 30px;
  460. margin: 0 auto;
  461. border-radius: 100px;
  462. }
  463. .aui-third-login a {
  464. font-size: 22px;
  465. margin: 0 auto;
  466. border-radius: 100px;
  467. display: inline-block;
  468. color: #888;
  469. }
  470. .aui-third-login a:hover {
  471. color: #1b90ff;
  472. cursor: pointer;
  473. }
  474. .aui-third-login:hover {
  475. cursor: pointer;
  476. }
  477. @media (max-width: 320px) {
  478. .aui-form {
  479. flex-direction: column;
  480. }
  481. .aui-image {
  482. order: 2;
  483. display: none;
  484. }
  485. .aui-container {
  486. width: 100%;
  487. max-width: 550px;
  488. margin-top: 10px;
  489. }
  490. .aui-content {
  491. justify-content: initial;
  492. width: 100%;
  493. padding: 20px;
  494. }
  495. }
  496. @media (min-width: 321px) and (max-width: 375px) {
  497. .aui-form {
  498. flex-direction: column;
  499. }
  500. .aui-image {
  501. order: 2;
  502. display: none;
  503. }
  504. .aui-container {
  505. width: 90%;
  506. max-width: 550px;
  507. }
  508. .aui-content {
  509. justify-content: initial;
  510. width: 100%;
  511. padding: 20px;
  512. }
  513. }
  514. @media (min-width: 375px) and (max-width: 425px) {
  515. .aui-form {
  516. flex-direction: column;
  517. }
  518. .aui-image {
  519. order: 2;
  520. display: none;
  521. }
  522. .aui-container {
  523. width: 90%;
  524. max-width: 550px;
  525. }
  526. .aui-content {
  527. justify-content: initial;
  528. width: 100%;
  529. padding: 40px;
  530. }
  531. }
  532. @media (min-width: 425px) and (max-width: 768px) {
  533. .aui-form {
  534. flex-direction: column;
  535. }
  536. .aui-image {
  537. order: 2;
  538. display: none;
  539. }
  540. .aui-container {
  541. width: 90%;
  542. max-width: 550px;
  543. }
  544. .aui-content {
  545. justify-content: initial;
  546. width: 100%;
  547. padding: 40px;
  548. }
  549. .aui-step-box::after {
  550. width: 70%;
  551. margin-left: -35%;
  552. }
  553. }
  554. @media only screen and (max-width: 767px) {
  555. .aui-logo {
  556. top: 3%;
  557. }
  558. }
  559. @media screen and (max-width: 300px) {
  560. .aui-logo {
  561. top: 3%;
  562. }
  563. }