signin.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. body {
  2. line-height: 1.6;
  3. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei",
  4. "\9ED1\4F53", Arial, sans-serif;
  5. color: #222;
  6. font-size: 14px;
  7. }
  8. h1,h2,h3 {
  9. font-size: 20px;
  10. font-weight: 400;
  11. font-style: normal;
  12. }
  13. @media ( min-width : 1200px) {
  14. .container {
  15. width: 990px;
  16. }
  17. }
  18. .has-feedback-left {
  19. position: relative;
  20. }
  21. .form-control-feedback-left {
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. z-index: 2;
  26. display: block;
  27. width: 30px;
  28. height: 34px;
  29. line-height: 2.3;
  30. text-align: center;
  31. pointer-events: none;
  32. color: #bbb;
  33. font-size: 16px;
  34. }
  35. .has-feedback-left>.form-control {
  36. padding-left: 30px;
  37. }
  38. .btn-inverse {
  39. color: #fff;
  40. background-color: #44b549;
  41. background-image: -moz-linear-gradient(top, #44b549 0, #44b549 100%);
  42. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#44b549),
  43. to(#44b549));
  44. background-image: -webkit-linear-gradient(top, #44b549 0, #44b549 100%);
  45. background-image: -o-linear-gradient(top, #44b549 0, #44b549 100%);
  46. background-image: linear-gradient(to bottom, #44b549 0, #44b549 100%);
  47. border-color: #44b549;
  48. width: 120px;
  49. }
  50. .btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active {
  51. background-color: #2f9833;
  52. background-image: -moz-linear-gradient(top, #2f9833 0, #2f9833 100%);
  53. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f9833),
  54. to(#2f9833));
  55. background-image: -webkit-linear-gradient(top, #2f9833 0, #2f9833 100%);
  56. background-image: -o-linear-gradient(top, #2f9833 0, #2f9833 100%);
  57. background-image: linear-gradient(to bottom, #2f9833 0, #2f9833 100%);
  58. border-color: #2f9833;
  59. color: #fff;
  60. }
  61. .form-control {
  62. border-color: #e0e0e0;
  63. }
  64. .group{
  65. display:inline-table;vertical-align:middle
  66. }
  67. .loading {
  68. display: none;
  69. position: absolute;
  70. width: 100%;
  71. height: 100%;
  72. bottom: 0;
  73. left: 0;
  74. }
  75. .loading.in {
  76. display: block;
  77. }
  78. .loading.in>i {
  79. position: absolute;
  80. top: 50%;
  81. left: 50%;
  82. margin: -33px 0 0 -33px;
  83. background: url("../img/all/loading.gif") no-repeat center center;
  84. width: 66px;
  85. height: 66px;
  86. }
  87. /*header*/
  88. #top {
  89. border-top: 4px solid #44b549;
  90. border-bottom: 1px solid #d9dadc;
  91. }
  92. #top .navbar-header .navbar-brand {
  93. height: 50px;
  94. line-height: 50px;
  95. }
  96. #top .navbar-header .title {
  97. background: url("../img/logo/uas_gray.png") no-repeat center center;
  98. width: 87px;
  99. height: 50px;
  100. }
  101. #top .navbar-header b {
  102. display: block;
  103. width: 1px;
  104. height: 18px;
  105. margin: 18px 10px 0 11px;
  106. z-index: 100;
  107. float: left;
  108. background: #ccc;
  109. }
  110. .navbar-header span {
  111. float: left;
  112. height: 50px;
  113. line-height: 50px;
  114. font-size: 20px;
  115. color: #666;
  116. }
  117. /*main*/
  118. #banner {
  119. background: url("../img/bg/bg_signin_2.jpg") no-repeat center center;
  120. background-color: #000;
  121. }
  122. #banner>.container {
  123. height: 460px;
  124. position: relative;
  125. }
  126. #en-info {
  127. position: absolute;
  128. top: 100px;
  129. left: 0;
  130. color: #fff;
  131. letter-spacing: 2px;
  132. }
  133. #login-wrap {
  134. position: relative;
  135. width: 386px;
  136. margin-top: 25px;
  137. padding: 25px 35px 20px;
  138. border-radius: 2px;
  139. -moz-border-radius: 2px;
  140. -webkit-border-radius: 2px;
  141. box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  142. -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  143. -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  144. background-color: #fff;
  145. }
  146. #login-wrap-mobile {
  147. width: 100%;
  148. margin-top: 50px;
  149. padding: 25px 35px 20px;
  150. border-radius: 2px;
  151. -moz-border-radius: 2px;
  152. -webkit-border-radius: 2px;
  153. box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  154. -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  155. -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  156. background-color: #fff;
  157. }
  158. #code-wrap {
  159. position: absolute;
  160. top: 25px;
  161. left: 50%;
  162. margin-left: 490px;
  163. padding: 16px;
  164. background-color: #fff;
  165. border-radius: 2px;
  166. -moz-border-radius: 2px;
  167. -webkit-border-radius: 2px;
  168. box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  169. -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  170. -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  171. text-align: center;
  172. color: #717375;
  173. font-size: 12px;
  174. -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  175. -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  176. }
  177. #note {
  178. overflow: hidden;
  179. position: relative;
  180. margin-top: 30px;
  181. margin-bottom: 15px;
  182. padding-left: 20px;
  183. padding-right: 90px;
  184. line-height: 40px;
  185. background-color: #fff;
  186. border: 1px solid #e7e7eb;
  187. }
  188. #note li:not(:first-child){
  189. margin-left:30px;
  190. }
  191. #note i {
  192. display: inline-block;
  193. font-weight: 400;
  194. font-style: normal;
  195. vertical-align: middle;
  196. color: #d5d5d5;
  197. margin-top: -0.2em;
  198. margin-right: 3px;
  199. }
  200. #note a {
  201. width: auto;
  202. overflow: hidden;
  203. text-overflow: ellipsis;
  204. white-space: nowrap;
  205. word-wrap: normal;
  206. max-width: 22em;
  207. color: #333;
  208. }
  209. #note a:hover {
  210. color: #428bca;
  211. }
  212. #note .extra {
  213. position: absolute;
  214. right: 16px;
  215. top: 0;
  216. }
  217. .new {
  218. background: url("../img/icon/new.jpg") no-repeat;
  219. width: 22px;
  220. height: 8px;
  221. vertical-align: middle;
  222. display: inline-block;
  223. margin-left: 6px;
  224. }
  225. /*footer*/
  226. #footer {
  227. color: #f1f1f1;
  228. background-color: #b8b9b9;
  229. padding: 20px 0;
  230. font-size: 12px;
  231. }
  232. #footer a {
  233. color: #f1f1f1;
  234. }
  235. #footer ul {
  236. margin: 0;
  237. }
  238. #footer .list-inline>li:not(:last-child):after {
  239. margin-left: 15px;
  240. content: "|"
  241. }