Bez popisu

login.min.css 8.6KB

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