Keine Beschreibung

login.css 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. html {
  2. height: 100%;
  3. }
  4. .signin{
  5. width: 100%;
  6. position: relative;
  7. height: 100%;
  8. }
  9. /* .signin .col-md-5{
  10. width: 50%;
  11. } */
  12. .container{
  13. position: relative;
  14. width: 100%;
  15. height: 100%;
  16. background: url(../img/login_background_1.png) no-repeat left top;
  17. background-size: 100% 100%;
  18. }
  19. .signin_left {
  20. color: #fff;
  21. }
  22. .signin_left i{
  23. display: inline-block;
  24. width: 50px;
  25. height: 36px;
  26. vertical-align: middle;
  27. background: url(../img/login_logo.png) left top no-repeat;
  28. }
  29. .signin_left h2{
  30. font-size: 30px;
  31. font-family: '黑体';
  32. margin-top: 15%;
  33. margin-bottom: 0;
  34. }
  35. .signin_left h2 + p,.left_word>div h2 + p{
  36. margin-top: 22.163%;
  37. margin-bottom: 22.163%;
  38. font-size: 18px;
  39. }
  40. .signin_left h3,.left_word>div h3{
  41. font-size: 24px;
  42. color: #006967;
  43. margin-bottom: 2.5%;
  44. }
  45. .signin_left h3 + p,.left_word>div h3 + p{
  46. line-height: 30px;
  47. font-size: 18px;
  48. color: #fff;
  49. }
  50. .signin_right{
  51. position: absolute;
  52. top: 20%;
  53. right: 5%;
  54. width: 610px;
  55. height: 600px;
  56. }
  57. /*.signin_right .signin_panel h1{
  58. font-size: 24px;
  59. font-family: '华文仿宋';
  60. margin: 0 0 19.46% 0;
  61. font-weight: 600;
  62. }*/
  63. .signin_panel .logo_title{
  64. /* margin-left: 10px; */
  65. width: 100%;
  66. font-size: 0;
  67. }
  68. .logo_img{
  69. display: inline-block;
  70. vertical-align: top;
  71. }
  72. .logo_content{
  73. display: inline-block;
  74. vertical-align: top;
  75. }
  76. .logo_text span{
  77. font-size: 40px;
  78. line-height: 45px;
  79. font-family: '华文仿宋';
  80. font-weight: 600;
  81. margin-left: 15px;
  82. color: rgb(255, 255, 255);
  83. }
  84. .logo_footer{
  85. margin-left: 15px;
  86. height: 8px;
  87. margin-top: -3px;
  88. background: url(../img/logo_footer.png) no-repeat;
  89. background-position: -145px -149px;
  90. }
  91. .sigin_wrapper{
  92. margin-top: 5.1%;
  93. width: 500px;
  94. height: 395px;
  95. padding: 50px 58px 0 58px;
  96. background: rgb(255, 255, 255);
  97. border-radius: 30px;
  98. }
  99. .signin_panel .signin_user,
  100. .signin_panel .signin_password,
  101. .signin_panel .signin_seat{
  102. position: relative;
  103. margin-bottom: 22px;
  104. }
  105. .signin_icons{
  106. position: absolute;
  107. left: 20px;
  108. top: 15px;
  109. width: 17px;
  110. height: 17px;
  111. display: inline-block;
  112. background: url(../img/signin_icon.png) left top no-repeat;
  113. }
  114. .signin_password .signin_icons{
  115. background-position: 0 -30px;
  116. }
  117. .signin_seat .signin_icons{
  118. background-position: 0 -16px;
  119. height: 15px;
  120. }
  121. .keyboard_icons{
  122. position: absolute;
  123. right: 20px;
  124. top: 15px;
  125. width: 27px;
  126. height: 16px;
  127. display: inline-block;
  128. background: url(../img/keyboard_icons.png) left top no-repeat;
  129. background-size: 27px 16px
  130. }
  131. .signin_panel .form-control{
  132. padding-left: 57px;
  133. height: 44px;
  134. line-height: 44px;
  135. font-size: 16px;
  136. font-family: SourceHanS;
  137. color: #000;
  138. }
  139. .singin_rpassword{
  140. margin-top: 4px;
  141. margin-top: 7px;
  142. }
  143. .rpassword {
  144. float: left;
  145. }
  146. .rpassword input[type="checkbox"]{
  147. appearance: none;
  148. -webkit-appearance: none;
  149. outline: none;
  150. display:none;
  151. }
  152. .rpassword .checkbox_icon{
  153. width: 16px;
  154. height: 16px;
  155. display: inline-block;
  156. background: url("../img/checkbox.png") no-repeat;
  157. background-position:0 0;
  158. vertical-align: sub;
  159. border: 1px solid #5c616b;
  160. cursor: pointer;
  161. }
  162. .rpassword input[type="checkbox"]:checked + .checkbox_icon{
  163. background-position:0 -14px;
  164. }
  165. .rpassword label{
  166. color: #5c616b;
  167. font-size: 14px;
  168. font-family: '宋体';
  169. font-weight: normal;
  170. line-height: 14px;
  171. height: 14px;
  172. cursor: pointer;
  173. }
  174. .fpassword{
  175. float: right;
  176. }
  177. .fpassword a{
  178. color: #5c616b;
  179. text-decoration: none;
  180. font-size: 14px;
  181. font-family: '宋体';
  182. }
  183. .ts{
  184. position: absolute;
  185. right: 12.5px;
  186. top: 12.5px;
  187. height: 15px!important;
  188. }
  189. .Yz_error{
  190. width: 15px;
  191. background: url("../img/yz.png") no-repeat 0 -15px;
  192. }
  193. .Yz_success{
  194. width: 20px;
  195. background: url("../img/yz.png") no-repeat 0 0;
  196. }
  197. .btns{
  198. width: 390px;
  199. background-color: #d1141b;
  200. color: #fff;
  201. height: 50px;
  202. line-height: 50px;
  203. text-align: center;
  204. border: 0;
  205. outline: none;
  206. border-radius: 10px;
  207. cursor: pointer;
  208. margin-top: 40px;
  209. margin-bottom: 12px;
  210. font-size: 16px;
  211. letter-spacing: 6px;
  212. }
  213. .btns:hover{
  214. background-color: #ad1316;
  215. }
  216. .fregister{
  217. font-size: 13px;
  218. font-family: '宋体';
  219. }
  220. .fregister span{
  221. color: #5c616b;
  222. }
  223. .fregister a{
  224. color: #1582b4;
  225. }
  226. ._success{
  227. border-color: #c91e32!important;
  228. }
  229. ._fail{
  230. border-color: red!important;
  231. }
  232. input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  233. font-family: '华文仿宋';
  234. color: #999999;
  235. }
  236. input:-moz-placeholder, textarea:-moz-placeholder {
  237. font-family: '华文仿宋';
  238. color: #999999;
  239. }
  240. input::-moz-placeholder, textarea::-moz-placeholder {
  241. font-family: '华文仿宋';
  242. color: #999999;
  243. }
  244. input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  245. font-family: '华文仿宋';
  246. color: #999999;
  247. }
  248. @media only screen and (max-width: 1920px) {
  249. }
  250. @media only screen and (max-width: 1366px) {
  251. }
  252. @media only screen and (max-width: 1200px) {
  253. }
  254. @media only screen and (max-width: 992px) {
  255. div.signin_left{
  256. display: none;
  257. }
  258. div.left_word{
  259. display: none;
  260. }
  261. div.signin_right .signin_panel {
  262. /* margin: 10% auto 0 auto; */
  263. float: none;
  264. /* color: #fff; */
  265. }
  266. }
  267. @media only screen and (max-width: 768px) {
  268. div.signin_left{
  269. display: none;
  270. }
  271. }