register.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  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. #top, #header, #footer {
  9. min-width: 1170px;
  10. }
  11. #top>.container, #header>.container, #footer>.container {
  12. width: 1170px;
  13. margin: 0 auto;
  14. padding: 0 15px;
  15. }
  16. h1,h2,h3 {
  17. font-size: 20px;
  18. font-weight: 400;
  19. font-style: normal;
  20. }
  21. .f12 {
  22. font-size: 12px;
  23. }
  24. .f13 {
  25. font-size: 13px;
  26. }
  27. .f14 {
  28. font-size: 14px;
  29. }
  30. .f15 {
  31. font-size: 15px;
  32. }
  33. .f16 {
  34. font-size: 16px;
  35. }
  36. .f18 {
  37. font-size: 18px;
  38. }
  39. .f20 {
  40. font-size: 20px;
  41. }
  42. .text-default {
  43. color: #56a022;
  44. }
  45. .text-inverse {
  46. color: #f40 !important
  47. }
  48. .text-muted {
  49. color: #888 !important;
  50. }
  51. .text-light {
  52. color: #666;
  53. }
  54. .text-simple {
  55. color: #aaa;
  56. }
  57. .text-num {
  58. font-style: normal;
  59. font-family: verdana;
  60. }
  61. .text-small {
  62. font-size: 10px;
  63. font-family: "microsoft yahei";
  64. -webkit-transform: scale(0.83);
  65. -o-transform: scale(0.83);
  66. transform: scale(0.83);
  67. }
  68. .text-bold {
  69. font-weight: 700;
  70. }
  71. @media ( min-width : 1200px) {
  72. .container {
  73. width: 990px;
  74. }
  75. }
  76. .has-feedback-left {
  77. position: relative;
  78. }
  79. .form-control-feedback-left {
  80. position: absolute;
  81. top: 0;
  82. left: 0;
  83. z-index: 2;
  84. display: block;
  85. width: 30px;
  86. height: 34px;
  87. line-height: 2.3;
  88. text-align: center;
  89. pointer-events: none;
  90. color: #bbb;
  91. font-size: 16px;
  92. }
  93. .has-feedback-left>.form-control {
  94. padding-left: 30px;
  95. }
  96. .btn-inverse {
  97. color: #fff;
  98. background-color: #44b549;
  99. background-image: -moz-linear-gradient(top, #44b549 0, #44b549 100%);
  100. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#44b549),
  101. to(#44b549));
  102. background-image: -webkit-linear-gradient(top, #44b549 0, #44b549 100%);
  103. background-image: -o-linear-gradient(top, #44b549 0, #44b549 100%);
  104. background-image: linear-gradient(to bottom, #44b549 0, #44b549 100%);
  105. border-color: #44b549;
  106. width: 120px;
  107. }
  108. .btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active {
  109. background-color: #2f9833;
  110. background-image: -moz-linear-gradient(top, #2f9833 0, #2f9833 100%);
  111. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f9833),
  112. to(#2f9833));
  113. background-image: -webkit-linear-gradient(top, #2f9833 0, #2f9833 100%);
  114. background-image: -o-linear-gradient(top, #2f9833 0, #2f9833 100%);
  115. background-image: linear-gradient(to bottom, #2f9833 0, #2f9833 100%);
  116. border-color: #2f9833;
  117. color: #fff;
  118. }
  119. .form-control {
  120. border-color: #e0e0e0;
  121. }
  122. .loading {
  123. display: none;
  124. position: absolute;
  125. width: 100%;
  126. height: 100%;
  127. bottom: 0;
  128. left: 0;
  129. }
  130. .loading.in {
  131. display: block;
  132. }
  133. .loading.in>i {
  134. position: absolute;
  135. top: 50%;
  136. left: 50%;
  137. margin: -33px 0 0 -33px;
  138. background: url("../img/all/loading.gif") no-repeat center center;
  139. width: 66px;
  140. height: 66px;
  141. }
  142. /* common */
  143. .margin-b-0 {
  144. margin-bottom: 0px;
  145. }
  146. .padding-b-0 {
  147. padding-bottom: 0px;
  148. }
  149. input.ng-invalid.ng-dirty,textarea.ng-invalid.ng-dirty {
  150. background-color: #fff8ee;
  151. border-color: #CC0033;
  152. }
  153. /*header*/
  154. #top {
  155. border-top: 4px solid #44b549;
  156. border-bottom: 1px solid #d9dadc;
  157. }
  158. #top .navbar-header .navbar-brand {
  159. height: 50px;
  160. line-height: 50px;
  161. }
  162. #top .navbar-header .title {
  163. background: url("../img/logo/uas_gray.png") no-repeat center center;
  164. width: 87px;
  165. height: 50px;
  166. }
  167. #top .navbar-header b {
  168. display: block;
  169. width: 1px;
  170. height: 18px;
  171. margin: 18px 10px 0 11px;
  172. z-index: 100;
  173. float: left;
  174. background: #ccc;
  175. }
  176. .navbar-header span {
  177. float: left;
  178. height: 50px;
  179. line-height: 50px;
  180. font-size: 20px;
  181. color: #666;
  182. }
  183. /*main*/
  184. .step {
  185. padding: 30px 0px 0px 0px;
  186. }
  187. .ui-step {
  188. padding: 0 40px;
  189. margin: 0 auto;
  190. font-size: 14px;
  191. list-style: none;
  192. zoom: 1;
  193. position: relative;
  194. color: #b7b7b7;
  195. overflow: hidden;
  196. }
  197. .ui-step .ui-step-active {
  198. color: #009966;
  199. }
  200. .ui-step li {
  201. width: 30%;
  202. float: left;
  203. height: 54px;
  204. margin: 0;
  205. position: relative;
  206. }
  207. .ui-step li .ui-step-line {
  208. height: 3px;
  209. background: #b9b9b9;
  210. display: block;
  211. margin-top: 19px;
  212. line-height: 1;
  213. width: 100%;
  214. overflow: hidden;
  215. }
  216. .ui-step li .ui-step-line-active {
  217. background-color: #009966;
  218. }
  219. .ui-step li .ui-step-text-active {
  220. color: #009966;
  221. font-weight: bold;
  222. border: solid 2px #009966;
  223. }
  224. .ui-step-text {
  225. position: absolute;
  226. top: 0px;
  227. left: 0px;
  228. z-index: 3;
  229. background: #FFFFFF;
  230. color: #b9b9b9;
  231. padding: 0px 10px;
  232. border: solid 1px #b9b9b9;
  233. border-radius: 4px;
  234. }
  235. .alert {
  236. margin-top: 8px;
  237. padding: 8px 15px;
  238. }
  239. form {
  240. padding-top: 10px;
  241. border: solid 1px #CCCCCC;
  242. border-radius: 4px;
  243. margin-bottom: 20px;
  244. }
  245. .well-info {
  246. padding: 10px;
  247. border-radius: 4px;
  248. border: solid 1px #cccccc;
  249. background: #efefef;
  250. margin-bottom: 20px;
  251. }
  252. /*footer*/
  253. #footer {
  254. color: #f1f1f1;
  255. background-color: #b8b9b9;
  256. padding: 20px 0;
  257. font-size: 12px;
  258. }
  259. #footer a {
  260. color: #f1f1f1;
  261. }
  262. #footer ul {
  263. margin: 0;
  264. }
  265. #footer .list-inline>li:not(:last-child):after {
  266. margin-left: 15px;
  267. content: "|"
  268. }
  269. .navbar {
  270. margin-bottom: 0px;
  271. }
  272. /*加载图标*/
  273. .spinner {
  274. margin-left: 5px;
  275. text-align: center;
  276. display: inline-block;
  277. }
  278. .spinner > div {
  279. width: 10px;
  280. height: 10px;
  281. background-color: #FFFFFF;
  282. border-radius: 100%;
  283. display: inline-block;
  284. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  285. animation: bouncedelay 1.4s infinite ease-in-out;
  286. /* Prevent first frame from flickering when animation starts */
  287. -webkit-animation-fill-mode: both;
  288. animation-fill-mode: both;
  289. }
  290. .spinner .bounce1 {
  291. -webkit-animation-delay: -0.32s;
  292. animation-delay: -0.32s;
  293. }
  294. .spinner .bounce2 {
  295. -webkit-animation-delay: -0.16s;
  296. animation-delay: -0.16s;
  297. }
  298. @-webkit-keyframes bouncedelay {
  299. 0%, 80%, 100% { -webkit-transform: scale(0.0) }
  300. 40% { -webkit-transform: scale(1.0) }
  301. }
  302. @keyframes bouncedelay {
  303. 0%, 80%, 100% {
  304. transform: scale(0.0);
  305. -webkit-transform: scale(0.0);
  306. } 40% {
  307. transform: scale(1.0);
  308. -webkit-transform: scale(1.0);
  309. }
  310. }
  311. @keyframes spin {
  312. 0% { transform: rotate(360deg); }
  313. 100% { transform: rotate(0deg); }
  314. }
  315. .loading>.wrap { width: 64px; height: 64px; position: absolute;left: 50%;top:50%;margin-left:-32px;margin-top: -32px; }
  316. .outer {
  317. background-repeat: no-repeat;
  318. background-size:100%; position: absolute; width: 100%; height: 100%; background-image: url("../img/all/loading.png"); animation: spin 800ms infinite linear; }