fdlint 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (218) hide show
  1. data/Gemfile +8 -0
  2. data/Gemfile.lock +14 -0
  3. data/README.md +68 -0
  4. data/Rakefile +92 -0
  5. data/bin/fdlint +17 -0
  6. data/lib/base_parser.rb +143 -0
  7. data/lib/cmd_runner.rb +145 -0
  8. data/lib/context.rb +31 -0
  9. data/lib/css/parser.rb +186 -0
  10. data/lib/css/reader.rb +30 -0
  11. data/lib/css/rule/check_compression_rule.rb +48 -0
  12. data/lib/css/rule/checklist.rb +45 -0
  13. data/lib/css/struct.rb +111 -0
  14. data/lib/encoding_error.rb +6 -0
  15. data/lib/file_validator.rb +38 -0
  16. data/lib/helper/code_type.rb +50 -0
  17. data/lib/helper/color_string.rb +44 -0
  18. data/lib/helper/file_reader.rb +22 -0
  19. data/lib/helper/strenc.rb +65 -0
  20. data/lib/html/parser.rb +212 -0
  21. data/lib/html/query.rb +96 -0
  22. data/lib/html/rule/check_tag_rule.rb +80 -0
  23. data/lib/html/struct.rb +291 -0
  24. data/lib/js/expr/expr.rb +66 -0
  25. data/lib/js/expr/left_hand.rb +63 -0
  26. data/lib/js/expr/operate.rb +92 -0
  27. data/lib/js/expr/primary.rb +166 -0
  28. data/lib/js/parser.rb +116 -0
  29. data/lib/js/rule/all.rb +35 -0
  30. data/lib/js/rule/checklist.rb +41 -0
  31. data/lib/js/rule/file_checker.rb +42 -0
  32. data/lib/js/rule/helper.rb +96 -0
  33. data/lib/js/rule/no_global.rb +87 -0
  34. data/lib/js/stat/if.rb +25 -0
  35. data/lib/js/stat/iter.rb +85 -0
  36. data/lib/js/stat/stat.rb +117 -0
  37. data/lib/js/stat/switch.rb +65 -0
  38. data/lib/js/stat/try.rb +28 -0
  39. data/lib/js/stat/var.rb +40 -0
  40. data/lib/js/struct.rb +248 -0
  41. data/lib/log_entry.rb +49 -0
  42. data/lib/node.rb +28 -0
  43. data/lib/parse_error.rb +13 -0
  44. data/lib/parser_visitable.rb +138 -0
  45. data/lib/position_info.rb +46 -0
  46. data/lib/printer/base_printer.rb +24 -0
  47. data/lib/printer/console_printer.rb +66 -0
  48. data/lib/printer/nocolor_printer.rb +27 -0
  49. data/lib/printer/vim_printer.rb +19 -0
  50. data/lib/rule.rb +241 -0
  51. data/lib/rule_helper.rb +14 -0
  52. data/lib/runner.rb +225 -0
  53. data/rules.d/css.rule +127 -0
  54. data/rules.d/html.dtd.rule +22 -0
  55. data/rules.d/html.prop.rule +51 -0
  56. data/rules.d/html.tag.rule +136 -0
  57. data/rules.d/js.file.rule +13 -0
  58. data/rules.d/js.jquery.rule +56 -0
  59. data/rules.d/js.mergefile.rule +71 -0
  60. data/rules.d/js.rule +84 -0
  61. data/test/all_tests.rb +84 -0
  62. data/test/cli/cli_test.rb +70 -0
  63. data/test/cli/log_level_test.rb +51 -0
  64. data/test/cli/output_format_test.rb +47 -0
  65. data/test/cli/type_test.rb +77 -0
  66. data/test/css/mac_line_end_support_test.rb +38 -0
  67. data/test/css/parser_test.rb +276 -0
  68. data/test/css/rule/check_encoding_test.rb +66 -0
  69. data/test/css/rule/check_list_rule_test.rb +167 -0
  70. data/test/css/rule/compression_test.rb +53 -0
  71. data/test/css/rule/file_name_test.rb +76 -0
  72. data/test/fixtures/css/broken.css +4 -0
  73. data/test/fixtures/css/cbu/36.css +52 -0
  74. data/test/fixtures/css/cbu/china_top.css +324 -0
  75. data/test/fixtures/css/cbu/default-merge.css +3 -0
  76. data/test/fixtures/css/cbu/default.css +13 -0
  77. data/test/fixtures/css/cbu/diy-merge.css +25 -0
  78. data/test/fixtures/css/cbu/fns-v1.css +27 -0
  79. data/test/fixtures/css/cbu/index_v0.1.css +12 -0
  80. data/test/fixtures/css/cbu/merge.css +11 -0
  81. data/test/fixtures/css/cbu/min.css +2 -0
  82. data/test/fixtures/css/cbu/my_home_admin.css +126 -0
  83. data/test/fixtures/css/cbu/nav.css +95 -0
  84. data/test/fixtures/css/cbu/pic_list.css +386 -0
  85. data/test/fixtures/css/cbu/quote-edit.css +18 -0
  86. data/test/fixtures/css/cbu/selloffer.shopwindow.css +1 -0
  87. data/test/fixtures/css/cbu/v1.css +9 -0
  88. data/test/fixtures/css/css3.css +30 -0
  89. data/test/fixtures/css/empty-min.css +0 -0
  90. data/test/fixtures/css/empty.css +0 -0
  91. data/test/fixtures/css/font-family.css +4 -0
  92. data/test/fixtures/css/gb-good.css +14 -0
  93. data/test/fixtures/css/gb_using_star.css +4 -0
  94. data/test/fixtures/css/import.css +18 -0
  95. data/test/fixtures/css/mac-line-sep-err-min.css +1 -0
  96. data/test/fixtures/css/mac-line-sep-err.css +1 -0
  97. data/test/fixtures/css/mac-line-sep-good-min.css +1 -0
  98. data/test/fixtures/css/mac-line-sep-good.css +1 -0
  99. data/test/fixtures/css/multi-encoding-in-a-file.css +0 -0
  100. data/test/fixtures/css/simple.css +1 -0
  101. data/test/fixtures/css/using_expr.css +8 -0
  102. data/test/fixtures/css/using_hack.css +21 -0
  103. data/test/fixtures/css/using_id.css +1 -0
  104. data/test/fixtures/css/using_star.css +4 -0
  105. data/test/fixtures/css/utf8_good.css +6 -0
  106. data/test/fixtures/css/utf8_good_declaring_charset.css +7 -0
  107. data/test/fixtures/css/utf8_using_star.css +5 -0
  108. data/test/fixtures/html/1-1.html +120 -0
  109. data/test/fixtures/html/1-2.html +120 -0
  110. data/test/fixtures/html/cms.html +373 -0
  111. data/test/fixtures/html/css_out_of_head.html +9 -0
  112. data/test/fixtures/html/fdev-template.html +22 -0
  113. data/test/fixtures/html/google.com.html +33 -0
  114. data/test/fixtures/html/mixed_log_levels.html +4 -0
  115. data/test/fixtures/html/mixed_types.html +13 -0
  116. data/test/fixtures/html/no_dtd.html +6 -0
  117. data/test/fixtures/html/readme.html +94 -0
  118. data/test/fixtures/html/review.board.html +163 -0
  119. data/test/fixtures/html/syntax_err.html +3 -0
  120. data/test/fixtures/html/train/detail/345/233/276/346/226/207/347/273/223/345/220/210.html +208 -0
  121. data/test/fixtures/html/train/detail/347/232/204Flash.html +212 -0
  122. data/test/fixtures/html/train/detail/347/232/204Vedio.html +212 -0
  123. data/test/fixtures/html/train/index.html +37 -0
  124. data/test/fixtures/html/train/test.html +1 -0
  125. data/test/fixtures/html/train//344/277/256/346/224/271/344/270/200/347/272/247/345/210/206/347/261/273.html +112 -0
  126. data/test/fixtures/html/train//344/277/256/346/224/271/345/255/220/345/210/206/347/261/273.html +108 -0
  127. data/test/fixtures/html/train//344/277/256/346/224/271/350/257/276/347/250/213.html +195 -0
  128. data/test/fixtures/html/train//345/215/232/345/256/242/350/256/276/347/275/256.html +142 -0
  129. data/test/fixtures/html/train//346/265/217/350/247/210/350/256/260/345/275/225.html +191 -0
  130. data/test/fixtures/html/train//346/267/273/345/212/240/344/270/200/347/272/247/345/210/206/347/261/273.html +113 -0
  131. data/test/fixtures/html/train//346/267/273/345/212/240/345/255/220/345/210/206/347/261/273.html +112 -0
  132. data/test/fixtures/html/train//346/267/273/345/212/240/350/257/276/347/250/213.html +195 -0
  133. data/test/fixtures/html/train//347/231/273/345/275/225.html +20 -0
  134. data/test/fixtures/html/train//347/256/241/347/220/206/345/210/206/347/261/273.html +210 -0
  135. data/test/fixtures/html/train//347/256/241/347/220/206/345/217/215/351/246/210.html +222 -0
  136. data/test/fixtures/html/train//347/256/241/347/220/206/350/257/276/347/250/213.html +284 -0
  137. data/test/fixtures/html/train//347/256/241/347/220/206/350/264/246/346/210/267.html +107 -0
  138. data/test/fixtures/html/train//347/275/221/344/270/212/345/237/271/350/256/255home/351/241/265.html +354 -0
  139. data/test/fixtures/html/train//347/275/221/345/225/206/345/237/271/350/256/255list/351/241/265.html +255 -0
  140. data/test/fixtures/html/train//350/256/276/347/275/256/351/246/226/351/241/265/346/216/250/350/215/220.html +168 -0
  141. data/test/fixtures/html/train//350/257/264/346/230/216.txt +3 -0
  142. data/test/fixtures/html/train//351/246/226/351/241/265/345/271/277/345/221/212/350/256/276/347/275/256.html +297 -0
  143. data/test/fixtures/html/unescaped.html +2 -0
  144. data/test/fixtures/html/view.vm +916 -0
  145. data/test/fixtures/js/jquery-1.7.js +9300 -0
  146. data/test/fixtures/js/scope-test.js +22 -0
  147. data/test/helper.rb +41 -0
  148. data/test/html/mixed_type_test.rb +35 -0
  149. data/test/html/parser/parse_comment_test.rb +47 -0
  150. data/test/html/parser/parse_dtd_test.rb +46 -0
  151. data/test/html/parser/parse_script_tag_test.rb +55 -0
  152. data/test/html/parser/parse_with_auto_close_tag_test.rb +41 -0
  153. data/test/html/parser/parse_with_diff_case_test.rb +38 -0
  154. data/test/html/parser/parse_with_emtpy_test.rb +22 -0
  155. data/test/html/parser/parse_with_multi_children_test.rb +27 -0
  156. data/test/html/parser/parse_with_multi_line_test.rb +41 -0
  157. data/test/html/parser/parse_with_prop_test.rb +88 -0
  158. data/test/html/parser/parse_with_script_tag_test.rb +26 -0
  159. data/test/html/parser/parse_with_selfclosing_test.rb +39 -0
  160. data/test/html/parser/parse_with_simple_tag_test.rb +44 -0
  161. data/test/html/parser/parse_with_simple_tree_test.rb +40 -0
  162. data/test/html/parser/parse_with_style_tag_test.rb +22 -0
  163. data/test/html/parser/parse_with_text_test.rb +45 -0
  164. data/test/html/parser_test.rb +52 -0
  165. data/test/html/query_test.rb +52 -0
  166. data/test/html/rule/check_block_level_element_test.rb +52 -0
  167. data/test/html/rule/check_button_test.rb +45 -0
  168. data/test/html/rule/check_class_count_test.rb +36 -0
  169. data/test/html/rule/check_css_in_head_test.rb +53 -0
  170. data/test/html/rule/check_dtd_test.rb +46 -0
  171. data/test/html/rule/check_form_element_name_test.rb +49 -0
  172. data/test/html/rule/check_head_contain_meta_and_title_test.rb +52 -0
  173. data/test/html/rule/check_html_template_test.rb +103 -0
  174. data/test/html/rule/check_hyperlink_with_target_test.rb +40 -0
  175. data/test/html/rule/check_hyperlink_with_title_test.rb +43 -0
  176. data/test/html/rule/check_id_n_class_downcase_test.rb +40 -0
  177. data/test/html/rule/check_img_with_alt_prop_test.rb +33 -0
  178. data/test/html/rule/check_no_import_css_test.rb +36 -0
  179. data/test/html/rule/check_prop_have_value_test.rb +32 -0
  180. data/test/html/rule/check_prop_seperator_test.rb +32 -0
  181. data/test/html/rule/check_style_prop_test.rb +30 -0
  182. data/test/html/rule/check_tag_closed_test.rb +59 -0
  183. data/test/html/rule/check_tag_downcase_test.rb +51 -0
  184. data/test/html/rule/check_unescape_char_test.rb +35 -0
  185. data/test/html/rule/check_unique_import_test.rb +56 -0
  186. data/test/html/rule_test.rb +62 -0
  187. data/test/js/expr/expr.rb +57 -0
  188. data/test/js/expr/left_hand.rb +25 -0
  189. data/test/js/expr/operate.rb +145 -0
  190. data/test/js/expr/primary.rb +89 -0
  191. data/test/js/parser_test.rb +98 -0
  192. data/test/js/rule/alert_check_test.rb +37 -0
  193. data/test/js/rule/all_test.rb +23 -0
  194. data/test/js/rule/base_test.rb +34 -0
  195. data/test/js/rule/file_checker_test.rb +131 -0
  196. data/test/js/rule/jq_check_test.rb +90 -0
  197. data/test/js/rule/nest_try_catch_test.rb +71 -0
  198. data/test/js/rule/new_object_and_new_array_test.rb +38 -0
  199. data/test/js/rule/no_eval_test.rb +34 -0
  200. data/test/js/rule/no_global_test.rb +88 -0
  201. data/test/js/rule/private_method_check_test.rb +58 -0
  202. data/test/js/rule/semicolon_test.rb +63 -0
  203. data/test/js/rule/stat_if_with_brace_test.rb +68 -0
  204. data/test/js/rule/stat_if_with_muti_else_test.rb +68 -0
  205. data/test/js/rule/use_strict_equal_test.rb +44 -0
  206. data/test/js/rule_test.rb +47 -0
  207. data/test/js/stat/if.rb +26 -0
  208. data/test/js/stat/iter.rb +115 -0
  209. data/test/js/stat/stat.rb +91 -0
  210. data/test/js/stat/switch.rb +37 -0
  211. data/test/js/stat/try.rb +32 -0
  212. data/test/js/stat/var.rb +38 -0
  213. data/test/parser_visitable_test.rb +102 -0
  214. data/test/position_info_test.rb +66 -0
  215. data/test/rule_dsl/dsl_basic_test.rb +91 -0
  216. data/test/rule_dsl/importing_test.rb +48 -0
  217. data/test/runner/log_level_test.rb +58 -0
  218. metadata +317 -0
@@ -0,0 +1 @@
1
+ html{color:#000;overflow-y:scroll;background:#fff;}body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,fieldset,lengend,button,input,textarea,form,th,td{margin:0;padding:0;}body,button,input,select,textarea{font:12px/1.5 Tahoma,Arial,"\5b8b\4f53",sans-serif;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}address,cite,dfn,em,var{font-style:normal;}code,kbd,pre,samp,tt{font-family:"Courier New",Courier,monospace;}small{font-size:12px;}ul,ol{list-style:none;}a{text-decoration:none;}a:hover{text-decoration:underline;color:#ff7300;}abbr[title],acronym[title]{border-bottom:1px dotted;cursor:help;}q:before,q:after{content:'';}:focus{outline:0;}legend{color:#000;}fieldset,img{border:none;}button,input,select,textarea{font-size:100%;}table{border-collapse:collapse;border-spacing:0;}hr{border:none;height:1px;*color:#fff;}img{-ms-interpolation-mode:bicubic;}.fd-left{float:left;}.fd-right{float:right;}.fd-clear{clear:both;}.fd-clr{zoom:1;}.fd-clr:after{display:block;clear:both;height:0;content:"\0020";}.fd-hide{display:none;}.fd-show{display:block;}.fd-inline{display:inline;}.fd-lump{display:inline-block;display:-moz-inline-stack;zoom:1;*display:inline;}.fd-visible{visibility:visible;}.fd-hidden{visibility:hidden;}.fd-locate{position:relative;}.fd-cny{font-family:Helvetica,Arial;}.fd-gray{color:#666;}.fd-bold{font-weight:700;}.w952{width:952px;margin:0 auto;padding:0 4px;}#header,#content,#footer,.layout-p32a24,.layout-p24a30{zoom:1;}#header:after,#content:after,#footer:after,.layout-p32a24:after,.layout-p24a30:after{content:"\0020";display:block;height:0;clear:both;}.grid-fixed{margin-right:0!important;}.layout-p32a24,.layout-p24a30{margin-bottom:8px;}.layout-p32a24 .grid-1{float:left;width:32px;margin-right:8px;}.layout-p32a24 .grid-2{float:left;width:72px;margin-right:8px;}.layout-p32a24 .grid-3{float:left;width:112px;margin-right:8px;}.layout-p32a24 .grid-4{float:left;width:152px;margin-right:8px;}.layout-p32a24 .grid-5{float:left;width:192px;margin-right:8px;}.layout-p32a24 .grid-6{float:left;width:232px;margin-right:8px;}.layout-p32a24 .grid-7{float:left;width:272px;margin-right:8px;}.layout-p32a24 .grid-8{float:left;width:312px;margin-right:8px;}.layout-p32a24 .grid-9{float:left;width:352px;margin-right:8px;}.layout-p32a24 .grid-10{float:left;width:392px;margin-right:8px;}.layout-p32a24 .grid-11{float:left;width:432px;margin-right:8px;}.layout-p32a24 .grid-12{float:left;width:472px;margin-right:8px;}.layout-p32a24 .grid-13{float:left;width:512px;margin-right:8px;}.layout-p32a24 .grid-14{float:left;width:552px;margin-right:8px;}.layout-p32a24 .grid-15{float:left;width:592px;margin-right:8px;}.layout-p32a24 .grid-16{float:left;width:632px;margin-right:8px;}.layout-p32a24 .grid-17{float:left;width:672px;margin-right:8px;}.layout-p32a24 .grid-18{float:left;width:712px;margin-right:8px;}.layout-p32a24 .grid-19{float:left;width:752px;margin-right:8px;}.layout-p32a24 .grid-20{float:left;width:792px;margin-right:8px;}.layout-p32a24 .grid-21{float:left;width:832px;margin-right:8px;}.layout-p32a24 .grid-22{float:left;width:872px;margin-right:8px;}.layout-p32a24 .grid-23{float:left;width:912px;margin-right:8px;}.layout-p32a24 .grid-24{float:left;width:952px;}.layout-p24a30 .grid-1{float:left;width:24px;margin-right:8px;}.layout-p24a30 .grid-2{float:left;width:56px;margin-right:8px;}.layout-p24a30 .grid-3{float:left;width:88px;margin-right:8px;}.layout-p24a30 .grid-4{float:left;width:120px;margin-right:8px;}.layout-p24a30 .grid-5{float:left;width:152px;margin-right:8px;}.layout-p24a30 .grid-6{float:left;width:184px;margin-right:8px;}.layout-p24a30 .grid-7{float:left;width:216px;margin-right:8px;}.layout-p24a30 .grid-8{float:left;width:248px;margin-right:8px;}.layout-p24a30 .grid-9{float:left;width:280px;margin-right:8px;}.layout-p24a30 .grid-10{float:left;width:312px;margin-right:8px;}.layout-p24a30 .grid-11{float:left;width:344px;margin-right:8px;}.layout-p24a30 .grid-12{float:left;width:376px;margin-right:8px;}.layout-p24a30 .grid-13{float:left;width:408px;margin-right:8px;}.layout-p24a30 .grid-14{float:left;width:440px;margin-right:8px;}.layout-p24a30 .grid-15{float:left;width:472px;margin-right:8px;}.layout-p24a30 .grid-16{float:left;width:504px;margin-right:8px;}.layout-p24a30 .grid-17{float:left;width:536px;margin-right:8px;}.layout-p24a30 .grid-18{float:left;width:568px;margin-right:8px;}.layout-p24a30 .grid-19{float:left;width:600px;margin-right:8px;}.layout-p24a30 .grid-20{float:left;width:632px;margin-right:8px;}.layout-p24a30 .grid-21{float:left;width:664px;margin-right:8px;}.layout-p24a30 .grid-22{float:left;width:696px;margin-right:8px;}.layout-p24a30 .grid-23{float:left;width:728px;margin-right:8px;}.layout-p24a30 .grid-24{float:left;width:760px;margin-right:8px;}.layout-p24a30 .grid-25{float:left;width:792px;margin-right:8px;}.layout-p24a30 .grid-26{float:left;width:824px;margin-right:8px;}.layout-p24a30 .grid-27{float:left;width:856px;margin-right:8px;}.layout-p24a30 .grid-28{float:left;width:888px;margin-right:8px;}.layout-p24a30 .grid-29{float:left;width:920px;margin-right:8px;}.layout-p24a30 .grid-30{float:left;width:952px;}html{min-height:101%;zoom:expression(function(ele){ele.style.zoom = "1";document.execCommand("BackgroundImageCache",false,true);}(this));}body{background-color:#fff;padding:0;font-size:12px;text-align:left;min-height:101%;}#doc952{width:952px;margin:0 auto;}#header{position:relative;z-index:200;}#content{float:none;}#content:after{content:'';display:block;clear:both;height:0;visibility:hidden;}#gold-content{margin-top:8px;display:block;float:none;}#gold-content:after{content:"";display:block;height:0;visibility:hidden;clear:both;}.col-main{float:left;min-height:1px;width:100%;}.col-main .main-wrap{margin-right:176px;width:776px;}.col-sub{width:160px;float:left;min-height:1px;padding-bottom:8px;min-height:20px;margin-left:-160px;}.lt-fix:after{content:"\0020";display:block;height:0;clear:both;}.lt-fix{zoom:1;}body,button,input,select,textarea{font:12px/1 Tahoma,Helvetica,Arial,"����",sans-serif;}html{zoom:expression(function(ele){ele.style.zoom = "1";document.execCommand("BackgroundImageCache",false,true);}(this));}#SubContainer .img160x86{width:160px;height:86px;}#SearchNav{width:100%;}#SearchPlaceBar{width:100%;}#SearchPlaceBar a:link,#SearchPlaceBar a:visited{color:#00349a;}#SearchPlaceBar a:hover{color:#ff7300;}#SearchContent{width:100%;}#SearchContent #MainContainer{float:left;width:100%;}#SearchContent #MainContainer #WrapContainer{margin-right:176px;min-height:1px;}#SearchContent #SearchCategory a:link,#SearchContent #SearchCategory a:visited{color:#00349a;}#SearchContent #SearchCategory a:hover{color:#ff7300;}#SearchContent #SubContainer{width:160px;margin-left:-160px;float:left;min-height:1px;}#QuickSearch{width:100%;}#QuickFilter{width:100%;clear:both;}#ListHead{width:100%;}#MutualSearchList{height:84px;}div.mutualityproduct{margin-top:12px;}#SeachFooter{width:100%;}#SearchContent,#SubContainer,#QuickSearch,#QuickFilter,#ListHead,#SearchList,#SearchListState,#SearchListPage,#MutualSearchList,#SearchFloatInfo,#SearchCategory{zoom:1;margin-bottom:0;}#QuickSearch{clear:both;}#QuickFilter{height:70px;}#SearchContent:after,#SubContainer:after,#QuickSearch:after,#QuickFilter:after,#ListHead:after,#SearchList:after,#SearchListState:after,#SearchListPage:after,#MutualSearchList:after,#SearchFloatInfo:after,#SearchCategory:after{content:"";display:block;height:0;clear:both;}a.sysask{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/bd/common/new_cosite_bg.gif) no-repeat scroll 0;}a.sysask{background-position:0 -252px;padding-left:20px;text-decoration:underline;width:50px;}a.sysask:link,a.sysask:visited{text-decoration:underline;}.p4p-search-img a.iconAlitalk,.p4p-search-window a.iconAlitalk,.sysww_online,.sysww_phone,.sysww_off,.filt-toolbar .wangwang label,.cssimage-end{background:transparent url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/common-alitalk.gif) no-repeat 0 0;display:inline-block;}.syscat,.callme,.product-pro .guarantee a,.product-pro .alipay a,.product-pro .trust-brand a,.other-postbuy .title,#listbottom_helpphone .title,#listbottom_helpphone ul li .call,.pagination .page-start,.pagination .page-next,.pagination a.page-prev,.pagination .page-end,.batch-trace-b,.cssimage-end{background:transparent url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/common-icon.png) no-repeat 0 0;display:inline-block;}.go-topbtn,.p4p-search-img .p4p-footer a,.page-op #jump-sub,.other-btn1,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/common-btn.png);background-repeat:no-repeat;display:inline-block;}.p4p-search-window .p4p-header,.p4p-search-img .p4p-header,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/repeat-x.png);background-repeat:repeat-x;}.simple_search_box .butheight,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/search-bar.png);background-repeat:no-repeat;background-color:transparent;display:inline-block;}.sysalipay,.sysetc,.guarantee-money,.guarantee-mumber,.high-cxt-mumber,.low-cxt-mumber,.low-cxt-mumber-p,.low-cxt-mumber-c,.low-cxt-mumber-e,.high-cxt-mumber-p,.high-cxt-mumber-c,.high-cxt-mumber-e,.offer .contactted,.offer-small .contactted,.st-combine .smart-queue .item .contactted,.offer .contacttedmid,.offer-small .contacttedmid,.st-combine .smart-queue .item .contacttedmid,.offer .uncontactted,.offer-small .uncontactted,.st-combine .smart-queue .item .uncontactted,.combine-seller,.showmore-btn,.showmore-btn-ctg,.category .result-bar a,.filt-toolbar .mode a,.filt-toolbar .order li a,.filt-toolbar .order em,.filt-toolbar .price-order a,.filt-toolbar .price-order a:link,.filt-toolbar .price-order a:visited,.widget-filt .filt-toggle span,.widget-filt .basic .filt-toggle,.category-list span.dot,.widget-bank-tips .it-close,.route i,.open-widget-a14 .wrap-data .num-info1,.wgt-areabox .ab-prov .item a,.wgt-areabox .ab-all a.close,.pay7-icon,.li-c-arrow,.lt-show-company-offer .arrow,.hotFilter,.combine-item .lt-menu .selected,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/icon.png);background-repeat:no-repeat;display:inline-block;}.category #ctg-showall,.widget-filt .filt-btn button,.filt-bottom-widget button,.custom_searchButton_off,.custom_searchButton_on,.open-widget-a14 h3,.recentbrowse .hd,#tishiDiv,.list_rss,#tishiDiv a:link,#tishiDiv a:visited,#tishiDiv a:hover,#right_1_title li.bg1,#right_1_title li.bg2,#right_1_content .but1,#selloffer-area .wgt-areabtn,.widget-filt .select-item span,.widget-filt .hover-memu .select-item span,.cssimage-end,.picture_search_btn,.picture_search_btn_tuwen{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/btn.png);background-repeat:no-repeat;display:inline-block;}.route,.related,.filt-toolbar,.filt-toolbar-scroll,.widget-filt,.open-widget-a14 .hd-tab li,.category .dt-line,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/repeat-x.png);background-repeat:repeat-x;}.search-pannel,.search-pannel .corner,.search-pannel .corner b,.searchtab-list li,.searchtab-list li.selected,.searchtab-list a.more-options,.search-pannel button,#show-history,.search-pannel .close,.search-pannel .serach-top,.searchtab-list li.selected a,#UserFeedback p,#searchbar-category span.focus,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/search-bar.png);background-repeat:no-repeat;background-color:transparent;display:inline-block;}a.Icon-king{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110531/biaowang.png);background-repeat:no-repeat;width:40px;height:15px;padding:0 8px 0 3px;margin-top:1px;display:inline-block;}.alibar-v2,.alibar-v2 .alibar-container,.alibar-v2 .account-not,.alibar-v2 .account-signed,.alibar-v2 .bg-arrow,.alibar-v2 .contact-us-free,.alibar-v2 .fill-form-free,.alibar-v2 .join-promotions,.alibar-v2 .title-sitemap,.alibar-v2 .list-sitemap-all a,#alibarV2,#alibarV2 .alibar-container,#alibarV2 .account-not,#alibarV2 .account-signed,#alibarV2 .bg-arrow,#alibarV2 .contact-us-free,#alibarV2 .fill-form-free,#alibarV2 .join-promotions,#alibarV2 .title-sitemap,#alibarV2 .list-sitemap-all a,#alibarV2 .alibar-tip,#alibarV2 .alibar-tip .alibar-tip-container,#alibarV2 .account-sign-status .alibar-tip a,#alibarV2 .account-sign-status .alibar-tip a.btn-close{background:url(http://img.china.alibaba.com/cms/upload/other/system/alibar/v2-standard-110304.png) no-repeat -100px 0;}.alibar-v2,#alibarV2{height:27px;background-position:0 -20px;background-repeat:repeat-x;color:#666;text-align:left;font:12px/1.5 Tahoma,Arial,"\5b8b\4f53",sans-serif;}.alibar-v2 .alibar-container,#alibarV2 .alibar-container{width:952px;height:27px;margin:0 auto;padding:0 4px;background-position:0 -20px;background-repeat:repeat-x;}.alibar-v2 a:link,.alibar-v2 a:visited,#alibarV2 a:link,#alibarV2 a:visited{color:#666;}.alibar-v2 a:hover,.alibar-v2 a:active,#alibarV2 a:hover,#alibarV2 a:active{color:#ff7300!important;text-decoration:none;}.alibar-v2 .account-sign-status,#alibarV2 .account-sign-status{position:relative;float:left;height:27px;z-index:699;}.alibar-v2 .account-sign-status li,#alibarV2 .account-sign-status li{float:left;height:27px;line-height:25px;line-height:27px\9;border-right:1px solid #eee;padding:0 8px;}.alibar-v2 .account-sign-status a,#alibarV2 .account-sign-status a{font-weight:700;}.alibar-v2 .account-sign-status .account-welcome,#alibarV2 .account-sign-status .account-welcome{min-width:134px;*width:auto;word-wrap:normal;padding-left:0;}.alibar-v2 .account-sign-status .account-welcome a,#alibarV2 .account-sign-status .account-welcome a{font-weight:400;}.alibar-v2 .account-not,#alibarV2 .account-not{padding-left:15px;background-position:-32px -148px;}.alibar-v2 .account-signed,#alibarV2 .account-signed{padding-left:15px;background-position:-32px -178px;}#alibarV2 .alibar-tip{position:absolute;top:24px;left:-4px;width:298px;height:25px;z-index:700;background-position:0 -335px;background-repeat:repeat-x;}#alibarV2 .alibar-tip .alibar-tip-container{float:left;padding-top:5px;background-position:200px -400px;}#alibarV2 .account-sign-status .alibar-tip a{display:block;float:left;width:269px;height:20px;line-height:20px;padding-left:9px;font-weight:400;color:#c60;background-position:-32px -310px;}#alibarV2 .account-sign-status .alibar-tip a.btn-close{width:20px;height:20px;padding-left:0;line-height:200px;overflow:hidden;background-position:right -370px;}#alibarV2 .alibar-tip a em{font-weight:700;text-decoration:underline;}.alibar-v2 .topnav,#alibarV2 .topnav{float:right;}.alibar-v2 .bg-arrow,#alibarV2 .bg-arrow{padding-right:8px;background-position:right -280px;*background-position-y:-282px;_background-position-y:-281px;}.alibar-v2 .top-product-over .bg-arrow,#alibarV2 .top-product-over .bg-arrow{background-position:right -260px;*background-position-y:-262px;_background-position-y:-261px;}.alibar-v2 .top-product-over .fd-hide,.alibar-v2 .top-service-over .fd-hide,#alibarV2 .top-product-over .fd-hide,#alibarV2 .top-service-over .fd-hide{display:block;}.alibar-v2 .top-product,#alibarV2 .top-product{float:left;padding:4px 6px 0 0;}.alibar-v2 .top-cxt-service,.alibar-v2 .top-ali-assistant,.alibar-v2 .top-customer-service,#alibarV2 .top-cxt-service,#alibarV2 .top-ali-assistant,#alibarV2 .top-customer-service{float:left;padding-right:5px;position:relative;z-index:699;}.alibar-v2 .top-customer-service,#alibarV2 .top-customer-service{line-height:22px\9;_line-height:20px;}.alibar-v2 .top-product-over,#alibarV2 .top-product-over{border-left:1px solid #ccc;}.alibar-v2 .title-cxt-service,.alibar-v2 .title-ali-assistant,#alibarV2 .title-cxt-service,#alibarV2 .title-ali-assistant{position:relative;padding:1px 5px 1px 6px;line-height:16px;line-height:20px\0;*line-height:18px;height:21px;z-index:701;*display:inline-block;}.alibar-v2 .title-cxt-service,#alibarV2 .title-cxt-service{_width:68px;}.alibar-v2 .title-ali-assistant,#alibarV2 .title-ali-assistant{_width:56px;}.alibar-v2 .top-product-over .title-cxt-service,.alibar-v2 .top-product-over .title-ali-assistant,#alibarV2 .top-product-over .title-cxt-service,#alibarV2 .top-product-over .title-ali-assistant{border-style:solid;border-color:#ccc #ccc #fff;border-width:1px 1px 1px 0;padding:0 4px 0 5px;background:#fff;}.alibar-v2 .list-cxt-service,.alibar-v2 .list-ali-assistant,#alibarV2 .list-cxt-service,#alibarV2 .list-ali-assistant{position:absolute;top:22px;left:-1px;z-index:700;border:1px solid #ccc;padding:1px 6px 3px;line-height:22px;background:#fff;}.alibar-v2 .list-cxt-service,#alibarV2 .list-cxt-service{width:110px;padding-left:4px;}.alibar-v2 .list-cxt-service li,#alibarV2 .list-cxt-service li{height:22px;}.alibar-v2 .list-cxt-service a,#alibarV2 .list-cxt-service a{padding-left:22px;}.alibar-v2 .contact-us-free,#alibarV2 .contact-us-free{background-position:-22px -58px;}.alibar-v2 .fill-form-free,#alibarV2 .fill-form-free{background-position:-22px -88px;}.alibar-v2 .join-promotions,#alibarV2 .join-promotions{background-position:-22px -118px;}.alibar-v2 .list-cxt-service a.iconAlitalk,#alibarV2 .list-cxt-service a.iconAlitalk{line-height:22px\0;*line-height:14px;*padding-top:4px;_padding-top:6px;text-decoration:none!important;}.alibar-v2 .list-cxt-service a.icon-on,#alibarV2 .list-cxt-service a.icon-on{_background-position-y:-69px;}.alibar-v2 .list-ali-assistant,#alibarV2 .list-ali-assistant{width:76px;}.alibar-v2 .top-service,#alibarV2 .top-service{float:left;margin-top:4px;background:#eee;border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5;height:18px;margin-right:25px;position:relative;z-index:699;}.alibar-v2 .top-service-over,#alibarV2 .top-service-over{background:#fff;}.alibar-v2 .top-service ul,#alibarV2 .top-service ul{float:left;border-left:1px solid #e5e5e5;*position:relative;margin-left:-1px;height:18px;overflow:hidden;width:192px;}.alibar-v2 .top-service li,#alibarV2 .top-service li{float:left;line-height:16px;line-height:18px\0;*line-height:19px;width:64px;text-align:center;}.alibar-v2 .top-sitemap,#alibarV2 .top-sitemap{float:left;margin-right:-1px;height:18px;_overflow:hidden;}.alibar-v2 .title-sitemap,#alibarV2 .title-sitemap{display:inline-block;width:16px;height:18px;border-right:1px solid #e5e5e5;border-left:1px solid #e5e5e5;overflow:hidden;line-height:60px;cursor:pointer;background-position:5px -53px;vertical-align:top;_position:relative;}.alibar-v2 .top-service-over .title-sitemap,#alibarV2 .top-service-over .title-sitemap{border-left-color:#fff;background-position:5px -83px;}.alibar-v2 .list-sitemap,#alibarV2 .list-sitemap{position:absolute;top:18px;left:-1px;z-index:700;width:209px;border:solid #e5e5e5;border-width:0 1px;background:#fff;}.alibar-v2 .list-sitemap dl,#alibarV2 .list-sitemap dl{float:left;width:193px;margin:0 8px;border-top:1px solid #eee;padding:4px 0 8px;_display:inline;}.alibar-v2 .list-sitemap .list-service,#alibarV2 .list-sitemap .list-service{border-top-style:dotted;margin-top:3px;}.alibar-v2 .list-sitemap dt,#alibarV2 .list-sitemap dt{clear:left;font-weight:700;color:#333;}.alibar-v2 .list-sitemap dd,#alibarV2 .list-sitemap dd{float:left;width:63px;word-break:keep-all;}.alibar-v2 .list-sitemap-all,#alibarV2 .list-sitemap-all{clear:both;_position:relative;height:18px;background:#eee;border:solid #e5e5e5;border-width:1px 0;margin-bottom:-1px;text-align:center;font-weight:700;line-height:16px;line-height:18px\9;_line-height:16px;}.alibar-v2 .list-sitemap-all a,#alibarV2 .list-sitemap-all a{background-position:right 5px;padding-right:9px;*background-position-y:3px;_background-position-y:4px;}.alibar-v2 .top-suppliers,#alibarV2 .top-suppliers{float:left;height:27px;line-height:25px;line-height:27px\9;padding:0 15px;border-right:1px solid #eee;border-left:1px solid #eee;font-size:14px;font-weight:700;}.alibar-v2 .top-suppliers a:link,.alibar-v2 .top-suppliers a:visited,#alibarV2 .top-suppliers a:link,#alibarV2 .top-suppliers a:visited{color:#999;}#search-bar form span,#search-bar form button,#top-nav a.top-sale{background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/search.gif") no-repeat -9999px -9999px;}#top-nav .quick-link li,#top-nav s,#search-bar,#search-bar .corner,#search-bar .corner b,#top-nav .quick-link li span,#top-nav .top-cxt .top-cxt-link,#top-nav .top-cxt .top-cxt-link span,#top-nav .cxt-phone{background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/search-r.gif") no-repeat -9999px -9999px;}#top-nav{color:#666;height:24px;line-height:24px;padding:0 6px;position:absolute;top:0;width:938px;border:1px solid #D8DCE2;border-top:0 none;-moz-border-radius:0 0 3px 3px;-khtml-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;background-color:#F6F6F6;z-index:999;font-family:Tahoma,Helvetica,Arial,"����",sans-serif;}#top-nav a:link,#top-nav a:visited{margin-left:6px;color:#666;text-decoration:none;}#top-nav a:hover{color:#e63312;}#top-nav .login-info{float:left;color:#666;line-height:23px;_padding-top:1px;}#top-nav .login-info a{margin-right:6px;margin-left:0;}#top-nav .login-info a.loginout{margin-left:4px;}#top-nav .login-info em{padding-left:12px;}#top-nav .user-menu{float:left;height:24px;line-height:16px;position:relative;z-index:3;}#top-nav .user-menu li{float:left;z-index:4;margin-top:3px;_margin-top:4px;line-height:19px;margin-right:10px;}#top-nav a.top-sale{background-position:-583px -115px;padding-left:20px;margin-left:0;}#top-nav .ued-feedback{position:relative;width:32px;margin-left:4px;top:2px;}#top-nav .ued-feedback img{cursor:pointer;}#top-nav .quick-link{float:right;height:24px;line-height:16px;position:relative;width:514px;z-index:3;}#top-nav .quick-link li{background-position:right -56px;padding-right:5px;z-index:4;float:right;margin-top:3px;_margin-top:4px;line-height:19px;}#top-nav .quick-link li.top-last{background:none;padding:0;}#top-nav .quick-link li.top-cxt{padding-right:8px;margin-top:2px;_margin-top:3px;}#top-nav .top-cxt .top-cxt-wrap{width:72px;height:19px;border:1px solid #F6F6F6;border-bottom:0 none;position:relative;padding-top:1px;}#top-nav .top-cxt .top-cxt-wrap-h{background-color:#fff;border:1px solid #D8DCE2;border-bottom:0 none;padding-top:0;height:21px;_height:20px;top:1px;}#top-nav .top-cxt .top-cxt-link{display:block;height:18px;padding-left:16px;background-position:0 -447px;_background-position:0 -448px;}#top-nav .top-cxt .top-cxt-link span{background-position:right -492px;padding-right:8px;}#top-nav .top-cxt .top-cxt-wrap-h span{background-position:right -512px;}#top-nav .top-cxt .cxt-service{background:none repeat scroll 0 0 #FFF;border-color:#D8DCE2;border-style:solid;border-width:0 1px 1px;height:68px;width:108px;z-index:4;display:none;position:absolute;left:-1px;top:21px;_top:20px;}#top-nav .top-cxt .cxt-service li{background:none;text-align:left;float:lelt;margin-left:0;height:19px;overflow:hidden;display:inline-block;width:100px;padding-left:4px;}#top-nav .top-cxt .cxt-service a{margin-left:2px;vertical-align:middle;}#top-nav .cxt-phone{background-position:0 -708px;padding-left:16px;display:block;cursor:pointer;}#top-nav .service-p{padding-left:20px;display:block;cursor:pointer;background:url("http://img.china.alibaba.com/images/cn/market/trade/list/bd/common/ww_online.gif") no-repeat scroll 0 1px transparent;}#top-nav .quick-link li.top-favorite span{background-position:0 1px;+background-position:0 0;padding-left:16px;}#top-nav .quick-link li.top-purchase span{background-position:0 -19px;+background-position:0 -21px;padding-left:16px;}#top-nav .quick-link li.top-myalibaba span{background-position:0 -40px;+background-position:0 -41px;padding-left:16px;}#top-nav s{cursor:pointer;font-size:0;height:12px;margin:3px 0 0 -16px;+margin-top:2px;position:absolute;width:16px;}#top-nav .top-myalibaba s{background-position:0 -41px;}#top-nav .top-purchase s{background-position:0 -21px;}#top-nav .top-favorite s{background-position:0 0;}.search-pannel .search-type b{background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/search-r.gif") no-repeat -9999px -9999px;}.search-pannel .search-type,.wiki-search .wiki-tips{background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/search.gif") no-repeat -9999px -9999px;}#logo{padding:14px 0 0 0;height:50px;position:absolute;z-index:99;}#logo a{width:154px;height:38px;overflow:hidden;display:block;position:relative;cursor:pointer;}#logo a img{border:0 none;position:relative;}.search-wrapper{width:952px;height:108px;position:relative;}.search-wrapper a:link,.search-wrapper a:visited{color:#1F61C0;}.search-wrapper a:hover{color:#e63312;}.search-form{padding:32px 0 0 0;}.clearfix{zoom:1;clear:both;}.search-form legend{display:none;}.searchtab-mod{margin-left:206px;height:32px;position:relative;z-index:20;}.searchtab-list li{float:left;line-height:29px;padding:3px 19px 0 18px;font-size:12px;position:relative;background-position:right -78px;margin-left:-1px;z-index:20;}.searchtab-list li.first{background-position:0 -38px;}.searchtab-list li.last{background-position:right -38px;padding:0;width:65px;margin-left:0;z-index:24;}.searchtab-list li dl{position:absolute;top:32px;right:0;width:56px;font-size:12px;background-color:#FFF;border:1px solid #BFBFBF;display:none;z-index:44;}.searchtab-list li dl dt{height:24px;overflow:hidden;text-align:center;}.searchtab-list li dl dt a:link,.searchtab-list li dl dt a:visited{display:block;width:56px;line-height:25px;}.searchtab-list li dl dt a:hover{background-color:#0048A3;color:#fff;text-decoration:none;}.searchtab-list a.more-options{text-decoration:none;display:block;width:24px;line-height:20px;padding:8px 8px 4px 13px;text-decoration:none!important;overflow:hidden;background-position:38px -305px;height:20px;}.searchtab-list a.more-options-on{background-position:38px -325px;}.searchtab-list a.more-options span{display:none;}.searchtab-list a.hover span{background-position:right -194px;}.searchtab-list li.selected{background-position:right -120px;font-size:14px;font-weight:bold;padding:0 5px 0 0;line-height:27px;z-index:22;margin-left:-2px;top:2px;}.searchtab-list li.selected a{background-position:0 -120px;display:block;line-height:20px;padding:6px 0 6px 6px;text-align:center;position:relative;width:66px;color:#fff!important;z-index:24;}.searchtab-list li a.pf{width:95px;}.search-pannel{width:952px;height:43px;position:relative;background-position:0 -200px;background-repeat:repeat-x;z-index:10;font:12px/1 Tahoma,Helvetica,Arial,"����",sans-serif;}.search-pannel .corner{background-position:-3px -260px;display:block;font-size:0;height:40px;overflow:hidden;position:absolute;top:0;width:952px;}.search-pannel .hidden{display:none;}.search-pannel .corner b{background-position:-1px -260px;display:block;font-size:0;height:40px;position:absolute;right:0;width:2px;}.search-pannel .search-pannel-wrap{padding-left:204px;padding-top:2px;}.search-pannel .search-i{display:inline-block;float:left;height:26px;width:350px;margin-top:6px;position:relative;}.search-pannel .search-type{display:none;float:left;height:26px;width:70px;border:1px solid #E04303;background-position:0 -34px;margin-top:6px;position:relative;margin-right:4px;}.blog-search .search-type,.company-search .search-type{display:inline-block;}.search-pannel .search-type b{display:block;height:18px;line-height:15px;+line-height:17px;padding:6px 3px 2px 6px;+margin-top:-2px;vertical-align:middle;width:61px;cursor:pointer;background-position:56px -270px;overflow:hidden;font-weight:normal;}.search-pannel .search-type dl{position:absolute;top:26px;left:0;width:68px;font-size:12px;background-color:#FFF;border:1px solid #BFBFBF;display:none;}.search-pannel .search-type dl dt{height:20px;overflow:hidden;}.search-pannel .search-type dl dt a:link,.search-pannel .search-type dl dt a:visited{display:block;width:64px;padding-left:4px;line-height:20px;}.search-pannel .search-type dl dt a:hover{background-color:#0048A3;color:#fff;text-decoration:none;}.search-pannel .s-child{float:left;line-height:26px;margin-top:6px;margin-left:8px;position:relative;color:#fff;}#show-history{visibility:hidden;cursor:pointer;background-position:-30px -328px;padding-right:12px;}#box-history{visibility:hidden;width:125px;border:1px solid #bfbfbf;background:#FFF;position:absolute;left:0;top:24px;}.search-pannel li{padding-left:6px;line-height:22px;}.search-pannel .clear-all{background:#f6f6f6;height:22px;text-align:center;}.search-pannel .clear-all span{cursor:pointer;color:#1f61c0;}.search-pannel .close{background-position:-80px -320px;cursor:pointer;position:absolute;right:6px;top:6px;width:8px;height:8px;overflow:hidden;padding:0;}.search-pannel .s-child #box-history a:link,.search-pannel .s-child #box-history a:visited{color:#666;margin-right:8px;text-decoration:none;font-family:Arial,Helvetica,sans-serif;}.search-pannel .s-child #box-history a:hover{text-decoration:underline;color:#E63312;}.search-pannel .s-child a:link,.search-pannel .s-child a:visited{color:#FFF;margin-right:8px;text-decoration:none;font-family:Arial,Helvetica,sans-serif;}.search-pannel .s-child a:hover{text-decoration:underline;}.search-pannel .s-child b{font-weight:normal;}.search-pannel .serach-top{float:left;line-height:26px;padding-left:36px;padding-top:6px;background-position:-110px -310px;position:relative;}.search-pannel .serach-top a{color:#FFF!important;}.search-pannel .search-i input{border:1px solid #bf8d02;border-right:none;height:20px;line-height:15px;+line-height:17px;padding:4px 3px;+margin-top:-2px;vertical-align:middle;width:344px;overflow:hidden;}.search-pannel button{height:30px;width:90px;background-position:0 -160px;float:left;font-size:14px;font-weight:bold;text-shadow:0 1px 0 #FFEC98;border:0 none;cursor:pointer;margin-top:6px;color:#954200;position:relative;*line-height:28px;}.search-pannel button.iask{display:none;}.wiki-tips{display:none;}.wiki-search .wiki-tips{display:block;position:absolute;width:164px;height:22px;top:11px;left:30px;background-position:0 0;text-indent:-9999em;}.wiki-search button.iask{display:inline-block;}.blog-search .search-i,.company-search .search-i{width:340px;}.blog-search .search-i input,.company-search .search-i input{width:333px;}.trust-search button{background-position:0 -70px;}#searchbar-category-newicon,#searchbar-category-tips i,#searchbar-category-tips .msg,#searchbar-category-closetips{background:url(http://img.china.alibaba.com/cms/upload/2010/583/600/6385_110323176.png) no-repeat 0 0;}#searchbar-category{position:absolute;left:129px;cursor:pointer;float:left;margin-top:6px;width:126px;height:28px;border:1px solid #e14304;margin-right:4px;background-color:#fefbec;background-position:0 0;z-index:99;}#searchbar-category span{display:none;padding-left:8px;height:24px;line-height:24px;overflow:hidden;}#searchbar-category.hover{border-color:#9a9a9a;height:54px;background-color:#fff;}#searchbar-category span.focus{border-left:1px solid #ccc;border-top:1px solid #ccc;display:block;background-position:-45px -350px;}#searchbar-category .searchbar-category-list{*zoom:1;}#searchbar-category.hover span.focus{background-position:-45px -395px;}#searchbar-category.hover span.other{display:block;}#searchbar-category-newicon{display:none;position:absolute;left:16px;top:-14px;width:14px;height:14px;}#searchbar-category-tips{display:none;cursor:default;background:#fff3c5 url(http://img.china.alibaba.com/cms/upload/2010/849/600/6948_110323176.png) repeat-x 0 0;position:absolute;left:60px;top:40px;width:300px;height:30px;z-index:9;left:129px;_top:42px;}#searchbar-category-tips .msg{color:#333;background-position:8px -56px;border:1px solid #c57d0c;height:28px;line-height:26px;padding:0 6px 0 24px;}#searchbar-category-tips i{position:absolute;top:-6px;left:24px;width:10px;height:8px;background-position:0 -32px;}#searchbar-category-closetips{background-position:-32px 4px;position:absolute;top:7px;right:8px;width:16px;height:16px;}#searchbar-category-closetips:hover{background-position:-32px -32px;}.route i{background-position:0 -1220px;margin:0 8px;}.route{position:relative;*zoom:1;z-index:10;margin-bottom:8px;height:25px;clear:both;border:1px solid #D9D9D9;padding-top:7px;line-height:20px;+padding-top:8px;_padding-top:7px;background-position:0 0;background-repeat:repeat-x;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.route ul{overflow:hidden;*zoom:1;margin:0 0 0 8px;width:766px;height:20px;}.route ul li{float:left;}.route .result{float:right;padding-right:10px;color:#666;}.route .result.searchtop{padding-right:190px;}.route .result em{color:red;font-weight:bold;}.related{overflow:hidden;margin-top:8px;margin-bottom:8px;height:32px;line-height:32px;border:1px solid #D9D9D9;background-position:0 0;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.related strong{margin:0 12px 0 8px;}.related a{padding:0 12px;display:inline-block;}.category dl,.onlycategory .category-list ul,.hot-param-list .direct,.onlycategory .hot-ctg,.onlycategory .ctg-letter,.clearfix{*zoom:1;}.category dl:after,.onlycategory .category-list ul:after,.hot-param-list .direct:after,.onlycategory .hot-ctg:after,.onlycategory .ctg-letter:after,.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.category{line-height:1.8;}.category .ctg-contnet{border:1px solid #f8bd59;background:#fefbec;position:relative;*zoom:1;}.category dt{float:left;width:110px;}.category dd{float:left;}.category dl{margin-left:8px;border-bottom:1px dashed #fbd597;padding:6px 0;}.category dd a{float:left;width:115px;white-space:nowrap;}.category .showmore-btn{position:absolute;right:-46px;top:0;width:30px;height:20px;line-height:20px;padding:0 0 0 20px!important;color:#00349A;background-position:0 -378px;}.category .showmore-btn:hover{color:#ff7300;background-position:0 -418px;}.category .showmore .showmore-btn{background-position:0 -398px;}.category .showmore .showmore-btn:hover{background-position:0 -438px;}.category .showmore-btn-ctg{right:-46px;top:0;width:30px;height:20px;line-height:20px;padding:0 0 0 20px!important;color:#00349A;background-position:0 -378px;display:block;}.category .showmore-btn-ctg:hover{color:#ff7300;background-position:0 -418px;}.category .showhot .showmore-btn-ctg{background-position:0 -398px;}.category .showhot .showmore-btn-ctg:hover{background-position:0 -438px;}.showmore-btn-div{float:left;height:20px;width:45px;overflow:hidden;}.category .other-attribute{display:none;}.category .showother .other-attribute{display:block;}.category .noneborder{border-width:0;}.category .showother .noneborder{border-bottom-width:1px;}.category .showother .other-attribute .noneborder{border-bottom:0;}.category-width1 .other-attribute dt{width:auto;}.category-width1 .category-list .more{padding-left:110px;}.category-width1 dd{width:606px;}.category-width2 dt{width:110px!important;}.category-width2 dd{width:606px!important;}.category-width2 .category-list .more{padding-left:110px;}.category .dt-line{background-position:0 -264px;}.category .dt-line dl{border:0;*zoom:1;}.category .category-list dl{padding:0;border:0;}.category .category-list dt{padding:6px 0;}.category dd{position:relative;}.common-attrlist dd{position:static;}.category .category-list a{padding:6px 0;width:115px;}.category .category-list .showmore-btn,.category .category-list .showmore-btn-ctg{top:7px;width:30px;}.category-list{background:#fff;}.category-list .more,.category-list .hot{display:none;}.category-list .showmore .more,.category-list .showhot .hot{display:block;}.category-list .showmore .dot{background:#fff;}.attribute-list .more{display:none;}.attribute-list .showmore .more{display:block;}.common-attribute{zoom:1;border-bottom:1px solid #FBD597;}.common-attribute .common-attrlist{zoom:1;padding-left:23px;border-bottom:1px solid #E9E9E9;}.common-attribute .common-attrlist dd{width:580px;}.category-list .common-attribute .noneborder{border:none;}.category-list .showmore .base a,.category-list .showmore .more a{padding-bottom:0;}.category-list .showmore .more{padding-bottom:6px;}.category-list .showmore dt{padding-bottom:0;}.dt-line .lt-height-dot,.lt-height-dot{display:block;float:left;padding:6px 0;}.lt-height-dot{padding-bottom:0;}.category-list a span{cursor:pointer;}.category-list span.dot{background-position:center -1167px;}.lt-arrow-center .more a{margin-top:6px;}.category .lt-arrow-center a{padding:0;}.onlycategory .category-list ul{background:#fff;line-height:22px;padding:8px 8px 8px 32px;}.onlycategory .category-list a{padding:5px 0;}.onlycategory .category-list .more,.onlycategory .category-list .hot{display:none;}.onlycategory .category-list li{overflow:hidden;height:23px;float:left;width:165px;}.onlycategory .category-list li i{font-style:normal;color:#8C8C8C;padding-left:1px;font-size:10px;}.onlycategory .bottom-bar{height:7px;background:#fefbec;overflow:hidden;border-top:1px solid #FFEBC8;}.onlycategory .showmore .more,.onlycategory .showhot .hot{display:block;}.onlycategory .hot-ctg{padding:8px 8px 8px 12px;border-bottom:1px solid #e9e9e9;}.onlycategory .hot-ctg-title{float:left;overflow:hidden;width:165px;padding-left:20px;background:url(http://img.china.alibaba.com/images/vas/search/app_search/merge_1214.png) no-repeat -286px -45px;}.onlycategory .category-list .hot-ctg-list{padding:0;float:left;width:520px;}.onlycategory .noneborder{border-width:0;}.onlycategory .ctg-letter-container{display:none;}.onlycategory .showmore .ctg-letter-container{display:block;}.onlycategory .ctg-letter{border-top:1px solid #ffebc8;}.onlycategory .category-list .ctg-letter-title{color:#999;float:left;font-size:16px;font-weight:bold;margin-top:6px;padding-left:8px;width:16px;font-family:Arial;}.onlycategory .category-list .ctg-letter-list{float:left;padding:8px 8px 8px 9px;width:700px;}.category .category-list .common-attribute .showmore-btn-ctg{left:580px;}.category-list .showmore .hot-ctg-list .hot{padding-bottom:0;}.common-attribute .common-attrlist .showmore-btn-dd{float:left;height:20px;width:45px;overflow:hidden;margin-top:5px;}.category .result-bar{background:#ffe7b4;border-bottom:1px solid #fbd594;height:30px;line-height:30px;}.category .result-bar strong{padding:0 16px 0 8px;}.category .result-bar a{display:inline-block;padding-right:18px;padding-left:6px;height:18px;line-height:18px;margin-top:4px;border:1px solid #ed6a00;background-color:#fff;background-position:right -457px;color:#333;}.category .result-bar a:hover{border:1px solid #ffb80e;text-decoration:none;background-position:right -477px;}.category #ctg-showall{position:relative;top:-1px;margin-left:340px;margin-bottom:-1px;width:95px;height:19px;background-color:#fffeec;background-position:0 -21px;line-height:20px;text-align:center;color:#ec6b03;cursor:pointer;}.category .hide-other{background-position:0 0!important;}.category .price-range{border:none;}.hot-param-list .direct{position:relative;margin-left:87px;line-height:30px;background:#FFF;}.hot-param-list .direct a{padding-right:26px;white-space:nowrap;}.hot-param-list .direct .less{position:relative;*zoom:1;}.hot-param-list .direct .show-more{cursor:pointer;position:absolute;top:0;right:0;padding-left:20px;width:32px;background:url(http://img.china.alibaba.com/cms/upload/search/sn.png) no-repeat 0 0;*padding-top:2px;}.hot-param-list .show .show-more{background-position:0 -23px;background-position:0 -25px\0;color:#666;}.hot-param-list .show-hover .show-more{background-position:0 -83px;background-position:0 -85px\0;color:#ff7300;}.hot-param-list .hided .show-more{background-position:0 7px;background-position:0 5px\0;color:#666;}.hot-param-list .hided-hover .show-more{background-position:0 -53px;background-position:0 -55px\0;color:#ff7300;dis_text-decoration:underline;}.hot-param-list .more{display:none;}.hot-param-list .show .more,.hot-param-list .show-hover .more{display:block;}.hot-param-list .close-pannel{height:18px;clear:both;width:100%;line-height:18px;}.hot-param-list .close-pannel a{float:right;background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/top.gif") no-repeat 0 -49px;display:block;+display:inline-block;color:#333!important;margin-right:6px;padding-left:12px;padding-bottom:4px;text-decoration:none!important;}.hot-param-list .c-hidden{display:none;}.hot-param-list .ul-expand .c-hidden{display:block;}.hot-param-list .sc-item-name,.hot-param-list a.view-all-item,.hot-param-list a.view-some-item,.hot-param-list .extra-items{dis_background:transparent url(http://img.china.alibaba.com/images/cn/search/list/smart-category.gif) no-repeat 0 0;}.hot-param-list{border:1px solid #d1d1d1;margin-bottom:6px;margin-top:-9px;-moz-border-radius:3px 0 3px 3px;-khtml-border-radius:3px 0 3px 3px;-webkit-border-radius:3px 0 3px 3px;}.hot-param-list:after{clear:both;content:" ";display:block;height:0;}.hot-param-list .sc-items{width:100%;overflow:hidden;}.hot-param-list .extra-items{background-position:0 -180px;background-repeat:repeat-x;overflow:hidden;padding-top:8px;padding-bottom:4px;display:none;}.hot-param-list .sc-item-list{float:left;width:100%;+display:inline;}.hot-param-list .sc-item-list ul{margin-left:87px;width:672px;margin-right:-4px;margin-top:2px;}.hot-param-list .extra-items .sc-item-list ul{margin-top:2px;}.hot-param-list .sc-item-list ul li{color:#8C8C8C;font-family:Arial,"\5b8b\4f53",sans-serif;}.hot-param-list .sc-item-list ul li i{color:#8C8C8C;font-size:10px;font-style:normal;padding-left:1px;}.hot-param-list a.view-all-item:link,.hot-param-list a.view-all-item:visited{background-position:-346px -89px;padding-left:11px;font-family:"\5b8b\4f53";}.hot-param-list a.view-all-item:hover{background-position:-161px -89px;padding-left:11px;}.hot-param-list a.view-some-item:link,.hot-param-list a.view-some-item:visited{background-position:-346px -60px;padding-left:11px;font-family:"\5b8b\4f53";}.hot-param-list a.view-some-item:hover{background-position:-161px -60px;padding-left:11px;}.hot-param-list a.view-all-item:focus,.hot-param-list a.view-some-item:focus{outline:0;}.hot-param-list .sc-item-name{width:87px;margin-left:-100%;float:left;+display:inline;background-position:8px -108px;+background-position:8px -110px;}.hot-param-list .sc-item-name h4{font-weight:bold;padding-left:16px;color:#323433;line-height:18px;padding-right:6px;margin-top:8px;}.hot-param-list .extra-items .sc-item-name{background-position:8px -114px;}.hot-param-list .extra-items .sc-item-name h4{margin-top:4px;}.hot-param-list .sc-buyer-list{float:left;width:100%;+display:inline;}.hot-param-list .sc-list-wrap{padding-left:87px;}.hot-param-list .sc-tabs{overflow:hidden;float:left;width:100%;+display:inline;margin-top:8px;}.hot-param-list .sc-tabs:after{content:'';clear:both;height:0;display:block;}.hot-param-list .sc-tabs ul{height:28px;padding-left:1px;_margin-right:-3px;float:left;}.hot-param-list .sc-tabs .others{overflow:auto;height:18px;*display:inline-block;border-bottom:1px solid #dfdfdf;text-align:right;padding-top:10px;margin-right:12px;}.hot-param-list .sc-tabs .hot-feedback{background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/top.gif") no-repeat scroll 0 -135px;padding-left:14px;}.hot-param-list .sc-tabs li{border:1px solid #e5e5e5;margin-left:-1px;float:left;position:relative;background:url("http://img.china.alibaba.com/images/offer/search/base/kaitian/search-r.gif") repeat-x scroll -9999px -9999px transparent;background-position:0 -380px;}.hot-param-list .sc-tabs li.on{border-bottom:0 none;padding-top:1px;top:1px;margin-top:-1px;padding-top:1px;padding-bottom:1px;background:none;}.hot-param-list .sc-tabs li.on a{line-height:25px;line-height:29px\9;*line-height:27px;height:25px;color:#333!important;}.hot-param-list .sc-tabs li a{display:block;*display:inline-block;height:27px;padding:0 20px;text-align:center;line-height:27px;line-height:31px\9;*line-height:29px;overflow:hidden;color:#00349a;outline:0;text-decoration:none!important;cursor:pointer;}.hot-param-list .sc-tabs li a:link,.hot-param-list .sc-tabs li a:visited{color:#00349A;}.hot-param-list .sc-tabs li a:hover{color:#e63312;}.hot-param-list .sc-tabs li a.imt{color:#033!important;}.hot-param-list .sc-trend-list{clear:both;color:#323333;}.hot-param-list .sc-trend-list li{float:left;width:170px;padding-top:8px;line-height:20px;overflow:hidden;}.hot-param-list .sc-trend-list a.up2down{background:transparent url("http://img.china.alibaba.com/images/app/search/v2.0/top.gif") no-repeat -9999px -9999px;padding-left:12px;}.hot-param-list .sc-trend-list a.up{background-position:0 -68px;}.hot-param-list .sc-trend-list a.down{background-position:0 -88px;}.hot-param-list .sc-trend-list a.stop{background-position:0 -109px;}.hot-param-list .sc-trend-list a.selected{color:#fff;}.hot-param-list .sc-trend-list a.selected span{display:inline-block;background-color:#e63312;padding:0 4px;}.route{position:relative;*zoom:1;}.route .hotbtn-box{position:absolute;right:0;top:0;z-index:999;width:157px;height:33px;background:url(http://img.china.alibaba.com/cms/upload/2010/947/200/2749_110323176.png) no-repeat 0 0;border-left:1px solid #D9D9D9;}.route .hotbtn-hide{height:32px;border:0;background-position:0 -48px;}.route .hotbtn{line-height:32px;padding-left:24px;color:#666;}.route .hotbtn:hover{color:#e73310;}.widget-filt{margin-top:8px;}.mod-category .selected-attr dd a,.mod-category .display-more a{background:url(http://img.china.alibaba.com/cms/upload/2011/739/030/30937_426256670.png) no-repeat;}.mod-category .cate-group .cate-more a{background:url(http://img.china.alibaba.com/cms/upload/2011/430/230/32034_426256670.png) no-repeat;}.mod-category a:link,.mod-category a:visited{color:#00349A;}.mod-category a:hover,.mod-category a:active{color:#ff7300!important;}.mod-category{width:774px;border:1px solid #f7b54a;}.mod-category-hasmore{margin-bottom:27px;}.mod-category .cate-group{margin:0 8px;width:758px;overflow:hidden;border-top:1px solid #E9E9E9;}.mod-category .more-cate-group{display:none;}.mod-category .cate-group-firstrow{border-top:0 none;}.mod-category .cate-group dl{margin:4px 8px;line-height:1.8;width:685px;}.mod-category .cate-group dt{width:110px;height:22px;color:#333;float:left;overflow:hidden;}.mod-category .cate-group dd{width:575px;float:left;}.mod-category .cate-group li.more-content{display:none;}.mod-category .cate-group-showmore li.more-content{display:block;}.mod-category .cate-group dd li{float:left;width:115px;height:22px;overflow:hidden;}.mod-category .cate-group dd li.have-img{height:72px;}.mod-category .cate-group dd li.have-img .noimg{height:72px;margin-top:20px;}.mod-category .cate-group .cate-more{float:right;width:49px;height:15px;margin-top:9px;line-height:15px;}.mod-category .cate-group .cate-more a{display:inline-block;display:inline\9;line-height:15px;width:32px;padding-left:17px;+display:inline-block;+line-height:17px;_line-height:15px;}.mod-category .cate-group .cate-more a:link,.mod-category .cate-group .cate-more a:visited{color:#676767;background-position:0 0;}.mod-category .cate-group .cate-more a:hover,.mod-category .cate-group .cate-more a:active{background-position:0 -60px;}.mod-category .cate-group .cate-more a.hide-cate:link,.mod-category .cate-more a.hide-cate:visited{background-position:0 -30px;}.mod-category .cate-group .cate-more a.hide-cate:hover,.mod-category .cate-more a.hide-cate:active{background-position:0 -90px;}.mod-category .display-more{width:774px;height:4px;border-top:1px solid #FFE3B8;position:relative;}.mod-category .display-more .bg-wrapper{width:774px;height:3px;margin-top:1px;background-color:#FFFCEC;overflow:hidden;}.mod-category .display-more .button{position:absolute;width:101px;height:21px;top:0;left:339px;overflow:hidden;}.mod-category .display-more a{display:block;width:101px;height:23px;line-height:75px;overflow:hidden;}.mod-category .display-more .show-more{background-position:0 0;}.mod-category .display-more .hide-more{background-position:0 -50px;}.mod-category .selected-attr{height:32px;border-top:1px solid #fff;border-bottom:1px solid #f9d08a;background-color:#ffedc3;line-height:32px;}.mod-category .selected-attr dt{float:left;padding-left:16px;margin-right:8px;font-size:14px;color:#333;}.mod-category .selected-attr dd{float:left;margin-right:6px;height:19px;padding-top:7px;}.mod-category .selected-attr dd a{display:inline-block;height:17px;overflow:hidden;padding:0 22px 0 6px;line-height:17px;vertical-align:top;float:left;background-color:#fff;line-height:19px\9;_line-height:17px;}.mod-category .selected-attr dd a:link,.mod-category .selected-attr dd a:visited{color:#333;border:1px solid #f7b64e;background-position:right -299px;}.mod-category .selected-attr dd a:hover,.mod-category .selected-attr dd a:active{border:1px solid #e76603;color:#ff7300;text-decoration:none;background-position:right -349px;}.mod-category .attr-area{border-bottom:1px solid #ffdea5;}.mod-category .attr-area-noborder{border-bottom:none;}.mod-category .double-col-content{padding:6px 0;}.mod-category .double-col-content .cate-group{width:371px;height:72px;overflow:hidden;float:left;border-top:0 none;margin:0;padding:0 8px;}.mod-category .double-col-content .cate-oneline{height:50px;}.mod-category .double-col-content .cate-group dl{width:355px;margin:0 8px 0 8px;}.mod-category .double-col-content .cate-group dt{float:none;}.mod-category .double-col-content .cate-group dd{width:355px;float:none;}.mod-category .double-col-content .cate-more-bar{_margin-top:1px;height:6px;overflow:hidden;}.mod-category .double-col-content .cate-more-bar a{display:block;width:371px;height:6px;line-height:30px;overflow:hidden;background:url(http://img.china.alibaba.com/cms/upload/2011/752/230/32257_426256670.png) no-repeat;cursor:default;}.mod-category .double-col-content .cate-more-bar a:link,.mod-category .double-col-content .cate-more-bar a:visited{background-position:49px 0;}.mod-category .double-col-content .hover-group .cate-more-bar a:link,.mod-category .double-col-content .hover-group .cate-more-bar a:visited{background-position:49px -20px;}.mod-category dt.have-img{height:74px;}.mod-category li.have-img a{float:left;display:inline;}.mod-category li.have-img a img{display:block;}.mod-category .only-attr{border-bottom:0 none;background:url(http://img.china.alibaba.com/cms/upload/2011/670/330/33076_426256670.png) repeat-x;}.mod-category .double-col-content .cate-group-expand{position:absolute;height:auto;display:none;z-index:10;clear:both;}.mod-category .cate-group-expand .cate-group{background:#fff;border:1px solid #F7B54A;padding:2px 3px;}.mod-category .cate-group-expand li.more-content{display:block;}.mod-category .cate-group-expand .cate-more-bar{display:none;}#ShoutcutTopModel{width:100%;float:left;zoom:1;text-align:left;margin-top:8px;margin-bottom:4px;_zoom:1;}#ShoutcutTopModel:after{content:"";display:block;height:0;clear:both;visibility:hidden;}.shoutcutGrid{width:776px;height:114px;border:1px solid #ff7300;}.st-top-modules{width:100%;overflow:hidden;font-size:12px;line-height:18px;font-family:Arial,Helvetica,sans-serif;text-align:left;}.st-top-modules dl dd{width:33%;margin-right:2px;float:left;height:114px;overflow:hidden;}.st-top-modules dl dd.last{margin-right:0;width:33%;}.cl-4d{padding-left:8px;}.ct-d{padding-top:2px;}.ct-2d{padding-top:4px;}.shoutcut-img0{width:96px;height:96px;overflow:hidden;}.shoutcut-img1{width:80px;height:48px;overflow:hidden;}.shoutcut-img2{width:96px;height:64px;overflow:hidden;zoom:1;}li.st-point{padding-left:8px;}.skin-default a:link,.skin-default a:visited{color:#00349a;text-decoration:none;}.skin-default a:hover{color:#e63312;text-decoration:underline;}.skin-default .shoutcut-img0,.skin-default .shoutcut-img1,.skin-default .shoutcut-img2{border:1px solid #CADAEC!important;}div.view-s00{padding-left:0;padding-top:8px;padding-right:8px;float:left;}div.view-s01{width:140px;float:left;padding-top:10px;}div.view-s01 table{width:140px;}div.view-s01 table tr{height:18px;}div.view-s01 table tr td{height:18px;}div.view-s10{padding-left:0;float:left;width:114px;padding-top:8px;}div.view-s11{padding-left:0;float:left;width:114px;padding-top:8px;}div.view-s20{padding-top:6px;padding-left:0;}div.view-s20 h3{font-weight:bold;font-size:14px;padding-bottom:4px;}div.view-s30{padding-left:0;padding-top:10px;}div.view-s30 h3{font-weight:bold;font-size:14px;padding-bottom:2px;}div.view-s30 p{margin-right:12px;text-indent:2em;line-height:150%;}div.view-s40{padding-left:0;padding-top:11px;}div.view-s40 p{margin-right:12px;text-indent:2em;line-height:150%;}div.view-s50{padding-left:0;padding-right:12px;}div.view-s50 ul{width:230px;margin-left:-4px;zoom:1;}div.view-s50 ul li{padding-right:2px;float:left;height:12px;margin-left:12px;display:inline;line-height:12px;+line-height:14px;margin-top:8px;+margin-top:8px;white-space:nowrap;}div.view-s70{padding-left:0;padding-right:12px;}div.view-s70{clear:both;}div.view-s70 .category-gurid{float:left;line-height:24px;background-position:-160px -72px;display:inline;}div.view-s70 ul{margin-left:-4px;}div.view-s70 ul li{padding-right:2px;float:left;height:21px;margin-left:20px;+display:inline-block;margin-top:3px;white-space:nowrap;line-height:20px;font-family:����;}.category-gurid{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat scroll 0;background-position:-160px -77px;font-size:12px;font-weight:bold;}.category-gurid span{margin-left:10px;}.category-tab{font-size:12px;margin-left:3px;margin-bottom:-2px;margin-top:2px;}.category-tab span{padding-left:14px;}.category-tab span.first{padding-left:5px;}.company-shortcut{margin-top:4px;text-align:left;}.company-shorstcut-mh{margin-top:2px;padding-left:12px;text-align:left;height:22px;font-weight:bold;}.company-shorstcut-mh a:link,.company-shorstcut-mh a:visited{color:red;text-decoration:none;}.company-shorstcut-mh a:hover{color:#ff7300;text-decoration:underline;}.company-shorstcut-mh span{font-weight:bold;color:#000;background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat scroll -160px -77px;padding-left:10px;padding-right:12px;}.company-shortcut .cs-info{height:24px;line-height:24px;}.company-shortcut a:link,.company-shortcut a:visited{color:#00349a;}.company-shortcut a:hover{color:#ff7300;}.company-shortcut .cs-info h3{float:left;font-size:14px;font-weight:bold;font-family:Arial,Helvetica,sans-serif;}.company-shortcut .cs-info h3 a:link,.company-shortcut .company-info h3 a:visited{color:red;}.company-shortcut .cs-info h3 a:visited{color:red;}.company-shortcut .cs-info span{padding:0 6px;float:left;}.company-shortcut .cs-info .cs-trust-company,.company-shortcut .cs-info .cs-trust-people,.company-shortcut .cs-info .cs-trust-abroad{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/080401/p_icon.gif) no-repeat scroll 0 -30px;height:18px;display:block;float:left;overflow:hidden;padding-left:57px;font-size:13px;}.company-shortcut .cs-info a{line-height:24px!important;}.company-shortcut a.cs-trust-people:link,.company-shortcut a.cs-trust-people:visited{color:#001d4c;}.company-shortcut a.cs-trust-company:link,.company-shortcut a.cs-trust-company:visited{color:#001d4c;}.company-shortcut a.cs-trust-company:hover{color:#ff7300;}.company-shortcut a.cs-trust-people:hover{color:#ff7300;}.company-shortcut .cs-info .cs-trust-abroad{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat scroll -159px -1627px;}.company-shortcut p{line-height:16px;font-family:Arial,Helvetica,sans-serif;}.company-shortcut .cs-info .cs-trust-people{background-position:0 2px;}.company-shortcut .cs-feedback{height:24px;padding-top:3px;}.cs-feedback a:link,.cs-feedback a:visited{color:#00349a;}.cs-feedback a:hover{color:#ff7300;}.Chemical{margin-top:6px;margin-bottom:6px;zoom:1;}.Chemical:after{content:"";height:0;clear:both;display:block;visibility:hidden;}.Chemical a:link,.Chemical a:visited{color:#00349a;text-decoration:none;}.Chemical a:active{color:#ff7300;text-decoration:none;}.Chemical a:hover{color:#ff7300;text-decoration:none;}.Chemical table{border-collapse:collapse;width:776px;text-align:left;float:left;}.Chemical td{border:1px solid #E2E2E2;line-height:26px;}.Chemical .titleDiv1{font-weight:bold;margin-left:20px;}.Chemical .titleDiv2{float:left;margin-left:20px;display:inline;}.Chemical .space1{margin-left:40px;}.Chemical .showmore a:link,.Chemical .showmore a:visited{color:#ff7300;}.Chemical .showmore a:hover{color:#ff7300;}.Chemical .titleDiv2 table{border-collapse:collapse;width:750px;text-align:left;float:left;}.Chemical .titleDiv2 td{border:0;line-height:26px;}.shoutcut-zc{height:48px;}.shoutcut-zc h4{font-weight:bold;margin:0;padding:0;background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat scroll -160px -77px;padding-left:8px;}.shoutcut-zc .shoutcut-conditions td{padding-right:12px;}.shoutcut-zc .shoutcut-conditions span{padding-right:3px;}.md-openwidget{border:1px solid #d2d8e2;width:774px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin-bottom:4px;padding-bottom:2px;}.md-openwidget .openwidget-hd{height:29px;line-height:31px;overflow:hidden;font-family:"����";cursor:pointer;}.md-openwidget .openwidget-hd ul li{float:left;display:inline-block;width:387px;border-left:1px solid #D2D8E2;border-bottom:1px solid #D2D8E2;margin-left:-1px;background-color:#f6f6f6;height:27px;overflow:hidden;}.md-openwidget .openwidget-hd ul li.selected{border-bottom:1px solid #fff;background-color:#fff;}.md-openwidget .openwidget-hd h4{font-weight:bold;padding-left:28px;}.md-openwidget .openwidget-hd h4.closed{background:transparent url("http://img.china.alibaba.com/news/upload/051212/close_1274861052185.gif") no-repeat 10px 7px;}.md-openwidget .openwidget-hd h4.opened{background:transparent url("http://img.china.alibaba.com/news/upload/051212/open_1274861052213.gif") no-repeat 10px 7px;padding-left:28px;}.open-widget-content{padding:8px;padding-bottom:2px;margin:4px;border:1px solid #d2d8e2;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;display:none;}.open-widget-a0 p{line-height:16px;color:#666;margin-bottom:4px;}.open-widget-a0 .feedback-items{height:24px;}.open-widget-a0 .feedback-items a{margin-right:20px;text-decoration:underline;height:20px;line-height:20px;font-family:"����";display:inline-block;}.open-widget-a0 .feedback-items .sysww_online,.open-widget-a0 .feedback-items .sysww_phone,.open-widget-a0 .feedback-items .sysww_off{width:52px;height:18px;padding-top:2px;padding-left:20px;}.open-widget-a0 .feedback-items .sysww_online{background-position:0 -78px;}.open-widget-a0 .feedback-items .sysww_online:hover{background-position:0 -38px;}.open-widget-a0 .feedback-items .sysww_phone{background-position:0 -118px;}.open-widget-a0 .feedback-items .sysww_phone:hover{background-position:0 -158px;}.open-widget-a0 .feedback-items .sysww_off{background-position:0 -198px;}.open-widget-a0 .feedback-items .syscat{padding-left:20px;width:52px;background-position:0 -279px;}.open-widget-a0 .feedback-items .syscat:hover{background-position:0 -299px;}.open-widget-a0 .feedback-items .low-cxt-mumber-p,.open-widget-a0 .feedback-items .low-cxt-mumber-c,.open-widget-a0 .feedback-items .low-cxt-mumber-e,.open-widget-a0 .feedback-items .high-cxt-mumber-p,.open-widget-a0 .feedback-items .high-cxt-mumber-c,.open-widget-a0 .feedback-items .high-cxt-mumber-e{padding-left:55px;}.open-widget-a0 .low-cxt-mumber-p{background-position:0 -160px;}.open-widget-a0 .low-cxt-mumber-c{background-position:0 -180px;}.open-widget-a0 .low-cxt-mumber-e{background-position:0 -200px;}.open-widget-a0 .high-cxt-mumber-p{background-position:0 -220px;}.open-widget-a0 .high-cxt-mumber-c{background-position:0 -240px;}.open-widget-a0 .high-cxt-mumber-e{background-position:0 -260px;}.open-widget-a1 p{line-height:18px;color:#666;margin-bottom:6px;}.open-widget-a1 div.w-cont{margin-bottom:6px;width:690px;position:relative;}.open-widget-a1 div.w-cont:after{height:0;clear:both;display:block;overflow:hidden;}.open-widget-a1 div.w-cont p{margin-bottom:0;float:left;display:inline-block;width:100%;}.open-widget-a1 div.oneline p{height:20px;overflow:hidden;width:630px;+width:610px;margin-right:44px;word-break:break-all;}.open-widget-a1 div.oneline span{display:block;}.open-widget-a1 p span{padding-left:24px;}.open-widget-a1 table{width:100%;}.open-widget-a1 table td{line-height:20px;}.open-widget-a1 table td.p-name{text-align:right;vertical-align:top;width:48px;}.open-widget-a1 table td h4{white-space:nowrap;font-weight:bold;}.open-widget-a1 table td span{padding-left:24px;}.open-widget-a1{color:#666;}.open-widget-a1 .w-display-op{background:transparent url("http://img.china.alibaba.com/news/upload/5001880/display-icon_1275460091864.gif") no-repeat 0 2px;width:44px;line-height:16px;cursor:pointer;position:absolute;padding-left:0;top:0;right:0;overflow:hidden;display:none;}.open-widget-a1 .oneline .w-display-op{display:block;}.open-widget-a1 .w-display-less{background-position:0 -21px;}.w-display-op em{visibility:hidden;}.open-widget-a2{padding:0;}.open-widget-a3 table{width:100%;}.open-widget-a3 table td{vertical-align:top;}.open-widget-a3 .item-list-col0{width:168px;}.open-widget-a3 .item-list-col1{width:376px;}.open-widget-a3 .item-list-col2{width:204px;}.open-widget-a3 p{line-height:16px;}.open-widget-a3 p.pem{padding:4px 0;font-weight:bold;}.open-widget-a3 dl{padding-left:16px;}.open-widget-a3 dl dt{font-weight:bold;padding-bottom:2px;line-height:16px;}.open-widget-a3 dl dd{line-height:16px;padding:2px 0;}.open-widget-a3 dl dd a{text-decoration:underline;}.open-widget-a4 table{width:100%;}.open-widget-a4 table td{vertical-align:top;}.open-widget-a4 .item-list-col0{width:270px;}.open-widget-a4 .item-list-col1{width:270px;}.open-widget-a4 .item-list-col2{width:270px;}.open-widget-a4 dl dt{font-weight:bold;padding-bottom:2px;line-height:16px;color:#ff7300;padding-left:12px;}.open-widget-a4 dl dd{line-height:16px;padding:2px 0;padding-left:12px;}.open-widget-a4 dl dd a:link,.open-widget-a4 dl dd a:visited{color:#333;}.open-widget-a4 dl dd a:hover{color:#e63312;}.open-widget-a5 .open-widget-content{padding:8px;padding-bottom:2px;}.open-widget-a5 table{width:100%;}.open-widget-a5 table td{vertical-align:top;}.open-widget-a5 .item-list-col0{width:352px;}.open-widget-a5 .item-list-col1{width:352px;padding-left:12px;}.open-widget-a5 table table{margin-left:16px;}.open-widget-a5 .item-first{border-right:1px solid #E4E4E4;}.open-widget-a5 .item-first table{margin-left:8px;}.open-widget-a5 dl dd a:link,.open-widget-a5 dl dd a:visited{color:#333;}.open-widget-a5 table table th{padding:2px 0 2px 12px;}.open-widget-a5 .item-keywords{padding:3px 0 3px 12px;text-align:left;}.open-widget-a5 .item-keywords a{background:transparent url("http://img.china.alibaba.com/news/upload/051212/num-list_1274861052210.gif") no-repeat -9999px -9999px;padding-left:16px;}.open-widget-a5 .item-keywords a.ol-first{background-position:0 2px;}.open-widget-a5 .item-keywords a.ol-second{background-position:0 -18px;}.open-widget-a5 .item-keywords a.ol-third{background-position:0 -38px;}.open-widget-a5 .item-keywords a.ol-fourth{background-position:0 -58px;}.open-widget-a5 .item-keywords a.ol-fifth{background-position:0 -78px;}.open-widget-a5 .item-count{text-align:right;padding-right:32px;color:#999;width:80px;}.open-widget-a6 table{width:100%;}.open-widget-a6 table td{vertical-align:top;}.open-widget-a6 .item-list-col0{width:352px;}.open-widget-a6 .item-list-col1{width:352px;padding-left:12px;}.open-widget-a6 table table{margin-left:16px;}.open-widget-a6 .item-first{border-right:1px solid #E4E4E4;}.open-widget-a6 .item-first table{margin-left:8px;}.open-widget-a6 dl dd a:link,.open-widget-a6 dl dd a:visited{color:#333;}.open-widget-a6 .item-keywords{padding:3px 0 3px 12px;text-align:left;}.open-widget-a6 .item-keywords a{background:transparent url("http://img.china.alibaba.com/news/upload/051212/num-list_1274861052210.gif") no-repeat -9999px -9999px;padding-left:16px;}.open-widget-a6 .item-keywords a.ol-first{background-position:0 2px;}.open-widget-a6 .item-keywords a.ol-second{background-position:0 -18px;}.open-widget-a6 .item-keywords a.ol-third{background-position:0 -38px;}.open-widget-a6 .item-keywords a.ol-fourth{background-position:0 -58px;}.open-widget-a6 .item-keywords a.ol-fifth{background-position:0 -78px;}.open-widget-a6 .item-count{text-align:right;padding-right:8px;color:#999;width:80px;}.open-widget-a6 th.item-count{color:#000;}.open-widget-a6 .item-change{text-align:right;padding-right:32px;color:#999;width:64px;}.open-widget-a6 .item-change span{background:transparent url("http://img.china.alibaba.com/news/upload/051212/num-list_1274861052210.gif") no-repeat right -142px;padding-right:12px;}.open-widget-a6 .item-change .up{background-position:right -98px;}.open-widget-a6 .item-change .down{background-position:right -118px;}.open-widget-a6 th.item-change{color:#000;}.open-widget-a7 p{line-height:16px;color:#666;margin-bottom:4px;}.open-widget-a7 .feedback-items{height:18px;padding-top:2px;}.open-widget-a7 .feedback-items a{margin-right:20px;text-decoration:underline;}.open-widget-a8{padding-bottom:4px;}.open-widget-a8 table{width:100%;}.open-widget-a8 table td{vertical-align:top;}.open-widget-a8 .item-list-col0{width:195px;}.open-widget-a8 .item-list-col1{width:308px;}.open-widget-a8 .item-list-col2{width:256px;}.open-widget-a8 p{color:#666;}.open-widget-a8 p em{font-size:16px;font-weight:bold;font-family:Arial,Helvetica,sans-serif;color:#F00;margin:0 4px;}.open-widget-a8 p.uptrend span,.open-widget-a8 p.downtrend span,.open-widget-a8 p.keeptrend span{background:transparent url("http://img.china.alibaba.com/images/price/arrow.gif") no-repeat -9999px -9999px;padding-left:12px;margin-left:4px;}.open-widget-a8 p.uptrend em{color:#F00;}.open-widget-a8 p.uptrend em a:link,.open-widget-a8 p.uptrend em a:visited{color:#F00;}.open-widget-a8 p.uptrend em a:hover{color:#F00;}.open-widget-a8 p.uptrend span{background-position:0 -78px;color:#F00;}.open-widget-a8 p.downtrend em{color:#0DB214;}.open-widget-a8 p.downtrend em a:link,.open-widget-a8 p.downtrend em a:visited{color:#0DB214;}.open-widget-a8 p.downtrend em a:hover{color:#0DB214;}.open-widget-a8 p.downtrend span{background-position:0 2px;color:#0DB214;}.open-widget-a8 p.keeptrend em{color:#666;}.open-widget-a8 p.keeptrend em a:link,.open-widget-a8 p.keeptrend em a:visited{color:#666;}.open-widget-a8 p.keeptrend em a:hover{color:#666;}.open-widget-a8 p.keeptrend span{background-position:0 -38px;color:#666;}.open-widget-a8 .param-items{padding-top:6px;color:#666;}.open-widget-a8 .param-items li{display:inline-block;font-weight:bold;padding-right:10px;float:left;line-height:16px;white-space:nowrap;}.open-widget-a8 .param-items li a{font-weight:normal;}.open-widget-a8 .hq-trend{padding-top:4px;}.open-widget-a8 .trend-td{border-right:1px solid #e4e4e4;margin-bottom:4px;}.open-widget-a8 .hq-trend a{background:url("http://img.china.alibaba.com/news/upload/0/price_1260839920128.gif") no-repeat scroll 0 2px transparent;padding-left:20px;display:block;line-height:20px;}.open-widget-a8 .trend-querys{padding-left:12px;line-height:18px;}.open-widget-a8 .trend-querys a{margin-right:8px;white-space:nowrap;float:left;}.open-widget-a8 .trend-querys div a{float:right;}.open-widget-a9{padding-bottom:4px;zoom:1;}.open-widget-a9:after{content:'';display:block;visibility:hidden;height:0;clear:both;}.open-widget-a9 a{text-decoration:underline!important;}.open-widget-a9 ul li{float:left;display:inline-block;width:336px;background:url("http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif") no-repeat scroll -160px -73px transparent;_background-position:-160px -73px;padding-left:10px;line-height:22px;white-space:nowrap;overflow:hidden;height:22px;margin-right:8px;}.open-widget-a9 ul li.last{background:none;padding-left:0;}.open-widget-a10{padding-bottom:4px;zoom:1;}.open-widget-a10:after{content:'';display:block;visibility:hidden;height:0;clear:both;}.open-widget-a10 h3{font-size:14px;font-weight:bold;}.open-widget-a10 p.ow-desc{line-height:18px;color:#666;margin:4px 0 2px 0;}.open-widget-a10 ul li{float:left;display:inline-block;width:231px;background:url("http://img.china.alibaba.com/images/app/search/openwidget/point.gif") no-repeat scroll 0 8px transparent;padding-left:10px;line-height:22px;word-break:break-all;overflow:hidden;height:22px;margin-right:8px;}.open-widget-a10 ul li.last{background:none;padding-left:0;}.open-widget-a11{padding-bottom:8px;padding-left:10px;}.open-widget-a11:after{content:'';display:block;visibility:hidden;height:0;clear:both;}.open-widget-a11 a:link,.open-widget-a11 a:visited{text-decoration:underline;}.open-widget-a11 .widget-top-posts{font-size:14px;word-break:break-all;}.open-widget-a11 .widget-top-posts span{color:#8c8c8c;font-size:12px;padding-left:10px;}.open-widget-a11 p{color:#333;text-indent:2em;margin-top:6px;line-height:16px;}.open-widget-a11 p span{margin-left:6px;color:#8c8c8c;}.open-widget-a11 p em{padding-left:6px;}.open-widget-a11 .widget-answer-link{margin-left:20px;}.open-widget-a12{padding:8px 10px;}.open-widget-a12:after{content:'';display:block;visibility:hidden;height:0;clear:both;}.open-widget-a12 a:link,.open-widget-a12 a:visited{text-decoration:none;}.open-widget-a12 a:hover,.open-widget-a12 a:hover{text-decoration:underline;}.open-widget-a12 p{color:#666;line-height:22px;}.open-widget-a12 p strong{color:#000;}.open-widget-a12 p span{padding-left:8px;}.open-widget-a12 p em{padding-left:6px;}.open-widget-a12 .relative{position:relative;zoom:1;}.open-widget-a12 p .more-friend{position:absolute;right:0;}.open-widget-a13{padding:10px 10px 6px 10px;}.open-widget-a13:after{content:'';display:block;visibility:hidden;height:0;clear:both;}.open-widget-a13 table{width:100%;}.open-widget-a13 .col-l{width:136px;}.open-widget-a13 .col-l div{width:100%;height:110px;overflow:hidden;background:transparent url("http://img.china.alibaba.com/images/app/search/openwidget/line.gif") no-repeat right 26px;}.open-widget-a13 .col-l a{display:block;border:1px solid #ccc;padding:1px;height:105px;width:105px;overflow:hidden;}.open-widget-a13 .col-m{width:360px;vertical-align:top;}.open-widget-a13 .col-m .load-wrap{width:100%;height:114px;overflow:hidden;background:transparent url("http://img.china.alibaba.com/images/app/search/openwidget/line.gif") no-repeat right 26px;}.open-widget-a13 .col-m .preferential{width:312px;height:76px;overflow:hidden;margin:0 22px;}.open-widget-a13 .load-btn{clear:both;margin-top:6px;}.open-widget-a13 .load-btn:after{content:'';clear:both;height:0;display:block;overflow:hidden;}.open-widget-a13 .load-btn a{float:left;display:block;_display:inline;margin-left:32px;}.open-widget-a13 .col-r{width:243px;vertical-align:top;}.open-widget-a13 .col-r dl{margin-left:30px;}.open-widget-a13 .col-r dt{font-weight:bold;margin-bottom:2px;line-height:14px;}.open-widget-a13 .col-r dd{line-height:20px;background:transparent url("http://img.china.alibaba.com/images/app/search/openwidget/widget-aliloan.gif") no-repeat 0 -32px;*background-position:0 -34px;_background-position:0 -32px;padding-left:10px;font-family:'\5b8b\4f53';}.open-widget-a13 .tb-02 .col-l{width:143px;}.open-widget-a13 .tb-02 .col-l a{border:0;padding:0;width:100%;height:100%;}.open-widget-a13 .tb-02 .col-m{width:416px;}.open-widget-a13 .tb-02 .col-m ul{width:100%;overflow:hidden;}.open-widget-a13 .tb-02 .col-m li{float:left;width:104px;text-align:center;}.open-widget-a13 .tb-02 .col-r{width:auto;}.open-widget-a13 .tb-03 .col-l{width:140px;}.open-widget-a13 .tb-03 .col-l a{border:0;width:auto;}.open-widget-a13 .tb-03 .col-l div{background:none;height:100px;}.open-widget-a13 .tb-03 .col-m .load-wrap{height:auto;}.open-widget-a13 .tb-03 .col-m dl{line-height:1.5em;}.open-widget-a13 .tb-03 .col-m dt{padding:4px 0;color:#333;font-size:14px;font-weight:bold;}.open-widget-a13 .tb-03 .col-m .w-footer{margin-top:10px;}.open-widget-a13 .tb-03 .w-button{margin-right:12px;color:#333;text-decoration:none;}.open-widget-a13 .tb-03 .w-button:hover{color:#8e4900;text-decoration:none;}.open-widget-a13 .tb-03 .w-button,.open-widget-a13 .tb-03 .w-button span{display:inline-block;background:url(http://img.china.alibaba.com/cms/upload/2011/947/260/62749_646277519.png);}.open-widget-a13 .tb-03 .w-button{padding-right:27px;background-position:right 0;}.open-widget-a13 .tb-03 .w-button span{height:22px;padding-left:27px;background-position:0 0;line-height:21px;cursor:pointer;}.open-widget-a14{margin:8px 0;}.open-widget-a14 a{color:#1F61C0;}.open-widget-a14 a:hover{color:#FF7300;}.open-widget-a14 h3{text-indent:8px;font-size:12px;font-weight:bold;line-height:30px;background-position:0 -310px;width:160px;}.open-widget-a14 .hd-tab{overflow:hidden;}.open-widget-a14 .hd-tab li{float:left;width:79px;text-align:center;line-height:24px;border-bottom:1px solid #dcdcdc;background-position:0 -239px;cursor:pointer;}.open-widget-a14 .hd-tab .tb1{width:78px;border-right:1px solid #dcdcdc;}.open-widget-a14 .wrap-data{border:1px solid #dcdcdc;}.open-widget-a14 .data-box1,.open-widget-a14 .data-box2{display:none;padding:0 6px;background:url(http://img.china.alibaba.com/images/alisearch/numberbg.gif) no-repeat 6px -26px;}.open-widget-a14 .wrap-data td{border-bottom:1px dashed #dcdcdc;line-height:25px;}.open-widget-a14 .wrap-data .num-top{width:15px;width:14px\0;color:#FFF;text-align:center;font-family:Verdana;font-weight:bold;font-size:9px;-webkit-text-size-adjust:none;}.open-widget-a14 .wrap-data .title1{padding-left:4px;width:100px;}.open-widget-a14 .wrap-data .title2{padding-left:4px;width:90px;}.open-widget-a14 .wrap-data .num-info1{width:30px;color:#ff841f;background-position:22px -1252px;}.open-widget-a14 .wrap-data .num-info2{width:46px;color:#666;}.open-widget-a14 .ft-more{text-align:right;line-height:22px;padding-right:8px;}.open-widget-a14 .focus1 .tb1,.open-widget-a14 .focus2 .tb2{background:#FFF;border-bottom:1px solid #FFF;}.open-widget-a14 .focus1 .data-box1,.open-widget-a14 .focus2 .data-box2{display:block;}.open-widget-a14 .on{background:#fff7eb;}.open-widget-a14 .on .num-top{background:#fff7eb url(http://img.china.alibaba.com/images/alisearch/numberbg.gif) no-repeat 0 -26px;*zoom:1;}.open-widget-a14 .on .num-info1{background-color:#fff7eb;}.md-openwidget .open-widget-a15{*zoom:1;padding:8px;line-height:1.8;}.open-widget-a15:after{content:'';display:block;visibility:hidden;height:0;clear:both;}.open-widget-a15 strong{color:#000;}.open-widget-a15 em{color:red;font-weight:bold;}.open-widget-a15 .keyword{color:red;font-weight:normal;}.open-widget-a15 .lt{float:left;padding-right:14px;}.open-widget-a15 .rt{float:left;}.open-widget-a15 .rt .top{color:#333;padding-right:60px;position:relative;width:552px;}.open-widget-a15 .rt .top .help-btn{cursor:pointer;position:absolute;right:0;top:2px;background:url(http://img.china.alibaba.com/cms/upload/2010/734/500/5437_110323176.png) no-repeat 0 0;padding-left:20px;}.open-widget-a15 .rt .top .help-box{display:none;position:absolute;top:-16px;right:54px;border:1px solid #000;background:#fdfdd9;border:1px solid #cbae86;padding:8px;}.open-widget-a15 .rt .top .help-box i{position:absolute;top:18px;right:-12px;width:12px;height:22px;background:url(http://img.china.alibaba.com/cms/upload/2010/834/500/5438_110323176.png) no-repeat 0 0;}.open-widget-a15 .rt .content{color:#666;margin-bottom:5px;height:43px;}.open-widget-a15 .rt .bottom{color:#333;}.open-widget-a15 .rt .content li{padding-left:12px;background:url(http://img.china.alibaba.com/cms/upload/2010/624/500/5426_110323176.png) no-repeat 2px 10px;}.open-widget-a15 .content strong{color:#666;}.open-widget-a15 .rt .bottom a{margin:0 24px;}.lt-tips{z-index:2!important;}#selloffer-area{position:relative;*zoom:1;width:100px;*z-index:99;margin:0 auto;}#selloffer-area .wgt-areabtn{color:#333!important;text-decoration:none;margin-top:6px;_margin-top:0;border:1px solid #BDBDBD;background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110221/btn.png);background-position:right -198px;overflow:hidden;padding:0 17px 0 5px;dis_white-space:nowrap;line-height:19px;display:block;margin-right:1px;height:19px;}.wgt-areabox{display:none;position:absolute;left:0;top:21px;*top:27px;_top:21px;width:446px;padding:3px;padding-top:2px;line-height:22px;z-index:88;}.wgt-areabg{position:absolute;left:0;top:0;width:100%;_padding:3px;height:100%;*height:265px;background:#000;filter:alpha(opacity=30);opacity:.3;}.wgt-areabody{border:1px solid #7a7a7a;background:#fff;position:relative;z-index:2;*zoom:1;padding:0 4px;}.wgt-areabox a,.wgt-areabox a:link,.wgt-areabox a:visited{display:block;width:54px;padding-left:8px;color:#333;}.wgt-areabox .focus,.wgt-areabox a:hover{background-color:#f77400;color:#fff;}.wgt-areabox .focus{color:#fff!important;background-color:#f77400!important;background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110221/btn.png);background-position:48px -311px!important;}.wgt-areabox li{line-height:22px!important;}.wgt-areabox .ab-all,.wgt-areabox .ab-area,.wgt-areabox .ab-prov{padding:6px 0 6px 2px;}.wgt-areabox .ab-all{border-bottom:1px dashed #ddd;position:relative;*zoom:1;}.wgt-areabox .ab-all a{padding-left:8px;}.wgt-areabox .ab-all a.close{display:none;position:absolute;top:8px;right:5px;padding:0;width:16px;height:16px;background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110221/btn.png);background-position:0 -1420px;}.wgt-areabox .ab-all a.close:hover{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110221/btn.png);background-position:0 -1440px;}.wgt-areabox .ab-area{overflow:hidden;border-bottom:1px dashed #ddd;*zoom:1;}.wgt-areabox .ab-area li{float:left;width:60px;line-height:20px;margin-right:24px;padding:1px 0;_display:inline;}.wgt-areabox .ab-prov,.wgt-areabox .ab-prov .items{*zoom:1;}.wgt-areabox .ab-prov:after,.wgt-areabox .ab-prov .items:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.wgt-areabox .ab-prov .item{position:relative;float:left;margin-right:24px;width:60px;padding:2px 0;_display:inline;}.wgt-areabox .ab-prov .item a{color:#333;background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110221/icon.png);background-position:48px -1391px;}.wgt-areabox .ab-prov .item a:hover,.wgt-areabox .ab-prov .show a{color:#fff;background-color:#f77400;background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110221/icon.png);background-position:48px -1371px;}.wgt-areabox .ab-prov .items{display:none;width:222px;position:absolute;left:52px;top:14px;background:#f8f8f8;border:1px solid #a4a4a4;padding:6px;}.wgt-areabox .ab-prov .items li{float:left;width:74px;overflow:hidden;}.wgt-areabox .ab-prov .item .items a{background:#f8f8f8;color:#333;width:74px;overflow:hidden;height:22px;}.wgt-areabox .ab-prov .item .items a:hover{background:#f77400;color:#fff;}.wgt-areabox .ab-prov .show{z-index:99;}.wgt-areabox .ab-prov .show .items{display:block;}.wgt-areabox .ab-prov .items li{padding:2px 0;}.widget-filt{background-position:0 -134px;width:776px;color:#333;clear:both;}.widget-filt-expand{background-position:0 -34px;}.filt-bottom-widget{height:64px;clear:both;width:776px;overflow:hidden;}.filt-bottom-widget .widget-hd{background:url("http://img.china.alibaba.com/images/cn/search/list/moon.gif") no-repeat scroll -190px -80px transparent;height:22px;line-height:20px;padding-left:16px;}.filt-bottom-widget .widget-hd h4{font-size:14px;font-weight:bold;}.widget-filt:after,.widget-filt-wrap:after,.filt-bottom-widget:after{content:'';clear:both;display:block;overflow:hidden;}.widget-filt legend,.filt-bottom-widget legend{display:none;}.widget-filt .hidden,.filt-bottom-widget .hidden{display:none;}.widget-filt .basic label,.widget-filt .advanced label,.filt-bottom-widget label{float:left;line-height:21px;padding-right:5px;}.widget-filt .basic input,.widget-filt .advanced input,.filt-bottom-widget input{border:1px solid #a9a9a9;float:left;height:19px;padding:0 2px;line-height:19px;vertical-align:middle;font-size:12px;}.widget-filt .basic{width:776px;clear:both;}.widget-filt .basic ul,.filt-bottom-widget ul{width:776px;float:left;padding:8px 0;height:20px;}.widget-filt-expand .basic ul{_padding-bottom:4px;}.widget-filt li,.filt-bottom-widget li{float:left;}.widget-filt .filt-price{padding-left:8px;}.filt-bottom-widget .filt-price{margin-left:14px;_display:inline;}.filt-bottom-widget .filt-result-keywords{margin-left:10px;_display:inline;}.widget-filt .filt-price span,.widget-filt .filt-quantity-begin span,.filt-bottom-widget span,.filt-bottom-widget span{float:left;line-height:21px;padding:0 4px;}.widget-filt .filt-quantity-begin input,.widget-filt .filt-price input,.filt-bottom-widget .filt-quantity-begin input,.filt-bottom-widget .filt-price input{width:48px;}.widget-filt .filt-quantity-begin,.filt-bottom-widget .filt-quantity-begin{margin-left:13px;_display:inline;}.widget-filt .basic .filt-btn{float:right;margin-right:20px;_margin-right:10px;}.filt-bottom-widget .filt-btn{float:left;margin-left:14px;position:relative;margin-top:-1px;}.widget-filt .filt-btn button,.filt-bottom-widget button{height:23px;line-height:23px;white-space:nowrap;color:#333;width:64px;background-position:0 -40px;border:medium none;cursor:pointer;margin-top:0;vertical-align:middle;}.widget-filt .filt-btn button.highlight,.filt-bottom-widget button.highlight{color:#a34f0f;background-position:0 -70px;}.widget-filt .basic .filt-toggle{background-position:right -780px;width:80px;float:right;height:16px;margin-right:18px;margin-top:2px;padding-top:2px;}.widget-filt .basic .filt-toggle a{display:block;height:18px;width:60px;color:#333;text-decoration:none;line-height:17px;outline:medium none;text-align:right;}.widget-filt .filt-toggle span{display:block;background-position:right -760px;padding-right:10px;}.widget-filt .advanced{width:776px;clear:both;padding:0 0 8px 0;height:20px;display:none;}.widget-filt .advanced:after{content:'';height:0;clear:both;overflow:hidden;}.widget-filt .filt-result-keywords{padding-left:8px;}.widget-filt .filt-result-keywords input{width:105px;}.filt-bottom-widget .filt-result-keywords input{width:105px;}.widget-filt .filt-exclude{padding-left:14px;}.filt-bottom-widget .filt-exclude{margin-left:14px;}.widget-filt .filt-exclude input,.filt-bottom-widget .filt-exclude input{width:84px;}.widget-filt .filt-result-keywords .text,.widget-filt .filt-exclude .text,.filt-bottom-widget .filt-result-keywords .text,.filt-bottom-widget .filt-exclude .text{color:#b4b3b3;}.widget-filt .filt-result-keywords .blur,.widget-filt .filt-exclude .blur,.filt-bottom-widget .filt-result-keywords .blur,.filt-bottom-widget .filt-exclude .blur{color:#333;}.widget-filt .filt-type,.widget-filt .filt-time{position:relative;z-index:100;margin-left:14px;}.widget-filt .select-item{height:19px;border:1px solid #bdbdbd;cursor:pointer;float:left;display:block;background-color:#fff;}.widget-filt .filt-item-list{position:absolute;top:20px;left:0;border:1px solid #FFC57C;display:none;background-color:#FFF;}.widget-filt .filt-item-list li{height:23px;line-height:23px;overflow:hidden;padding-left:6px;border-bottom:1px solid #FFEBD8;display:block;float:none;float:left;clear:both;}.widget-filt .filt-item-list li a{display:block;color:#333;}.widget-filt .filt-item-list li a:hover{background-color:#f4f4f4;text-decoration:none;color:#333;}.widget-filt .filt-item-list li.selected a{background-color:#f4f4f4!important;cursor:default;}.widget-filt .hover-memu .filt-item-list{display:block;}.widget-filt .select-item span{background-position:right -198px;overflow:hidden;padding:0 17px 0 5px;white-space:nowrap;line-height:19px;display:block;margin-right:1px;height:19px;}.widget-filt .hover-memu .select-item span{background-position:right -198px;}.widget-filt .filt-type li{width:101px;}.widget-filt .filt-time li{width:101px;}.widget-filt .filt-type .select-item span{width:84px;}.widget-filt .filt-time .select-item span{width:84px;}.widget-filt-expand .filt-toggle span{background-position:right -740px;}.widget-filt-expand .advanced{display:block;}.filt-toolbar{width:776px;height:35px;clear:both;background-position:0 -98px;}.filt-toolbar-scroll{background-position:0 -98px;z-index:999;}.filt-toolbar .toolbar-items{width:776px;float:left;}.filt-toolbar li{float:left;line-height:35px;}.filt-toolbar .mode{margin-left:2px;height:25px;padding-top:10px;width:70px;}.filt-toolbar .hidemode{visibility:hidden;}.filt-toolbar .mode span{float:left;width:16px;height:16px;text-indent:-9999px;overflow:hidden;margin-left:6px;display:inline-block;}.filt-toolbar .mode span.select-noimg{background-position:-184px -420px;}.filt-toolbar .mode span.select-img{background-position:-85px -420px;}.filt-toolbar .mode span.select-window{background-position:0 -420px;}.filt-toolbar .mode a{float:left;width:16px;height:16px;overflow:hidden;cursor:pointer;margin-left:6px;}.filt-toolbar .mode a.select-img{background-position:0 -520px;}.filt-toolbar .mode a.select-img:hover,.filt-toolbar .mode a.selected-img{background-position:0 -580px;}.filt-toolbar .mode a.select-noimg{background-position:0 -500px;}.filt-toolbar .mode a.select-noimg:hover,.filt-toolbar .mode a.selected-noimg{background-position:0 -560px;}.filt-toolbar .mode a.select-window{background-position:0 -540px;}.filt-toolbar .mode a.select-window:hover,.filt-toolbar .mode a.selected-window{background-position:0 -600px;}.filt-toolbar .mode a span{display:none;}.filt-toolbar .area{margin-left:6px;line-height:32px;_margin-top:6px;width:167px;}.filt-toolbar .area{position:relative;z-index:99;}.filt-toolbar .area .newtips{position:absolute;width:12px;height:12px;left:36px;top:-6px;_top:-12px;z-index:9999;background:url(http://img.china.alibaba.com/cms/upload/2010/583/600/6385_110323176.png);}.filt-toolbar .area .select-province{width:80px;vertical-align:middle;display:inline;}.filt-toolbar .area .select-city{width:80px;margin-left:3px;vertical-align:middle;display:inline;}.filt-toolbar select{padding:0;}.filt-toolbar .biztype,.filt-toolbar .order{position:relative;margin-left:10px;z-index:99;}.filt-toolbar .price-order{margin-left:6px;}.filt-toolbar .biztype .select-item,.filt-toolbar .order .select-item{margin-top:6px;}.filt-toolbar .biztype .select-item span{width:84px;}.filt-toolbar .order .select-item span{width:94px;}.filt-toolbar .biztype .filt-item-list,.filt-toolbar .order .filt-item-list{top:26px;}.filt-toolbar .biztype li{width:101px;}.filt-toolbar .order li{padding-left:4px;width:113px;}.filt-toolbar .order em{display:block;}.filt-toolbar .order li a,.filt-toolbar .order em{padding-left:22px;}.filt-toolbar .order li a.by-price-asc{background-position:0 -615px;}.filt-toolbar .order .by-price-asc em{background-position:0 -616px;}.filt-toolbar .order li a.by-price-desc{background-position:0 -635px;}.filt-toolbar .order .by-price-desc em{background-position:0 -636px;}.filt-toolbar .order li a.by-tp-desc{background-position:0 -655px;}.filt-toolbar .order .by-tp-desc em{background-position:0 -657px;}.filt-toolbar .order li a.by-default{background-position:-100px 0;}.filt-toolbar .order .by-default em{background-position:-100px 0;padding-left:6px;}.filt-toolbar .price-order a,.filt-toolbar .price-order a:link,.filt-toolbar .price-order a:visited{display:block;text-decoration:none;white-space:nowrap;width:43px;height:19px;overflow:hidden;margin-top:7px;background-position:0 -680px;}.filt-toolbar .price-order a:hover,.filt-toolbar .price-order a.price-asc{background-position:0 -700px;}.filt-toolbar .price-order a.price-desc{background-position:0 -720px;}.filt-toolbar .price-order a.price-disable{cursor:default;background-position:0 -820px;}.filt-toolbar .price-order a span{display:none;}.filt-toolbar .check-box input{vertical-align:middle;margin-top:1px;line-height:100%;margin-top:-2px;}.filt-toolbar .check-box label{white-space:nowrap;margin-left:4px;*margin-left:2px;padding-right:0;cursor:pointer;}.filt-toolbar .check-box{padding-top:7px;margin-left:12px;*margin-left:6px;line-height:20px;*display:inline;}.filt-toolbar .wangwang{margin-left:10px;*margin-left:5px;}.filt-toolbar .wangwang label{background-position:0 -238px;display:inline-block;padding-left:20px;}#filter-pannel,#filter-pannel-wrap{width:776px;height:70px;z-index:99;}#main-filter{height:32px;background:#FFF0E1 url(http://img.china.alibaba.com/images/cn/search/list/search-repeat.gif) repeat-x 0 -78px;width:772px;z-index:99;border-top:1px solid #FFF1E6;border-left:1px solid #FFE5CE;border-right:1px solid #FFE5CE;padding:1px 1px 0 1px;+line-height:1.2;_line-height:1;}#main-filter .batch-trace,#main-filter .batch-trace-disable{height:29px;width:50px;border-right:1px solid #FCBE81;float:left;display:inline-block;padding-top:3px;}#main-filter .batch-trace a{display:block;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -81px -134px;padding-left:14px;padding-right:2px;}#main-filter .batch-trace-disable span{display:block;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 5px -373px;padding-left:14px;padding-right:2px;color:#ACA899;}#main-filter .list-style-select{width:76px;height:16px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 72px -44px;float:left;display:inline-block;margin-top:8px;margin-left:1px;}#main-filter .list-style-select a{float:left;width:16px;height:16px;text-indent:-9999px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 0;overflow:hidden;cursor:pointer;margin-left:6px;}#main-filter .list-style-select span{float:left;width:16px;height:16px;text-indent:-9999px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 0;overflow:hidden;margin-left:6px;display:inline-block;}#main-filter .list-style-select span.select-noimg{background-position:-184px -420px;}#main-filter .list-style-select span.select-img{background-position:-85px -420px;}#main-filter .list-style-select span.select-window{background-position:0 -420px;}#main-filter .list-style-select a.select-img{background-position:0 -50px;}#main-filter .list-style-select a.select-img:hover,#main-filter .list-style-select a.selected-img{background-position:-85px -50px;}#main-filter .list-style-select a.select-noimg{background-position:0 -20px;}#main-filter .list-style-select a.select-noimg:hover,#main-filter .list-style-select a.selected-noimg{background-position:-85px -20px;}#main-filter .list-style-select a.select-window{background-position:0 -80px;}#main-filter .list-style-select a.select-window:hover,#main-filter .list-style-select a.selected-window{background-position:-85px -80px;}#main-filter .province-city{width:176px;float:left;height:18px;margin-top:7px;position:relative;}#main-filter .province-city span{position:absolute;top:2px;right:0;height:16px;display:block;width:2px;font-size:0;overflow:hidden;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 0 -44px;}#main-filter .post-time,#main-filter .biztype-select{width:108px;float:left;height:18px;margin-top:7px;position:relative;}#main-filter .post-time span,#main-filter .biztype-select span{position:absolute;top:2px;right:0;height:16px;display:block;width:2px;font-size:0;overflow:hidden;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 0 -44px;}#main-filter .trust-type{width:124px;float:left;height:18px;margin-top:7px;position:relative;}#main-filter .price-trust-sort{width:43px;height:20px;float:left;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 -180px;margin-top:6px;line-height:20px;_line-height:16px;overflow:hidden;margin-right:24px;}#main-filter .price-sort-disbale{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 -459px;}#main-filter .pt-all-disable{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -115px -459px;}#main-filter .pt-price-disable{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -0px -459px;}#main-filter .pt-price-disable span.price-sort{height:18px;float:left;display:inline-block;width:32px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -159px -556px;padding-right:10px;padding-top:2px;color:#ACA899;}#main-filter .price-sort-disbale span.price-sort,#main-filter .pt-all-disable span.price-sort{height:18px;float:left;display:inline-block;width:32px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -159px -556px;padding-right:10px;padding-top:2px;color:#ACA899;}#main-filter .pt-all-disable span.trust-sort{width:40px;padding-top:2px;display:inline-block;height:18px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -162px -508px;text-indent:-9999px;overflow:hidden;}#main-filter .price-trust-sort a{height:18px;float:left;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 0;display:inline-block;cursor:pointer;text-decoration:none;}#main-filter .price-trust-sort a.price-sort,#main-filter .price-trust-sort a.price-selected{background-position:-159px -176px;padding-right:13px;padding-left:5px;padding-top:0;+padding-top:2px;color:#000;}#main-filter .price-trust-sort a.price-sort:hover,#main-filter .price-trust-sort a.price-selected{background-position:-159px -215px;color:#000;}#main-filter .price-trust-sort a.by-price-d,#main-filter .price-trust-sort a.by-price-ds{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat -71px -35px;padding-right:13px;padding-left:5px;padding-top:0;+padding-top:2px;color:#000;}#main-filter .price-trust-sort a.by-price-d:hover,#main-filter .price-trust-sort a.by-price-ds{background-position:-71px 3px;color:#000;}#main-filter .price-trust-sort a.trustnum-sort:focus,#main-filter .price-trust-sort a.trustnum-selected:focus{-moz-outline-style:none;}#main-filter .price-trust-sort a.trustnum-sort,#main-filter .price-trust-sort a.trustnum-selected{text-indent:-9999px;background-position:0 -261px;display:inline-block;width:40px;height:18px;margin-left:1px;margin-top:3px;}#main-filter .price-trust-sort a.trustnum-sort:hover,#main-filter .price-trust-sort a.trustnum-selected{background-position:-85px -261px;color:#000;}#main-filter .hasprice-sort{height:18px;width:60px;position:relative;float:left;margin-top:8px;*margin-top:4px;margin-left:0;text-align:left;}#main-filter .hasprice-label{cursor:pointer;position:absolute;top:0;*top:5px;left:17px;left:20px\9;}#main-filter .integrity-sort{height:16px;width:80px;position:relative;float:left;margin-top:8px;*margin-top:4px;text-align:left;}#main-filter .ww-online-select{width:70px;position:relative;float:left;margin-top:8px;*margin-top:4px;text-align:left;height:24px;*background-position:right -139px;}#main-filter .ww-online-select label{height:16px;display:block;cursor:pointer;position:absolute;top:-1px;*top:4px;left:17px;*left:20px;width:64px;text-indent:-9999px;background:transparent url(http://img.china.alibaba.com/images/app/search/v2.0/ww-online2.gif) no-repeat 0 0;}#main-filter #batch-space{width:20px;height:16px;float:left;}#sub-filter{height:36px;background-color:#FFF5EB;text-align:left;overflow:hidden;width:776px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-repeat.gif) repeat-x 0 -40px;}#main-filter .order{float:left;position:relative;height:18px;margin-top:7px;margin-right:8px;text-align:left;z-index:99;}#main-filter .order-t{float:left;padding-top:3px;padding-right:2px;padding-left:8px;}#main-filter .order-by,#main-filter .order-by-hover{height:20px;width:120px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 0 -80px;display:block;float:left;padding-left:4px;font-family:"����";line-height:20px;text-decoration:none;color:#000;}#main-filter .order-by span.select-price-asc,#main-filter .order-by span.select-price-desc,#main-filter .order-by span.select-tp-desc{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 0 0;padding-left:26px;}#main-filter .order-by span.select-price-asc{background-position:-177px -1px;}#main-filter .order-by span.select-price-desc{background-position:-177px -41px;}#main-filter .order-by span.select-tp-desc{background-position:0 -214px;height:14px;}#main-filter .order-by-list{height:98px;width:120px;border:1px solid #FFC57C;position:absolute;top:19px;left:0;display:none;z-index:99;background-color:#fff;}#main-filter .order-by-list li{height:24px;line-height:24px;font-family:"����";overflow:hidden;background:#fff url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 0 0;padding-left:30px;}#main-filter .order-by-list li a:link,#main-filter .order-by-list li a:visited{color:#000;text-decoration:none;}#main-filter .order-by-list li a:hover{color:#000;text-decoration:none;}#main-filter .order-by-list li.by-price-asc{background-position:-174px 4px;}#main-filter .order-by-list li.by-price-desc{background-position:-174px -36px;border-bottom:1px solid #FFEBD8;}#main-filter .order-by-list li.by-tp-desc{background-position:2px -206px;border-bottom:1px solid #FFEBD8;}#main-filter .order-by-list li.by-default{background:none;}#main-filter .order-by-list li.by-select,#main-filter .order-by-list li.by-hover{background-color:#F4F4F4;}#main-filter .order a:focus{outline-color:-moz-use-text-color;outline-style:none;outline-width:medium;}.window-wrap{padding-left:98px!important;}#sub-filter .infr-complaint{height:30px;width:137px;float:left;line-height:14px;}#sub-filter .infr-complaint a,#sub-filter .infr-complaint span{display:block;margin-left:19px;margin-right:2px;width:30px;height:28px;margin-top:2px;}#sub-filter .infr-complaint span{color:#ACA899;}#sub-filter .biztype-select{width:107px;height:16px;margin-top:6px;position:relative;float:left;}#sub-filter .biztype-select span{position:absolute;top:2px;right:0;height:16px;display:block;border-right:1px dotted #FCBE81;}#sub-filter .price-interval{width:186px;height:18px;position:relative;float:left;margin-top:10px;}#sub-filter .price-interval b{font-weight:normal;padding-left:6px;}#sub-filter .price-interval span{padding:0 4px;}#sub-filter .price-interval .split-line{position:absolute;top:0;right:0;height:18px;display:block;width:2px;font-size:0;overflow:hidden;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat -24px -40px;}#sub-filter .quantity-begin{width:142px;height:16px;margin-top:10px;float:left;}#sub-filter #sx_ctrl_btn{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat -1px -12px;border:0 none;height:20px;margin:0 0 2px 5px;text-indent:-9999px;float:left;width:38px;cursor:pointer;}#sub-filter .quantity-begin input{margin-right:2px;}#sub-filter .quantity-begin span{padding-left:8px;}#sub-filter .sub-btn{width:50px;height:20px;margin-top:10px;float:left;}#sub-filter .post-time{width:104px;float:right;height:18px;margin-top:10px;position:relative;}#sub-filter .trust-type{width:108px;float:right;height:18px;margin-top:10px;position:relative;}.space-cl{height:2px;font-size:0;overflow:hidden;}.list_cs_content .tag_words2{margin-left:12px;+margin-left:12px;_margin-left:6px;}#GuessYouLike{height:32px;text-align:left;line-height:32px;}#GuessYouLike .search-mi{float:left;}#GuessYouLike .search-mi em{color:red;font-weight:bold;}#GuessYouLike .search-mi span{padding:0 6px;color:#B2B2B2;}#GuessYouLike .search-mi a:link,#GuessYouLike .search-mi a:visited{color:#00349A;text-decoration:underline;}#GuessYouLike .search-mi a:hover{color:#e63312;text-decoration:underline;}#GuessYouLike .to-prom{float:right;line-height:32px;}#GuessYouLike .to-prom .alipay{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat scroll -154px -996px;float:right;height:26px;padding:0 0 0 32px;}#GuessYouLike .to-prom .tp{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/search-091127.gif) no-repeat 0 -252px;float:right;height:32px;padding:0 0 0 20px;margin-right:16px;}#ig-complaints{height:24px;width:776px;line-height:24px;padding-left:2px;font-size:14px;}.baike-model{height:64px;}.baike-model .baike-mh{height:20px;border-bottom:1px solid #F8CF8F;line-height:20px;}.baike-model .baike-mh h3{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat scroll -190px -80px;font-size:14px;font-weight:bold;padding-left:16px;}.baike-model .baike-mb{height:24px;line-height:24px;padding-top:4px;}.baike-model .baike-mb p{padding-left:16px;}.baike-model .baike-mb p em{color:red;font-weight:bold;}.baike-model .baike-mb p a:link,.baike-model .baike-mb p a:visited{color:#00349a;text-decoration:underline;}.baike-model .baike-mb p a:hover{color:#e63312;text-decoration:underline;}a.p4p-icon{background:transparent url(http://img.china.alibaba.com/images/cn/search/icon/wxb.gif) no-repeat 0 0;padding:0 18px 2px 18px;text-decoration:none!important;}.integrity-tips{width:774px;height:28px;border:1px solid #FFE5CE;background-color:#FAFAF2;margin-top:6px;color:#666;line-height:28px;+line-height:29px;overflow:hidden;display:none;}.integrity-tips .it-colse{display:block;width:12px;height:12px;float:right;margin:8px 6px 0 0;text-decoration:none!important;background:transparent url("http://img.china.alibaba.com/images/offer/common/x.png") no-repeat 2px 0;}.integrity-tips .it-colse span{display:none;}.integrity-tips h3{background:transparent url("http://img.china.alibaba.com/images/myalibaba/integrity/searchlist/mumbericon.gif") no-repeat -48px -354px;padding-left:30px;}.widget-trustcode{width:774px;height:28px;border:1px solid #FFE5CE;background-color:#FAFAF2;margin-top:6px;color:#666;line-height:28px;+line-height:29px;overflow:hidden;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin-bottom:4px;font-family:12px/1.5 "����",sans-serif;}.widget-trustcode a:link,.widget-trustcode a:visited{color:#4C71B8;}.widget-trustcode a:hover{color:#e63312;text-decoration:underline;}.widget-trustcode span{background:transparent url("http://img.china.alibaba.com/images/offer/common/icon.png") no-repeat 8px 0;+background-position:8px 2px;padding-left:26px;}.widget-trustcode b{font-weight:normal;margin:0 6px;color:#4C71B8;}.widget-trustcode em{color:#0C0;font-weight:bold;font-style:normal;}.widget-trustcode .wd-company{margin:0 6px;}.widget-trustcode .wd-enter{background:transparent url("http://img.china.alibaba.com/images/offer/common/icon.png") no-repeat 0 -24px;margin-left:20px;padding-left:6px;}.keywords-qrw{height:53px;line-height:53px;overflow:hidden;border:1px solid #ffdf9c;background-color:#ffffd9;margin-bottom:8px;padding-left:16px;font-weight:bold;color:#818181;font-size:14px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.keywords-qrw em{color:#fe5600;}#alitalk_group a,.list_more2{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat 0 0;}#right_1_title li.bg1{background-position:-100px -80px;width:66px;padding-left:6px;color:#001D4C;}#right_1_title li.bg2{background-position:-100px -120px;width:76px;padding-left:6px;color:#001D4C;}.right_border{border:1px solid #FA9150;}#right_1_title{background-position:0 -320px;margin-bottom:-1px;}#right_1{clear:right;width:160px;margin-bottom:7px;}#right_1_title{background-color:#fff;height:29px;width:160px;}#right_1_title ul{padding:0;}#right_1_title li{float:left;display:block;height:21px;font-size:14px;padding-top:8px;cursor:pointer;text-align:center;}#right_1_title li a{text-decoration:none;}#right_1_content{padding:7px 2px 4px 2px;border:1px solid #FECB96;text-align:left;height:132px;}#right_1_content li.reg{padding:7px 12px 0 0;}#right_1_content .but1{display:inline-block;background-position:-94px -160px;width:70px;height:25px;padding:6px 8px 6px 16px!important;padding:4px 0 0 16px;font-weight:bold;font-size:14px;}#right_1_content a.but1:link{text-decoration:none;color:#fff;}#right_1_content a.but1:visited{text-decoration:none;color:#fff;}#right_1_content a.but1:hover{text-decoration:none;color:#fff;}#platinaAdv0,#platinaAdv{width:160px;}#platinaAdv img{width:160px;}.look_abroad_info{width:160px;height:20px;overflow:hidden;line-height:20px;text-align:left;}.look_abroad_info .orange{color:#e63312;}.expo-hd{width:160px;height:29px;overflow:hidden;position:relative;background:transparent url("http://img.china.alibaba.com/news/upload/5000440/gold-header_1276427213281.gif") no-repeat 0 0;}.expo-hd .expo-login{display:block;position:absolute;width:28px;height:27px;text-decoration:none!important;color:#cf7000;text-align:right;top:2px;right:2px;padding-left:8px;white-space:nowrap;line-height:27px;}.expo-hd .expo-title{width:114px;height:29px;display:block;text-decoration:none!important;}.expo-hd .expo-title span{display:none;}#hjzwgg{width:100%;height:116px;background:url(http://img.china.alibaba.com/images/coop/080303hj/hjzw_bg.jpg) no-repeat;margin-bottom:11px;}#hjzwgg ul{text-align:left;padding-top:3px;margin-left:3px;}#hjzwgg li{margin:0;padding-top:3px;padding-left:7px;}#hjzwgg li.hjtitle{background:url(http://img.china.alibaba.com/images/coop/080303hj/hjzw_t_bg.gif) no-repeat;width:154px;height:28px;line-height:24px;text-align:center;font-weight:bold;padding-left:0;}#hjzwgg li.hjtitle a{color:#000;text-decoration:none;}#hjzwgg li.wz{color:#fff;}#hjzwgg li.wz a{color:#fff;text-decoration:none;}#hjzwgg li.link{background:url(http://img.china.alibaba.com/images/coop/080303hj/hjzw_h_bg.gif) no-repeat;width:77px!important;width:97px;height:18px;line-height:18px;margin-left:10px;margin-top:3px;padding-left:20px;list-style:none;}#hjzwgg_logined{border:1px solid #FFCE94;width:158px;height:24px;margin-top:8px;*margin-top:4px;overflow:hidden;}#hjzwgg_logined .gold-wrap{background-color:#FFE2CE;margin:1px;width:156px;height:22px;}#hjzwgg_logined a{color:#000;text-decoration:none;}#hjzwgg_logined .hjt{font-weight:bold;padding-left:6px;padding-top:5px;float:left;}#hjzwgg_logined .hjright{float:right;padding-left:13px;padding-right:4px;padding-top:5px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 -336px;}.gold_ad{margin:0;padding:0;}.gold_ad li{margin-top:8px;padding:0;height:200px;width:160px;overflow:hidden;}.gold_ad li img{height:200px;width:160px;}.golden_tg{margin-top:8px;}div.leftfun_box_wt_bg{width:158px;background:#fff;text-align:left;margin-bottom:0;margin-top:0;overflow:hidden;}div.leftfun_box_wt_bg a:link,div.leftfun_box_wt_bg a:visited{color:#001d4c;text-decoration:none;}div.leftfun_box_wt_bg a:hover{color:#e63312;text-decoration:underline;}div.leftfun_box{width:160px;background:#fff;text-align:left;margin-bottom:7px;margin-top:0!important;margin-top:-10px;}div.leftfun_box_wt_bg ul.comp{margin:7px 7px 12px 7px;border-bottom:1px dotted #B8BAAC;padding-bottom:12px;line-height:150%;}div.leftfun_box_wt_bg ul.online{margin:0 0 7px 7px;line-height:150%;}div.leftfun_box_wt_bg ul.online li{margin:7px 0 0 0;}div.leftfun_box_wt_bg ul.hot_keywords{margin:7px;line-height:150%;}div.leftfun_box_wt_bg ul.hot_keywords li{float:left;margin:0 7px 0 3px;white-space:nowrap;}div.leftfun_box_wt_bg ul.no_border{border-bottom:0;}div.leftfun_box_org_bg{width:158px;background:#FDF3E9;border:1px solid #FECB96;}#side-guide{_zoom:1;border:1px solid #FFCE94;margin-top:8px;position:relative;}#side-guide .hd{width:160px;height:3px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat 0 0;position:absolute;top:-1px;left:-1px;}#side-guide .bd{padding-top:-6px;}#side-guide:after{content:"";display:block;height:0;clear:both;visibility:hidden;}div.orangeproduct{width:146px;color:#000;font-size:13px;font-weight:bold;height:18px;border-bottom:1px solid #FEE3D0;margin:3px auto;padding-top:8px;padding-left:4px;}div.t-first{padding-top:4px;}div.grayproduct{width:135px;margin:6px;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/list_left_fun_title_bg.gif) no-repeat 0 0;padding:7px;color:#FE7000;font-size:14px;font-weight:bold;height:26px;}div.kind h1{margin:3px 4px;text-align:left;font-size:14px;font-weight:bold;padding:0 2px;}div.kind h2{margin:5px 4px;text-align:left;font-size:12px;font-weight:normal;padding:0 2px;}div.kind h3{margin:3px 4px;text-align:left;font-size:12px;font-weight:normal;line-height:110%;padding:1px 2px;}div.kind h2 w{margin:5px 4px;text-align:left;font-size:12px;font-weight:normal;}ul.keywords{display:block;margin:0;padding:0;list-style:none;text-align:left;padding-left:3px;}ul.keywords li{float:left;margin:0 5px;margin-bottom:8px;white-space:nowrap;}.left_fun_ads{float:left;width:160px;padding-top:0;}.left_fun_ads_max{float:left;width:160px;height:auto!important;height:3050px;max-height:3050px;overflow:hidden;}.left_fun_ads_max ul{float:left;}.left_fun_ads_max ul li{float:left;padding-bottom:14px;width:160px;overflow:hidden;}#alitalk_group a{background-position:-160px -760px;padding-left:18px;display:inline-block;}a.list_more1{display:inline-block;padding-left:3px;text-decoration:underline!important;}.list_more2{background-position:-160px -278px;padding-left:9px;padding-right:4px;display:block;padding-top:2px;}#alitalk_group{width:136px;*width:154px;text-align:left;*margin-left:-20px;}.alitalk-more{float:left;padding-left:12px;height:20px;line-height:20px;}.alitalk-more a{text-decoration:underline!important;}.mdt_8{margin-top:8px;}.outAdArea{margin:0;width:160px;padding-bottom:2px;*padding-bottom:2px!important;*padding-bottom:6px;margin-top:6px;*margin-top:0!important;*margin-top:-10px;}.outOneAd{padding:7px 0 0 0;}.outDefault{padding:8px 0 0 0;*padding-top:4px;height:354px;+height:354px;_height:357px;}.ad_abroad{width:160px;height:86px;margin-top:4px;_margin-top:1px;overflow:hidden;}.ad_abroa img{width:160px;height:86px;overflow:hidden;}a.list_rss{display:block;margin-top:2px;width:30px;height:14px;background-position:-100px 0;text-decoration:none;}#htgmbuyer .mbimage img{width:138px;height:56px;margin-bottom:7px;margin-left:4px;}.leftfun_box_wt_bg .corp_debt{clear:both;border-bottom-width:1px;border-bottom-style:dashed;border-bottom-color:#CCC;margin:0 4px;color:#001D4C;}.corp_notice{padding:6px 6px 0 6px;line-height:16px;}div.mg_h{margin-bottom:2px;}.leftfun_box_wt_bg .corp_debt .detail_link{color:black;margin-left:0;}#SubContainer .leftfun_box_wt_bg .corp_notice{line-height:120%;padding-top:5px;margin:0 10px;color:#FE7000;}.sider-view-more{height:20px;text-align:left;clear:both;padding-left:8px;_padding-left:10px;}.recentbrowse{_zoom:1;border:1px solid #FFCE94;margin-top:8px;position:relative;margin-bottom:4px;}* html .recentbrowse{margin-bottom:12px;}.recentbrowse.hide{display:none;}.recentbrowse .hd{width:160px;height:3px;background-position:0 -350px;position:absolute;top:-1px;left:-1px;overflow:hidden;}.recentbrowse .bd{padding-top:-6px;}.recentbrowse:after{content:"";display:block;height:0;clear:both;visibility:hidden;}.recentbrowse .noware{margin:28px 0;text-align:center;}.recentbrowse .wares{padding-bottom:12px;overflow:hidden;}.recentbrowse .wares .pair{border-bottom:1px dashed #e5e5e5;margin-top:12px;padding-bottom:12px;}.recentbrowse .wares .pair.last{border-bottom:none;padding-bottom:0;}.recentbrowse .wares .pair.first{margin-top:0;}.recentbrowse .hide{display:none;}.recentbrowse .item{width:64px;overflow:hidden;float:left;color:#666;padding-left:12px;}.recentbrowse .item .pic{width:56px;height:56px;text-align:center;}.recentbrowse .item .pic.nopic{width:54px;height:54px;border:1px solid #eaeaea;background:url(http://img.china.alibaba.com/images/cn/search/list/nopic.png) no-repeat 0 0;cursor:pointer;}.recentbrowse .item .title{margin-top:8px;white-space:normal;word-break:break-all;overflow:hidden;text-align:center;line-height:16px;}.recentbrowse .item .title a{display:block;height:32px;}.recentbrowse .item .price{margin-top:8px;text-align:center;}.recentbrowse .item .price .or{color:#ff7400;}.recentbrowse .item img{width:54px;height:54px;}.recentbrowse .clearrb{text-align:center;padding-top:8px;}.clr{zoom:1;}.clr:after{content:"\0020";display:block;height:0;clear:both;}.search-seo{margin-top:8px;_margin-bottom:6px;}.search-seo-1{text-align:center;}.search-seo-1 a,.search-seo-1 a:link,.search-seo-1 a:hover,.search-seo-1 a:visited,.search-seo-1 a:active{color:#999;text-decoration:none;}.search-seo-2{text-align:left;height:20px;line-height:20px;word-break:break-all;overflow:hidden;color:#ccc;}.detail_link{padding-top:2px;height:24px;line-height:20px;text-align:right;clear:both;padding-right:6px;}.hbz_adbox .cert,.hbz_adbox .cert_ico,.hbz_adbox .video_ico,.hbz_adbox .bao_ico,.hbz_adbox .brand_ico,.hbz_adbox .cxt_ico,.hbz_adbox .join_ico{background:url(http://img.china.alibaba.com/cms/upload/2011/331/430/34133_1762579351.png) no-repeat transparent;}.hbz_adbox .bz_ar{text-align:right;padding-right:5px;}.hbz_adbox{border:1px solid #FFCE94;width:158px;overflow:hidden;margin:8px 0 3px 0;padding-bottom:3px;text-align:center;}.hbz_adbox .scrollBox{width:158px;overflow:hidden;}.hbz_adbox .scrollMain{width:316px;}.hbz_adbox .img img{width:158px;height:189px;}.hbz_adbox ul,.hz_adbox li{list-style-type:none;padding:0;margin:0;}.hbz_adbox li{float:left;width:158px;text-align:center;}.hbz_adbox .text li{color:#5B5B5B;height:18px;line-height:16px;}.hbz_adbox .comName{line-height:16px;padding:0 7px;vertical-align:middle;}.hbz_adbox .comName a{color:#00349A;}.hbz_adbox .b{font-weight:bold;}.hbz_adbox .cert{padding:15px;_padding-bottom:9px;font-family:'����';height:84px;background-position:0 -110px;display:none;text-align:left;}.hbz_adbox .cert p{padding:0;margin:0;color:#a4862f;width:130px;height:18px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;}.hbz_adbox .cert a{color:#00349A;text-decoration:none;}.hbz_adbox .cert a:hover{color:#ff7300;text-decoration:underline;}.hbz_adbox .cert,.hbz_adbox .cert p{line-height:18px;}.hbz_adbox .cert .tl{color:#693e10;}.hbz_adbox .cert .more{text-align:right;}.hbz_adbox .bzBox{float:none;}.hbz_adbox .bzBox,.hbz_adbox .bzBox div{width:158px;}.hbz_adbox .likeWhite{text-align:right;padding-right:5px;width:153px;line-height:22px;}.left_fun_ads .falshClick{width:158px;height:200px;position:absolute;background-color:#000;z-index:2;filter:alpha(opacity=0);opacity:0;}.hbz_adbox .comInfo{line-height:19px;padding:0;}.hbz_adbox a.noStyle,.hbz_adbox a.noStyle:hover{color:#000;text-decoration:none;cursor:default;}.hbz_adbox .cert_ico,.hbz_adbox .video_ico,.hbz_adbox .bao_ico,.hbz_adbox .brand_ico,.hbz_adbox .cxt_ico,.hbz_adbox .join_ico{display:inline-block;height:19px;text-decoration:none;}.hbz_adbox .cert_ico:hover,.hbz_adbox .video_ico:hover,.hbz_adbox .bao_ico:hover,.hbz_adbox .brand_ico:hover,.hbz_adbox .cxt_ico:hover{text-decoration:none;}.hbz_adbox .cert_ico,.hbz_adbox .cert_ico_on{width:20px;background-position:2px -82px;}.hbz_adbox .cert_ico_on{background-position:-137px -82px;}.hbz_adbox .video_ico{width:20px;background-position:0 -19px;}.hbz_adbox .bao_ico{width:22px;background-position:3px 2px;}.hbz_adbox .brand_ico{width:71px;background-position:0 -39px;}.hbz_adbox .cxt_ico{background-position:0 -231px;padding-left:40px;}.hbz_adbox .join_ico{background-position:0 -59px;padding-left:80px;}.hbz_adbox a.phone{color:#5a5a5a;}.hbz_adbox a.lines,.hbz_adbox a.companyName,.hbz_adbox a.cxt_ico{color:#00349A;}.hbz_adbox a.lines:hover,.hbz_adbox a.companyName:hover,.hbz_adbox a.cxt_ico:hover{color:#ff7300;}.bz_box .scrollMain{width:158px;}.bz_box *,.bz_box li{text-align:center;}.bz_box .text li{padding-right:0;}.bz_box .cert p,.bz_box .cert{text-align:left;}.left_fun_ads a.companyName{color:#00349A;}.left_fun_ads a.companyName:hover{color:#ff7300;text-decoration:underline;}.expo-hd a:link,.expo-hd a:visited{color:#ff7300;}.pagination{font-family:Tahoma;font-size:12px;height:32px;text-align:left;padding-top:12px;padding-bottom:8px;overflow:hidden;}.pagination .page-bottom{float:right;}.pagination a,.pagination a:link,.pagination a:visited,.pagination .page-prev,.pagination .page-cur,.pagination .page-start,.pagination .page-end,.pagination .page-next,.pagination .page-break{float:left;font-family:Arial,Helvetica,sans-serif;height:24px;line-height:24px;margin:0 4px 0 0;text-align:center;vertical-align:middle;white-space:nowrap;font-size:14px;}.pagination .page-start{background-position:9px -1073px;width:24px;border:1px solid #c4c4c4;font-size:12px;}.pagination .page-start span,.pagination .page-prev span{display:none;}.pagination .page-cur{background-color:#ffede1;border:1px solid #ff7300;color:#ff7300;font-weight:700;padding:0 8px;font-size:12px;}.pagination a,.pagination .page-next{border:1px solid #c4c4c4;padding:0 8px;font-size:12px;font-family:"\5b8b\4f53";}.pagination a:hover{border:1px solid #ff7300;text-decoration:none;}.pagination .page-break{padding:0 3px;color:#666;font-size:12px;}.pagination .page-next{background-position:48px -1033px;padding-right:16px;font-size:12px!important;}.pagination a.page-prev{background-position:6px -1013px;padding:0!important;width:20px;font-size:12px;}.pagination a.page-prev:hover{border:1px solid #ff7300;text-decoration:none;}.pagination .page-end{background-position:45px -1053px;border:1px solid #c4c4c4;padding:0 5px;padding-right:16px;color:#c4c4c4;font-size:12px;}.page-op{float:right;color:#666;}.page-op #jumpto{width:32px;text-align:center;border:1px solid #999;color:#000;font-family:Tahoma,SimSun,Arial;height:16px;margin:0 5px;text-align:center;vertical-align:middle;}.page-op #jump-sub{background-position:-25px -250px;border:0 none;height:25px;margin:0 0 2px 5px;text-indent:-9999px;width:67px;cursor:pointer;}.page-op .total-page{padding:0 3px;}.page-op .total-page b{font-weight:bold;}.popup-window{overflow:hidden;padding:8px;width:444px;height:352px;display:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.callme-mask{width:460px;height:368px;filter:alpha(opacity=35);-moz-opacity:.35;opacity:.35;background:#000;position:absolute;top:0;left:0;z-index:2;}.callme-mask-ifr{background:none repeat scroll 0 0 #000;left:0;position:absolute;top:0;width:460px;height:368px;z-index:-1;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}.popup-window-wrapper{z-index:10001;position:relative;height:350px;overflow:hidden;width:442px;border:1px solid #feba65;}.popup-window-wrapper:after{content:'';display:block;clear:both;height:0;overflow:hidden;}.popup-window .bd{background:none repeat scroll 0 0 #FFF;display:block;overflow:hidden;position:relative;z-index:2;}.popup-window .hd{position:relative;z-index:3;}.popup-window .hd a.close-btn:link,.popup-window .hd a.close-btn:visited{display:block;height:18px;width:18px;overflow:hidden;text-decoration:none;position:absolute;right:8px;top:7px;background:transparent url("http://img.china.alibaba.com/cms/upload/2010/450/100/1054_1301427272.gif") no-repeat 0 0;}.popup-window .hd a.close-btn:hover{background-position:0 -22px;}.callme-window .bd{height:351px;padding:0;width:444px;}.smart-queue s.sline,.smart-queue .etc-alipay{background:transparent url("http://img.china.alibaba.com/images/offer/search/base/kaitian/search-r.gif") no-repeat -9999px -9999px;}.offer-items{width:776px;position:relative;z-index:2;clear:both;margin-top:3px;overflow:hidden;}.offer-items:after{content:"";display:block;height:0;visibility:hidden;clear:both;}.smart-queue{margin-top:15px;margin-left:-18px;width:776px;display:inline-block;+display:inline;clear:both;float:left;position:relative;font:12px/1.5 Tahoma,Helvetica,Arial,"����",sans-serif;}.smart-queue a:link,.smart-queue a:visited{color:#00349a;}.smart-queue a:hover{color:#e63312;}.smart-queue:after{content:'';height:0;visibility:hidden;display:block;clear:both;}.smart-queue .line{width:796px;}.smart-queue s.sline{height:1px;width:776px;bottom:1px;left:0;margin-left:24px;position:absolute;background-position:0 -611px;background-repeat:repeat-x;font-size:0;overflow:hidden;}.smart-queue .item{float:left;height:300px;width:175px;display:inline-block;+display:inline;margin:0 2px 0 22px;position:relative;}.st-combined .smart-queue .item{height:335px;}.smart-queue .item .summary{margin-top:6px;width:175px;word-break:keep-all;+word-break:break-all;height:20px;overflow:hidden;}.smart-queue .item .summary a:visited{color:#6a00cb;}.smart-queue .item .summary a{text-decoration:underline;display:inline-block\9;width:155px\9;word-wrap:break-word\9;}.smart-queue .item .photo{border:1px solid #ddd;width:155px;height:155px;padding:8px;overflow:hidden;-moz-border-radius:2px;-khtml-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;}.smart-queue .photo .lock-layer{position:absolute;left:3px;top:3px;background:url(http://img.china.alibaba.com/cms/upload/2010/396/200/2693_110323176.png) no-repeat 0 0;width:167px;height:167px;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src=http://img.china.alibaba.com/cms/upload/2010/396/200/2693_110323176.png);_background:none;cursor:pointer;}.smart-queue .price .lock-price{font-weight:normal;color:red;font-size:12px;}.smart-queue .item .photo a{font:12px/1 Tahoma,Helvetica,Arial;display:table-cell;height:150px;text-align:center;vertical-align:middle;width:150px;*display:block;*font-family:Arial;*font-size:131px;}.smart-queue .item .photo a img{vertical-align:middle;-moz-box-shadow:1px 1px 3px #999;-webkit-box-shadow:1px 1px 3px #999;}.smart-queue .item .attribute{width:175px;height:22px;margin-top:4px;}.smart-queue .item .attribute a{display:inline-block;}.smart-queue .price{width:175px;word-break:keep-all;+word-break:break-all;color:#666;}.smart-queue .price em{color:#F00;font-family:arial;font-size:13px;font-weight:bold;}.smart-queue .price em.etc{font-weight:normal;color:#666;}.smart-queue .price b{margin-left:4px;font-style:normal;font-weight:normal;margin-right:6px;}.smart-queue .price .rmb{color:#666;display:block;}.smart-queue .company{margin-top:0;}.smart-queue .company a:link,.smart-queue .company a:visited{text-decoration:underline;}.smart-queue .company span{color:#999;font-family:Arial,Helvetica,sans-serif;font-size:12px;white-space:nowrap;margin-left:2px;}.smart-queue .bao{background:url("http://img.china.alibaba.com/images/myalibaba/integrity/searchlist/mumbericon.gif") no-repeat scroll right -361px transparent;float:right;margin:2px 0 0 4px;height:18px;width:18px;display:inline-block;}.smart-queue .ww-phone{background:transparent url("http://img.china.alibaba.com/images/common/icon_v01/4000416.gif") no-repeat 0 1px;}.smart-queue .ww-offline{background:transparent url("http://img.china.alibaba.com/images/common/icon_v01/4000616.gif") no-repeat 0 1px;}.smart-queue .ww-small span{visibility:hidden;}.smart-queue .etc-alipay{width:14px;height:18px;display:inline-block;overflow:hidden;background-position:0 -658px;+background-position:0 -660px;vertical-align:text-bottom;}.combine-item{z-index:3;padding:7px 10px 5px 10px;margin:8px 0 0 0;border:1px solid #FFE6BC;background:#FFFEEC;position:relative;}.combine-item .combine-tip{display:block;position:absolute;left:124px;_left:114px;top:-6px;height:13px;width:13px;overflow:hidden;background:url(http://img.china.alibaba.com/images/app/search/v2.0/new.png) no-repeat 0 0;}.combine-item .combine-tip img{display:none;}.combine-seller{padding-left:24px;padding-bottom:2px;margin-right:16px;}.combine-seller em{font-weight:bold;}.combine-seller a{margin-left:8px;}.related-item{position:absolute;display:block;width:173px;height:28px;color:#804b00!important;text-align:center;line-height:28px;bottom:10px;left:0;border:1px solid #f7e297;background-color:#FFFEEC;}.related-item em{font-weight:bold;}.related-item-shopwindow{left:140px;bottom:8px;}.st-combine .smart-queue .item{padding-bottom:10px;}#SearchList .smart-queue .item .attribute a.ip4p_text:link,#SearchList .smart-queue .item .attribute a.ip4p_text:hover,#SearchList .smart-queue .item .attribute a.ip4p_text:visited,#SearchList .smart-queue .item .attribute a.ip4p_text:active{font-size:12px;font-weight:normal;color:#999!important;text-decoration:underline;margin:0 0 0 5px;}.smart-queue .item .promotion{margin:-2px 0 0 0;text-align:right;}.smart-queue .item .promotion a{color:#999;text-decoration:underline;}.item .sysww_online,.item .sysww_phone,.item .sysww_off{width:20px;height:18px;float:right;}.item .sysww_online{background-position:4px -278px;}.item .sysww_phone{background-position:3px -319px;}.item .sysww_off{background-position:4px -358px;}.item .low-cxt-mumber-p,.item .low-cxt-mumber-c,.item .low-cxt-mumber-e,.item .high-cxt-mumber-p,.item .high-cxt-mumber-c,.item .high-cxt-mumber-e{height:16px;padding-left:55px;margin-right:4px;}.item .high-cxt-mumber{background-position:0 -120px;}.item .low-cxt-mumber{background-position:0 -140px;}.item .low-cxt-mumber-p{background-position:0 -160px;}.item .low-cxt-mumber-c{background-position:0 -180px;}.item .low-cxt-mumber-e{background-position:0 -200px;}.item .high-cxt-mumber-p{background-position:0 -220px;}.item .high-cxt-mumber-c{background-position:0 -240px;}.item .high-cxt-mumber-e{background-position:0 -260px;}.smart-queue .item a.guarantee-mumber{width:15px;height:16px;float:right;background-position:0 -80px;}.item .sysalipay{width:12px;height:16px;background-position:0 -20px;margin-right:2px;}.item .sysetc{width:12px;height:16px;background-position:0 -40px;}.combine-seller{background-position:0 -340px;}.offer .uncontactted,.offer-small .uncontactted{background-position:0 -317px;}.st-combine .smart-queue .item .uncontactted{background-position:0 -316px;}.offer .contactted,.offer-small .contactted,.offer .contacttedmid,.offer-small .contacttedmid,.offer .uncontactted:hover,.offer-small .uncontactted:hover{background-position:0 -277px;}.st-combine .smart-queue .item .contactted,.st-combine .smart-queue .item .contacttedmid,.st-combine .smart-queue .item .uncontactted:hover{background-position:0 -276px;}.offer .contactted:hover,.offer-small .contactted:hover{background-position:0 -297px;}.st-combine .smart-queue .item .contactted:hover{background-position:0 -295px;}.hotFilter{background-position:1px -1662px;padding-left:18px;padding-bottom:2px;}.inline-b{position:relative;float:left;height:18px;line-height:14px;}.combine-item .lt-menu{z-index:100;position:absolute;display:none;}.combine-item .lt-menu .selected{background-position:0 -1675px;}.combine-item .lt-itemlabel{padding:0 16px;}.combine-item .useAll{text-align:center;}.lt-menu{line-height:20px;}.lt-menu .bd{border:solid 1px #D3D3D3;background-color:#fff;*zoom:1;_zoom:normal;}.lt-menu .lt-menu .bd{*zoom:normal;}.lt-menu ul{border-width:1px 0 0 0;border-color:#ccc;border-style:solid;}.lt-menu ul.lt-menulist{border-width:0;list-style-type:none;margin:0;}.lt-menu .notop{border-top:none;}.lt-menu h6{font-weight:bold;border-style:solid;border-color:#ccc;border-width:1px 0 0 0;color:#a4a4a4;padding:3px 10px 0 10px;}.lt-menu ul.hastitle,.lt-menu h6.lt-menulist{border-width:0;}.lt-hassubmenu,.lt-hassubmenu-disabled,.lt-selectitem .lt-select-default,.lt-selectitem .lt-span-mouseover,.lt-selectitem .lt-span-mousedown,.lt-selectitem .lt-span-disabled{background-image:url(../../images/lt/lt-menuselect.png);background-repeat:no-repeat;}.lt-menuitem{_border-bottom:solid 1px #fff;color:#333;}.lt-itemlabel{padding:0 20px 0 10px;color:#000;text-decoration:none;text-align:left;white-space:nowrap;}.lt-hassubmenu{background-position:right -80px;}.lt-itemlabel-disabled,.lt-itemlabel-disabled:visited{cursor:default;color:#A6A6A6;}.lt-hassubmenu-disabled{background-position:right -95px;}.lt-menuitem-selected{background-color:#DDF3FF;}.lt-select{width:144px;}.lt-selectitem{background-color:#FFF;border:1px solid #D3D3D3;cursor:pointer;display:block;height:20px;color:#333;}.lt-selectitem .lt-select-default{background-position:right 1px;display:block;height:19px;line-height:19px;margin-right:1px;overflow:hidden;padding:0 17px 0 5px;white-space:nowrap;}.lt-selectitem .lt-select-default em{padding-left:6px;display:block;font-style:normal;}.lt-selectitem-mouseover{border:1px solid #80B3E6;}.lt-selectitem .lt-span-mouseover{background-position:right -19px;}.lt-selectitem .lt-span-mousedown{background-position:right -39px;}.lt-selectitem .lt-span-disabled{background-color:#F4F4F4;background-position:right -59px;color:#999;}.nextpage,a.list_cxt_etc,a.list_alipay,a.list_cxt{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat 0 0;}strong{font-weight:bold;}a:link{color:#00349a;text-decoration:none;}a:visited{color:#00349a;text-decoration:none;}a:hover{color:#e63312;text-decoration:underline;}.b{font-weight:bold;}.c{font-size:14px;}.m{font-size:14px;font-weight:bold;}.sm{font-size:12px;font-weight:bold;}.s{font-size:12px;}.lh13{line-height:130%;}.lh15{line-height:150%;}.nol{text-decoration:none;}.unline:link{text-decoration:underline;}.undline:link{text-decoration:underline;}.undline a:link,.undline a:visited,.undline a:hover,.undline:link,.undline:visited,.undline:hover{text-decoration:underline;}a.unline:link,a.unline:visited{text-decoration:underline;}a.unline:hover{text-decoration:underline;}a.undline:link,a.undline:visited{text-decoration:underline;}a.undline:hover{text-decoration:underline;}.black{color:#000;}.white{color:#fff;}.gray{color:#666;}.gray a:link{color:#666;}.gray a:visited{color:#666;}.gray a:hover{color:#666;text-decoration:none;}.abs{position:absolute;}.ared{color:#c30;}.red{color:#f00;}.orange{color:#f60;}.orange a:link{color:#f60;}.orange a:visited{color:#f60;}.orange a:hover{color:#f60;}.nopic{color:#333;font-size:14px;}.blue{color:#00f;}.hackbox{border-top:1px solid transparent!important;margin-top:-1px!important;border-top:0;margin-top:0;clear:both;visibility:hidden;}.ifrcss{position:absolute;left:-160px;top:-136px;width:195px;height:192px;float:right;z-index:1;visibility:hidden;}.pricewords{font-size:13px;font-family:arial;font-weight:bold;}.bluewords{color:#04d;}.bluewords a:link{color:#04d;}.bluewords a:visited{color:#04d;}.bluewords a:hover{color:#ff7300;}.skyblue{color:#0A8FDE;}.skyblue a:link{color:#0A8FDE;}.skyblue a:visited{color:#0A8FDE;}.skyblue a:hover{color:#ff7300;}.graywords{color:#c1c1c1;}.graywords a:link{color:#c1c1c1;}.graywords a:visited{color:#c1c1c1;}.graywords a:hover{color:#ff7300;}.pb7px{padding-bottom:7px;}.pd{margin-top:7px;}.pd2{margin-top:14px;}.pd_16{margin-top:16px;}.pd_h{padding-left:7px;}.pd_2h{padding-left:14px;}.pd_3h{padding-left:21px;}.pd-t4{margin-top:4px;}.cent{text-align:center;}.left{float:left;}.right{float:right;}.d_line{border-left:1px dotted #ddd;}.d_line1{background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/list_h_line_bg.gif) repeat-y 0 0;height:100%;}.d_line_h{border-bottom:1px dotted #ddd;}.d_line_c1{border-bottom:1px dotted #bbb;}.d_line_s{border-bottom:1px solid #ddd;}.d_ico{background:url(http://img.china.alibaba.com/images/cn/home/070215/d_ico.gif) 5px 8px no-repeat;padding-left:12px;}div .no_border{border:0;}.h_pd{padding-right:14px;}.brk{word-break:break-all;}.nobr{white-space:nowrap;}.nextpage{background-position:-105px -278px;padding-right:12px;}.mt4px{margin-top:4px;}.ml4px{margin-left:4px;}a.u_line:link{text-decoration:underline;}a.u_line:visited{text-decoration:underline;}a.u_line:hover{text-decoration:underline;}.headaddress a:link{text-decoration:none;color:#003278;}.headaddress a:visited{text-decoration:none;color:#003278;}.headaddress a:hover{text-decoration:underline;color:#ff7300;}.headmyt a:link{text-decoration:none;color:#003278;}.headmyt a:visited{text-decoration:none;color:#003278;}.headmyt a:hover{text-decoration:underline;color:#ff7300;}a.graywords:link{text-decoration:underline;}a.graywords:visited{text-decoration:underline;}a.graywords:hover{text-decoration:underline;}.headcity{height:30px;overflow:hidden;}.screening{border-top:1px solid #FECB96;border-bottom:1px solid #FECB96;padding:5px 20px 5px 20px;background:#FAF4EB;margin-left:-20px;margin-right:-20px;}.list_block_e{display:block;margin-left:8px!important;margin-left:0;width:54px;height:18px;margin-top:3px;}a.list_cxt_e,a.list_cxt_c{background:url(http://img.china.alibaba.com/images/cn/market/trade/list/080401/p_icon.gif) no-repeat 0 -30px;}a.list_cxt_b{background:url(http://img.china.alibaba.com/images/cn/search/icon/aborad.png) no-repeat;}a.list_cxt_e:link,a.list_cxt_e:visited{text-decoration:none;}a.list_cxt_e:hover{text-decoration:none;}a.list_cxt_c{background-position:0 2px;}a.list_cxt_c:link,a.list_cxt_c:visited{text-decoration:none;}a.list_cxt_c:hover{text-decoration:none;}a.list_cxt_etc{background-position:-159px -1629px;}a.list_cxt_etc:link,a.list_cxt_etc:visited{text-decoration:none;}a.list_cxt_etc:hover{text-decoration:none;}.offer a.no-icon-c:link,.offer a.no-icon-c:visited{margin-right:16px;font-weight:bold;color:#4C71B8;}.offer a.no-icon-c:hover{color:#ff7300;}.no-icon-c .cxt-mumber-time{font-weight:normal;margin:0;}.athena a.guarantee-wrap:link,.offer a.guarantee-wrap:visited{display:block;color:#666;text-decoration:none;}.athena a.guarantee-wrap:hover{color:#ff7300;text-decoration:underline;}a.guarantee-wrap .guarantee-mumber{background-position:-55px -360px;padding:2px 0 2px 18px;font-size:12px;font-family:\5B8B\4F53,Arial,Helvetica,sans-serif;}a.guarantee-wrap .guarantee-money{padding:0 0 0 8px;background-position:0 -402px;font-size:12px;font-family:\5B8B\4F53,Arial,Helvetica,sans-serif;}a.guarantee-wrap .guarantee-money{background-position:0 -401px\9;+background-position:0 -402px;}.athena p.text-line{padding-bottom:2px;min-height:20px;height:auto!important;height:20px;text-align:center;line-height:1.5;}.athena p.m-t4{margin-top:4px;}.athena p.m-t2{margin-top:2px;}.athena p.text-line .gray{font-size:12px;}.cxt-mumber-time{margin:0 12px 0 4px;}.int_gray{color:#666;font-family:Arial,Helvetica,sans-serif;font-size:10px;}.list_block_a{display:block;width:24px;height:24px;margin-left:25px!important;>margin-left:0!important;margin-left:0;}.ff_m1{margin-left:10px!important;>margin-left:0!important;margin-left:0;}.ff_m2{width:70px;}.offer .ff_m2 a:link,.offer .ff_m2 a:visited{color:#001D4C;text-decoration:none;}.offer .ff_m2 a:hover{color:#ff7300;text-decoration:underline;}.list_mt4{margin-top:4px;}a.list_alipay{background-position:-160px -1000px;}a.list_alipay:link{text-decoration:none;}a.list_alipay:visited{text-decoration:none;}a.list_alipay:hover{text-decoration:none;}a.list_cxt{background-position:-160px -960px;}a.list_cxt:link{text-decoration:none;}a.list_cxt:visited{text-decoration:none;}a.list_cxt:hover{text-decoration:none;}.maxPageMsg{height:20px;text-align:center;margin-top:16px;}.rm_notice,.sx_bottom,.sx_bottom .check,.sx_bottom .uncheck,#list_fun_head1 .sp2,a.page20_a,a.page20_b,a.page30_a,a.page30_b,a.page40_a,a.page40_b,#tishiDiv,#tishiDiv a:link,#tishiDiv a:visited,#tishiDiv a:hover{background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/icon_all.gif) no-repeat 0 0;}.simple_search_box{width:100%;margin:0 auto;height:95px;border:1px solid #fff7e5;background-color:#fff7e5;margin-top:0;margin-bottom:10px;}.simple_search_content{width:500px;margin:0 auto;height:70px;text-align:left;margin-top:24px;}.simple_search_content .seach_input{height:30px;}.simple_search_tabs{height:22px;width:450px;margin-left:16px;line-height:20px;}.simple_search_tabs li{margin-left:20px;float:left;}.simple_search_tabs li a:link,.simple_search_tabs li a:visited{color:#00349a;}.simple_search_tabs li a:hover{color:#e63312;}.simple_search_tabs .no_ml{margin-left:0;}.simple_search_box .s_key{float:left;border:1px solid #bf8d02;border-right:none;height:20px;line-height:15px;+line-height:17px;padding:4px 3px;vertical-align:middle;width:344px;overflow:hidden;}.simple_search_box .s_but{height:24px;margin-left:6px;width:78px;line-height:20px;}.simple_search_box .butheight{float:left;background-position:0 -160px;border:0 none;color:#954200;cursor:pointer;font-size:14px;font-weight:bold;height:30px;line-height:30px;position:relative;text-shadow:0 1px 0 #FFEC98;width:90px;}.relatingSearch{margin-bottom:8px;height:14px;line-height:14px;}.rm_notice{float:left;padding-left:10px;padding-right:1em;background-position:-160px -77px;text-align:left;}.rm_sort{float:left;}.rm_sort ul{margin:0;padding:0;list-style:none;}.rm_sort li{float:left;margin-right:14px;white-space:nowrap;+dispaly:inline;}.rm_sort a:link,.rm_sort a:visited{color:#00349a;text-decoration:none;}.rm_sort a:hover{color:#ff7300;text-decoration:underline;}.s_top_line{border-top:#c4c4c4 1px dotted;font-size:0;margin-top:-4px;height:2px;margin-bottom:3px;clear:both;}#list_mid_search_title{text-align:left;margin-left:-13px;margin-bottom:3px;}#list_mid_search{text-align:left;margin:0 0 7px 12px;line-height:150%;}#list_mid_search a:link,#list_mid_search a:visited{color:#003278;text-decoration:none;}#list_mid_search a:hover{text-decoration:underline;color:#ff7300;}.ml15px{margin-left:15px;}#list_sx{width:100%;}.sx_top{border:1px solid #C5C5C5;background:#EFEFE6;height:36px;}.sx_top_noSelf{border:1px solid #C5C5C5;background:#EFEFE6;height:36px;display:none;margin-top:8px;}.sx_more_left{float:left;padding:1px 0 0 10px!important;*padding:7px 0 0 10px;}.sx_more_right{float:right;}.sx_more_param{margin-top:7px;display:none;}.sx_more_param_noSelf{margin-top:7px;}.sx_but_big{width:50px;height:33px;margin-right:20px;margin-top:17px;}.sx_but_small{width:40px;height:23px;margin-right:20px;margin-top:7px;}.sx_bottom{margin-top:7px;background-position:-160px -74px;padding-left:10px;}.sx_bottom .less{background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/list_mid_search_less.gif) no-repeat 0 0;}.sx_bottom .more{background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/list_mid_search_more.gif) no-repeat 0 0;}.sx_bottom .check{background-position:-160px -1440px;padding-left:17px;}.sx_bottom .uncheck{background-position:-160px -400px;padding-left:17px;}#list_mid_search .txt_red{color:#FCBE81;}#list_mid_search .txt_l_r{margin-left:1px;margin-right:2px;}#list_mid_search .txt_def{color:#000;}#list_fun_head1{text-align:left;padding-left:10px;}#list_fun_head1 .sp1{color:#2ba2e0;font-weight:bold;}#list_fun_head1 .sp2{margin-left:50px;background-position:-160px -78px;padding-left:7px;}#list_fun_head1 .sp3{margin-left:200px;}.list_fun_head1{border-bottom:1px solid #FF7300;}#tishiDiv{height:70px;width:180px;background-position:0 -1360px;display:none;text-align:left;font-size:12px;font-weight:bold;z-index:9999;}#tishiDiv ul{list-style:none;margin:0;padding:0;margin-top:10px;margin-left:10px;vertical-align:middle;}#tishiDiv ul li{height:16px;}#tishiDiv .fl{float:left;}#tishiDiv .txt{margin-top:5px;margin-left:3px;margin-right:2px;font-weight:normal;}#tishiDiv img{border:0;}#tishiDiv a:link,#tishiDiv a:visited{background-position:0 -280px;display:block;width:57px;height:18px;padding-left:12px;padding-top:4px;text-decoration:none;font-weight:normal;}#tishiDiv a:hover{background-position:0 -560px;display:block;width:57px;height:18px;padding-left:12px;padding-top:4px;text-decoration:none;color:#001D4C;font-weight:normal;}.hz-picrun{width:160px;height:200px;overflow:hidden;margin-top:8px;}.hz-picrun ul{margin:0;padding:0;}.hz-picrun ul li{list-style:none;margin:0;padding:0;height:200px;width:160px;}.hz-picrun ul li.hz-company{margin:0;padding:0;width:158px;height:198px;background:transparent url(http://img.china.alibaba.com/images/cn/market/trade/list/080401/hz-bg5.gif) repeat-x 0 0;color:#333;font-size:12px;text-align:left;border:1px solid #B5B4B4;cursor:pointer;overflow:hidden;}.hz-company .hz-link{float:right;padding-right:4px;line-height:16px;padding-top:3px;}.hz-company .hz-link a:link,.hz-company .hz-link a:visited{color:#333;text-decoration:none;font-weight:bold;}.hz-company .hz-link a:hover{text-decoration:underline;}.hz-company .hz-title{clear:both;padding:0;font-size:16px;padding-top:10px;text-align:center;color:#4a4a4a;width:148px;margin:0 auto;height:46px;font-weight:bold;overflow:hidden;font-family:Arial,Helvetica,sans-serif;line-height:22px;}.hz-company p{text-align:left;margin:0;padding:0 4px;margin-top:4px;height:48px;color:#000;display:block;overflow:hidden;word-break:break-all;}.hz-company p span{color:#0300CB;}.hz-company .com-info{padding-left:7px;line-height:14px;}.rm_sort_2{float:left;overflow:hidden;width:752px;}.rm_sort_2 ul{margin:0;padding:0;list-style:none;}.rm_sort_2 li{float:left;margin-right:20px;white-space:nowrap;}.rm_sort_2 a:link,.rm_sort_2 a:visited{color:#00349a;text-decoration:none;}.rm_sort_2 a:hover{color:#ff7300;text-decoration:underline;}.rm_sort_2{margin-left:43px;*margin-left:43px!important;*margin-left:22px;line-height:18px;}.ol_z_2{text-align:left;font-size:14px;margin-bottom:8px;margin-top:8px;margin-left:4px;}.ol_z_2 .red{color:red;margin-left:8px;margin-right:8px;}#htgmbuyer .mbimage img{width:138px;height:56px;margin-bottom:7px;margin-left:4px;}#sjkd2{width:158px;border:1px solid #FFCE94;*margin-bottom:4px;display:none;margin-top:8px;_margin-top:4px;}#sjkd2 .hd{padding:0 8px;margin:0;border-bottom:1px solid #FFCE94;background-color:#FFEDE1;}#sjkd2 .sjkd-bd{padding:8px;background-color:#FFF9F3;}#sjkd2 h4{text-align:left;margin:0;height:25px;line-height:25px;font-size:14px;font-weight:bold;}#sjkd2 h4 span{font-size:12px;color:#FF4A01;float:right;}#sjkd2 .sjkd-bd li{height:18px;line-height:18px;text-align:left;}#sjkd2 .sjkd-input{height:18px;line-height:18px;color:#666;border:1px solid #7F9DB9;padding-left:2px;margin:0;}#sjkd2 .sjkd-bd li.filed{padding:4px;text-align:center;}#sjkd2 #membermail{display:none;}#smart-query-grid{height:26px;margin-left:0;margin-top:6px;text-align:left;font-size:14px;line-height:26px;}#smart-query-grid span{font-weight:bold;padding-right:8px;}#smart-query-grid a:link,#smart-query-grid a:visited{color:red;text-decoration:underline;}#smart-query-grid a:hover{color:red;text-decoration:underline;}.bottom-style-select{height:18px;float:right;text-align:left;line-height:18px;margin-top:3px;}.bottom-style-select span{width:60px;float:left;}.bottom-style-select a{height:18px;float:left;display:inline-block;cursor:pointer;text-decoration:none;padding-left:18px;margin-right:6px;}.bottom-style-select a.select-noimg,.bottom-style-select a.selected-noimg{background-position:0 -500px;}.bottom-style-select a.select-noimg:hover,.bottom-style-select a.selected-noimg{background-position:0 -560px;color:#e63312!important;}.bottom-style-select a.select-img,.bottom-style-select a.selected-img{background-position:0 -520px;padding-left:18px;}.bottom-style-select a.select-img:hover,.bottom-style-select a.selected-img{background-position:0 -580px;color:#e63312;color:#e63312!important;}.bottom-style-select a.select-window,.bottom-style-select a.selected-window{background-position:0 -540px;padding-left:18px;}.bottom-style-select a.select-window:hover,.bottom-style-select a.selected-window{background-position:0 -600px;color:#e63312!important;}#filter-container{width:776px;}.pagination a.goto-x-alisearch:link,.pagination a.goto-x-alisearch:visited{font-size:12px;margin-left:16px;padding:0 10px;}#viewMoreSearchOffer{height:54px;text-align:center;line-height:54px;font-size:16px;font-family:"\5b8b\4f53";font-weight:bold;font-style:italic;}#viewMoreSearchOffer a:link,#viewMoreSearchOffer a:visited{color:#00349a;text-decoration:underline;}#viewMoreSearchOffer a:hover{color:#e63312;}.go-topbtn{background-position:0 -220px;bottom:20px;cursor:pointer;height:56px;opacity:0;position:fixed;width:16px;}.go-topbtn a{display:block;height:56px;width:16px;}.go-topbtn span{display:none;}.fb-wrap h3 i,.fb-submit{background:url(http://img.china.alibaba.com/images/app/search/v2.0/feedback.png) no-repeat -200px 0;}#fb-entrance{position:fixed;_position:absolute;display:block;width:28px;line-height:1.2;color:#666;outline:none;top:50%;margin-top:-100px;z-index:999999;dis_overflow:hidden;}#fb-entrance iframe{height:197px;}#fb-entrance:hover{text-decoration:none;}#fb-entrance span{background:#FFF;cursor:pointer;width:20px;border:1px solid #DDD;display:block;text-align:center;padding:4px 2px;}.fb-entrance-left{left:0;padding-left:0;}.fb-entrance-left:hover{padding-left:4px;}.fb-entrance-right{right:0;padding-right:0;}.fb-entrance-right:hover{padding-right:4px;}#fb-win{display:none;position:fixed;_position:absolute;z-index:9999;width:500px;left:50%;top:50%;margin-left:-250px;margin-top:-200px;overflow:hidden;}#fb-win input{_vertical-align:middle;}.fb-winbg{position:absolute;left:0;top:0;background:#000;opacity:.4;filter:alpha(opacity=40);width:100%;height:100%;z-index:-1;}.fb-wrap{margin:8px;background:#FFF;border:1px solid #feba65;}.fb-wrap h3{position:relative;*zoom:1;border-bottom:1px solid #e6e1d7;line-height:30px;padding-left:8px;color:#954200;}.fb-wrap h3 i{position:absolute;right:7px;top:7px;cursor:pointer;width:14px;height:14px;background-position:0 0;}.fb-body{padding:0 18px;line-height:24px;}.fb-identity{padding:6px 0;}.fb-title{font-weight:bold;}.fb-identity,.fb-mulit-q,.fb-single-q{margin-bottom:4px;padding-bottom:4px;border-bottom:1px dashed #b7b7b7;}.fb-mulit-q input{margin-right:6px;}.fb-single-q span{display:inline-block;width:350px;}.fb-open-q textarea{border:1px solid #ffd778;width:436px;height:70px;padding:4px;font-size:12px;}.fb-bottom{overflow:hidden;*zoom:1;}.fb-bottom span{float:left;}.fb-bottom em{color:#fe6f00;}.fb-submit{float:right;width:82px;height:27px;text-align:center;line-height:27px;font-weight:bold;color:#da8000!important;background-position:0 -24px;margin-top:4px;}.fb-submit:hover{text-decoration:none;color:#da8000;}.fb-link{text-align:center;}#fb-win{_overflow:hidden;}.fb-winbg{_height:1000px;}.maskLayer{position:absolute;left:0;top:0;width:100%;height:100%;filter:alpha(opacity=0);z-index:-1;background:#000;}.fb-body input{margin:0 5px;_margin-bottom:4px;}#content #smart-query-grid{margin:0;line-height:16px;height:16px;font-size:12px;margin-bottom:8px;}.lt-company-offer{display:block;vertical-align:middle;}.li-c-arrow{zoom:1;width:11px;height:11px;background-position:0 -1600px;cursor:pointer;line-height:16px;}.arrowNow .li-c-arrow{visibility:hidden;}.lt-show-company-offer{border:1px solid #999;background-color:#fff;z-index:10000;position:absolute;width:190px;-moz-box-shadow:2px 2px 5px #9a9a9a;-webkit-box-shadow:2px 2px 5px #9a9a9a;box-shadow:2px 2px 5px #9a9a9a;}.lt-show-company-offer .arrow{position:absolute;left:-11px;top:-1px;width:11px;height:11px;background-position:0 -1620px;display:block;}.lt-show-company-offer .borderB{border-bottom:1px solid #efefef;padding:5px;line-height:1.6;}.lt-show-company-offer .borderN{border-bottom:0 solid #fff;}.lt-show-company-offer .borderB li{margin-left:5px;}.lt-show-company-offer .iconC{background-color:#f2f6f4;padding:4px 10px;}.guess-offers-box{border:1px solid #D9D9D9;margin:10px 0 10px 0;}.guess-offers-title{background-color:#FAFAFA;height:30px;line-height:30px;padding-left:10px;}.customTable .custom_close_over,.customTable .custom_close,.cutom_newIcon,.customSearchTip,.noResult_icon,.customSearchTip .ctmclose,.customTable .bd .submit button.save,.customTable .bd .submit button.saveOver,.customTable .bd .submit button.recover,.customTable .bd .submit button.recoverOver{background:url(http://i03.c.aliimg.com/images/vas/search/app_search/merge_1228.png) no-repeat;}.custom_searchButton_on{width:85px;height:23px;background-position:0 -160px;float:left;position:absolute;margin-top:8px;text-decoration:none;}.custom_searchButton_on:hover{text-decoration:none;}.custom_searchButton_off{width:85px;height:23px;background-position:0 -100px;float:left;position:absolute;margin-top:8px;text-decoration:none;}.custom_searchButton_off:hover{background-position:0 -130px;text-decoration:none;}.custom_start{position:absolute;top:2px;top:3px!important;left:18px;cursor:pointer;line-height:16px;color:#333;}.custom_set{position:absolute;top:0;*top:2px!important;*top:0;left:25px;cursor:pointer;line-height:22px;color:#333;}.customTable{height:479px;width:445px;color:#333;padding:8px;background:url(http://i04.c.aliimg.com/images/vas/search/app_search/background.png) repeat scroll 0 0 transparent;display:none;}.customTable .custom_close,.customTable .custom_close_over{width:12px;height:12px;cursor:pointer;position:absolute;right:15px;top:18px;overflow:hidden;}.customTable .custom_close{background-position:-150px -57px;}.customTable .custom_close_over{background-position:-150px -77px;}.customTableInner{background-color:#FFF;}.customTable .hd{overflow:hidden;height:28px;padding:5px 0 0 15px;line-height:22px;color:#333;font-size:14px;font-weight:bold;background:url(http://i05.c.aliimg.com/images/vas/search/app_search/header.png) repeat-x 0 0;}.customTable .hd em{color:#f50;padding-right:3px;}.customTable .bd dl:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.customTable .bd dl{*zoom:1;}.customTable .bd{padding:5px 22px;}.customTable .titile{padding:10px 0 5px 2px;line-height:16px;color:#333;}.customTable .bd dl{padding:2px 0 4px 5px;}.customTable .bd dt,.customTable .bd dd{float:left;height:22px;line-height:22px;overflow:hidden;}.customTable .bd dt{width:85px;display:inline;padding-right:10px;text-align:right;}.customTable .bd dd{width:100px;}.customTable .bd dd input{margin:0 5px 0 0;vertical-align:middle;height:18px;line-height:18px;}.customTable .bd .logopen{padding-left:100px;}.customTable .bd .global dd{width:auto;clear:both;}.customTable .bd .global.submit{margin:5px 0 8px 100px;}.customTable .bd .submit button{margin-right:20px;overflow:hidden;border:none;float:left;cursor:pointer;}.customTable .bd .submit button.save{width:49px;height:22px;background-position:0 0;padding-bottom:2px;color:#FFF;}.customTable .bd .submit button.saveOver{width:49px;height:22px;background-position:0 -27px;padding-bottom:2px;color:#FFF;}.customTable .bd .submit button.recover{width:79px;height:22px;background-position:-69px 0;padding-bottom:2px;margin-right:10px;color:#000;cursor:pointer;}.customTable .bd .submit button.recoverOver{width:79px;height:22px;background-position:-69px -27px;padding-bottom:2px;margin-right:10px;color:#000;cursor:pointer;}.customTable .bd .submit button.recover.disabled{width:79px;height:22px;background-position:-154px 0;padding-bottom:2px;color:#FFF;cursor:default;}.NoResultText{height:236px;border:1px solid #e7ebf1;margin:0 0 5px 0;}.SuggestTitle{font-size:15px;font-weight:bold;height:20px;line-height:20px;height:25px;color:#4e4e4e;margin:5px 0 0 10px;}.NoResultSuggest{height:330px;border:1px solid #e7ebf1;margin:0 0 10px 0;background:url(http://img.china.alibaba.com/images/vas/search/app_search/suggest.jpg) no-repeat 190px 15px;}.search_no_result{height:135px;width:450px;margin-left:auto;margin-right:auto;margin-top:50px;}.noResult_list{width:380px;float:left;}.noResult_icon{width:48px;height:48px;background-position:0 -118px;float:left;}.noResult_title{font-family:'΢���ź�','����';font-size:22px;margin:15px 0 5px 13px;width:380px;}.noResult_hint{font-size:14px;width:380px;line-height:18px;margin:15px 0 0 13px;}.widget-filt .basic .filt-toggle{background-position:right -780px;float:left;height:16px;margin-left:88px;padding-top:2px;width:80px;}.widget-filt .basic .filt-btn{float:left;margin-left:0;}.widget-filt-wrap .filt-custom{margin:0 0 0 685px;}#smart-category .sc-ctr .ctr-box a.hide{display:block!important;}.cutom_newIcon{width:13px;height:12px;background-position:-165px -56px;margin-left:32px;margin-top:-7px;position:absolute;}.offer .contactted,.offer .contacttedmid{line-height:16px;color:#999!important;position:absolute;right:15px;cursor:pointer;padding:0 0 0 13px;bottom:7px;text-decoration:none;}.offer .uncontactted{line-height:16px;color:#999!important;position:absolute;right:15px;cursor:pointer;padding:0 0 0 13px;bottom:7px;text-decoration:none;}.offer .uncontactted:hover,.offer .contactted:hover{text-decoration:none;}.offer-small .contactted,.offer-small .contacttedmid{line-height:16px;color:#999!important;position:absolute;right:15px;cursor:pointer;padding:0 0 0 13px;bottom:7px;text-decoration:none;}.offer-small .uncontactted{line-height:16px;color:#999!important;position:absolute;right:15px;cursor:pointer;padding:0 0 0 13px;bottom:7px;text-decoration:none;}.offer-small .contactted:hover,.offer-small .uncontactted:hover{text-decoration:none;}.st-combine .smart-queue .item .contactted,.st-combine .smart-queue .item .contacttedmid{color:#999!important;position:absolute;cursor:pointer;padding:0 0 0 13px;top:280px;right:0;text-decoration:none;}.st-combine .smart-queue .item .uncontactted{color:#999!important;position:absolute;cursor:pointer;padding:0 0 0 13px;top:280px;right:0;text-decoration:none;}.st-combine .smart-queue .item .contactted:hover,.st-combine .smart-queue .item .uncontactted:hover{text-decoration:none;}div.listwidth_special{overflow-y:visible;}.CustomSearchForm{position:relative;}.CustomSearch{height:32px;display:inline;left:685px;_left:512px;top:-8px;position:absolute;}.customTipHint{margin:-43px 0 0 -129px;z-index:1000;}.ctmSet,.ctmSet{bottom:10px;cursor:pointer;position:absolute;right:31px;color:#369;text-decoration:underline;line-height:16px;white-space:nowrap;}.ctmSetOver,.ctmSetOver{bottom:10px;cursor:pointer;position:absolute;right:31px;color:#F90;text-decoration:underline;line-height:16px;}.bg-x{background:url("http://img.china.alibaba.com/images/vas/search/app_search/background-x.png") repeat-x scroll 0 10000px transparent;}.icon-x,.spu-cur{background:url("http://img.china.alibaba.com/images/vas/search/app_search/icon-x_1212.png") no-repeat scroll 0 10000px transparent;}.btn-x{background:url(http://img.china.alibaba.com/images/vas/search/app_search/btn-x.png) no-repeat scroll 0 10000px transparent;cursor:pointer;}.spu-line{margin:0 12px 10px;background-position:0 -20px;height:1px;overflow:hidden;}.icon-close{width:13px;height:11px;background-position:2px 0;margin-bottom:-1px;}.icon-close-hover{background-position:2px -20px;}.icon-more{width:17px;height:15px;background-position:0 -40px;margin:0 0 -3px 0;}.icon-less{width:17px;height:15px;background-position:0 -60px;margin:0 0 -3px 0;}.icon-zero-alert{width:30px;height:30px;background-position:-90px -80px;}.icon-li-dot{width:5px;height:7px;background-position:-130px -80px;margin:0 10px 0 2px;}.icon-b2{width:64px;height:23px;text-align:center;line-height:23px;background-position:-20px 0;border:none;cursor:pointer;}.icon-b2-hover{background-position:-20px -40px;}.icon-b4{display:block;width:55px;height:19px;padding:0 0 0 3px;line-height:19px;float:left;background-position:0 -80px;cursor:pointer;font-size:10px;}.spu-similar{background-position:0 -103px;}.spu-box dl{zoom:1;}.spu-box dl:after{content:"\0020";display:block;height:0;clear:both;}.spu-box{border:1px solid #ffce94;margin:4px 0;}.spu-box-bg{background-position:0 0;height:10px;overflow:hidden;}.spu-box dl dt,.spu-box dl dd,.spu-box dl dd ul,.spu-box dl dd li,.spu-box dl dd p.spu-item-all,.spu-box dl dd p.spu-item-more{display:inline;float:left;}.spu-box dl{margin:0 12px;padding:0 0 10px 0;line-height:20px;}.spu-box dl dt{width:83px;font-weight:bold;}.spu-box dl dd{width:665px;}.spu-box ul.spu-items{width:565px;}.spu-box ul.spu-f{width:672px;}.spu-box dl.spu_sn dt{width:70px;}.spu-box dl.spu_sn dd{width:680px;}.spu-box dl.spu_sn ul.spu-items{width:580px;}.spu-box a.spu-item-title{_float:left;padding:0 10px;white-space:nowrap;}.spu-box a.spu-item-cur{background-color:#36c;color:#fff;white-space:nowrap;}.spu-box a.spu-item-cur:hover{text-decoration:none;}.spu-box .spu-li-more{display:none;}.spu-item-all{width:48px;color:#ccc;}.spu-item-all a{padding:2px 4px;margin-right:10px;}.spu-item-all span{margin-right:10px;background-color:#36c;color:#fff;}.spu-item-more{width:44px;}.spu-item-more a:hover{text-decoration:none;}.spu-item-more a:hover span{text-decoration:underline;}.spu-item-img-box{width:74px;margin:0 10px 1px;text-align:center;overflow:hidden;}.spu-item-des{text-align:center;}.spu-item-des a{white-space:nowrap;}.spu-f li{margin-right:15px;}.spu-f .spu-li-fix{margin-right:0;}.spu-f-input-m{text-indent:2px;width:90px;height:19px;line-height:19px;vertical-align:middle;border:1px solid #a9a9a9;margin:0 0 0 2px;}.spu-f-input-s{text-indent:2px;width:55px;height:19px;line-height:19px;vertical-align:middle;border:1px solid #a9a9a9;margin:0 2px;}.spu-unit{font-size:10px;font-family:arial;}.spu-param{width:370px;color:#555;margin:0;}.spu-param th{font-weight:normal;}.spu-param td{padding:5px 9px 5px 0;}.spu-param li{float:left;width:140px;overflow:hidden;line-height:12px;white-space:nowrap;margin:3px 5px 1px 0;font-family:Tahoma,Helvetica,Arial;}.offer .spu-link,.cname .spu-link{margin:2px 0 0 0;width:370px;position:relative;zoom:1;height:25px;overflow:hidden;}.offer .spu-link:after,.cname .spu-link:after{content:"\0020";display:block;height:0;clear:both;}.offer .spu-link .sputooltip,.cname .spu-link .cnametooltip{position:relative;margin:0;top:-8px;left:-5px;float:left;}.cname .spu-link .sputooltip{position:relative;margin:0;top:-8px;left:-5px;float:left;}.spu-link .icon-b4:link,.spu-link .icon-b4:visited,.spu-link .icon-b4:active{color:#555;margin:2px 3px 0 0;}.spu-link .icon-b4:hover{color:#555;text-decoration:none;}.spu-summary{margin:0 0 10px 0;}.spu-summary-img{float:left;width:220px;height:200px;}.spu-summary-des{float:right;width:550px;}.spu-summary-info{line-height:22px;}.spu-summary-wiki{text-align:right;}.spu-table{width:100%;border:1px solid #ddd;border-collapse:collapse;color:#555;}.spu-table th,.spu-table td{padding:10px 10px;border:1px solid #ddd;}.spu-summary .spu-table th{text-align:right;font-weight:normal;white-space:nowrap;}.spu-similar .spu-table th{text-align:left;font-weight:normal;white-space:nowrap;width:80px;}.spu-nav-num{float:right;}.spu-nav-num strong{color:#f00;}.spu-cp-name{margin:2px 0 4px;}.spu-cp-name .verified{font-size:12px;}.spu-cp-attribute{width:370px;color:#555;margin:0;}.spu-cp-attribute li{float:left;width:130px;margin:5px 5px 1px 0;}.spu-similar{margin:0 0 10px 0;}.spu-similar-hd{height:30px;line-height:30px;background-color:#f5f5f5;border:1px solid #ddd;border-bottom:none;padding:0 10px;color:#666;}.spu-similar-hd strong{font-weight:bold;color:#f00;}.spu-similar-page{float:right;}.spu-similar-page a{padding:1px 5px;border:1px solid #C4C4C4;}.spu-similar-page a:hover{border:1px solid #FF7300;color:#00349A;text-decoration:none;}.spu-similar-page-cur{padding:1px 5px;background-color:#FFEDE1;border:1px solid #FF7300;color:#ff7300;}.spu-zero-alert{width:;height:;border:1px solid #ffea5c;background-color:#ffffed;padding:10px 0 10px 85px;margin:10px 0 0 0;}.spu-zero-alert .icon-zero-alert{float:left;}.spu-zero-des{padding:10px;display:inline-block;font-size:14px;}.spu-zero-suggest{margin:15px 0 30px 90px;}.spu-zero-suggest li{margin:5px 0;}.spu-param,.spu-summary,.spu-tab,.spu-cp-attribute,.spu-zero-alert{zoom:1;}.spu-param:after,.spu-summary:after,.spu-tab:after,.spu-cp-attribute:after,.spu-zero-alert:after{content:"\0020";display:block;height:0;clear:both;}.spu-tab li a{display:block;width:94px;}.spu-tab li.spu-tab-cur a{display:block;width:100px;}.offer .attribute li{border-left:none;}.spu-link-window .icon-b4:link,.spu-link-window .icon-b4:hover,.spu-link-window .icon-b4:visited,.spu-link-window .icon-b4:active{color:#000;text-decoration:none;margin:2px 3px 0 0;}.listCont{float:left;width:95%;margin-left:-28px;padding-left:28px;line-height:190%;padding-bottom:16px;margin-bottom:16px;border-bottom:1px dotted #C4C4C4;color:#7f7f7f;}.listCont h2{float:left;width:auto;word-break:break-all;font-size:14px;color:#369;}.listCont h2 a,.listCont h2 a:link,.listCont h2 a:visited,.listCont h2 a:hover{font-size:14px;color:#369;font-weight:bold;text-decoration:underline;}.listCont .contList{clear:left;float:left;width:98%;word-break:break-all;font-size:12px;line-height:170%;}.listCont .conttag{clear:left;float:left;width:98%;line-height:150%;}.listCont .conttag div{float:left;margin-right:12px;height:25px;line-height:190%;}.listCont .conttag span{margin-right:8px;}.listCont .conttag img{margin-bottom:-6px;}.yes{float:left;width:18px;margin:0 8px 0 4px;height:25px;background:url(http://img.china.alibaba.com/images/cn/news/baike/search_bg.gif) no-repeat 0 -150px;text-indent:-9999px;}.no{float:left;width:22px;margin:0 8px 0 2px;height:25px;background:url(http://img.china.alibaba.com/images/cn/news/baike/search_bg.gif) no-repeat -196px -250px;text-indent:-9999px;}.good{float:left;width:50px;height:25px;background:url(http://img.china.alibaba.com/images/cn/news/baike/search_bg.gif) no-repeat -100px -198px;margin-left:8px;text-indent:-9999px;}.yesNone{background:transparent none;}.syj_p,.syj_0,.syj_list{margin:20px 0;}.Ar{text-align:right;}.B{font-weight:bold;}.Fix{content:"\0020";display:block;height:0;clear:both;zoom:1;}.Clear{height:1px;background-color:transparent;overflow:hidden;clear:both;}.F12{font-size:12px;}.Icon,.arrowSpu,.syj_0 b{overflow:hidden;position:relative;vertical-align:middle;zoom:1;display:inline-block;background-color:transparent;background-repeat:no-repeat;margin-right:5px;}.arrowSpu,.yourPosition,.spu-tab,.spu-tab li,.spu-tab .spu-tab-cur a{background-image:url(http://img.china.alibaba.com/images/vas/search/app_search/spu-mp.png);}.arrowSpu{height:12px;width:12px;background-position:0 0;}.yourPosition{margin:8px 0;border:1px solid #d9d9d9;background-position:0 -112px;background-repeat:repeat-x;height:32px;line-height:32px;color:#666;padding:0 9px;}.yourPosition p{float:right;}.yourPosition p span{color:#f00;}.product_show{margin:10px 0;}.img_out{float:left;height:136px;width:190px;overflow:hidden;display:block;}.info_out{float:left;width:580px;}.info_out2{width:280px;}.info_out2 .spu_td{width:50px;}.info_out table{width:100%;}.info_out table td{border-bottom:1px solid #eee;padding:10px;color:#666;}.info_out .info_out_b td{border-bottom:0 solid #fff;}.spu_td{text-align:right;}.spu-nav{height:30px;}.spu-tab{height:30px;background-position:0 -13px;background-repeat:repeat-x;padding-left:2px;}.spu-tab li{float:left;width:102px;background-position:right -46px;display:block;height:30px;text-align:center;line-height:30px;}.spu-tab .icon-x a,.spu-tab .icon-x a:link{color:#fff;}.spu-tab .icon-x a:hover{color:#fff;text-decoration:none;}.spu-tab .spu-tab-cur a,.spu-tab .spu-tab-cur a:link,.spu-tab .spu-tab-cur a:hover{color:#666;font-weight:bold;background-position:0 -79px;}.syj_0{background-color:#ffffed;border:1px solid #ffea5c;text-align:center;padding:10px;}.syj_0 b{background-position:-90px -80px;background-image:url(http://img.china.alibaba.com/images/vas/search/app_search/icon-x_1212.png);width:31px;height:29px;}.syj_0 span{font-size:#000;font-size:14px;}.syj_0 a{text-decoration:underline;}.syj_table table{width:100%;}.syj_table table td{border:1px solid #e5e5e5;padding:10px;color:#333;}.de-td1{background-color:#f7f7f7;text-align:right;font-weight:bold;width:110px;}.syj_p_desc{line-height:1.8;margin:20px 0;}.spu_before_offer{border:1px solid #e2e2e2;margin:10px 0;height:145px;overflow:hidden;}.sbo_img{width:150px;height:137px;overflow:hidden;float:left;}.sbo_desc{border-left:1px solid #e2e2e2;margin-left:151px;height:140px;}.sbo_desc2{border-left:0 solid #fff;margin-left:0;}.sbo_desc h4{background:transparent url("http://img.china.alibaba.com/images/offer/search/base/kaitian/search-r.gif") repeat-x 0 -380px;padding:0 20px;height:27px;line-height:27px;font-size:16px;color:#00349a;border-bottom:1px solid #e2e2e2;}.sbod_detail{margin:10px 0 0 17px;}.sbodd1{float:left;width:290px;overflow:hidden;}.sbodd2{float:left;border-left:1px solid #eee;padding-left:15px;width:290px;}.sboddt td{color:#666;padding:5px 10px 5px 0;}.sbodd1p{line-height:2;color:#666;}.sbodd1p span{color:#f00;}.sbodd2a{overflow:hidden;}.sbodd2a a{display:block;float:left;padding:0 5px;margin:5px 0;border-right:1px solid #d8d8d8;white-space:nowrap;}.sbodd2a a b{color:#f00;font-weight:normal;}.sbodd2a .more{border-right:0 solid #fff;}.sbodd2a span{color:#d8d8d8;}.sbodd2 h5{color:#666;padding:5px;}.spu_all_list{margin:15px 0;}.sal_offer{padding-bottom:15px;margin-bottom:15px;border-bottom:1px solid #e5e5e5;}.salo_detail{width:350px;float:left;}.salo_desc{float:right;display:block;}.salo_desc li{float:right;text-align:right;width:90px;padding:40px 10px 10px 0;overflow:hidden;}.salod_img{width:98px;height:98px;float:left;border:1px solid #d9d9d9;overflow:hidden;}.salod_desc h4{font-size:14px;color:#00349a;line-height:2;}.salodd_list{line-height:1.8;}.spu_all_head{background:transparent url("http://img.china.alibaba.com/images/offer/search/base/kaitian/search-r.gif") repeat-x 0 -380px;height:34px;padding:0 0 0 13px;border:1px solid #e2e2e2;margin:10px 0;}.sah_l{float:left;padding-top:8px;}.sah_r{float:right;display:block;line-height:34px;}.sah_r li{float:right;width:90px;text-align:right;padding-right:10px;}.sah_l a,.sah_l a:link{margin-left:5px;display:inline-block;zoom:1;height:21px;line-height:21px;width:97px;text-align:center;color:#333;text-decoration:none;vertical-align:middle;background:transparent url("http://img.china.alibaba.com/images/vas/search/app_search/spu_sea2.png") no-repeat 0 0;}.sah_l a:hover{color:652f03;text-decoration:none;background:transparent url("http://img.china.alibaba.com/images/vas/search/app_search/spu_sea2.png") no-repeat 0 -22px;}.saloddl_p{color:#666;}.spu-param-group{margin:2px 0;}.spu-param-group table td{padding:3px 20px 3px 0;color:#555;}.spu-gray{color:#999;}.spu_hightlight{border:1px solid #ffc44c;background-color:#fff7e5;}.spu_hightlight2{background-color:#fff7e5;}.spu-link-window{margin-bottom:2px;position:relative;zoom:1;}.spu-link-window:after{content:"\0020";display:block;height:0;clear:both;}.spu-link-window .sputooltip{position:absolute;margin:0;top:-35px;left:0;}.sczx_list{padding-bottom:5px;margin-bottom:15px;border-bottom:1px dotted #c4c4c4;color:#666;margin-left:10px;}.sczx_list h4 a{font-size:14px;text-decoration:underline;line-height:1.6;}.sczx_list h4 span{font-size:12px;color:#999;}.sczx_list p{line-height:1.6;margin:5px 0;}.sczxfr{float:right;margin:22px 40px 0 22px;}.sczxf{width:630px;}.info_xs{width:490px;}.spu_xs{width:270px;}.spu_xs span{text-align:center;display:block;}.lt-spu-lineone li{float:none;width:230px;}.lt-pdf-desc{line-height:1.5;padding:10px 30px;border:1px solid #eee;margin-left:300px;}.lt-pdf-dl{margin-top:5px;background:transparent url(http://img.china.alibaba.com/cms/upload/2011/031/540/45130_1762579351.png) no-repeat left center;padding-left:20px;display:block;height:20px;line-height:20px;}.type-c{text-align:center;}.font-b{font-weight:bold;}.tb1{table-layout:fixed;width:776px;}.tb1 td{word-wrap:break-word;}.pa-body .pa-delete,.pa-body .pa-delete:hover,.pa-body .preDisable,.pa-body .nextDisable,.pa-body .pre,.pa-body .next,.pa-body .pre:hover,.pa-body .next:hover,.pa-footer .more .arrowMore,.pa-footer .more:hover .arrowMore,.pa-footer .more:hover .arrowLess,.pa-footer .more .arrowLess,.bottomMoreInfo i{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110627/purchaseAssist.png);background-repeat:no-repeat;display:inline-block;}.pa-body{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110627/purchaseAssist-repeatX.png);background-repeat:repeat-x;}.pa-login{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110627/purchaseAssist-repeatY.png);background-repeat:repeat-y;}#purchaseAssistContainer{margin-top:8px;position:relative;}.purchaseAssist{border:1px solid #E6E6E6;margin-bottom:20px;width:725px;}.purchaseAssist h4{color:#000;}.pa-head{height:22px;line-height:22px;background-position:0 0;}#purchaseAssist .pa-head a{float:right;color:#999;margin-right:7px;}.pa-head a:hover{text-decoration:none;color:#999;}.pa-body{padding-left:16px;zoom:1;height:258px;overflow:hidden;background-position:0 0;}.pa-body-short{height:196px;}.pa-left{float:left;border-right:1px solid #E6E6E6;width:350px;}.pa-body .searchRecord{height:196px;}.pa-body .searchRecord h4,.pa-body .searchOffer h4{line-height:28px;height:28px;}.pa-body .searchRecordContent .noResult{border:none;}.pa-body .searchRecordContent{width:334px;margin:12px 16px 0 0;overflow:hidden;height:150px;}.pa-body .searchRecordContent ul{position:relative;zoom:1;overflow:hidden;height:150px;}.pa-body .searchRecordContent a span{color:#999;}.pa-body .searchRecordContent .searchRecordTitle{color:#00349A;font-weight:bold;}.pa-body .searchRecordContent a:hover{text-decoration:none;}.pa-body .searchRecordContent li{position:relative;padding:5px 0 5px 5px;height:30px;line-height:15px;color:#999;float:left;border:1px solid #E6E6E6;margin-right:8px;margin-bottom:10px;}.pa-body .searchRecordContent div{padding-right:22px;white-space:nowrap;max-width:196px;color:#999;word-break:keep-all;}.pa-body .searchRecordContent div a{font-weight:bold;}.pa-body .searchRecordContent .searchRecordGo{display:inline-block;height:30px;cursor:pointer;}.pa-body .searchOfferDetail .mOver{background-color:#F1F7FF;}.pa-body .searchRecordContent .mOver{border:1px solid #FA6;color:#FF7300;}.pa-body .searchRecordContent .mOver a{color:#FF7300;}.pa-body .searchRecordContent .mOver div{color:#FF7300;}.pa-body .searchCustomize{margin-top:6px;line-height:24px;height:48px;overflow:hidden;}.pa-body .searchRecordContent .pa-delete{position:absolute;z-index:99;right:5px;background-position:0 -60px;height:9px;width:9px;display:none;}.pa-body .searchOfferDetail .pa-delete{float:right;background-position:0 -60px;height:9px;width:9px;display:none;margin-right:3px;}.pa-body .searchRecordContent .pa-delete:hover,.pa-body .searchOfferDetail .pa-delete:hover{background-position:0 -80px;display:none;}.pa-body .searchRecordContent .mOver .pa-delete,.pa-body .searchOfferDetail .mOver .pa-delete,.pa-body .searchRecordContent .mOver .pa-delete:hover,.pa-body .searchOfferDetail .mOver .pa-delete:hover{display:inline-block;}.pa-body .searchCustomizeContent{text-indent:24px;color:#999;float:left;width:230px;}.pa-body .searchCustomizeContent span{color:#FF7300;}.pa-right{float:left;width:358px;}.pa-body .searchOffer{margin-left:16px;width:342px;height:201px;overflow:hidden;}.pa-body .searchOfferContent{height:152px;margin-top:3px;}.pa-body .pre,.pa-body .next,.pa-body .preDisable,.pa-body .nextDisable{height:19px;width:19px;float:left;margin-top:70px;}.pa-body .preDisable,.pa-body .nextDisable{cursor:auto;}.pa-body .pre{background-position:0 -160px;}.pa-body .preDisable{background-position:0 -100px;}.pa-body .next{background-position:0 -190px;}.pa-body .nextDisable{background-position:0 -130px;}.pa-body .pre:hover{background-position:0 -220px;}.pa-body .next:hover{background-position:0 -250px;}.pa-body .searchOfferDetail{width:282px;float:left;overflow:hidden;margin-left:10px;}.pa-body .searchOfferDetail ul{overflow:hidden;width:5000px;}.pa-body .searchOffer li{height:152px;width:86px;float:left;margin-right:8px;}.pa-body .searchOffer .noResult{width:300px;}.pa-body .searchOffer .noResult p{text-align:left;width:300px;color:#999;margin-top:13px;}.pa-body .offerImg{height:64px;width:64px;border:1px solid #EAEAEA;margin:10px;}.pa-body .offerTitle{width:80px;line-height:18px;display:block;margin-left:5px;height:36px;overflow:hidden;}.pa-body .searchOffer p{width:80px;line-height:18px;color:#FF7300;text-align:center;height:18px;overflow:hidden;}.pa-body .offerImg img{width:64px;height:64px;}.pa-body .searchCompany{margin:7px 0 0 16px;}.pa-body .searchCompany li{float:left;height:24px;text-indent:24px;line-height:24px;margin-top:3px;}.pa-body .searchCompany p{color:#999;}.pa-body .searchCompanyList{height:24px;overflow:hidden;}.pa-login{background-position:0 0;height:136px;width:28px;border:1px solid #CCC;position:absolute;right:-38px;top:0;}.pa-login div{padding:10px 8px 0 8px;line-height:13px;}.pa-login div span{color:#666;display:block;}.pa-footer{height:3px;background-color:#F2F2F2;border-top:1px solid #FFF;font-size:0;position:relative;}.pa-footer .more{position:absolute;left:326px;top:3px;background-color:#F2F2F2;text-align:center;width:80px;height:10px;border-left:1px solid #E6E6E6;border-right:1px solid #E6E6E6;border-bottom:1px solid #E6E6E6;}.pa-footer .more .arrowMore,.pa-footer .more .arrowLess{height:4px;width:7px;margin:3px auto;}.pa-footer .more .arrowMore{background-position:0 -300px;}.pa-footer .more .arrowLess{background-position:0 -360px;}.pa-footer .more:hover .arrowMore{background-position:0 -320px;}.pa-footer .more:hover .arrowLess{background-position:0 -340px;}.content-expanded{width:952px;}.content-expanded .purchaseAssist{width:100%;}.content-expanded .pa-left{width:456px;}.content-expanded .pa-body .searchRecordContent{width:440px;}.content-expanded .pa-body .searchCustomizeContent{width:334px;}.content-expanded .pa-body .searchOffer{width:462px;}.content-expanded .pa-body .searchOfferDetail{width:400px;}.content-expanded .pa-right{width:478px;}.content-expanded .pa-footer .more,.content-expanded .pa-footer .less{left:436px;}.content-expanded .pa-body .searchOffer li{margin-right:14px;}.pa-body .custom_searchButton_off,.pa-body .custom_searchButton_on{float:right;margin:0 16px 0 0;position:static;}.pa-body .custom_set{position:static;text-align:center;margin-left:24px;}.clearfloat{clear:both;font-size:0;height:0;line-height:0;width:100%;}.bottomMoreInfo{height:16px;line-height:16px;border:1px solid #E6E6E6;padding:6px 0 6px 12px;border-radius:3px;margin-top:18px;}.bottomMoreInfo a,.bottomMoreInfo span{padding:0 11px;border-right:1px solid #999;}.bottomMoreInfo span{color:#9C9C9C;}.bottomMoreInfo .end{border:none;}.bottomMoreInfo i{background-position:0 -380px;width:16px;height:19px;vertical-align:middle;padding-right:3px;}#compareColor1{position:relative;}#SearchList{position:relative;}#customSearch{z-index:100;position:relative;}#J_orderMenu{position:relative;zoom:1;}.tip-hot-box,.tip-new-box,.tip-small-close,.tip-big-close,.tip-big-bubble,.cssimage-end{background-image:url(http://img.china.alibaba.com/cms/upload/search/searchweb/20110316/icon.png);background-repeat:no-repeat;display:inline-block;}.tip-hot-box{position:absolute;width:14px;height:14px;background-position:0 -1460px;}.tip-new-box{position:absolute;width:14px;height:14px;background-position:0 -1480px;}.tips-box{position:absolute;width:84px;}.tips-box div{background-color:#fff3c7;border:0 solid #ce8a01;color:#323337;overflow:hidden;font-size:12px;line-height:18px;opacity:1;}.tips-box .tip-small-content{border-width:1px;word-wrap:break-word;padding:2px 15px 3px 6px;}.tips-box .tip-small-close{width:8px;height:7px;background-position:0 -1520px;position:absolute;right:7px;top:9px;cursor:pointer;color:#da8000;text-align:center;}.tips-box .tip-big-content{border-width:1px;word-wrap:break-word;padding:6px 25px 5px 24px;}.tips-box .tip-big-bubble{width:11px;height:16px;background-position:0 -1540px;position:absolute;left:9px;top:8px;cursor:pointer;color:#da8000;text-align:center;}.tips-box .tip-big-close{width:8px;height:7px;background-position:0 -1520px;position:absolute;right:7px;top:13px;cursor:pointer;color:#da8000;text-align:center;}.tips-box .arrow-1,.tips-box .arrow-2,.tips-box .arrow-3,.tips-box .arrow-4{position:absolute;width:9px;background:none;}.tips-box .arrow-5,.tips-box .arrow-6,.tips-box .arrow-7,.tips-box .arrow-8{position:absolute;height:9px;background:none;}.tips-box .arrow-1{left:10px;top:-4px;}.tips-box .arrow-2{right:10px;top:-4px;}.tips-box .arrow-3{left:10px;bottom:-4px;_bottom:-5px;}.tips-box .arrow-4{right:10px;bottom:-4px;_bottom:-5px;}.tips-box .arrow-5{left:-4px;top:6px;}.tips-box .arrow-6{left:-4px;bottom:6px;}.tips-box .arrow-7{right:-4px;top:6px;}.tips-box .arrow-8{right:-4px;bottom:6px;}.tips-box .arrow-8 div,.tips-box .arrow-7 div,.tips-box .arrow-6 div,.tips-box .arrow-5 div{float:left;width:1px;border-top-width:1px;border-bottom-width:1px;}.tips-box .arrow-4 div,.tips-box .arrow-3 div,.tips-box .arrow-2 div,.tips-box .arrow-1 div{height:1px;border-left-width:1px;border-right-width:1px;}.tips-box .arrow-1 .arr-0,.tips-box .arrow-2 .arr-0,.tips-box .arrow-3 .arr-4,.tips-box .arrow-4 .arr-4{margin-left:4px;}.tips-box .arrow-1 .arr-1,.tips-box .arrow-2 .arr-1,.tips-box .arrow-3 .arr-3,.tips-box .arrow-4 .arr-3{margin-left:3px;}.tips-box .arrow-1 .arr-2,.tips-box .arrow-2 .arr-2,.tips-box .arrow-3 .arr-2,.tips-box .arrow-4 .arr-2{margin-left:2px;}.tips-box .arrow-1 .arr-3,.tips-box .arrow-2 .arr-3,.tips-box .arrow-3 .arr-1,.tips-box .arrow-4 .arr-1{margin-left:1px;}.tips-box .arrow-1 .arr-4,.tips-box .arrow-2 .arr-4,.tips-box .arrow-3 .arr-0,.tips-box .arrow-4 .arr-0{margin-left:0;}.tips-box .arrow-1 .arr-0,.tips-box .arrow-2 .arr-0,.tips-box .arrow-3 .arr-4,.tips-box .arrow-4 .arr-4{width:0;border-right-width:0;}.tips-box .arrow-1 .arr-1,.tips-box .arrow-2 .arr-1,.tips-box .arrow-3 .arr-3,.tips-box .arrow-4 .arr-3{width:1px;}.tips-box .arrow-1 .arr-2,.tips-box .arrow-2 .arr-2,.tips-box .arrow-3 .arr-2,.tips-box .arrow-4 .arr-2{width:3px;}.tips-box .arrow-1 .arr-3,.tips-box .arrow-2 .arr-3,.tips-box .arrow-3 .arr-1,.tips-box .arrow-4 .arr-1{width:5px;}.tips-box .arrow-1 .arr-4,.tips-box .arrow-2 .arr-4,.tips-box .arrow-3 .arr-0,.tips-box .arrow-4 .arr-0{width:7px;}.tips-box .arrow-5 .arr-0,.tips-box .arrow-6 .arr-0,.tips-box .arrow-7 .arr-4,.tips-box .arrow-8 .arr-4{height:0;border-top-width:0;}.tips-box .arrow-5 .arr-1,.tips-box .arrow-6 .arr-1,.tips-box .arrow-7 .arr-3,.tips-box .arrow-8 .arr-3{height:1px;}.tips-box .arrow-5 .arr-2,.tips-box .arrow-6 .arr-2,.tips-box .arrow-7 .arr-2,.tips-box .arrow-8 .arr-2{height:3px;}.tips-box .arrow-5 .arr-3,.tips-box .arrow-6 .arr-3,.tips-box .arrow-7 .arr-1,.tips-box .arrow-8 .arr-1{height:5px;}.tips-box .arrow-5 .arr-4,.tips-box .arrow-6 .arr-4,.tips-box .arrow-7 .arr-0,.tips-box .arrow-8 .arr-0{height:7px;}.tips-box .arrow-5 .arr-0,.tips-box .arrow-6 .arr-0,.tips-box .arrow-7 .arr-4,.tips-box .arrow-8 .arr-4{margin-top:4px;}.tips-box .arrow-5 .arr-1,.tips-box .arrow-6 .arr-1,.tips-box .arrow-7 .arr-3,.tips-box .arrow-8 .arr-3{margin-top:3px;}.tips-box .arrow-5 .arr-2,.tips-box .arrow-6 .arr-2,.tips-box .arrow-7 .arr-2,.tips-box .arrow-8 .arr-2{margin-top:2px;}.tips-box .arrow-5 .arr-3,.tips-box .arrow-6 .arr-3,.tips-box .arrow-7 .arr-1,.tips-box .arrow-8 .arr-1{margin-top:1px;}.tips-box .arrow-5 .arr-4,.tips-box .arrow-6 .arr-4,.tips-box .arrow-7 .arr-0,.tips-box .arrow-8 .arr-0{margin-top:0;}.lt-tips{position:absolute;z-index:1000;}.lt-tips .leftTop,.lt-tips .leftBottom,.lt-tips .topLeft,.lt-tips .topRight,.lt-tips .rightTop,.lt-tips .rightBottom,.lt-tips .bottomLeft,.lt-tips .bottomRight,.lt-tips .box{display:inline-block;}.lt-tips .leftTop,.lt-tips .leftBottom,.lt-tips .topLeft,.lt-tips .topRight,.lt-tips .rightTop,.lt-tips .rightBottom,.lt-tips .bottomLeft,.lt-tips .bottomRight{position:absolute;width:13px;height:13px;background:url(http://img.china.alibaba.com/images/vas/search/app_search/merge_1228.png) no-repeat transparent;}.lt-tips .leftTop{left:1px;top:15px;background-position:-106px -76px;width:8px;}.lt-tips .leftBottom{left:1px;bottom:15px;background-position:-106px -76px;width:8px;}.lt-tips .topLeft{left:19px;top:1px;background-position:-110px -55px;width:18px;height:8px;overflow:hidden;}.lt-tips .topRight{right:19px;top:1px;background-position:-110px -55px;width:18px;height:8px;overflow:hidden;}.lt-tips .rightTop{top:15px;background-position:-120px -79px;width:8px;}.lt-tips .rightBottom{bottom:15px;background-position:-120px -79px;width:8px;}.lt-tips .bottomLeft{left:19px;background-position:-112px -66px;width:18px;height:8px;overflow:hidden;}.lt-tips .bottomRight{right:19px;background-position:-113px -66px;width:18px;height:8px;overflow:hidden;}.lt-tips .rightTop,.lt-tips .rightBottom{right:1px;}.lt-tips .bottomLeft,.lt-tips .bottomRight{bottom:2px;}.lt-tips .icon,.lt-tips .close,.lt-tips .show{background:url(http://img.china.alibaba.com/images/vas/search/app_search/merge_1228.png) no-repeat transparent;width:16px;height:16px;}.lt-tips .box{line-height:16px;background-color:#FFFEEC;border:#FFC000 1px solid;padding:3px 22px 3px 9px;margin:8px;color:#9D3C11;}.lt-tips .icon{float:left;margin-right:8px;}.lt-tips .message{float:left;white-space:nowrap;}.lt-tips .close{position:absolute;right:12px;top:14px;background-position:-133px -56px;cursor:pointer;width:12px;height:12px;}.lt-tips .close:hover{background-position:-133px -78px;cursor:pointer;}.lt-tips .alarm{background-position:-9px -9px;}.lt-tips .show{background-position:-67px -9px;width:6px;right:8px;}.picture_search_detail{background:none repeat scroll 0 0 #FEFCF2;border:1px solid #F8BD59;height:auto!important;height:184px;min-height:184px;margin-bottom:25px;margin-top:10px;padding:8px 0 0 205px;position:relative;width:570px;}.picture_search_detail .pic{border:1px solid #FFE8C8;height:172px;left:8px;overflow:hidden;padding:1px;position:absolute;top:8px;width:172px;}.picture_search_detail .pic a{display:table-cell;font:12px/1 Tahoma,Helvetica,Arial;height:172px;text-align:center;vertical-align:middle;width:172px;}.picture_search_detail .pic img{vertical-align:middle;}.picture_search_detail .summary{font-family:"����";font-size:14px;font-weight:bold;line-height:20px;width:287px;padding-top:15px;}.picture_search_detail .summary span{color:#666;font-family:Arial,Helvetica,sans-serif;font-size:11px;margin-left:4px;white-space:nowrap;}.picture_search_detail .summary a{text-decoration:underline;}.picture_search_detail .summary a.ip4p_text{color:#989791!important;font-size:12px;font-weight:normal;margin:0 0 0 5px;}.picture_search_detail .member{font-family:"����";line-height:16px;padding:12px 0 0;width:287px;}.picture_search_detail .member a.cl{text-decoration:underline;}.picture_search_detail .member .int_gray{color:#555;font-size:12px;font-family:Arial,Helvetica,sans-serif;}.picture_search_detail .attribute{height:22px;margin-top:50px;width:345px;font:12px/1.2 Tahoma,Helvetica,Arial,"����",sans-serif;}.picture_search_detail .attribute a{display:inline-block;margin-right:10px;}.picture_search_detail .attribute .low-cxt-mumber-p,.picture_search_detail .attribute .low-cxt-mumber-c,.picture_search_detail .attribute .high-cxt-mumber-p,.picture_search_detail .attribute .high-cxt-mumber-c{height:16px;padding-left:55px;}.picture_search_detail .attribute .low-cxt-mumber-c{background-position:0 -180px;}.picture_search_detail .attribute .low-cxt-mumber-p{background-position:0 -160px;}.picture_search_detail .attribute .high-cxt-mumber-c{background-position:0 -240px;}.picture_search_detail .attribute .high-cxt-mumber-p{background-position:0 -220px;}.picture_search_detail .attribute .guarantee-mumber{background-position:0 -80px;height:16px;padding-left:20px;}.picture_search_detail .attribute .sysalipay{background-position:0 -20px;height:16px;padding-left:15px;}.picture_search_detail .attribute .pay7-icon{background-position:0 -1500px;height:16px;padding-left:18px;}.picture_search_detail .attribute .guarantee-mumber:hover,.picture_search_detail .attribute .sysalipay:hover,.picture_search_detail .attribute .pay7-icon:hover{text-decoration:none;}.picture_search_detail .attribute span.gray{color:#666561;}.picture_search_detail .offer{position:absolute;width:200px;top:25px;right:30px;}.picture_search_detail .offer li{float:left;height:100px;line-height:16px;overflow:hidden;text-align:center;}.picture_search_detail .offer li.feedback a{display:block;font-family:"����";height:20px;line-height:20px;margin-bottom:5px;text-align:left;text-decoration:underline;padding-left:20px;}.picture_search_detail .sysww_online,.picture_search_detail .sysww_phone,.picture_search_detail .sysww_off,.picture_search_detail .offer .syscat,.picture_search_detail .offer .callme,.picture_search_detail .offer .callme-on{width:52px;height:18px;padding-left:20px;}.picture_search_detail .offer .sysww_online{background-position:0 -78px;}.picture_search_detail .offer .sysww_online:hover{background-position:0 -38px;}.picture_search_detail .offer .sysww_phone{background-position:0 -118px;}.picture_search_detail .offer .sysww_phone:hover{background-position:0 -158px;}.picture_search_detail .offer .sysww_off{background-position:0 -198px;}.picture_search_detail .offer .syscat{background-position:0 -279px;}.picture_search_detail .offer .syscat:hover{background-position:0 -299px;}.picture_search_detail .offer .callme{display:none!important;background-position:0 -319px;}.picture_search_detail .offer .callme-on{display:block!important;}.picture_search_detail .offer .callme:hover{background-position:0 -339px;}.picture_search_detail .offer li.offer-price{color:#666;width:80px;margin-right:45px;}.picture_search_detail li.offer-price p{margin-bottom:5px;}.picture_search_detail .offer .offer-price em{color:#F00;font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:bold;}.picture_search_detail .hinttext{margin-top:5px;color:#555;line-height:16px;}.picture_search_btn,.picture_search_btn:hover{position:absolute;top:148px;left:50px;width:77px;height:21px;filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8;}.picture_search_btn{background-position:-104px -250px;}.picture_search_btn:hover{background-position:-104px -226px;}#liststate ul li{float:left;color:#666;}#liststate ul.num{float:right;margin-left:7px;padding-top:5px;}#liststate ul.num li a{border:1px solid #C4C4C4;display:block;float:left;font-size:11px;height:17px;line-height:17px;margin:0 0 0 5px;padding:0 4px;text-decoration:none;color:#777;}#liststate ul.num li a:hover{color:#ff7300;border:1px solid #FF7300;}#liststate ul.num li.txt{margin-top:-2px;width:90px;}#liststate ul.num li.txt .selected{border:1px solid #FF7300;}#liststate ul.num li.txt a.selected{color:#FF7300;}#liststate{height:25px;margin:5px 0;overflow:hidden;padding:2px;+line-height:16px;}#liststate a:link,#liststate a:visited{text-decoration:none;}#liststate a:hover{text-decoration:none;}#liststate .cleanchoice{color:#666!important;}#liststate .stateleft{padding-left:6px;margin-left:0;text-align:left;float:left;margin-top:5px;height:16px;}#liststate .batch-trace-b{background-position:0 -980px;padding-left:16px;}.p4p-search-img,.p4p-search-window{border:1px solid #E1E1E1;overflow:hidden;padding-bottom:5px;}.p4p-search-window .p4p-header,.p4p-search-img .p4p-header{height:30px;background-position:0 -209px;position:relative;}.p4p-search-window .p4p-header h3,.p4p-search-img .p4p-header h3{font-size:12px;font-weight:bold;padding-top:6px;padding-left:16px;}.p4p-search-window .p4p-header a:link,.p4p-search-window .p4p-header a:visited,.p4p-search-img .p4p-header a:link,.p4p-search-img .p4p-header a:visited{position:absolute;height:20px;text-align:center;width:115px;padding-top:4px;_padding-top:0;+line-height:18px;display:block;overflow:hidden;top:3px;right:8px;text-decoration:none;}.p4p-search-window .p4p-header a.p4p-m:link,.p4p-search-window .p4p-header a.p4p-m:visited,.p4p-search-img .p4p-header a.p4p-m:link,.p4p-search-img .p4p-header a.p4p-m:visited{position:absolute;top:3px;right:220px;background-position:0 -1200px;padding-left:10px;text-align:left;width:94px;text-decoration:underline;}.p4p-search-img .p4p-header a.p4p-expo,.p4p-search-window .p4p-header a.p4p-expo{right:120px!important;}.p4p-search-img .p4p-content,.p4p-search-window .p4p-content{padding:8px 0 0 22px;overflow:hidden;zoom:1;}.p4p-search-img .p4p-content:after,.p4p-search-window .p4p-content:after{content:"\0020";display:block;height:0;clear:both;}.p4p-search-window .p4p-content{padding:12px 0 0 18px;}.p4p-search-img .p4p-content li,.p4p-search-window .p4p-content li{width:102px;float:left;margin-right:22px;+display:inline-block;}.p4p-search-window .p4p-content li{width:152px;margin-right:38px;}.p4p-search-img .p4p-content li.p4p-item-fixed,.p4p-search-window .p4p-content li.p4p-item-fixed{margin-right:0;}.p4p-search-img .p4p-content li .p4p-pic,.p4p-search-window .p4p-content li .p4p-pic{height:100px;width:100px;border:1px solid #CECECE;text-align:center;padding:1px;overflow:hidden;}.p4p-search-window .p4p-content li .p4p-pic{height:150px;width:150px;}.p4p-search-img .p4p-content li .p4p-pic a,.p4p-search-window .p4p-content li .p4p-pic a{font:12px/1 Tahoma,Helvetica,Arial;display:table-cell;height:100px;text-align:center;vertical-align:middle;width:100px;*display:block;*font-family:Arial;*font-size:87.3px;}.p4p-search-window .p4p-content li .p4p-pic a{height:150px;width:150px;*font-size:131px;}.p4p-search-img .p4p-content li .p4p-pic a img,.p4p-search-window .p4p-content li .p4p-pic a img{vertical-align:middle;}.p4p-search-img .p4p-content li h3{height:36px;font-size:12px;padding-top:4px;width:100px;text-align:center;overflow:hidden;line-height:16px;}.p4p-search-window .p4p-content li h3{height:20px;font-size:14px;padding-top:4px;width:150px;text-align:center;overflow:hidden;white-space:nowrap;}.p4p-search-img .p4p-content li p,.p4p-search-window .p4p-content li p{height:20px;width:100px;text-align:center;line-height:20px;overflow:hidden;}.p4p-search-window .p4p-content li p{height:18px;width:150px;}.p4p-search-img .p4p-content li p em,.p4p-search-window .p4p-content li p em{font-size:12px;font-weight:bold;color:#F00;}.p4p-search-img .p4p-content li p b,.p4p-search-window .p4p-content li p b{font-family:helvetica;padding-right:2px;}.p4p-search-img .p4p-content .p4p-c6,.p4p-search-window .p4p-content .p4p-c6{color:#e63312;}.p4p-search-img .p4p-content li .p4p-ww,.p4p-search-window .p4p-content li .p4p-ww{height:24px;position:relative;padding-left:16px;text-align:left;line-height:20px;}.p4p-search-window .p4p-content li .p4p-ww{height:24px;padding-left:38px;}.p4p-search-img .p4p-content li .p4p-ww img,.p4p-search-window .p4p-content li .p4p-ww img{display:block;position:absolute;top:0;left:14px;}.p4p-search-window .p4p-content li .p4p-ww img{left:30px;}.p4p-search-img .p4p-content li .p4p-ww a,.p4p-search-window .p4p-content li .p4p-ww a{text-decoration:underline;color:#00319C;}.p4p-search-img .p4p-footer{overflow:hidden;padding:0 14px 0 0;zoom:1;}.p4p-search-img .p4p-footer a{background-position:0 -439px;display:block;float:right;height:25px;line-height:25px;padding-left:8px;width:98px;color:#00349a;}.p4p-search-img .p4p-footer:after{content:"";display:block;height:0;clear:both;visibility:hidden;}.p4p-search-img a.iconAlitalk,.p4p-search-window a.iconAlitalk{padding:2px 0 2px 20px;height:20px;width:52px;line-height:14px;color:#001D4C;text-decoration:underline!important;font-family:arial,helvetica,sans-serif;font-size:12px;font-weight:normal;zoom:1;_padding-top:3px;}.p4p-search-img a.iconAlitalk:hover,.p4p-search-window a.iconAlitalk:hover{color:#FF7300;}.p4p-search-img a.icon-on,.p4p-search-window a.icon-on{background-position:0 -78px;}.p4p-search-img a.icon-on:hover,.p4p-search-window a.icon-on:hover{background-position:0 -38px;}.p4p-search-img a.icon-off,.p4p-search-window a.icon-off{background-position:0 -198px;}.p4p-search-img a.icon-mb,.p4p-search-window a.icon-mb{background-position:0 -118px;}.p4p-search-img a.icon-mb:hover,.p4p-search-window a.icon-mb:hover{background-position:0 -158px;}div.mutualityproduct{text-align:left;margin-top:15px;height:72px;}.mutualityproduct .mutualityproduct-hd{height:30px;line-height:20px;padding-left:14px;}.mutualityproduct .mutualityproduct-bd{padding-left:16px;}.mutualityproduct .mutualityproduct-bd ul li{float:left;height:24px;overflow:hidden;font-size:14px;text-align:left;width:144px;line-height:20px;}.mutualityproduct .mutualityproduct-hd:after,.mutualityproduct .mutualityproduct-bd:after,.mutualityproduct .mutualityproduct-bd ul:after{content:"";display:block;height:0;clear:both;visibility:hidden;}div.mutualityproductleft{float:left;width:76px;margin-left:8px;font-weight:bold;line-height:180%;height:57px;}div.mutualityproductright{float:left;padding-left:5px;height:57px;}div.mutualityproductright a:link,div.mutualityproductright a:visited{color:#003278;text-decoration:none;}div.mutualityproductright a:hover{color:#e63312;text-decoration:underline;}div.mutualityproductright ul li{float:left;width:134px;margin-right:5px;text-align:left;word-space:nowarp;word-break:break-all;line-height:180%;font-size:12px;}div.mutualityproductright a.orange{color:#e63312;}.widget-bank-tips{height:28px;border:1px solid #FFE5CE;background-color:#FAFAF2;margin-top:6px;color:#00349a;line-height:28px;+line-height:29px;overflow:hidden;display:block;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin-bottom:8px;}.widget-bank-tips h3{padding-left:12px;}.widget-bank-tips .it-close{display:block;width:12px;height:12px;float:right;margin:8px 6px 0 0;text-decoration:none!important;background-position:0 -1100px;}.widget-bank-tips .it-close span{display:none;}.simple_search_box{width:100%;margin:0 auto;height:95px;border:1px solid #fff7e5;background-color:#fff7e5;margin-top:0;margin-bottom:10px;}.simple_search_content{width:500px;margin:0 auto;height:70px;text-align:left;margin-top:24px;}.simple_search_content .seach_input{height:30px;}.simple_search_tabs{height:22px;width:450px;margin-left:16px;line-height:20px;}.simple_search_tabs li{margin-left:20px;float:left;}.simple_search_tabs li a:link,.simple_search_tabs li a:visited{color:#00349a;}.simple_search_tabs li a:hover{color:#e63312;}.simple_search_tabs .no_ml{margin-left:0;}.simple_search_box .s_key{float:left;border:1px solid #bf8d02;border-right:none;height:20px;line-height:15px;+line-height:17px;padding:4px 3px;vertical-align:middle;width:344px;overflow:hidden;}.simple_search_box .s_but{height:24px;margin-left:6px;width:78px;line-height:20px;}.simple_search_box .butheight{float:left;background-position:0 -160px;border:0 none;color:#954200;cursor:pointer;font-size:14px;font-weight:bold;height:30px;line-height:30px;position:relative;text-shadow:0 1px 0 #FFEC98;width:90px;}#ProductGurantee{height:32px;text-align:left;line-height:32px;}.product-pro{width:500px;margin:0 auto;}.product-pro li{display:inline;padding-right:8px;margin-left:6px;height:24px;}.product-pro li.pp-first{background:none;}.product-pro a{vertical-align:middle;height:20px;line-height:20px;padding-left:20px;display:block;cursor:pointer;}.product-pro .alipay{background:none;width:154px;padding-right:0;}.product-pro .alipay a{background-position:0 -18px;padding-left:21px;}.product-pro .guarantee{width:130px;}.product-pro .guarantee a{background-position:0 -79px;padding-left:20px;}.product-pro .trust-brand{width:150px;}.product-pro .trust-brand a{background-position:0 -140px;padding-left:42px;}.go-topbtn{background-position:0 -220px;bottom:20px;cursor:pointer;height:56px;opacity:0;position:fixed;width:16px;}.go-topbtn a{display:block;height:56px;width:16px;}.go-topbtn span{display:none;}.other-btn1{display:inline-block;width:115px;height:23px;line-height:23px;text-align:center;color:#333!important;text-decoration:none!important;background-position:0 -278px;}.other-postbuy{margin:8px 0 8px 0;}.other-postbuy .title{background-position:0 -996px;border-bottom:1px solid #FFCC93;font-size:14px;font-weight:bold;height:20px;padding-left:14px;text-align:left;line-height:16px;display:block;}.other-postbuy .message{padding:8px 10px;}#listbottom_helpphone{margin-left:0;margin-top:8px;margin-bottom:20px;height:100px;}#listbottom_helpphone .title{padding-left:16px;border-bottom:1px solid #F8CF8F;height:20px;line-height:20px;margin-bottom:0;background-position:0 -996px;display:block;}#listbottom_helpphone ul{line-height:150%;margin:4px 10px 14px 10px;}#listbottom_helpphone ul li{clear:both;float:left;text-align:left;white-space:nowrap;}#listbottom_helpphone ul li .m{font-family:Arial,Helvetica,sans-serif;padding:0 2px;}#listbottom_helpphone ul li img{cursor:pointer;}#listbottom_helpphone ul li .call{background-position:4px -546px;padding-left:20px;}#freeCall img{cursor:pointer;}#listbottom_helpphone ul li span.blk{color:#000;font-weight:bold;}#UserFeedback{height:40px;}#UserFeedback p{padding-left:254px;padding-top:14px;line-height:16px;background-position:228px -348px;}#UserFeedback p a:link,#UserFeedback p a:visited{color:#00349a;text-decoration:underline;}#UserFeedback p a:hover{color:#ff7300;text-decoration:underline;}#SearchContent{_width:946px!important;}#yourhere .mid span{background:url() no-repeat 0 0;padding:0!important;margin:0!important;font-weight:normal;}.list_noinfor_title{float:right;width:100%;text-align:left;}.list_noinfor_title_text{font-size:14px;margin-top:5px;text-align:left;margin-left:24px;}.list_noinfor_content{margin:16px 0 10px 0;text-align:left;}.list_noinfor_content .b{padding-left:24px;font-size:13px;}.list_noinfor_content_li{margin-bottom:12px;text-align:left;margin-left:48px;list-style-type:disc;}.list_noinfor_content_li input{+line-height:22px;}.list_style{list-none;margin-left:0;}.list_style_none{list-style:none;}div.mutualityproduct{margin:14px 0;}div.mutualityproductleft{float:left;width:90px;margin-left:10px;font-weight:bold;margin-bottom:7px;}div.mutualityproductright{float:left;padding:7px;margin-left:10px;border:1px solid #ddd;background-color:#f8f8f8;}div.mutualityproductright ul li{float:left;width:100px;margin:0 17px 10px 0!important;margin:0 5px 10px 0;text-align:left;word-space:nowarp;}#right{width:200px;float:right;}#contentfloatleft{float:left;width:100%;height:100%;margin-right:-220px;}#contentleft{color:#000;padding:10px;height:100%;margin-right:220px;text-align:left;}.list_cs_loca{padding-left:40px;+padding-left:40px;_padding-left:37px;padding-right:0;}.listResultbox{border-top:1px solid #fff;border-bottom:1px solid #FC9;background-color:#FFF7F0;padding:5px;clear:both;}.listResultbox li{float:left;width:120px;}.listResultBar{clear:both;width:100%;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/sort_title_part5.gif) repeat-x 0 0;height:31px;}.listResultBar .part1{float:left;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/sort_title_part1.gif) no-repeat 0 0;width:19px;height:31px;}.listResultBar .part2{float:left;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/sort_title_part2.gif) repeat-x 0 0;height:31px;padding:12px 10px 0 10px;font-weight:bold;font-size:14px;}.listResultBar .part3{float:left;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/sort_title_part3.gif) no-repeat 0 0;width:7px;height:31px;}.listResultBar .part4{float:right;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/list_sort_title_arrow_wt.gif) no-repeat 0 12px;height:31px;padding:10px 15px 0 10px;color:#fff;}.listResultBar .part4 a{color:#fff;text-decoration:none;}.listResultBar .part4 a:link{color:#fff;text-decoration:none;}.listResultBar .part4 a:visited{color:#fff;text-decoration:none;}.listResultBar .part4 a:hover{color:#fff;text-decoration:underline;}.listResultBar .part5{float:right;background:url(http://img.china.alibaba.com/images/cn/market/trade/list/070423/sort_title_part4.gif) repeat-x 0 0;width:6px;height:31px;}ul.callinglayout{display:block;margin:0;padding:3px;list-style:none;text-align:left;width:100%;}ul.callinglayout a:link,ul.callinglayout a:visited{color:#00349a;}ul.callinglayout a:hover{color:#ff7300;}ul.callinglayout li{float:left;width:130px;margin:4px 4px;white-space:nowrap;height:18px;line-height:18px;}.int_gray{color:#666;font-family:Arial,Helvetica,sans-serif;font-size:10px;}.links_loca{margin-left:48px;+margin-left:48px;_margin-left:24px;margin-top:0!important;margin-top:20px;border-left:1px solid #ddd;border:1px solid #ddd;float:left;margin-bottom:21px!important;margin-bottom:0;}.links_gs{float:left;width:200px;line-height:18px;text-align:left;padding:10px;}.links_gs2{float:left;width:200px;line-height:18px;text-align:left;padding:10px;border-left:1px solid #ddd;}.bb{border:1px solid #ddd;}.ol_zero{text-align:left;margin-top:0;}.ol_zero .org{color:#ff7300;}.ol_z_1{font-size:12px;margin-bottom:12px;margin-left:12px;height:30px;padding-top:3px;}.ol_z_2{padding-left:24px;margin-top:7px;font-family:Arial,Helvetica,sans-serif;clear:both;font:12px/1.5;}.ol_z_2 span{padding-left:6px;}.ol_z_2 form{padding-left:14px;}.ol_z_2 input{line-height:20px;}.bb_cont_1{line-height:170%;margin:7px 7px 14px 7px;}.bb_cont_1:after{content:"";clear:both;display:block;visibility:hidden;height:0;}.bb_cont_2{text-align:left;margin-left:37px;height:36px;}.bb_font_1{color:#ff7300;font-size:14px;font-weight:bold;}a.bba_fb{display:block;width:82px;height:29px;}a.bba_fb:link,a.bba_fb:visited{background:url(http://img.china.alibaba.com/images/cn/home/fabu-normal.gif) no-repeat;}a.bba_fb:hover,a.bba_fb:active{background:url(http://img.china.alibaba.com/images/cn/home/fabu-hover.gif) no-repeat;}ul.bb_cont_out li{list-style-type:disc;list-style-position:outside;}ul.bb_cont_out li{float:none;padding-left:16px;clear:both;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/p.gif) no-repeat 0 0;list-style:none;}#main_nav{clear:both;margin-top:7px;}.mutualityproduct{background:#fff;}div.noborder{border:none;}div.bb1{border-color:#A8A8A8;}.p4p-sell-0{margin-left:0!important;}.call{background:transparent url(http://img.china.alibaba.com/images/cn/common/icon/v2/icon_telephone02_12x.gif) no-repeat 4px 1px;padding-left:20px!important;}.ol_z_1{font-size:14px;}.tell-me{background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -170px 0;padding-left:36px;padding-top:6px;text-align:left;}.mt-fixed{margin-top:10px;}.sp12{padding-right:12px;padding-left:0!important;}.tell-me-title{height:20px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -190px -81px;border-bottom:1px solid #FFCC93;font-size:14px;padding-left:14px;margin-left:24px;font-weight:bold;text-align:left;+line-height:20px;}.rm_sort_2{height:22px;width:741px;*width:739px;margin-bottom:4px;margin-left:32px;*margin-left:16px;clear:both;float:none;}.rm_sort_2 ul{padding-left:19px;+padding-left:7px;_padding-left:34px;}.re-keywords-title{height:20px;margin-left:28px;font-size:12px;overflow:hidden;font-family:Arial,Helvetica,sans-serif;}.leftfun_box_wt_bg{border:1px solid #FFCE94;}.recentbrowse .leftfun_box_wt_bg{border:0 none;}#SearchContent{width:100%!important;width:98%;}.relativekey-title{height:24px;overflow:hidden;font-size:12px;}.list_cs_loca{height:62px;}.tell-me-space{margin-top:12px;}.dotted-line{height:4px;font-size:0;border-top:1px dotted #ccc;margin-left:24px;}.related-search-zero{line-height:12px;width:740px;}.related-search-zero:after{display:block;overflow:hidden;visibility:hidden;clear:both;content:"";}.related-search-zero a:link,.related-search-zero a:visited{color:#00349A;text-decoration:none;}.related-search-zero a:hover{color:#ff7300;text-decoration:underline;}.related-search-zero .rs-t{height:20px;padding-top:12px;padding-left:28px;}.related-search-zero .rs-t h3{color:#000;padding-left:16px;line-height:14px;background:transparent url(http://img.china.alibaba.com/images/cn/search/list/p.gif) no-repeat 0 0;}.related-search-zero .rs-list{width:692px;margin-left:48px;}.related-search-zero .rs-list li{float:left;margin-right:16px;height:20px;line-height:14px;white-space:nowrap;}.search-seo{padding-top:2px;}.alert-for-0{border:1px solid #ffea5c;background-color:#ffffed;position:relative;margin:10px 0 0 0;}.alert-for-0-icon{background-image:url("http://img.china.alibaba.com/images/cn/search/list/moon.gif");display:inline-block;background-repeat:no-repeat;}.alert-for-0-icon{width:30px;height:30px;background-position:-170px 0;position:absolute;left:28px;top:10px;}.alert-for-0 p{padding:14px 10px 15px 65px;line-height:22px;font-size:14px;}.suggest-for-0{margin:15px 0 0 70px;}.suggest-for-0 li{display:block;margin-bottom:18px;}.suggest-for-0 p{margin-bottom:5px;}.suggest-for-0 .gray9{color:#999;}.suggest-for-0-btn{background-image:url("http://img.china.alibaba.com/cms/upload/2010/240/300/3042_110323176.png");display:inline-block;background-repeat:no-repeat;}.suggest-for-0-btn{width:95px;height:23px;background-position:0 0;text-align:center;line-height:23px;color:#333;}a.suggest-for-0-btn:link,a.suggest-for-0-btn:hover,a.suggest-for-0-btn:visited,a.suggest-for-0-btn:active{text-decoration:none;color:#333;}.suggest-for-0-call{background-image:url("http://img.china.alibaba.com/images/cn/common/icon/v2/icon_telephone02_12x.gif");background-repeat:no-repeat;display:inline-block;}.suggest-for-0-call{width:12px;height:12px;background-position:0 0;}.selloffer-norusult{margin-bottom:48px;}.selloffer-norusult .tell-msg{margin-left:64px;font-size:14px;font-weight:bold;padding:20px 0 20px 48px;background:url(http://img.china.alibaba.com/images/cn/search/list/moon.gif) no-repeat -170px 12px;}.selloffer-norusult .tell-msg .keyword{color:#ff7300;}.selloffer-norusult .suggest{margin-left:118px;line-height:1.5;}.selloffer-norusult .suggest .related-search{overflow:hidden;*zoom:1;width:638px;padding:8px 6px;}.selloffer-norusult .suggest .related-search .rs-list{float:left;width:508px;}.selloffer-norusult .suggest .related-search .rs-t{float:left;width:auto;}.selloffer-norusult .suggest .related-search .rs-list li{float:left;padding-right:8px;}.selloffer-norusult .suggest .related-search h3{padding:0;margin:0;background:none;font-weight:normal;}.selloffer-norusult .suggest .morekeyword{overflow:hidden;height:18px;width:630px;}.selloffer-norusult .suggest h3{font-weight:bold;padding:8px 0;}.selloffer-norusult .suggest p{padding:8px 6px;}.selloffer-norusult .suggest .m-call{background:url(http://img.china.alibaba.com/images/cn/common/icon/v2/icon_telephone02_12x.gif) no-repeat 4px 1px;padding-left:18px;}.selloffer-norusult .suggest .online-time{display:block;color:#999;}.selloffer-norusult .more-website .msg{line-height:1.5;margin-bottom:8px;}.selloffer-norusult .more-website .msg i{vertical-align:middle;display:inline-block;width:9px;height:10px;overflow:hidden;background:url(http://img.china.alibaba.com/images/chs/myalibaba/indexpoint.gif) no-repeat 0 0;}.selloffer-norusult .more-website li{width:142px;overflow:hidden;border:1px solid #A8A8A8;margin-bottom:8px;padding:8px;line-height:1.8;}.selloffer-norusult .more-website li img{vertical-align:middle;margin:0 2px;}.selloffer-norusult .more-website li em{font-size:14px;padding:0 4px;color:#ff7300;font-weight:bold;display:block;}#footer,#footer div,#footer p,#footer ul,#footer li,#footer dl,#footer dt,#footer dd{margin:0;padding:0;}#footer ul{list-style:none;}#footer a{font:12px/1.5 Tahoma,Arial,"\5b8b\4f53",sans-serif;text-decoration:none;}#footer{clear:both;text-align:center;}#footer #footer-v0{font:12px/1.5 Tahoma,Arial,"\5b8b\4f53",sans-serif;color:#999;width:952px;margin:0 auto;padding:8px 4px 0;}#footer-v0 a:link,#footer-v0 a:visited{color:#333;}#footer-v0 a:hover,#footer-v0 a:active{color:#ff7300!important;text-decoration:underline;}#footer-v0 .footer-container{background-color:#fff;border-top:3px solid #ff7300;padding-bottom:20px;}#footer-v0 p,#footer-v0 ul,#footer-v0 li,#footer-v0 dt,#footer-v0 dd{display:inline;}#footer-v0 p{_padding-right:8px;}#footer-v0 .ali-pages{padding:8px 0;}.fullscreen #footer #footer-v0{width:auto;min-width:952px;}.fullscreen #footer-v0 .ali-pages,.fullscreen #footer-v0 .ali-group{width:952px;margin:0 auto;}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * smart global css v1
3
+ * by Edgar
4
+ * May 13, 2010
5
+ */
6
+ @import url(http://style.china.alibaba.com/css/fdevlib2/reset/reset-min.css);
7
+ @import url(http://style.china.alibaba.com/css/fdevlib2/grid/grid-min.css);
8
+ @import url(http://style.china.alibaba.com/css/operation/global/fns-v1.css);
9
+ @import url(http://style.china.alibaba.com/css/operation/smart/v1/type.css);
@@ -0,0 +1,30 @@
1
+ @charset: "utf-8";
2
+
3
+ /** animation **/
4
+ @-webkit-keyframes greenPulse {
5
+ from { background-color: #749a02; -webkit-box-shadow: 0 0 9px #333; }
6
+ 50% { background-color: #91bd09; -webkit-box-shadow: 0 0 18px #91bd09; }
7
+ to { background-color: #749a02; -webkit-box-shadow: 0 0 9px #333; }
8
+ }
9
+
10
+ .green.button {
11
+ -webkit-animation-name: greenPulse;
12
+ -webkit-animation-duration: 2s;
13
+ -webkit-animation-iteration-count: infinite;
14
+ }
15
+
16
+ /** media query import **/
17
+ @import url(color.css) screen and (color);
18
+
19
+ /** media query **/
20
+ @media all and (min-width:500px) {
21
+ .big {
22
+ font-size:120%;
23
+ }
24
+ }
25
+
26
+ @media screen and (color), projection and (color) {
27
+ .big {
28
+ font-size:120%;
29
+ }
30
+ }
File without changes
File without changes
@@ -0,0 +1,4 @@
1
+ .base {
2
+ font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, "\6587\6CC9\9A7F\5FAE\7C73\9ED1","\5FAE\8F6F\96C5\9ED1", sans, sans-serif, "\5B8B\4F53";
3
+ }
4
+
@@ -0,0 +1,14 @@
1
+ /*
2
+ * ���� (gb2312)
3
+ */
4
+ .clr { clear: left; }
5
+ /*�������*/
6
+ .clr {
7
+ zoom:1;
8
+ }
9
+ .clr:after {
10
+ content:"\0020";
11
+ display:block;
12
+ height:0;
13
+ clear:both;
14
+ }
@@ -0,0 +1,4 @@
1
+ /*
2
+ * ���� (gb2312)
3
+ */
4
+ * { clear: left; }
@@ -0,0 +1,18 @@
1
+ @import url("http://style.china.alibaba.com/css/lib/fdev-v3/fdev.css");
2
+ @import url("http://style.china.alibaba.com/css/fdevlib/widget/al-calender.css");
3
+ @import url("http://style.china.alibaba.com/css/app/hood/baike/module/editarea.css");
4
+ /*
5
+ * old
6
+ *
7
+ */
8
+ /*�������*/
9
+ .clr {
10
+ zoom:1;
11
+ }
12
+ .clr:after {
13
+ content:"\0020";
14
+ display:block;
15
+ height:0;
16
+ clear:both;
17
+ }
18
+
@@ -0,0 +1 @@
1
+ /**
@@ -0,0 +1 @@
1
+ /**
@@ -0,0 +1 @@
1
+ /**
@@ -0,0 +1 @@
1
+ /**