郑州第一人民医院UI

login.min2.css 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. /*登录的样式*/
  2. html {
  3. height: 100%;
  4. }
  5. .signin {
  6. width: 100%;
  7. position: relative;
  8. height: 100%;
  9. background-size: 100% 100%;
  10. overflow: hidden;
  11. background: -webkit-linear-gradient(45deg, #184dc5, #25a1eb);
  12. /* Safari 5.1 - 6.0 */
  13. background: -o-linear-gradient(45deg, #184dc5, #25a1eb);
  14. /* Opera 11.1 - 12.0 */
  15. background: -moz-linear-gradient(45deg, #184dc5, #25a1eb);
  16. /* Firefox 3.6 - 15 */
  17. background: linear-gradient(45deg, #184dc5, #25a1eb);
  18. /* 标准的语法 */
  19. }
  20. .signin .signin_left,
  21. .signin .signin_right {
  22. width: 50%;
  23. float: left;
  24. }
  25. .signin .sign_bottom {
  26. position: absolute;
  27. bottom: 0;
  28. background: url(../img/bottom_bg.png) left top repeat-x;
  29. width: 100%;
  30. height: 258px;
  31. /*-webkit-animation-name: shake;
  32. -webkit-animation-duration: 40s;
  33. -webkit-animation-direction: alternate;
  34. -webkit-anination-timing-function: linear;
  35. -webkit-animation-iteration-count: infinite;
  36. -moz-animation-name: shake;
  37. -moz-animation-duration: 40s;
  38. -moz-animation-direction: alternate;
  39. -moz-anination-timing-function: linear;
  40. -moz-animation-iteration-count: infinite;*/
  41. }
  42. @-webkit-keyframes shake {
  43. 0%,
  44. 100% {
  45. -webkit-transform: translate3d(0, 0, 0);
  46. }
  47. 10%,
  48. 30%,
  49. 50%,
  50. 70%,
  51. 90% {
  52. -webkit-transform: translate3d(-30px, 0px, 0);
  53. }
  54. 20%,
  55. 40%,
  56. 60%,
  57. 80% {
  58. -webkit-transform: translate3d(30px, 0px, 0);
  59. }
  60. }
  61. @-moz-keyframes shake {
  62. 0%,
  63. 100% {
  64. -moz-transform: translate3d(0, 0, 0);
  65. }
  66. 10%,
  67. 30%,
  68. 50%,
  69. 70%,
  70. 90% {
  71. -moz-transform: translate3d(-30px, 0px, 0);
  72. }
  73. 20%,
  74. 40%,
  75. 60%,
  76. 80% {
  77. -moz-transform: translate3d(30px, 0px, 0);
  78. }
  79. }
  80. .signin_left .left_logo {
  81. position: absolute;
  82. width: 641px;
  83. height: 651px;
  84. left: 13.1%;
  85. top: 18.3%;
  86. }
  87. .left_logo_png {
  88. width: 100%;
  89. height: 100%;
  90. font-size: 0;
  91. }
  92. .signin_right {}
  93. .signin_right .signin_panel {
  94. position: absolute;
  95. left: 52.7%;
  96. top: 22.1%;
  97. width: 502px;
  98. height: 573px;
  99. text-align: center;
  100. background: url(../img/signin_panel_bgs.png) left top no-repeat;
  101. }
  102. .signin_title {
  103. width: 353px;
  104. height: 32px;
  105. margin-top: 74px;
  106. margin-bottom: 66px;
  107. font-size: 0;
  108. }
  109. .signin_panel .signin_user,
  110. .signin_panel .signin_extension,
  111. .signin_panel .signin_password {
  112. position: relative;
  113. width: 360px;
  114. margin: 0 auto 30px auto;
  115. }
  116. .signin_icons {
  117. position: absolute;
  118. left: 13.5px;
  119. bottom: 12px;
  120. width: 33px;
  121. display: inline-block;
  122. }
  123. .signin_user .signin_icons {
  124. height: 33px;
  125. background: url(../img/user_icons.png) center top no-repeat;
  126. }
  127. .signin_extension .signin_icons {
  128. height: 33px;
  129. background: url(../img/extensionnumber_icons.png) center top no-repeat;
  130. }
  131. .signin_password .signin_icons {
  132. height: 36px;
  133. background: url(../img/password_icons.png) center top no-repeat;
  134. }
  135. .signin_panel .form-control {
  136. padding-left: 64px;
  137. height: 60px;
  138. line-height: 60px;
  139. font-size: 18px;
  140. color: #000;
  141. border: none;
  142. border-bottom: 2px solid #e6e6e6;
  143. font-family: "微软雅黑";
  144. }
  145. .signin_panel .form-control {
  146. outline: 0;
  147. -webkit-box-shadow: none;
  148. box-shadow: none;
  149. }
  150. .has-error .form-control:focus {
  151. -webkit-box-shadow: none;
  152. box-shadow: none;
  153. }
  154. .has-success .form-control:focus {
  155. -webkit-box-shadow: none;
  156. box-shadow: none;
  157. }
  158. .btns {
  159. position: absolute;
  160. left: 50%;
  161. margin-left: -180px;
  162. bottom: 124px;
  163. width: 360px;
  164. height: 50px;
  165. line-height: 50px;
  166. background: url("../img/submit_btn_bgs.png") left top no-repeat;
  167. color: #fefefe;
  168. font-size: 24px;
  169. font-family: "微软雅黑";
  170. text-align: center;
  171. border: 0;
  172. outline: none;
  173. cursor: pointer;
  174. }
  175. .btns[disabled] {
  176. cursor: no-drop;
  177. }
  178. .alert {
  179. width: 360px;
  180. text-align: left;
  181. margin: -29px auto 0 auto;
  182. display: none;
  183. padding-top: 5px;
  184. padding-bottom: 5px;
  185. background-color: transparent;
  186. border-color: transparent;
  187. }
  188. #login_msg {
  189. font-size: 12px;
  190. }
  191. .signin_panel .form-control-feedback {
  192. top: 12px;
  193. right: 12px;
  194. font-size: 18px;
  195. }
  196. /*.pinion_rotate {
  197. margin-left: 25px;
  198. -webkit-transition-property: -webkit-transform;
  199. -webkit-transition-duration: 2s;
  200. -moz-transition-property: -moz-transform;
  201. -moz-transition-duration: 2s;
  202. -webkit-animation: rotate 4s linear infinite;
  203. -moz-animation: rotate 4s linear infinite;
  204. -o-animation: rotate 4s linear infinite;
  205. animation: rotate 4s linear infinite;
  206. }*/
  207. @-webkit-keyframes rotate {
  208. from {
  209. -webkit-transform: rotate(0deg)
  210. }
  211. to {
  212. -webkit-transform: rotate(360deg)
  213. }
  214. }
  215. @-moz-keyframes rotate {
  216. from {
  217. -moz-transform: rotate(0deg)
  218. }
  219. to {
  220. -moz-transform: rotate(359deg)
  221. }
  222. }
  223. @-o-keyframes rotate {
  224. from {
  225. -o-transform: rotate(0deg)
  226. }
  227. to {
  228. -o-transform: rotate(359deg)
  229. }
  230. }
  231. @keyframes rotate {
  232. from {
  233. transform: rotate(0deg)
  234. }
  235. to {
  236. transform: rotate(359deg)
  237. }
  238. }
  239. ::-webkit-input-placeholder {
  240. /* WebKit browsers */
  241. font-family: '微软雅黑';
  242. color: #aba9a9;
  243. font-size: 18px;
  244. }
  245. :-moz-placeholder {
  246. /* Mozilla Firefox 4 to 18 */
  247. font-family: '微软雅黑';
  248. color: #aba9a9;
  249. font-size: 18px;
  250. }
  251. ::-moz-placeholder {
  252. /* Mozilla Firefox 19+ */
  253. font-family: '微软雅黑';
  254. color: #aba9a9;
  255. font-size: 18px;
  256. }
  257. :-ms-input-placeholder {
  258. /* Internet Explorer 10+ */
  259. font-family: '微软雅黑'!important;
  260. color: #aba9a9!important;
  261. font-size: 18px!important;
  262. }
  263. @media only screen and (max-width: 1680px) {
  264. .signin_left .left_logo {
  265. left: 7.5%;
  266. top: 50%;
  267. margin-top: -325px;
  268. }
  269. .signin_right .signin_panel {
  270. top: 50%;
  271. margin-top: -286px;
  272. }
  273. }
  274. @media only screen and (max-width: 1566px) {
  275. .signin_left .left_logo {
  276. left: 5%;
  277. }
  278. }
  279. @media only screen and (max-width: 1366px) {
  280. .signin_left .left_logo {
  281. left: 4%;
  282. }
  283. .signin_left .left_logo,
  284. .signin_right .signin_panel {
  285. -webkit-transform: scale(.8);
  286. transform: scale(.8);
  287. }
  288. }
  289. @media only screen and (max-width: 1280px) {
  290. .signin_left .left_logo {
  291. left: 3%;
  292. }
  293. .signin_left .left_logo,
  294. .signin_right .signin_panel {
  295. -webkit-transform: scale(.6);
  296. transform: scale(.6);
  297. }
  298. }
  299. @media only screen and (max-width: 1240px) {
  300. .signin_left .left_logo {
  301. left: 2%;
  302. }
  303. }
  304. @media only screen and (max-width: 1170px) {
  305. .signin_left .left_logo {
  306. left: -5%;
  307. }
  308. }
  309. @media only screen and (max-width: 1024px) {
  310. .signin_left .left_logo {
  311. display: none;
  312. }
  313. .signin .signin_right {
  314. width: 100%;
  315. float: none;
  316. }
  317. .signin_right .signin_panel {
  318. top: 50%;
  319. margin-top: -285px;
  320. left: 50%;
  321. margin-left: -247px;
  322. }
  323. }
  324. .signin_panel .signin_user,
  325. .signin_panel .signin_extension,
  326. .signin_panel .signin_password {
  327. margin: 0px auto;
  328. }
  329. .alert {
  330. margin: 0px auto;
  331. }
  332. .loginTypes {
  333. position: absolute;
  334. bottom: 80px;
  335. right: 86px;
  336. color: #249fea;
  337. }
  338. .loginTypes p {
  339. cursor: pointer;
  340. }
  341. .signin_extension,
  342. .admin_login {
  343. display: none;
  344. }
  345. input::-ms-clear{
  346. display: none!important;
  347. }
  348. input::-ms-reveal {
  349.   display: none!important;
  350. }