home.less 9.9 KB

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