No Description

login.min.css 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. /*登录的样式*/
  2. html {
  3. height: 100%;
  4. }
  5. .signin {
  6. width: 100%;
  7. position: relative;
  8. height: 100%;
  9. overflow: hidden;
  10. background: url(../img/signin_bg.png) left top no-repeat;
  11. background-size: cover;
  12. display: flex;
  13. display: -webkit-flex;
  14. /* Safari */
  15. display: -ms-flex;
  16. /* IE */
  17. align-items: center;
  18. /*垂直居中*/
  19. justify-content: center;
  20. /*水平居中*/
  21. }
  22. .signin_panel {
  23. width: 1100px;
  24. height: 720px;
  25. background-color: #fff;
  26. border-radius: 10px;
  27. }
  28. .signin .signin_left,
  29. .signin .signin_right {
  30. float: left;
  31. -webkit-transition: all .2s;
  32. transition: all .2s;
  33. }
  34. .signin_panel .signin_left {
  35. height: 100%;
  36. width: 38.2%;
  37. background: url(../img/siginpanel_left_bg.png) left top no-repeat;
  38. /*background-size: cover;*/
  39. }
  40. .signin_left_content {
  41. width: 100%;
  42. margin: 256px 0 0 0;
  43. padding: 0;
  44. color: #fff;
  45. list-style: none;
  46. text-align: center;
  47. }
  48. .signin_left_content .signin_left_item {
  49. margin-bottom: 52px;
  50. opacity: 0;
  51. }
  52. .signin_left_content .signin_left_item1 {
  53. -webkit-animation: showrun .5s ease-in-out 1s 1 forwards;
  54. -moz-animation: showrun .5s ease-in-out 1s 1 forwards;
  55. -o-animation: showrun .5s ease-in-out 1s 1 forwards;
  56. animation: showrun .5s ease-in-out 1s 1 forwards;
  57. }
  58. .signin_left_content .signin_left_item2 {
  59. -webkit-animation: showrun .5s ease-in-out 1s 1 forwards;
  60. -moz-animation: showrun .5s ease-in-out 1s 1 forwards;
  61. -o-animation: showrun .5s ease-in-out 1s 1 forwards;
  62. animation: showrun .5s ease-in-out 1.5s 1 forwards;
  63. }
  64. .signin_left_content .signin_left_item3 {
  65. -webkit-animation: showrun .5s ease-in-out 1s 1 forwards;
  66. -moz-animation: showrun .5s ease-in-out 1s 1 forwards;
  67. -o-animation: showrun .5s ease-in-out 1s 1 forwards;
  68. animation: showrun .5s ease-in-out 2s 1 forwards;
  69. }
  70. .signin_left_content .signin_left_item4 {
  71. -webkit-animation: showrun .5s ease-in-out 1s 1 forwards;
  72. -moz-animation: showrun .5s ease-in-out 1s 1 forwards;
  73. -o-animation: showrun .5s ease-in-out 1s 1 forwards;
  74. animation: showrun .5s ease-in-out 2.5s 1 forwards;
  75. }
  76. @-webkit-keyframes showrun {
  77. 0% {
  78. -webkit-transform: translateX(100px);
  79. transform: translateX(100px);
  80. opacity: 0;
  81. }
  82. 100% {
  83. -webkit-transform: translateX(100px);
  84. transform: translateX(0);
  85. opacity: 1;
  86. }
  87. }
  88. @-moz-keyframes showrun {
  89. 0% {
  90. -webkit-transform: translateX(100px);
  91. transform: translateX(100px);
  92. opacity: 0;
  93. }
  94. 100% {
  95. -webkit-transform: translateX(100px);
  96. transform: translateX(0);
  97. opacity: 1;
  98. }
  99. }
  100. @-o-keyframes showrun {
  101. 0% {
  102. -webkit-transform: translateX(100px);
  103. transform: translateX(100px);
  104. opacity: 0;
  105. }
  106. 100% {
  107. -webkit-transform: translateX(100px);
  108. transform: translateX(0);
  109. opacity: 1;
  110. }
  111. }
  112. @keyframes showrun {
  113. 0% {
  114. -webkit-transform: translateX(100px);
  115. transform: translateX(100px);
  116. opacity: 0;
  117. }
  118. 100% {
  119. -webkit-transform: translateX(100px);
  120. transform: translateX(0);
  121. opacity: 1;
  122. }
  123. }
  124. .signin_left_item .signin_left_item_content {
  125. display: inline-block;
  126. vertical-align: middle;
  127. }
  128. .signin_left_item .signin_left_item_content p {
  129. line-height: 26px;
  130. margin: 0;
  131. padding: 0;
  132. }
  133. .signin_left_content .signin_left_icon {
  134. display: inline-block;
  135. width: 42px;
  136. height: 42px;
  137. margin-right: 36px;
  138. vertical-align: middle;
  139. }
  140. .signin_left_content .signin_left_icon_efficiency {
  141. background: url(../img/icon_efficiency.png) left center no-repeat;
  142. }
  143. .signin_left_content .signin_left_icon_qulity {
  144. background: url(../img/icon_qulity.png) left center no-repeat;
  145. }
  146. .signin_left_content .signin_left_icon_service {
  147. background: url(../img/icon_service.png) left center no-repeat;
  148. }
  149. .signin_left_content .signin_left_icon_intelligence {
  150. background: url(../img/icon_intelligence.png) left center no-repeat;
  151. }
  152. .signin_panel .signin_right {
  153. text-align: left;
  154. width: 61.8%;
  155. height: 100%;
  156. position: relative;
  157. padding: 0 120px;
  158. }
  159. .signin_right .signin_title_logo {
  160. width: 276px;
  161. height: 48px;
  162. margin-top: 70px;
  163. margin-bottom: 50px;
  164. font-size: 0;
  165. display: none;
  166. }
  167. .signin_right .signin_title {
  168. margin-top: 70px;
  169. margin-bottom: 50px;
  170. font-size: 30px;
  171. color: #333;
  172. font-weight: 500;
  173. }
  174. .signin_right .signin_subtitle {
  175. color: #979797;
  176. font-size: 16px;
  177. font-weight: normal;
  178. letter-spacing: 1.8px;
  179. }
  180. .signin_right .signin_subtitle::before {
  181. content: '';
  182. display: inline-block;
  183. width: 100px;
  184. height: 2px;
  185. background-color: #e7e7e7;
  186. vertical-align: middle;
  187. margin-right: 22px;
  188. }
  189. .signin_right .signin_subtitle::after {
  190. content: '';
  191. display: inline-block;
  192. width: 120px;
  193. height: 2px;
  194. background-color: #e7e7e7;
  195. vertical-align: middle;
  196. margin-left: 22px;
  197. }
  198. .signin_right .signin_user,
  199. .signin_right .signin_extension,
  200. .signin_right .signin_password {
  201. position: relative;
  202. width: 440px;
  203. margin: 0 auto 20px auto;
  204. }
  205. .signin_right .signin_extension {
  206. display: none;
  207. }
  208. .signin_label {
  209. position: absolute;
  210. left: 26px;
  211. top: 18px;
  212. color: #666666;
  213. font-size: 16px;
  214. }
  215. .signin_icons {
  216. position: absolute;
  217. right: 16px;
  218. bottom: 14px;
  219. width: 21px;
  220. display: inline-block;
  221. }
  222. .signin_user .signin_icons {
  223. height: 25px;
  224. background: url(../img/signin_user_icon.png) center top no-repeat;
  225. }
  226. .signin_extension .signin_icons {
  227. height: 22px;
  228. background: url(../img/signin_ext_icon.png) center top no-repeat;
  229. }
  230. .signin_password .signin_icons {
  231. height: 26px;
  232. background: url(../img/signin_pass_icon.png) center top no-repeat;
  233. }
  234. .signin_panel .form-control {
  235. padding-left: 80px;
  236. padding-right: 60px;
  237. height: 54px;
  238. /* line-height: 54px; */
  239. font-size: 16px;
  240. color: #000;
  241. border: 2px solid #e7e7e7;
  242. border-radius: 4px;
  243. font-family: "微软雅黑";
  244. }
  245. .signin_panel .form-control {
  246. outline: 0;
  247. -webkit-box-shadow: none;
  248. box-shadow: none;
  249. }
  250. .has-error .form-control:focus {
  251. -webkit-box-shadow: none;
  252. box-shadow: none;
  253. border-color: #e7e7e7;
  254. }
  255. .has-success .form-control:focus {
  256. -webkit-box-shadow: none;
  257. box-shadow: none;
  258. border-color: #e7e7e7;
  259. }
  260. .signin_panel .signin_places {
  261. margin-bottom: 0;
  262. margin-top: 70px;
  263. padding: 16px 0;
  264. text-align: left;
  265. color: #979797;
  266. }
  267. .btns {
  268. width: 440px;
  269. height: 54px;
  270. line-height: 54px;
  271. background: url("../img/signin_btn_bgs.png") left top no-repeat;
  272. color: #ffffff;
  273. font-size: 18px;
  274. font-family: "微软雅黑";
  275. text-align: center;
  276. border: 0;
  277. margin-top: 64px;
  278. outline: none;
  279. cursor: pointer;
  280. }
  281. .btns[disabled] {
  282. cursor: no-drop;
  283. }
  284. .alert {
  285. position: absolute;
  286. bottom: 0;
  287. height: 80px;
  288. line-height: 80px;
  289. margin: 0;
  290. padding: 0 0 0 120px;
  291. width: 100%;
  292. text-align: left;
  293. display: none;
  294. background-color: #eff1f5;
  295. border-color: transparent;
  296. border-radius: 0;
  297. border-bottom-right-radius: 10px;
  298. transition: all .4s;
  299. margin-left: -120px;
  300. }
  301. .alert-danger {
  302. color: #f52828;
  303. }
  304. .signin_panel .form-control-feedback {
  305. top: 12px;
  306. right: 38px;
  307. font-size: 16px;
  308. }
  309. ::-webkit-input-placeholder {
  310. /* WebKit browsers */
  311. font-family: '微软雅黑';
  312. color: #aba9a9;
  313. font-size: 18px;
  314. }
  315. :-moz-placeholder {
  316. /* Mozilla Firefox 4 to 18 */
  317. font-family: '微软雅黑';
  318. color: #aba9a9;
  319. font-size: 18px;
  320. }
  321. ::-moz-placeholder {
  322. /* Mozilla Firefox 19+ */
  323. font-family: '微软雅黑';
  324. color: #aba9a9;
  325. font-size: 18px;
  326. }
  327. :-ms-input-placeholder {
  328. /* Internet Explorer 10+ */
  329. font-family: '微软雅黑' !important;
  330. color: #aba9a9 !important;
  331. font-size: 18px !important;
  332. }
  333. @media only screen and (max-width: 1366px) {
  334. .signin_panel {
  335. -webkit-transform: scale(.8);
  336. transform: scale(.8);
  337. }
  338. }
  339. @media only screen and (max-width: 1280px) {
  340. .signin_panel {
  341. -webkit-transform: scale(.65);
  342. transform: scale(.65);
  343. }
  344. }
  345. @media only screen and (max-width: 1100px) {
  346. .signin_panel .signin_left {
  347. display: none;
  348. }
  349. .signin_panel .signin_right {
  350. width: 100%;
  351. text-align: center;
  352. }
  353. .signin_right .signin_places {
  354. text-align: center;
  355. }
  356. .signin_right .alert {
  357. text-align: center;
  358. padding-left: 0;
  359. }
  360. .signin_right .signin_title {
  361. display: none;
  362. }
  363. .signin_right .signin_title_logo {
  364. display: block;
  365. margin-left: auto;
  366. margin-right: auto;
  367. }
  368. .signin_right .logins_btn {
  369. left: 50%;
  370. margin-left: -220px;
  371. }
  372. }
  373. @media only screen and (max-width: 600px) {
  374. .signin_panel .signin_right {
  375. padding: 0 20px;
  376. }
  377. .signin_right .alert {
  378. margin-left: -20px;
  379. }
  380. .signin_right .loginTypes {
  381. right: 60px;
  382. }
  383. }
  384. .logins_btn {
  385. position: absolute;
  386. bottom: 152px;
  387. margin: 0;
  388. }
  389. .loginTypes {
  390. position: absolute;
  391. bottom: 100px;
  392. right: 120px;
  393. color: #249fea;
  394. }
  395. .loginTypes p {
  396. cursor: pointer;
  397. }
  398. #admin_login {
  399. display: none;
  400. }
  401. input::-ms-clear {
  402. display: none !important;
  403. }
  404. input::-ms-reveal {
  405. display: none !important;
  406. }
  407. .outside_input {
  408. position: absolute;
  409. left: -550%;
  410. }