common.css.bak 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056
  1. @charset "utf-8";
  2. /*
  3. * Copyright 2005-2013 dhcc.com.cn. All rights reserved.
  4. * Support: http://www.dhcc.com.cn
  5. * License: http://www.dhcc.com.cn/license
  6. *
  7. * Style - Common
  8. * Version: 3.0
  9. */
  10. /* ---------- Reset ---------- */
  11. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  12. padding: 0px;
  13. margin: 0px;
  14. border: 0px;
  15. outline: 0px;
  16. }
  17. html {
  18. _width: 100%;
  19. _height: 100%;
  20. -webkit-text-size-adjust: none;
  21. -ms-text-size-adjust: none;
  22. _filter: expression(document.execCommand("BackgroundImageCache", false, true));
  23. }
  24. body {
  25. _width: 100%;
  26. _height: 100%;
  27. font: 12px tahoma, Arial, Verdana, sans-serif;
  28. color: #666666;
  29. background-color: #ffffff;
  30. _background-image: url(about: blank);
  31. _background-attachment: fixed;
  32. }
  33. a {
  34. color: #666666;
  35. text-decoration: none;
  36. }
  37. a:hover {
  38. color: #ff6600;
  39. text-decoration: none;
  40. }
  41. img {
  42. vertical-align: middle;
  43. image-rendering: optimizeQuality;
  44. -ms-interpolation-mode: bicubic;
  45. }
  46. table {
  47. border-collapse: collapse;
  48. border-spacing: 0px;
  49. }
  50. ul {
  51. list-style-type: none;
  52. }
  53. input {
  54. vertical-align: middle;
  55. outline: none;
  56. }
  57. textarea {
  58. outline: 0px;
  59. resize: none;
  60. }
  61. /* ---------- Base ---------- */
  62. .black {
  63. color: black;
  64. }
  65. .white {
  66. color: white;
  67. }
  68. .gray {
  69. color: gray;
  70. }
  71. .red {
  72. color: red;
  73. }
  74. .green {
  75. color: green;
  76. }
  77. .blue {
  78. color: blue;
  79. }
  80. .hidden {
  81. display: none;
  82. }
  83. .clearfix {
  84. *zoom: 1;
  85. }
  86. .clearfix:after {
  87. height: 0px;
  88. display: block;
  89. clear: both;
  90. visibility: hidden;
  91. overflow: hidden;
  92. content: "\0020";
  93. }
  94. .dialogOverlay {
  95. width: 100%;
  96. height: 100%;
  97. display: none;
  98. position: fixed;
  99. _position: absolute;
  100. top: 0px;
  101. _top: expression(documentElement.scrollTop + documentElement.clientHeight - this.offsetHeight);
  102. left: 0px;
  103. z-index: 99;
  104. filter: alpha(opacity = 30);
  105. -moz-opacity: 0.30;
  106. opacity: 0.30;
  107. zoom: 1;
  108. background: url(../images/dialog_overlay.png);
  109. }
  110. /* ---------- Grid ---------- */
  111. div.container {
  112. width: 950px;
  113. margin: 0px auto;
  114. *zoom: 1;
  115. }
  116. div.container:after {
  117. height: 0px;
  118. display: block;
  119. clear: both;
  120. visibility: hidden;
  121. overflow: hidden;
  122. content: "\0020";
  123. }
  124. div.container .span1, div.container .span2, div.container .span3, div.container .span4, div.container .span5, div.container .span6, div.container .span7, div.container .span8, div.container .span9, div.container .span10, div.container .span11, div.container .span12, div.container .span13, div.container .span14, div.container .span15, div.container .span16, div.container .span17, div.container .span18, div.container .span19, div.container .span20, div.container .span21, div.container .span22, div.container .span23, div.container .span24 {
  125. _display: inline;
  126. float: left;
  127. margin-right: 10px;
  128. overflow: hidden;
  129. }
  130. div.container .span1 {
  131. width: 30px;
  132. }
  133. div.container .span2 {
  134. width: 70px;
  135. }
  136. div.container .span3 {
  137. width: 110px;
  138. }
  139. div.container .span4 {
  140. width: 150px;
  141. }
  142. div.container .span5 {
  143. width: 190px;
  144. }
  145. div.container .span6 {
  146. width: 230px;
  147. }
  148. div.container .span7 {
  149. width: 270px;
  150. }
  151. div.container .span8 {
  152. width: 310px;
  153. }
  154. div.container .span9 {
  155. width: 350px;
  156. }
  157. div.container .span10 {
  158. width: 390px;
  159. }
  160. div.container .span11 {
  161. width: 430px;
  162. }
  163. div.container .span12 {
  164. width: 470px;
  165. }
  166. div.container .span13 {
  167. width: 510px;
  168. }
  169. div.container .span14 {
  170. width: 550px;
  171. }
  172. div.container .span15 {
  173. width: 590px;
  174. }
  175. div.container .span16 {
  176. width: 630px;
  177. }
  178. div.container .span17 {
  179. width: 670px;
  180. }
  181. div.container .span18 {
  182. width: 710px;
  183. }
  184. div.container .span19 {
  185. width: 750px;
  186. }
  187. div.container .span20 {
  188. width: 790px;
  189. }
  190. div.container .span21 {
  191. width: 830px;
  192. }
  193. div.container .span22 {
  194. width: 870px;
  195. }
  196. div.container .span23 {
  197. width: 910px;
  198. }
  199. div.container .span24 {
  200. width: 950px;
  201. margin-right: 0px;
  202. }
  203. div.container .prepend1 {
  204. padding-left: 40px;
  205. }
  206. div.container .prepend2 {
  207. padding-left: 80px;
  208. }
  209. div.container .prepend3 {
  210. padding-left: 120px;
  211. }
  212. div.container .prepend4 {
  213. padding-left: 160px;
  214. }
  215. div.container .prepend5 {
  216. padding-left: 200px;
  217. }
  218. div.container .prepend6 {
  219. padding-left: 240px;
  220. }
  221. div.container .prepend7 {
  222. padding-left: 280px;
  223. }
  224. div.container .prepend8 {
  225. padding-left: 320px;
  226. }
  227. div.container .prepend9 {
  228. padding-left: 360px;
  229. }
  230. div.container .prepend10 {
  231. padding-left: 400px;
  232. }
  233. div.container .prepend11 {
  234. padding-left: 440px;
  235. }
  236. div.container .prepend12 {
  237. padding-left: 480px;
  238. }
  239. div.container .prepend13 {
  240. padding-left: 520px;
  241. }
  242. div.container .prepend14 {
  243. padding-left: 560px;
  244. }
  245. div.container .prepend15 {
  246. padding-left: 600px;
  247. }
  248. div.container .prepend16 {
  249. padding-left: 640px;
  250. }
  251. div.container .prepend17 {
  252. padding-left: 680px;
  253. }
  254. div.container .prepend18 {
  255. padding-left: 720px;
  256. }
  257. div.container .prepend19 {
  258. padding-left: 760px;
  259. }
  260. div.container .prepend20 {
  261. padding-left: 800px;
  262. }
  263. div.container .prepend21 {
  264. padding-left: 840px;
  265. }
  266. div.container .prepend22 {
  267. padding-left: 880px;
  268. }
  269. div.container .prepend23 {
  270. padding-left: 920px;
  271. }
  272. div.container .append1 {
  273. padding-right: 40px;
  274. }
  275. div.container .append2 {
  276. padding-right: 80px;
  277. }
  278. div.container .append3 {
  279. padding-right: 120px;
  280. }
  281. div.container .append4 {
  282. padding-right: 160px;
  283. }
  284. div.container .append5 {
  285. padding-right: 200px;
  286. }
  287. div.container .append6 {
  288. padding-right: 240px;
  289. }
  290. div.container .append7 {
  291. padding-right: 280px;
  292. }
  293. div.container .append8 {
  294. padding-right: 320px;
  295. }
  296. div.container .append9 {
  297. padding-right: 360px;
  298. }
  299. div.container .append10 {
  300. padding-right: 400px;
  301. }
  302. div.container .append11 {
  303. padding-right: 440px;
  304. }
  305. div.container .append12 {
  306. padding-right: 480px;
  307. }
  308. div.container .append13 {
  309. padding-right: 520px;
  310. }
  311. div.container .append14 {
  312. padding-right: 560px;
  313. }
  314. div.container .append15 {
  315. padding-right: 600px;
  316. }
  317. div.container .append16 {
  318. padding-right: 640px;
  319. }
  320. div.container .append17 {
  321. padding-right: 680px;
  322. }
  323. div.container .append18 {
  324. padding-right: 720px;
  325. }
  326. div.container .append19 {
  327. padding-right: 760px;
  328. }
  329. div.container .append20 {
  330. padding-right: 800px;
  331. }
  332. div.container .append21 {
  333. padding-right: 840px;
  334. }
  335. div.container .append22 {
  336. padding-right: 880px;
  337. }
  338. div.container .append23 {
  339. padding-right: 920px;
  340. }
  341. div.container .last {
  342. margin-right: 0px;
  343. }
  344. /* ---------- Form ---------- */
  345. input.text {
  346. width: 220px;
  347. height: 26px;
  348. line-height: 26px;
  349. padding: 0px 4px;
  350. color: #666666;
  351. -webkit-border-radius: 2px;
  352. -moz-border-radius: 2px;
  353. border-radius: 2px;
  354. border: 1px solid;
  355. border-color: #b8b8b8 #dcdcdc #dcdcdc #b8b8b8;
  356. background: url(../images/common.gif) 0px 0px no-repeat;
  357. }
  358. input.text[type=file] {
  359. -webkit-box-shadow: none;
  360. -moz-box-shadow: none;
  361. box-shadow: none;
  362. }
  363. input.text:hover {
  364. -webkit-transition: box-shadow linear 0.2s;
  365. -moz-transition: box-shadow linear 0.2s;
  366. -ms-transition: box-shadow linear 0.2s;
  367. -o-transition: box-shadow linear 0.2s;
  368. transition: box-shadow linear 0.2s;
  369. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  370. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  371. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  372. border: 1px solid #74b9ef;
  373. background: none;
  374. }
  375. input.text:disabled {
  376. background-color: #f6f6f6;
  377. }
  378. input.text:disabled:hover {
  379. -webkit-transition: none;
  380. -moz-transition: none;
  381. -ms-transition: none;
  382. -o-transition: none;
  383. transition: none;
  384. -webkit-box-shadow: none;
  385. -moz-box-shadow: none;
  386. box-shadow: none;
  387. border: 1px solid;
  388. border-color: #b8b8b8 #dcdcdc #dcdcdc #b8b8b8;
  389. background-color: #f6f6f6;
  390. }
  391. textarea.text {
  392. width: 440px;
  393. height: 160px;
  394. padding: 4px;
  395. color: #666666;
  396. font-size: 12px;
  397. -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
  398. -moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
  399. box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
  400. -webkit-border-radius: 2px;
  401. -moz-border-radius: 2px;
  402. border-radius: 2px;
  403. border: 1px solid #c1c1c1;
  404. }
  405. textarea.text:hover {
  406. -webkit-transition: box-shadow linear 0.2s;
  407. -moz-transition: box-shadow linear 0.2s;
  408. -ms-transition: box-shadow linear 0.2s;
  409. -o-transition: box-shadow linear 0.2s;
  410. transition: box-shadow linear 0.2s;
  411. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  412. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  413. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  414. border: 1px solid #74b9ef;
  415. }
  416. textarea.text:disabled {
  417. -webkit-box-shadow: none;
  418. -moz-box-shadow: none;
  419. box-shadow: none;
  420. background-color: #f6f6f6;
  421. }
  422. textarea.text:disabled:hover {
  423. -webkit-transition: none;
  424. -moz-transition: none;
  425. -ms-transition: none;
  426. -o-transition: none;
  427. transition: none;
  428. -webkit-box-shadow: none;
  429. -moz-box-shadow: none;
  430. box-shadow: none;
  431. border: 1px solid #c1c1c1;
  432. background-color: #f6f6f6;
  433. }
  434. a.button {
  435. height: 28px;
  436. line-height: 28px;
  437. display: inline-block;
  438. display: -moz-inline-stack;
  439. float: left;
  440. padding: 0px 14px;
  441. margin-right: 10px;
  442. color: #646464;
  443. text-shadow: 1px 1px #ffffff;
  444. -webkit-border-radius: 2px;
  445. -moz-border-radius: 2px;
  446. border-radius: 2px;
  447. outline: none;
  448. blr: expression(this.hideFocus = true);
  449. border: 1px solid #dcdcdc;
  450. background: url(../images/common.gif) 0px -30px repeat-x;
  451. }
  452. a.button:hover {
  453. color: #333333;
  454. -webkit-transition: box-shadow linear 0.2s;
  455. -moz-transition: box-shadow linear 0.2s;
  456. -ms-transition: box-shadow linear 0.2s;
  457. -o-transition: box-shadow linear 0.2s;
  458. transition: box-shadow linear 0.2s;
  459. -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 0px 6px rgba(0, 0, 0, 0.15);
  460. -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 0px 6px rgba(0, 0, 0, 0.15);
  461. box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 0px 6px rgba(0, 0, 0, 0.15);
  462. border: 1px solid #cccccc;
  463. background-position: 0px -60px;
  464. }
  465. a.button:active {
  466. background-position: 0px -90px;
  467. }
  468. a.button:disabled {
  469. color: #bbbbbb;
  470. }
  471. a.button:disabled:hover, a.button:disabled:active {
  472. color: #bbbbbb;
  473. -webkit-transition: none;
  474. -moz-transition: none;
  475. -ms-transition: none;
  476. -o-transition: none;
  477. transition: none;
  478. -webkit-box-shadow: none;
  479. -moz-box-shadow: none;
  480. box-shadow: none;
  481. border: 1px solid #dcdcdc;
  482. background-position: 0px 0px;
  483. }
  484. input.button {
  485. height: 28px;
  486. line-height: 28px;
  487. *line-height: 24px;
  488. display: inline-block;
  489. display: -moz-inline-stack;
  490. padding: 0px 14px;
  491. margin-right: 10px;
  492. color: #646464;
  493. cursor: pointer;
  494. *overflow: visible;
  495. text-shadow: 1px 1px #ffffff;
  496. -webkit-border-radius: 2px;
  497. -moz-border-radius: 2px;
  498. border-radius: 2px;
  499. outline: none;
  500. blr: expression(this.hideFocus = true);
  501. border: 1px solid #dcdcdc;
  502. background: url(../images/common.gif) 0px -30px repeat-x;
  503. }
  504. @-moz-document url-prefix() {
  505. input.button {
  506. padding: 0px 10px;
  507. }
  508. }
  509. input.button:hover {
  510. color: #333333;
  511. -webkit-transition: box-shadow linear 0.2s;
  512. -moz-transition: box-shadow linear 0.2s;
  513. -ms-transition: box-shadow linear 0.2s;
  514. -o-transition: box-shadow linear 0.2s;
  515. transition: box-shadow linear 0.2s;
  516. -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 0px 6px rgba(0, 0, 0, 0.15);
  517. -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 0px 6px rgba(0, 0, 0, 0.15);
  518. box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 0px 6px rgba(0, 0, 0, 0.15);
  519. border: 1px solid #cccccc;
  520. background-position: 0px -60px;
  521. }
  522. input.button:active {
  523. background-position: 0px -90px;
  524. }
  525. input.button:disabled {
  526. color: #bbbbbb;
  527. }
  528. input.button:disabled:hover, input.button:disabled:active {
  529. color: #bbbbbb;
  530. -webkit-transition: none;
  531. -moz-transition: none;
  532. -ms-transition: none;
  533. -o-transition: none;
  534. transition: none;
  535. -webkit-box-shadow: none;
  536. -moz-box-shadow: none;
  537. box-shadow: none;
  538. border: 1px solid #dcdcdc;
  539. background-position: 0px 0px;
  540. }
  541. span.requiredField {
  542. padding-right: 3px;
  543. color: #ff6d6d;
  544. font-size: 10px;
  545. }
  546. label.fieldError {
  547. line-height: 23px;
  548. color: #ffb042;
  549. padding-left: 6px;
  550. }
  551. /* ---------- Message ---------- */
  552. div.xxMessage {
  553. padding: 10px 30px;
  554. display: none;
  555. position: fixed;
  556. _position: absolute;
  557. top: 25%;
  558. _top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(25 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + "px");
  559. left: 50%;
  560. z-index: 100;
  561. overflow: hidden;
  562. -webkit-box-shadow: 1px 1px 6px #999999;
  563. -moz-box-shadow: 1px 1px 6px #999999;
  564. box-shadow: 1px 1px 6px #999999;
  565. -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5,direction=0,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4,direction=90,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4,direction=180,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5,direction=270,strength=3)";
  566. filter: progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5,direction=0,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4,direction=90,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4,direction=180,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5,direction=270,strength=3);
  567. border: 1px solid #999999;
  568. background-color: #ffffff;
  569. }
  570. div.xxMessage .messageContent {
  571. line-height: 24px;
  572. padding: 0px 10px 0px 30px;
  573. color: #666666;
  574. }
  575. div.xxMessage .messagewarnIcon {
  576. background: url(../images/common.gif) -60px -330px no-repeat;
  577. }
  578. div.xxMessage .messagesuccessIcon {
  579. background: url(../images/common.gif) -30px -360px no-repeat;
  580. }
  581. div.xxMessage .messageerrorIcon {
  582. background: url(../images/common.gif) 0px -390px no-repeat;
  583. }
  584. div.xxMessage .messageIframe {
  585. width: 2000px;
  586. height: 2000px;
  587. position: absolute;
  588. left: -100px;
  589. top: -100px;
  590. z-index: -1;
  591. }
  592. /* ---------- Loading ---------- */
  593. span.loadingIcon {
  594. width: 20px;
  595. height: 20px;
  596. line-height: 20px;
  597. display: inline-block;
  598. display: -moz-inline-stack;
  599. zoom: 1;
  600. *display: inline;
  601. background: url(../images/loading_icon.gif) center no-repeat;
  602. }
  603. span.loadingBar {
  604. width: 208px;
  605. height: 20px;
  606. line-height: 20px;
  607. display: inline-block;
  608. display: -moz-inline-stack;
  609. zoom: 1;
  610. *display: inline;
  611. background: url(../images/loading_bar.gif) center no-repeat;
  612. }
  613. /* ---------- Path ---------- */
  614. div.path {
  615. height: 25px;
  616. line-height: 25px;
  617. clear: both;
  618. margin-bottom: 10px;
  619. -webkit-border-radius: 3px;
  620. -moz-border-radius: 3px;
  621. border-radius: 3px;
  622. border: solid 1px #e4e4e4;
  623. }
  624. div.path li {
  625. float: left;
  626. padding: 0px 20px 0px 10px;
  627. color: #d96663;
  628. background: url(../images/common.gif) right -270px no-repeat;
  629. }
  630. div.path li.last {
  631. background: none;
  632. }
  633. /* ---------- Header ---------- */
  634. div.header .logo {
  635. height: 50px;
  636. padding-top: 10px;
  637. overflow: hidden;
  638. }
  639. div.header .headerAd {
  640. height: 60px;
  641. }
  642. div.header .topNav ul {
  643. float: right;
  644. }
  645. div.header .topNav li {
  646. line-height: 30px;
  647. float: left;
  648. }
  649. div.header .topNav li a {
  650. margin: 0px 6px;
  651. }
  652. div.header .headerLogin, div.header .headerRegister, div.header .headerUsername, div.header .headerLogout {
  653. display: none;
  654. }
  655. div.header .cart {
  656. width: 60px;
  657. height: 28px;
  658. line-height: 28px;
  659. _display: inline;
  660. float: left;
  661. padding-left: 30px;
  662. margin-left: 80px;
  663. margin-bottom: 4px;
  664. background: url(images/common.gif) -210px -180px no-repeat;
  665. }
  666. div.header .phone {
  667. height: 28px;
  668. line-height: 28px;
  669. float: right;
  670. margin-bottom: 4px;
  671. padding: 0px 10px 0px 26px;
  672. white-space: nowrap;
  673. border: solid 1px #f0f0f0;
  674. background: url(../images/common.gif) -210px -210px no-repeat #fcfcfc;
  675. }
  676. div.header .phone strong {
  677. font-size: 14px;
  678. font-weight: bold;
  679. }
  680. div.header .mainNav {
  681. height: 36px;
  682. overflow: hidden;
  683. background-color: #1d1d1d;
  684. }
  685. div.header .mainNav li {
  686. height: 36px;
  687. line-height: 36px;
  688. float: left;
  689. color: #747474;
  690. }
  691. div.header .mainNav li:hover {
  692. color: #505050;
  693. background-color: #505050;
  694. }
  695. div.header .mainNav li a {
  696. margin: 0px 20px;
  697. color: #e7e7e7;
  698. font-size: 14px;
  699. }
  700. div.header .mainNav a.current {
  701. height: 35px;
  702. line-height: 36px;
  703. color: #ca062c;
  704. border-bottom: solid 1px #1d1d1d;
  705. background-color: #ca062c;
  706. }
  707. div.header .tagWrap {
  708. height: 38px;
  709. line-height: 38px;
  710. margin-bottom: 10px;
  711. border-left: solid 1px #e4e4e4;
  712. border-right: solid 1px #e4e4e4;
  713. background: url(../images/common.gif) 0px -120px repeat-x;
  714. }
  715. div.header .tag {
  716. width: 230px;
  717. float: left;
  718. margin-right: 10px;
  719. }
  720. div.header .tag li {
  721. float: left;
  722. border-right: solid 1px #e4e4e4;
  723. }
  724. div.header .tag .icon {
  725. padding-right: 10px;
  726. background: right 2px no-repeat;
  727. }
  728. div.header .tag a {
  729. margin: 0px 20px;
  730. }
  731. div.header .hotSearch {
  732. width: 390px;
  733. height: 38px;
  734. line-height: 38px;
  735. float: left;
  736. margin-right: 10px;
  737. text-align: right;
  738. overflow: hidden;
  739. }
  740. div.header .search {
  741. width: 228px;
  742. height: 23px;
  743. line-height: 23px;
  744. float: right;
  745. position: relative;
  746. padding: 2px 0px;
  747. margin: 5px 5px 5px 10px;
  748. background: url(../images/common.gif) 0px -300px no-repeat;
  749. }
  750. div.header .search .keyword {
  751. height: 23px;
  752. line-height: 23px;
  753. margin: 0px;
  754. position: absolute;
  755. left: 24px;
  756. color: #888888;
  757. outline: none;
  758. border: none;
  759. background: none;
  760. }
  761. div.header .search button {
  762. width: 44px;
  763. height: 23px;
  764. line-height: 23px;
  765. float: right;
  766. margin: 0px;
  767. font-size: 12px;
  768. position: relative;
  769. left: -2px;
  770. color: #ffffff;
  771. cursor: pointer;
  772. outline: none;
  773. blr: expression(this.hideFocus = true);
  774. border: none;
  775. background: none;
  776. }
  777. /* ---------- Footer ---------- */
  778. div.footer .bottomNav {
  779. margin-bottom: 10px;
  780. text-align: center;
  781. }
  782. div.footer .bottomNav li {
  783. line-height: 26px;
  784. display: inline;
  785. }
  786. div.footer .bottomNav a {
  787. margin: 0px 10px;
  788. }
  789. div.footer .copyright {
  790. line-height: 30px;
  791. margin-bottom: 10px;
  792. color: #555555;
  793. text-align: center;
  794. }
  795. /* ---------- Pagination ---------- */
  796. div.pagination {
  797. height: 20px;
  798. float: right;
  799. margin-bottom: 10px;
  800. }
  801. div.pagination a, div.pagination span {
  802. height: 18px;
  803. line-height: 18px;
  804. display: inline;
  805. float: left;
  806. margin-left: 3px;
  807. text-align: center;
  808. vertical-align: middle;
  809. white-space: nowrap;
  810. outline: none;
  811. blr: expression(this.hideFocus = true);
  812. }
  813. div.pagination a {
  814. padding: 0px 5px;
  815. border: 1px solid #cccccc;
  816. }
  817. div.pagination a:hover {
  818. border: 1px solid #fd6d01;
  819. text-decoration: none;
  820. }
  821. div.pagination a.previousPage {
  822. width: 18px;
  823. padding: 0px;
  824. background: url(../images/common.gif) 0px -180px no-repeat;
  825. }
  826. div.pagination span.previousPage {
  827. width: 18px;
  828. cursor: default;
  829. border: 1px solid #cccccc;
  830. background: url(../images/common.gif) -30px -180px no-repeat;
  831. }
  832. div.pagination a.nextPage {
  833. width: 18px;
  834. padding: 0px;
  835. background: url(../images/common.gif) 0px -210px no-repeat;
  836. }
  837. div.pagination span.nextPage {
  838. width: 18px;
  839. cursor: default;
  840. border: 1px solid #cccccc;
  841. background: url(../images/common.gif) -30px -210px no-repeat;
  842. }
  843. div.pagination a.firstPage {
  844. width: 18px;
  845. padding: 0px;
  846. background: url(../images/common.gif) -60px -180px no-repeat;
  847. }
  848. div.pagination span.firstPage {
  849. width: 18px;
  850. cursor: default;
  851. border: 1px solid #cccccc;
  852. background: url(../images/common.gif) -90px -180px no-repeat;
  853. }
  854. div.pagination a.lastPage {
  855. width: 18px;
  856. padding: 0px;
  857. background: url(../images/common.gif) -60px -210px no-repeat;
  858. }
  859. div.pagination span.lastPage {
  860. width: 18px;
  861. cursor: default;
  862. border: 1px solid #cccccc;
  863. background: url(../images/common.gif) -90px -210px no-repeat;
  864. }
  865. div.pagination .currentPage {
  866. padding: 0px 5px;
  867. color: #fd6d01!important;
  868. font-weight: bold;
  869. cursor: default;
  870. border: 1px solid #fd6d01;
  871. background-color: #ffede1;
  872. }
  873. div.pagination .pageBreak {
  874. padding: 0px 5px;
  875. color: #3366cc;
  876. cursor: default;
  877. }