templatemo_style.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. body {
  2. margin: 0px;
  3. padding: 0px;
  4. color: #333;
  5. font-family: Tahoma, Geneva, sans-serif;
  6. font-size: 13px;
  7. /* line-height: 1.7em; */
  8. background-color: #e9e6e6;
  9. background-repeat: repeat-x;
  10. background-position: top;
  11. }
  12. a,a:link,a:visited {
  13. color: #3d8e7d;
  14. color: #4C4C4C;
  15. font-weight: normal;
  16. text-decoration: none;
  17. font-size: 12px;
  18. }
  19. a:hover {
  20. text-decoration: underline;
  21. color: #67ACC2;
  22. }
  23. p {
  24. margin: 0px;
  25. padding: 0px;
  26. }
  27. img {
  28. border: none;
  29. }
  30. blockquote {
  31. font-style: italic;
  32. margin: 0 0 0 10px;
  33. }
  34. cite {
  35. font-weight: bold;
  36. color: #3d8e7d;
  37. }
  38. cite span {
  39. color: #3d8e7d;
  40. }
  41. em {
  42. color: #3d8e7d;
  43. }
  44. h1,h2,h3,h4,h5,h6 {
  45. color: #000;
  46. font-weight: normal;
  47. }
  48. h1 {
  49. font-size: 34px;
  50. margin: 0 0 20px;
  51. padding: 5px 0px;
  52. }
  53. h2 {
  54. font-size: 28px;
  55. margin: 0 0 15px;
  56. padding: 5px 0px;
  57. }
  58. h3 {
  59. font-size: 24px;
  60. margin: 0 0 15px;
  61. padding: 0px;
  62. }
  63. h4 {
  64. font-size: 18px;
  65. margin: 0 0 15px;
  66. padding: 0px;
  67. }
  68. h5 {
  69. font-size: 16px;
  70. margin: 0 0 10px;
  71. padding: 0px;
  72. }
  73. h6 {
  74. font-size: 14px;
  75. margin: 0 0 5px;
  76. padding: 0px;
  77. }
  78. .cleaner {
  79. clear: both;
  80. }
  81. .h10 {
  82. height: 10px;
  83. }
  84. .h20 {
  85. height: 20px;
  86. }
  87. .h30 {
  88. height: 30px;
  89. }
  90. .h40 {
  91. height: 40px;
  92. }
  93. .h50 {
  94. height: 50px;
  95. }
  96. .h60 {
  97. height: 60px;
  98. }
  99. #body_wrapper {
  100. width: 100%;
  101. /* background: url(../images/body.png) top center no-repeat; */
  102. }
  103. .wrapper {
  104. /* width: 940px; */
  105. width:1000px;
  106. padding: 0 10px;
  107. margin: 0 auto;
  108. /* background: url(../images/body.png) top center no-repeat; */
  109. }
  110. #header {
  111. /* width: 940px; */
  112. width:1000px;
  113. height: 50px;
  114. padding-top: 5px;
  115. }
  116. #header a:hover{
  117. /* text-decoration: none; */
  118. }
  119. #site_title {
  120. float: left;
  121. }
  122. #site_title h1 {
  123. margin: 0;
  124. padding: 0;
  125. }
  126. #site_title h1 a {
  127. display: block;
  128. width: 120px;
  129. height: 45px;
  130. color: #fff;
  131. text-indent: -10000px;
  132. background: url(../images/logo/logo.png) no-repeat top left;
  133. }
  134. #search_box {
  135. float: right;
  136. margin-top: 20px;
  137. /* width: 240px; */
  138. height: 24px;
  139. }
  140. #search_box form {
  141. clear: both;
  142. width: 240px;
  143. height: 24px;
  144. padding: 0;
  145. margin: 0;
  146. }
  147. #searchfield {
  148. display: block;
  149. height: 24px;
  150. width: 228px;
  151. padding: 0 5px;
  152. font-size: 12px;
  153. color: #333;
  154. background: none;
  155. border: 1px solid #ccc;
  156. }
  157. /* menu */
  158. #menu {
  159. clear: both;
  160. /* width: 940px; */
  161. width:1000px;
  162. height: 50px;
  163. background: url(../images/menu.png);
  164. margin-top: 10px;
  165. }
  166. #menu ul{
  167. margin: 0;
  168. padding: 0;
  169. list-style: none;
  170. }
  171. #menu ul li {
  172. padding: 0;
  173. margin: 0;
  174. display: inline;
  175. }
  176. #menu ul li a {
  177. float: left;
  178. display: block;
  179. width: 130px;
  180. height: 30px;
  181. padding: 10px 0 0 0;
  182. font-size: 14px;
  183. color: #67acc2;
  184. text-shadow: 1px 1px 1px #fff;
  185. text-align: center;
  186. text-decoration: none;
  187. font-weight: 700;
  188. outline: none;
  189. border: none;
  190. letter-spacing: 1px;
  191. background: url(../images/menu_divider.png) right repeat-y;
  192. }
  193. #menu ul li a:hover,#menu ul li a.currentNav {
  194. color: #666;
  195. text-shadow: 1px 1px 1px #fff;
  196. }
  197. #menu ul .last {
  198. background: none;
  199. }
  200. .siteTitleNode{
  201. font-size: 14px;
  202. font-weight: bold;
  203. line-height: 65px;
  204. margin-left: 20px;
  205. }
  206. /* end of menu */
  207. #footer_wrapper {
  208. clear: both;
  209. width: 100%;
  210. /* background: #EDEBEB; */
  211. padding-top:15px;
  212. background: none;
  213. }
  214. #footer {
  215. clear: both;
  216. padding: 10px 0;
  217. color: #000;
  218. text-align: center;
  219. margin: 0 auto;
  220. }
  221. .footer_menu a{
  222. color: #333;
  223. text-decoration: none;
  224. }
  225. .footer_menu a:HOVER{
  226. text-decoration: underline;
  227. }
  228. /** ºǫ́²Ëµ¥ **/
  229. #menuAdmin{
  230. clear: both;
  231. width: 100%;
  232. height: 36px;
  233. background: #459935;
  234. /* background: #F59797; */
  235. background-color: #65C9E6;
  236. }
  237. #menuAdmin ul {
  238. /* width: 940px; */
  239. width:1000px;
  240. padding: 0px 10px;
  241. margin: 0px auto;
  242. list-style: none;
  243. }
  244. #menuAdmin ul li{
  245. padding: 0px;
  246. margin: 0px;
  247. display: inline;
  248. }
  249. #menuAdmin ul li a {
  250. float: left;
  251. display: block;
  252. width:120px;
  253. margin-left:2px;
  254. padding: 8px 0px;
  255. font-size: 14px;
  256. line-height: 20px;
  257. color: #fff;
  258. text-align: center;
  259. text-decoration: none;
  260. outline: none;
  261. border: none;
  262. letter-spacing: 1px;
  263. }
  264. #menuAdmin ul li a:hover,#menuAdmin ul li a.currentAdmin{
  265. background: #37712b;
  266. background: #61BCD7;
  267. }