style.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. html {
  2. text-align: center;
  3. background: #EDEDED url(../images/main_bg.jpg) repeat-x left top;
  4. }
  5. body {
  6. width: 940px;
  7. text-align: left;
  8. margin: 0 auto;
  9. background: #fff;
  10. }
  11. td {
  12. font: 12px/1.5 Verdana, Arial, Helvetica, sans-serif, "宋体";
  13. color: #333;
  14. }
  15. input { font: 10pt Verdana, Arial, Helvetica, sans-serif, "宋体"; }
  16. img {
  17. border: none;
  18. }
  19. p,ul,ol,li,form {
  20. margin: 0;
  21. padding: 0;
  22. list-style: none;
  23. }
  24. a {
  25. color: #07519A;
  26. text-decoration: none;
  27. }
  28. a:hover {
  29. color: #c30!important;
  30. text-decoration: underline;
  31. }
  32. .content {
  33. }
  34. .sider {
  35. width: 300px;
  36. }
  37. .homepage .sider {
  38. width: 230px;
  39. }
  40. /** 页头区 **/
  41. .top {
  42. border-bottom: 1px solid #DCDCDC;
  43. }
  44. .top td {
  45. background: #F4F4F4;
  46. }
  47. .top table td {
  48. padding: 3px 10px;
  49. }
  50. .top a {
  51. }
  52. .top .inputText {
  53. height: 14px;
  54. border: 1px solid #999;
  55. }
  56. .top .inputSub {
  57. height: 19px;
  58. }
  59. /** 导航 **/
  60. .nav {
  61. background: url(../images/nav_bg.jpg) repeat-x left top;
  62. }
  63. .nav .nav_global {
  64. }
  65. .nav .nav_global ul {
  66. padding: 0 10px;
  67. }
  68. .nav .nav_global li {
  69. cursor:pointer;
  70. float:left;
  71. text-align:center;
  72. text-decoration:none;
  73. font-size: 14px;
  74. line-height: 33px;
  75. font-weight: bold;
  76. color: #FFF;
  77. background: url(../images/nav_line.jpg) no-repeat right top;
  78. padding-right: 2px;
  79. }
  80. .nav .nav_global li a {
  81. display: block;
  82. color: #fff;
  83. text-align: center;
  84. padding: 0 14px;
  85. }
  86. .nav .nav_global li a:hover {
  87. color: #000!important;
  88. text-decoration: none;
  89. }
  90. .nav .nav_global li.curr a {
  91. color: #000;
  92. background: url(../images/nav_li_hover.jpg) repeat-x center top;
  93. }
  94. .nav_sub {
  95. padding: 6px;
  96. }
  97. .nav_sub a {
  98. padding: 0 2px;
  99. }
  100. /* 子栏目导航菜单距离调整 */
  101. #tabnav_div_1 {
  102. }
  103. #tabnav_div_2 {
  104. padding-left: 100px;
  105. }
  106. #tabnav_div_3 {
  107. padding-left: 200px;
  108. }
  109. #tabnav_div_4 {
  110. padding-left: 300px;
  111. }
  112. #tabnav_div_5 {
  113. padding-left: 400px;
  114. }
  115. #tabnav_div_6 {
  116. padding-left: 500px;
  117. }
  118. #tabnav_div_7 {
  119. padding-left: 600px;
  120. }
  121. #tabnav_div_8 {
  122. padding-right: 40px;
  123. text-align: right;
  124. }
  125. /* 页尾区 */
  126. .links {
  127. margin-top: -10px;
  128. }
  129. .links hr {
  130. color: #DCDCDC;
  131. }
  132. .search {
  133. background: #1F73BE;
  134. color: #fff;
  135. }
  136. .search td, .search a {
  137. color: #fff;
  138. }
  139. .search a:hover {
  140. color: #fff!important;
  141. }
  142. .copyright {
  143. margin: 5px 0;
  144. }
  145. /** 公共定义 **/
  146. .title {
  147. background: #E9F2FB url(../images/title_bg.gif) repeat-x left top;
  148. color: #07519A;
  149. border: 1px solid #AACCEE;
  150. border-bottom: none;
  151. }
  152. .title td {
  153. font-size: 14px;
  154. line-height: 26px;
  155. color: #07519A;
  156. padding: 0px 10px;
  157. }
  158. .box {
  159. border: 1px solid #AACCEE;
  160. border-width: 0 1px 1px 1px;
  161. }
  162. .box ul {
  163. list-style: none;
  164. padding: 8px;
  165. }
  166. .box ul li {
  167. background: url(../images/bullet.gif) no-repeat left center;
  168. line-height: 1.6;
  169. padding: 2px 0 2px 8px;
  170. }
  171. .no_doc ul li {
  172. background: url(none);
  173. padding-left: 0px;
  174. }
  175. .box ul li p {
  176. margin: 0 0 4px;
  177. padding: 0 0 5px;
  178. color: #666;
  179. border-bottom: 1px dashed #CCC;
  180. }
  181. .box ul li strong {
  182. display: block;
  183. }
  184. .rank {
  185. margin: 0px;
  186. padding: 8px 6px;
  187. }
  188. .rank li {
  189. padding-left: 18px;
  190. line-height: 23px;
  191. }
  192. .rank li.no1 {
  193. background: url(../images/1.gif) no-repeat 4px center;
  194. }
  195. .rank li.no2 {
  196. background: #F2F8FD url(../images/2.gif) no-repeat 4px center;
  197. }
  198. .rank li.no3 {
  199. background: url(../images/3.gif) no-repeat 4px center;
  200. }
  201. .rank li.no4 {
  202. background: #F2F8FD url(../images/4.gif) no-repeat 4px center;
  203. }
  204. .rank li.no5 {
  205. background: url(../images/5.gif) no-repeat 4px center;
  206. }
  207. .rank li.no6 {
  208. background: #F2F8FD url(../images/6.gif) no-repeat 4px center;
  209. }
  210. .rank li.no7 {
  211. background: url(../images/7.gif) no-repeat 4px center;
  212. }
  213. .rank li.no8 {
  214. background: #F2F8FD url(../images/8.gif) no-repeat 4px center;
  215. }
  216. .rank li.no9 {
  217. background: url(../images/9.gif) no-repeat 4px center;
  218. }
  219. .rank li.no10 {
  220. background: #F2F8FD url(../images/10.gif) no-repeat 4px center;
  221. }
  222. .news_title {
  223. margin-top: 10px;
  224. }
  225. .news_title strong {
  226. background: #f4f4f4 url(../images/h2_icon.gif) no-repeat 8px center;
  227. display: block;
  228. padding-left: 20px;
  229. line-height: 2;
  230. margin: 0 8px;
  231. font-size: 14px;
  232. }
  233. .news_title p {
  234. margin: 6px 8px 0px;
  235. padding: 0 0 8px;
  236. color: #666;
  237. border-bottom: 1px dashed #CCC;
  238. }
  239. .focus {
  240. margin-top: 10px;
  241. background: url(../images/focus_bg.jpg) repeat-x left top;
  242. border: 1px solid #AACCEE;
  243. }
  244. .focus strong {
  245. font-size: 16px;
  246. line-height: 32px;
  247. margin-bottom: 6px;
  248. text-align: center;
  249. display: block;
  250. border-bottom: 1px dashed #ccc;
  251. }
  252. .margin_top {
  253. margin-top: 10px;
  254. }
  255. .inputText {
  256. border: 1px solid #ccc;
  257. }
  258. .banner_ad {
  259. padding: 0 10px;
  260. }
  261. .picText {
  262. margin-bottom: 10px;
  263. background: #F8F8F8;
  264. }
  265. .picText strong {
  266. display: block;
  267. }
  268. .picText img {
  269. }
  270. .picList {
  271. padding: 8px 0;
  272. }
  273. .picList table td img {
  274. margin-bottom: 1px;
  275. }
  276. .tprice span {
  277. text-decoration: line-through;
  278. }
  279. .price {
  280. color: #f60;
  281. }
  282. /* tab选项卡 */
  283. .tbtncon {
  284. height:26px;
  285. background:url(../images/title_bg.gif) repeat-x;
  286. }
  287. .tbtn1 {
  288. font-size:12px;
  289. font-weight:normal;
  290. height:26px;
  291. border:1px solid #ace;
  292. }
  293. .tbtncon li{
  294. border:1px solid #ace;
  295. border-left:none;
  296. border-top:none;
  297. color:#07519A;
  298. cursor:pointer;
  299. display:block;
  300. float:left;
  301. text-align:center;
  302. text-decoration:none;
  303. width:80px;
  304. height:25px;
  305. line-height:25px;
  306. }
  307. .tbtncon li:hover{
  308. text-decoration:underline;
  309. }
  310. .tbtncon li.curr{
  311. background:#fff;
  312. border-bottom-color:#fff;
  313. cursor:default;
  314. }
  315. /* 频道和列表页 */
  316. .position {
  317. background: #E9F2FB url(../images/title_bg.gif) repeat-x left top;
  318. color: #07519A;
  319. border: 1px solid #AACCEE;
  320. border-bottom: none;
  321. margin-bottom: 10px;
  322. }
  323. .position td {
  324. line-height: 26px;
  325. padding: 0px 10px;
  326. font-family: "宋体";
  327. }
  328. .channle .box {
  329. margin-bottom: 10px;
  330. }
  331. .listpage .news_list .box {
  332. border-width: 1px;
  333. padding: 0 10px;
  334. }
  335. .listpage .list_content .box{
  336. border-width: 1px;
  337. padding: 10px;
  338. }
  339. .listpage .news_list .box ul {
  340. border-bottom: 1px dashed #ccc;
  341. }
  342. .news_list .box ul li {
  343. clear: both;
  344. padding: 0 0 0 8px;
  345. line-height: 28px;
  346. height: 28px;
  347. }
  348. .news_list .box ul li a {
  349. font-size: 14px;
  350. float: left;
  351. }
  352. .news_list .box ul li span {
  353. font-size: 14px;
  354. float: right;
  355. }
  356. .flash_list .line_bottom {
  357. color: #666;
  358. margin-bottom: 4px;
  359. border-bottom: 1px dashed #ccc;
  360. }
  361. .flash_list .flashsay {
  362. color: #666;
  363. }
  364. .movie_list .line_bottom {
  365. color: #666;
  366. margin-bottom: 4px;
  367. border-bottom: 1px dashed #ccc;
  368. }
  369. .movie_list .titlepic img {
  370. border: 1px solid #ccc;
  371. padding: 3px;
  372. }
  373. .shop_list .line_bottom {
  374. color: #666;
  375. margin: 8px 0;
  376. border-bottom: 1px dashed #ccc;
  377. }
  378. .shop_list .line_bottom table {
  379. margin-bottom: 8px;
  380. }
  381. .photo_list .line_bottom {
  382. color: #666;
  383. margin: 8px 0;
  384. border-bottom: 1px dashed #ccc;
  385. }
  386. .photo_list .line_bottom table {
  387. margin-bottom: 8px;
  388. }
  389. .info_list .line_bottom {
  390. color: #666;
  391. margin: 8px 0;
  392. border-bottom: 1px dashed #ccc;
  393. }
  394. .info_list .line_bottom .titlepic {
  395. width: 90px;
  396. }
  397. .info_list .titlepic img {
  398. border: 1px solid #ccc;
  399. padding: 3px;
  400. }
  401. .info_list .line_bottom .click {
  402. color: #f60;
  403. }
  404. .info_list .line_bottom .smalltext {
  405. color: #666;
  406. }
  407. /* 内容页 */
  408. .showpage .main .box {
  409. border-width: 1px;
  410. }
  411. .news .main .box {
  412. padding: 0 20px;
  413. background: #F7FDFF;
  414. }
  415. .info .main .box {
  416. padding: 0 20px;
  417. }
  418. .showpage .main .title_info {
  419. margin-top: 15px;
  420. text-align: center;
  421. }
  422. .showpage .main .title_info h1 {
  423. font-size: 24px;
  424. line-height: 2;
  425. margin: 0px;
  426. padding: 0px;
  427. }
  428. .showpage .main .title_info .info_text {
  429. border-bottom: 1px dashed #ccc;
  430. line-height: 2;
  431. padding-bottom: 6px;
  432. color: #666;
  433. }
  434. .showpage .digg {
  435. background: url(../images/digg_bg.gif) no-repeat left top;
  436. width: 62px;
  437. margin-bottom: 10px;
  438. }
  439. .showpage .digg td {
  440. text-align: center;
  441. padding-right: 4px;
  442. }
  443. .showpage .digg .diggnum {
  444. height: 38px;
  445. font-size: 16px;
  446. line-height: 30px;
  447. font-weight: bold;
  448. }
  449. .showpage .digg .diggit {
  450. height: 30px;
  451. line-height: 24px;
  452. }
  453. .showpage .main #text {
  454. font-size: 14px;
  455. line-height: 1.8;
  456. }
  457. .showpage .main #text p {
  458. margin: 1em 0;
  459. }
  460. .showpage #plpost {
  461. margin-top: 10px;
  462. border: 1px solid #AACCEE;
  463. }
  464. .showpage #plpost .title {
  465. border: 0px solid #AACCEE;
  466. }
  467. .showpage #plpost .title span {
  468. color: #CC0000;
  469. }
  470. .showpage #plpost #saytext {
  471. display: block;
  472. margin: 0 0 10px;
  473. padding: 8px;
  474. height: 100px;
  475. width: 90%;
  476. border: 1px solid #ccc;
  477. }
  478. /* 系统文件表格样式 */
  479. .header {
  480. background: #E9F2FB url(../images/title_bg.gif) repeat-x left top;
  481. color: #07519A;
  482. border: 1px solid #AACCEE;
  483. border-bottom: none;
  484. }
  485. .header a { color: #000000 }
  486. .tableborder { background: #E1EFFB; border: 1px solid #AACCEE }
  487. /* 分页样式*/
  488. .list_page {
  489. margin: 15px 5px;
  490. }
  491. .pageLink a,
  492. .list_page a,
  493. .list_page b {
  494. padding: 4px 4px 2px;
  495. border: 1px solid #D2EFFF;
  496. background: #F0F8FF;
  497. text-align: center;
  498. display: inline;
  499. font-size: 14px;
  500. }
  501. .pageLink a:hover,
  502. .list_page a:hover{
  503. border: 1px solid #D2EFFF;
  504. background: #fff;
  505. text-align: center;
  506. font-weight: bold;
  507. text-decoration: none;
  508. }
  509. /*分页样式2*/
  510. .showpage .epages {
  511. text-align: center;
  512. }
  513. .epages{margin:3px 0;font:11px/12px Tahoma}
  514. .epages *{vertical-align:middle;}
  515. .epages a{padding:1px 4px 1px;border:1px solid #A6CBE7;margin:0 1px 0 0;text-align:center;text-decoration:none;font:normal 12px/14px verdana;}
  516. .epages a:hover{border:#659B28 1px solid;background:#f3f8ef;text-decoration:none;color:#004c7d}
  517. .epages input{margin-bottom:0px;border:1px solid #659B28;height:15px;font:bold 12px/15px Verdana;padding-bottom:1px;padding-left:1px;margin-right:1px;color:#659B28;}
  518. /*图片自动缩图*/
  519. .photoresize {
  520. max-width:560px;
  521. myimg:expression(onload=function(){
  522. this.style.width=(this.offsetWidth > 560)?"560px":"auto"}
  523. );
  524. }
  525. .ecomment {margin:0;padding:0;}
  526. .ecomment {margin-bottom:12px;overflow-x:hidden;overflow-y:hidden;padding-bottom:3px;padding-left:3px;padding-right:3px;padding-top:3px;background:#FFFFEE;padding:3px;border:solid 1px #999;}
  527. .ecommentauthor {float:left; color:#F96; font-weight:bold;}
  528. .ecommenttext {clear:left;margin:0;padding:0;}