Brak opisu

login.min1.css 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. /*登录的样式*/
  2. html {
  3. height: 100%;
  4. }
  5. .signin {
  6. width: 100%;
  7. position: relative;
  8. height: 100%;
  9. background: url(../img/login_bg.png) no-repeat left top;
  10. background-size: 100% 100%;
  11. overflow: auto;
  12. }
  13. .signin .signin_left,
  14. .signin .signin_right {
  15. width: 50%;
  16. float: left;
  17. }
  18. .signin_left .signin_title_pic {
  19. position: absolute;
  20. left: 7.6%;
  21. top: 6.8%;
  22. margin: 0;
  23. width: 596px;
  24. height: 57px;
  25. background: url(../img/text_h1.png) no-repeat left top;
  26. }
  27. .signin_left .signin_title {
  28. display: none;
  29. position: absolute;
  30. left: 7.6%;
  31. top: 6.8%;
  32. margin: 0;
  33. color: #fff;
  34. font-family: "Adobe 黑体 Std";
  35. font-size: 46px;
  36. }
  37. .signin_left .pinion {
  38. width: 456px;
  39. height: 562px;
  40. position: absolute;
  41. left: 24.7%;
  42. top: 26.9%;
  43. }
  44. .signin_right {}
  45. .signin_right .signin_panel {
  46. position: absolute;
  47. right: 12.5%;
  48. top: 21.3%;
  49. width: 606px;
  50. height: 646px;
  51. text-align: center;
  52. background: url(../img/signin_panel_bg.png) left top no-repeat;
  53. }
  54. .signin_logo {
  55. width: 378px;
  56. height: 90px;
  57. margin-top: 70px;
  58. font-size: 0;
  59. margin-bottom: 76px;
  60. }
  61. .signin_panel .signin_user,
  62. .signin_panel .signin_password {
  63. position: relative;
  64. width: 440px;
  65. margin: 0 auto 26px auto;
  66. }
  67. .signin_icons {
  68. position: absolute;
  69. left: 13.5px;
  70. bottom: 12px;
  71. width: 37px;
  72. display: inline-block;
  73. }
  74. .signin_user .signin_icons {
  75. height: 37px;
  76. background: url(../img/user_icon.png) left top no-repeat;
  77. }
  78. .signin_password .signin_icons {
  79. height: 45px;
  80. background: url(../img/password_icon.png) left top no-repeat;
  81. }
  82. .signin_panel .form-control {
  83. padding-left: 75px;
  84. height: 64px;
  85. line-height: 64px;
  86. font-size: 18px;
  87. color: #000;
  88. border: none;
  89. border-bottom: 2px solid #e6e6e6;
  90. }
  91. .signin_panel .form-control {
  92. outline: 0;
  93. -webkit-box-shadow: none;
  94. box-shadow: none;
  95. }
  96. .btns {
  97. width: 440px;
  98. height: 54px;
  99. line-height: 54px;
  100. margin: 74px auto 0 auto;
  101. background: url("../img/submit_btn_bg.png") left top no-repeat;
  102. color: #fff;
  103. font-size: 24px;
  104. text-align: center;
  105. border: 0;
  106. outline: none;
  107. cursor: pointer;
  108. }
  109. .btns[disabled] {
  110. cursor: no-drop;
  111. }
  112. .alert {
  113. width: 440px;
  114. text-align: left;
  115. margin: -25px auto 0 auto;
  116. display: none;
  117. }
  118. .signin_panel .form-control-feedback {
  119. top: 12px;
  120. right: 12px;
  121. font-size: 18px;
  122. }
  123. .pinion_rotate {
  124. margin-left: 25px;
  125. -webkit-transition-property: -webkit-transform;
  126. -webkit-transition-duration: 2s;
  127. -moz-transition-property: -moz-transform;
  128. -moz-transition-duration: 2s;
  129. -webkit-animation: rotate 4s linear infinite;
  130. -moz-animation: rotate 4s linear infinite;
  131. -o-animation: rotate 4s linear infinite;
  132. animation: rotate 4s linear infinite;
  133. }
  134. .pinion_rotate1 {
  135. margin-left: -25px;
  136. -webkit-transition-property: -webkit-transform;
  137. -webkit-transition-duration: 1s;
  138. -moz-transition-property: -moz-transform;
  139. -moz-transition-duration: 1s;
  140. -webkit-animation: rotate 2s linear infinite reverse;
  141. -moz-animation: rotate 2s linear infinite reverse;
  142. -o-animation: rotate 2s linear infinite reverse;
  143. animation: rotate 2s linear infinite reverse;
  144. }
  145. @-webkit-keyframes rotate {
  146. from {
  147. -webkit-transform: rotate(0deg)
  148. }
  149. to {
  150. -webkit-transform: rotate(360deg)
  151. }
  152. }
  153. @-moz-keyframes rotate {
  154. from {
  155. -moz-transform: rotate(0deg)
  156. }
  157. to {
  158. -moz-transform: rotate(359deg)
  159. }
  160. }
  161. @-o-keyframes rotate {
  162. from {
  163. -o-transform: rotate(0deg)
  164. }
  165. to {
  166. -o-transform: rotate(359deg)
  167. }
  168. }
  169. @keyframes rotate {
  170. from {
  171. transform: rotate(0deg)
  172. }
  173. to {
  174. transform: rotate(359deg)
  175. }
  176. }
  177. input::-webkit-input-placeholder,
  178. textarea::-webkit-input-placeholder {
  179. font-family: '微软雅黑';
  180. color: #c4c4c4;
  181. }
  182. input:-moz-placeholder,
  183. textarea:-moz-placeholder {
  184. font-family: '微软雅黑';
  185. color: #c4c4c4;
  186. }
  187. input::-moz-placeholder,
  188. textarea::-moz-placeholder {
  189. font-family: '微软雅黑';
  190. color: #c4c4c4;
  191. }
  192. input:-ms-input-placeholder,
  193. textarea:-ms-input-placeholder {
  194. font-family: '微软雅黑';
  195. color: #c4c4c4;
  196. }
  197. @media only screen and (max-width: 1920px) {}
  198. @media only screen and (max-width: 1680px) {
  199. .signin_left .pinion{
  200. left: 20%;
  201. }
  202. }
  203. @media only screen and (max-width: 1566px) {
  204. .signin_left .pinion{
  205. left: 5%;
  206. }
  207. .signin_left .signin_title_pic{
  208. display: none;
  209. }
  210. .signin_left .signin_title{
  211. display: block;
  212. }
  213. }
  214. @media only screen and (max-width: 1366px) {
  215. .signin_left .signin_title{
  216. display: none;
  217. }
  218. .pinion_rotate{
  219. height: 310px;
  220. }
  221. .pinion_rotate1{
  222. display: none;
  223. }
  224. .signin_left .pinion{
  225. height: auto;
  226. }
  227. .signin_right .signin_panel{
  228. left: 0;
  229. right: 0;
  230. bottom: 0;
  231. top: -1.7%;
  232. margin: auto;
  233. -webkit-transform: scale(.8);
  234. transform: scale(.8);
  235. }
  236. }
  237. @media only screen and (max-width: 1280px) {
  238. .pinion_rotate{
  239. height: 270px;
  240. }
  241. .signin_right .signin_panel{
  242. -webkit-transform: scale(.6);
  243. transform: scale(.6);
  244. }
  245. }
  246. @media only screen and (max-width: 1240px) {
  247. .signin_left .pinion,
  248. .signin_left .signin_title{
  249. display: none;
  250. }
  251. .signin .signin_right{
  252. width: 100%;
  253. float: none;
  254. }
  255. .signin_right .signin_panel{
  256. left: 0;
  257. right: 0;
  258. bottom: 0;
  259. top: -1.7%;
  260. margin: auto;
  261. }
  262. }
  263. @media only screen and (max-width: 1200px) {}
  264. @media only screen and (max-width: 992px) {}
  265. @media only screen and (max-width: 768px) {}