divfrom.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. *{
  2. margin:0px;
  3. padding:0px;
  4. }
  5. body{
  6. font-size:12px;
  7. font-family:"Century Gothic", Helvetica, sans-serif;
  8. }
  9. #content{
  10. margin:5px auto;
  11. text-align:left;
  12. width:100%;
  13. position:relative;
  14. height:100%;
  15. }
  16. #content .inputxt{
  17. /*
  18. border:1px solid #a5aeb6;
  19. width:150px;
  20. padding:3px 2px;*/
  21. border: 1px solid #D7D7D7;
  22. border-radius: 3PX;
  23. height: 14px;
  24. padding: 7px 0 7px 5px!important;
  25. line-height: 14PX;
  26. font-size: 12px;
  27. display: inline-block;
  28. width:150px;
  29. }
  30. #wrapper{
  31. -moz-box-shadow:0px 0px 3px #aaa;
  32. -webkit-box-shadow:0px 0px 3px #aaa;
  33. box-shadow:0px 0px 3px #aaa;
  34. -moz-border-radius:10px;
  35. -webkit-border-radius:10px;
  36. border-radius:10px;
  37. border:2px solid #fff;
  38. background-color:#f9f9f9;
  39. width:650px;
  40. overflow:hidden;
  41. }
  42. #steps{
  43. width:650px;
  44. /*height:320px;*/
  45. overflow:hidden;
  46. }
  47. .step{
  48. float:left;
  49. width:650px;
  50. /*height:320px;*/
  51. }
  52. #navigation{
  53. height:45px;
  54. background-color:#E0ECFF;
  55. border-top:1px solid #fff;
  56. -moz-border-radius:0px 0px 10px 10px;
  57. -webkit-border-bottom-left-radius:10px;
  58. -webkit-border-bottom-right-radius:10px;
  59. border-bottom-left-radius:10px;
  60. border-bottom-right-radius:10px;
  61. }
  62. #navigation ul{
  63. list-style:none;
  64. float:left;
  65. margin-left:22px;
  66. }
  67. #navigation ul li{
  68. float:left;
  69. border-right:1px solid #ccc;
  70. border-left:1px solid #ccc;
  71. position:relative;
  72. margin:0px 2px;
  73. }
  74. #navigation ul li a{
  75. display:block;
  76. height:45px;
  77. background-color:#444;
  78. color:#777;
  79. outline:none;
  80. font-weight:bold;
  81. text-decoration:none;
  82. line-height:45px;
  83. padding:0px 20px;
  84. border-right:1px solid #fff;
  85. border-left:1px solid #fff;
  86. background:#f0f0f0;
  87. background:
  88. -webkit-gradient(
  89. linear,
  90. left bottom,
  91. left top,
  92. color-stop(0.09, rgb(240,240,240)),
  93. color-stop(0.55, rgb(227,227,227)),
  94. color-stop(0.78, rgb(240,240,240))
  95. );
  96. background:
  97. -moz-linear-gradient(
  98. center bottom,
  99. rgb(240,240,240) 9%,
  100. rgb(227,227,227) 55%,
  101. rgb(240,240,240) 78%
  102. )
  103. }
  104. #navigation ul li a:hover,
  105. #navigation ul li.selected a{
  106. background:#E0ECFF;
  107. color:#666;
  108. text-shadow:1px 1px 1px #fff;
  109. }
  110. span.checked{
  111. background:transparent url(../images/checked.png) no-repeat top left;
  112. position:absolute;
  113. top:0px;
  114. left:1px;
  115. width:20px;
  116. height:20px;
  117. }
  118. span.error{
  119. background:transparent url(../images/error.png) no-repeat top left;
  120. position:absolute;
  121. top:0px;
  122. left:1px;
  123. width:20px;
  124. height:20px;
  125. }
  126. #steps form fieldset{
  127. border:none;
  128. padding-bottom:100px;
  129. }
  130. #steps form legend{
  131. text-align:left;
  132. background-color:#C4E1FF;
  133. color:#666;
  134. font-size:14px;
  135. text-shadow:1px 1px 1px #fff;
  136. font-weight:bold;
  137. float:left;
  138. width:650px;
  139. padding:5px 0px 5px 5px;
  140. margin:0px 0px;
  141. border-bottom:1px solid #fff;
  142. border-top:1px solid #d9d9d9;
  143. }
  144. #steps form div.form{
  145. float:left;
  146. clear:both;
  147. margin:5px 0px;
  148. background-color:#f4f4f4;
  149. border:1px solid #fff;
  150. width:95%;
  151. padding:5px;
  152. margin-left:5px;
  153. -moz-border-radius: 5px;
  154. -webkit-border-radius: 5px;
  155. border-radius: 5px;
  156. -moz-box-shadow:0px 0px 3px #aaa;
  157. -webkit-box-shadow:0px 0px 3px #aaa;
  158. box-shadow:0px 0px 3px #aaa;
  159. }
  160. /*update-begin--Author:xuelin Date:20170617 for:TASK #2110 【表单样式】表单,label宽一些-------------------- */
  161. #steps form div label.Validform_label{
  162. width: 130px;
  163. margin-left: 10px;
  164. float:left;
  165. text-align:left;
  166. margin-right:15px;
  167. line-height:20px;
  168. color:#666;
  169. /* text-shadow:1px 1px 1px #fff; */ /* scott 20160229 Div有白块*/
  170. }
  171. /*update-end--Author:xuelin Date:20170617 for:TASK #2110 【表单样式】表单,label宽一些---------------------- */
  172. /*==========@周俊峰 定义form textarea的样式去掉 width: 157px; 解决textarea不能通过cols来设置宽度的问题===========*/
  173. #steps form textarea{
  174. background: #ffffff;
  175. border: 1px solid #ddd;
  176. -moz-border-radius: 2px;
  177. -webkit-border-radius: 2px;
  178. border-radius: 2px;
  179. outline: none;
  180. padding:3px 2px;
  181. float:left;
  182. }
  183. #steps form select{
  184. background: #ffffff;
  185. border: 1px solid #ddd;
  186. -moz-border-radius: 2px;
  187. -webkit-border-radius: 2px;
  188. border-radius: 2px;
  189. outline: none;
  190. /*
  191. padding:3px 2px;
  192. */
  193. width: 157px;
  194. float:left;
  195. }
  196. #steps form input:focus{
  197. -moz-box-shadow:0px 0px 3px #aaa;
  198. -webkit-box-shadow:0px 0px 3px #aaa;
  199. box-shadow:0px 0px 3px #aaa;
  200. background-color:#FFFEEF;
  201. }
  202. #steps form button {
  203. border:none;
  204. outline:none;
  205. -moz-border-radius: 5px;
  206. -webkit-border-radius: 5px;
  207. border-radius: 5px;
  208. color: #ffffff;
  209. display: block;
  210. cursor:pointer;
  211. margin: 0px auto;
  212. clear:both;
  213. padding: 7px 25px;
  214. text-shadow: 0 1px 1px #777;
  215. font-weight:bold;
  216. font-family:"Century Gothic", Helvetica, sans-serif;
  217. font-size:22px;
  218. -moz-box-shadow:0px 0px 3px #aaa;
  219. -webkit-box-shadow:0px 0px 3px #aaa;
  220. box-shadow:0px 0px 3px #aaa;
  221. background:#4797ED;
  222. }
  223. #steps form button:hover {
  224. background:#d8d8d8;
  225. color:#666;
  226. text-shadow:1px 1px 1px #fff;
  227. }