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,324 @@
1
+ /*create by yoyo at 2007-08-29 */
2
+ /* global */
3
+ body {margin:0px;border:0px;font-size:12px;font-family:����;background-color:#fff;}
4
+ form {margin:0px;padding:0px;}
5
+ ul {list-style: none;margin: 0px;padding: 0px;}
6
+ img {border:0px;}
7
+ a:link{color: #003278;text-decoration: none;}
8
+ a:visited{color: #003278;text-decoration: none;}
9
+ a:hover{color: #FF6600;text-decoration: underline;}
10
+ .s {font-size:12px;}
11
+ .m {font-size:14px;font-weight:bold;}
12
+ .c {font-size:14px;}
13
+ .sm {font-size:12px;font-weight:bold;}
14
+ .orange {color:#ff7300;}
15
+ .orange a{color:#ff7300;}
16
+ .orange a:link{color:#ff7300;}
17
+ .orange a:visited{color:#ff7300;}
18
+ .orange a:hover{color:#ff7300;}
19
+
20
+ .redtext1 a {color:#cc0000;}
21
+ .redtext1 a:link{color:#cc0000;}
22
+ .redtext1 a:visited{color:#cc0000;}
23
+ .redtext1 a:hover{color:#cc0000;}
24
+ .gray{color:#666;}
25
+ .writetext{color:#fff}
26
+ .num_bg{color:#ff7300;}
27
+ img.icon{position:absolute;}
28
+ ul li a.new_ico{background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_new_ico.gif) no-repeat;background-position:right;padding-right:18px;}
29
+ ul li a.hot_ico{background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_hot_ico.gif) no-repeat;background-position:right;padding-right:18px;}
30
+ ul li a.vid_ico{background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_vid_ico.gif) no-repeat;background-position:right;padding-right:18px;}
31
+ ul li a.free_ico{background:url(http://img.china.alibaba.com/images/cn/home/070215/Icon_free01_12x.gif) no-repeat;background-position:right;padding-right:18px;}
32
+ ul li a.pro_ico{background:url(http://img.china.alibaba.com/images/cn/common/icon/v2/icon_expert01_12x.gif) no-repeat;background-position:right;padding-right:18px;}
33
+ ul li a.tp_ico{background:url(http://img.china.alibaba.com/images/cn/common/icon/v2/icon_trust01_12x.gif) no-repeat;background-position:right;padding-right:18px;}
34
+ .left{float:left;}
35
+ .right{float:right;}
36
+
37
+ /*---------------------------------------β��ʼ--------------------------------------*/
38
+ #footer {clear:both;width:99%;border-top:3px solid #ff7300;margin:10px auto;padding-top:7px;}
39
+ #footer ul {clear:both;float:left;width:100%;text-align:center;margin:3px auto;}
40
+ #footer li {display:inline;border-right:1px solid #666;padding:0px 8px;}
41
+ #footer .no_border {border:0px;}
42
+ #foot_corp {clear:both;width:470px;margin:10px auto;}
43
+ #foot_corp span {float:left;margin:0px 5px;}
44
+ #foot_corp span.img_pd {padding-top:15px;}
45
+ /*---------------------------------------���--------------------------------------*/
46
+
47
+ .layout_box {width:100%;}
48
+ .main_box {width:952px;margin:7px auto;margin:0px auto;}
49
+ .mid_box {float:left !important;float:;margin-right:7px;margin-top:7px;}
50
+
51
+ .title_bg {background-color:#e5e5e5;}
52
+ .gray_box{border:1px solid #bbbbbb;}
53
+ .do_line {border-bottom:1px dotted #c2c2c2;margin-bottom:6px;padding-bottom:4px;}
54
+ .du_line {border-top:1px dotted #c2c2c2;margin-top:6px;padding-top:6px;}
55
+ .d_ico {background:url(http://img.china.alibaba.com/images/cn/home/070215/d_ico.gif) 5px 8px no-repeat;padding-left:12px;}
56
+ .db_ico {background:url(http://img.china.alibaba.com/images/cn/home/070215/db_ico.gif) 5px 8px no-repeat;padding-left:20px;}
57
+ .bb_ico {background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_bangb_ico.gif) 0px 3px no-repeat;padding-left:18px;}
58
+ ul.h_list li {display:inline;margin:3px auto;text-align:center}
59
+ .org_arrow {background:url(http://img.china.alibaba.com/images/cn/home/070215/right_org_arrow.gif) 3px 2px no-repeat;padding-left:22px;}
60
+ .lh13{line-height:130%;}
61
+ .lh15{line-height:150%;}
62
+ .lh17{line-height:170%;}
63
+ .lh20{line-height:200%;}
64
+ .lh_pd{margin-top:-3px;}
65
+ .img_border{border:1px solid #bbb;}
66
+ .red_border{border:1px solid #F2641C;}
67
+ .img_pd {padding-top:4px;}
68
+ .pd{margin-top:7px;}
69
+ .pd_r{padding-right:7px;}
70
+ .pd2{margin-top:14px;}
71
+ .pd_h{padding-left:7px;}
72
+ .pd_2h{padding-left:14px;}
73
+ .cent{text-align:center;}
74
+ .vcent{vertical-align:middle;}
75
+ .hand_cs{cursor:pointer;}
76
+ .clr{clear:both;}
77
+
78
+ #slidetexts{margin-left:5px;margin-top:3px;height:20px;line-height:150%;overflow:hidden;text-align:left;padding-left:5px;}
79
+ #slidetexts li{clear:both}
80
+ #slidetexts li div{width:175px;overflow:hidden}
81
+ #slidetexts1{height:15px;line-height:15px;overflow:hidden;text-align:left;padding-left:5px;}
82
+ #slidetexts1 li{clear:both}
83
+ #slidetexts1 li div{width:175px;overflow:hidden}
84
+ #slidetexts2{height:15px;line-height:15px;overflow:hidden;text-align:left;padding-left:5px;}
85
+ #slidetexts2 li{clear:both}
86
+ #slidetexts2 li div{width:175px;overflow:hidden}
87
+
88
+ .alinotice{background-color:#FEF1E9;line-height:130%;margin-top:10px;margin-bottom:16px;padding:5px;height:35pxborder:1px solid #FA9150;width:932px;padding-left:10px;padding-right:10px;margin-bottom:7px;margin-top:7px}
89
+ .alinotice .left{width:912px}
90
+ .alinotice .right{width:20px;text-align:right}
91
+ .alinotice .sign{text-align:right}
92
+
93
+ /*��Ӫ��ͼ�ꡢ������������ɫʹ�ù����°��ﶯ̬��Ӫ�淶*/
94
+ .pop_link_index{background:#FEE6BD;}
95
+ .pop_link_index a{background:#FEE6BD;}
96
+ .blue_link_index{color:#0C90DE}
97
+ .blue_link_index a{color:#0C90DE}
98
+
99
+ /*��ҵ��Ŀ�Ӻ�*/
100
+ .col1 .orange a:link{color:#ff7300}
101
+ .col1 .orange a:visited{color:#ff7300}
102
+ .col1 .orange a:hover{color:#ff7300}
103
+
104
+ .col2 .orange a:link{color:#ff7300}
105
+ .col2 .orange a:visited{color:#ff7300}
106
+ .col2 .orange a:hover{color:#ff7300}
107
+
108
+ .col1 .clr,.col2 .clr{clear:none !important;clear:both}
109
+
110
+
111
+ /*������ʽ*/
112
+ .title_01{background:url(http://img.china.alibaba.com/images/cn/home/070709/left_title_01.gif);width:295px;padding-left:21px;padding-top:7px;padding-right:14px; height: 19px}
113
+ .title_02{background:url(http://img.china.alibaba.com/images/cn/home/070215/mid_sec_title_bg.gif) repeat-x 0px 12px;height:16px;margin-top:7px}
114
+ .forpic{margin-top:7px;}
115
+ .forpic ul{width:75px;text-align:center}
116
+ .forpic ul img{border:1px solid #BDBAAB;width:64px;height:48px}
117
+ /*������ʽ*/
118
+ .grid_01{margin:7px 0px 0px 11px;}
119
+ .grid_01 li{float:left;border:1px #BFBAAC solid;margin-right:1px;margin-top:1px;width:150px;text-align:center;line-height:150%}
120
+
121
+ /*�߿���ʽ*/
122
+ .bb{clear:both;width:327px;padding-bottom:5px; background-color:#FAF4EB; border:1px #BFBAAC solid;}
123
+ .bb li.left {margin:5px 0px 0px 10px;float:left;font-size:14px;font-weight:bold;}
124
+ .bb .content {clear:both;margin:0px 7px 0px 14px;height:auto;}
125
+ .bb .content li.left{float:left;background-color:#FAF4EB;height:12px;font-weight:bold;color:#ff7300; font-size:12px;margin-left:0px; width:auto;}
126
+
127
+ /* layout */
128
+ #top_nav_hk1{width:100%;height:24px;margin:0px auto;}
129
+ #top_nav_hk2{position: absolute;z-index:10;width:100%}
130
+ #top_nav_bg {width:100%;height:24px;background-color:#f4f3f2;border-bottom:1px solid #cdcdcd;}
131
+ #top_nav {clear:both;height:24px;padding-top:2px !important;padding-top:0px;vertical-align:middle;}
132
+ #top_nav ul {margin:7px 0px 7px 0px;}
133
+ #top_nav li {padding:0px 6px;border-left:1px solid #AFA69E;}
134
+ #top_nav .first{padding:0px 7px 0px 0px;border-left:1px solid #AFA69E;}
135
+ #top_nav .last{padding:0px 0px 0px 7px;border-left:1px solid #AFA69E;}
136
+ #top_nav li a{text-decoration: none;}
137
+ #top_nav .left {float:left;}
138
+ #top_nav .right {float:right;}
139
+ #top_nav .no_border {border:0px;}
140
+ #top_nav .img_bt {margin:-5px -5px -3px -5px !important;margin:-4px -5px -3px -5px;}
141
+ #top_search{width:952px;}
142
+
143
+ #main_nav {clear:both;margin-top:7px;}
144
+ #main_nav .bt_area {float:right;width:560px;}
145
+ #main_nav li a{font-weight:normal;margin:2px 3px;}
146
+ #main_nav li.wrods2 a{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release2a.gif) no-repeat 0px 0px;text-decoration: none;width:31px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
147
+ #main_nav li.wrods2 a:link{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release2a.gif) no-repeat 0px 0px;text-decoration: none;width:31px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
148
+ #main_nav li.wrods2 a:hover{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release2c.gif) no-repeat 0px 0px;text-decoration: none;width:31px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
149
+ #main_nav li.wrods2 a:active{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release2b.gif) no-repeat 0px 0px;text-decoration: none;width:31px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
150
+ #main_nav li.wrods4 a{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release4a.gif) no-repeat 0px 0px;text-decoration: none;width:57px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
151
+ #main_nav li.wrods4 a:link{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release4a.gif) no-repeat 0px 0px;text-decoration: none;width:57px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
152
+ #main_nav li.wrods4 a:hover{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release4c.gif) no-repeat 0px 0px;text-decoration: none;width:57px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
153
+ #main_nav li.wrods4 a:active{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release4b.gif) no-repeat 0px 0px;text-decoration: none;width:57px;height:19px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
154
+
155
+ #main_nav li.wrods4a a{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release.gif) no-repeat 0px 0px;text-decoration: none;width:60px;height:19px;padding:3px 0px 0px 22px !important;padding:4px 0px 0px 22px;}
156
+ #main_nav li.wrods4a a:link{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release.gif) no-repeat 0px 0px;text-decoration: none;width:60px;height:19px;padding:3px 0px 0px 22px !important;padding:4px 0px 0px 22px;}
157
+ #main_nav li.wrods4a a:hover{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release.gif) no-repeat 0px 0px;text-decoration: none;width:60px;height:19px;padding:3px 0px 0px 22px !important;padding:4px 0px 0px 22px;}
158
+ #main_nav li.wrods4a a:action{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070827/release.gif) no-repeat 0px 0px;text-decoration: none;width:60px;height:19px;padding:3px 0px 0px 22px !important;padding:4px 0px 0px 22px;}
159
+
160
+ #main_nav li.wrods6 a{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_top_bt3a.gif) no-repeat 0px 0px;text-decoration: none;width:76px;height:16px;padding:3px 0px 0px 14px !important;padding:4px 0px 0px 14px;}
161
+ #main_nav li.wrods6 a:link{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_top_bt3a.gif) no-repeat 0px 0px;text-decoration: none;}
162
+ #main_nav li.wrods6 a:hover{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_top_bt3c.gif) no-repeat 0px 0px;text-decoration: none;}
163
+ #main_nav li.wrods6 a:active{display:block;background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_top_bt3b.gif) no-repeat 0px 0px;text-decoration: none;}
164
+
165
+ #c_fship{width:85px;margin-left:-3px;}
166
+ #c_fship a{width:83px;padding:3px 0px 20px 4px;}
167
+ #c_fship .alk{background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_a.gif) no-repeat 67px 3px;padding-right:18px;}
168
+ #c_fship .ahv{>background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_up.gif) no-repeat 0px 1px !important;background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_up.gif) no-repeat 0px 0px;padding-right:20px;}
169
+ #float_menu ul.cship_list li{display:block;margin:0px;float:left;width:83px;}
170
+ #float_menu ul.cship_list li.top_border{border-top:1px solid #C2BBB5;margin-top:0px;}
171
+ #float_menu ul.cship_list li a{display:block;cursor:pointer;background-color:#fff;font-weight:normal;font-size:12px;padding:4px 20px 3px 10px;width:53px;}
172
+ #float_menu ul.cship_list li a:hover{display:block;cursor:pointer;background-color:#FFEFD5;font-weight:normal;font-size:12px;}
173
+
174
+ #e_service{width:100px;margin-left:-3px;}
175
+ #e_service a{width:98px;padding:3px 0px 20px 4px;}
176
+ #e_service .alk{background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_a.gif) no-repeat 82px 3px;padding-right:18px;}
177
+ #e_service .ahv{>background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_up_5.gif) no-repeat 0px 1px !important;background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_up_5.gif) no-repeat 0px 0px;padding-right:20px;}
178
+ #float_menu_es ul.e_service_list li{display:block;margin:0px;float:left;width:93px;}
179
+ #float_menu_es ul.e_service_list li.top_border{border-top:1px solid #C2BBB5;margin-top:0px;}
180
+ #float_menu_es ul.e_service_list li a{display:block;cursor:pointer;background-color:#fff;font-weight:normal;font-size:12px;padding:4px 0px 3px 10px;width:88px;}
181
+ #float_menu_es ul.e_service_list li a:hover{display:block;cursor:pointer;background-color:#FFEFD5;font-weight:normal;font-size:12px;}
182
+
183
+
184
+ #c_fship1,#c_fship2{width:72px;}
185
+ #c_fship1 a,#c_fship2 a{width:73px;padding:3px 0px 20px 4px;}
186
+ #c_fship1 .alk,#c_fship2 .alk{background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_a.gif) no-repeat 55px 3px;padding-right:20px;}
187
+ #c_fship1 .ahv,#c_fship2 .ahv{>background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_up.gif) no-repeat -12px 0px !important;background:url(http://img.china.alibaba.com/images/cn/home/070215/c_index_nav_club_arrow_up.gif) no-repeat -12px 0px;padding-right:20px;}
188
+ #float_menu1 ul.cship_list li,#float_menu2 ul.cship_list li{padding:0px;border-left:0px;display:block;margin:0px;float:left;width:50px}
189
+
190
+ #float_menu1 ul.cship_list li.top_border,#float_menu2 ul.cship_list li.top_border{border-top:1px solid #C2BBB5;>margin-top:5px !important;margin-top:0px}
191
+ #float_menu1 ul.cship_list li a,#float_menu2 ul.cship_list li a{display:block;cursor:pointer;background-color:#fff;font-weight:normal;font-size:12px;padding:3px 5px 3px 7px;width:60px;}
192
+ #float_menu1 ul.cship_list li a:hover,#float_menu2 ul.cship_list li a:hover{display:block;cursor:pointer;background-color:#FFEFD5;font-weight:normal;font-size:12px;}
193
+
194
+
195
+ #nav_title1 ul li.bg1{float:left;background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_top_tp.gif) 0px 0px repeat-x;width:150px;height:27px;margin-top:7px;padding:8px 0px 0px 30px;}
196
+ #nav_title1 ul li.bg1 a{color:#525252;font-weight:bold;}
197
+ #nav_title1 ul li.bg2{float:left;height:27px;width:575px;margin-top:7px;margin-left:7px;}
198
+ #nav_title1 ul li div.bg2b{float:right;border:dotted 1px #C2BBAD;border-left:0px;height:21px;width:516px;padding-top:4px;}
199
+ #nav_title1 ul li.bg3{background:url(http://img.china.alibaba.com/images/cn/home/070709/china_hp_top_alipay.gif) 0px 0px repeat-x;width:150px;height:27px;margin-top:7px;float:right;padding:8px 0px 0px 30px;}
200
+ #nav_title1 ul li.bg3 a{color:#525252;font-weight:bold;}
201
+ .mtdg{position:absolute;margin-left:400px;margin-top:3px}
202
+
203
+ /* search */
204
+ /*---------------------------------------����������ʼ--------------------------------------*/
205
+
206
+ /* top_search begin */
207
+ #top_search {position:relative;height:92px;text-align:center;margin:0px auto;margin-top:7px;}
208
+ #top_search a, #top_search div, #top_search li {font-size:12px;}
209
+ #top_search a:link,#top_search a:visited{color:#000;}
210
+ #top_search .topul_layer {width:950px;text-align:center;margin:0 auto;}
211
+ #top_search #topul {position:relative;margin:0 auto;width:909px;height:28px;z-index:2;}
212
+ #top_search #topul li {position:relative;cursor:default;color:#fff;font-weight:600;line-height:250%;text-align:center;font-size:14px;height:100%;}
213
+ #top_search #topul li a {display:block;height:100%;line-height:250%;font-size:14px;font-weight:100;text-align:center;overflow:hidden;color:#00000}
214
+ #top_search #topul li a:hover {text-decoration:none;}
215
+ #top_search #topul li .sr_dot {position:absolute;top:-5px;right:10px;}
216
+
217
+ #top_search #topul .lw_v_2w {font-weight:600;color:#fff;cursor:default;width:41px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070827/dangqian2.gif) no-repeat;}
218
+ #top_search #topul .lw_v_3w {font-weight:600;color:#fff;cursor:default;width:57px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070827/dangqian.gif) no-repeat;}
219
+ #top_search #topul .lw_v_4w {font-weight:600;color:#fff;cursor:default;width:69px;padding-left:1px;background:url(http://img.china.alibaba.com/images/cn/home/070827/dangqian4.gif) no-repeat;}
220
+ #top_search #topul .lw_v_5w {font-weight:600;color:#fff;cursor:default;width:79px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_v_5w.gif) no-repeat;}
221
+ #top_search #topul .lw_v_5hw {font-weight:600;color:#fff;cursor:default;width:87px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_v_5hw.gif) no-repeat;}
222
+
223
+ #top_search .lw_2w {width:40px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070827/nor2.gif) no-repeat;}
224
+ #top_search .lw_3w {width:53px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070827/nor.gif) no-repeat;}
225
+ #top_search .lw_4w {width:68px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070827/nor4.gif) no-repeat;}
226
+ #top_search .lw_5w {width:79px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_n_5w.gif) no-repeat;}
227
+ #top_search .lw_5hw {width:87px;padding-left:2px;background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_n_5hw.gif) no-repeat;}
228
+
229
+ #top_search .lw_2w:link {background:url(http://img.china.alibaba.com/images/cn/home/070827/nor2.gif) no-repeat;}
230
+ #top_search .lw_2w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070827/hov2.gif) no-repeat;}
231
+ #top_search .lw_3w:link {background:url(http://img.china.alibaba.com/images/cn/home/070827/nor.gif) no-repeat;}
232
+ #top_search .lw_3w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070827/hov.gif) no-repeat;}
233
+ #top_search .lw_4w:link {background:url(http://img.china.alibaba.com/images/cn/home/070827/nor4.gif) no-repeat;}
234
+ #top_search .lw_4w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070827/hov4.gif) no-repeat;}
235
+ #top_search .lw_5w:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_n_5w.gif) no-repeat;}
236
+ #top_search .lw_5w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_h_5w.gif) no-repeat;}
237
+ #top_search .lw_5hw:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_n_5hw.gif) no-repeat;}
238
+ #top_search .lw_5hw:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/tstt_h_5hw.gif) no-repeat;}
239
+ #top_search .lw_rb {width:1px;overflow:hidden;background:url(http://img.china.alibaba.com/images/cn/home/070827/border.gif);}
240
+
241
+ #top_search .sr_box {position:relative;width:100% !important;text-align:center;margin:0 auto;top:0px;height:67px;background:url(http://img.china.alibaba.com/images/cn/home/070827/search_bg.gif) repeat-x;z-index:1;border-left:1px #ff7300 solid;border-right:1px #ff7300 solid;}
242
+ #top_search #sr_sw_m {position:relative;width:950px;height:64px;text-align:left;text-align:left;margin:0 auto;}
243
+ #top_search .sr_in {position:relative;text-align:left;top:13px;padding-left:28px;width:422px;z-index:14;}
244
+ #top_search .src_keyw {color:#AAB7C7;font-size:14px;padding:0px 0px 0px 5px;line-height:22px;height:20px;width:515px;border:1px solid #CDCDCD;}
245
+ #top_search .src_subm {position:absolute;left:562px;top:13px;+top:13px;height:24px;width:75px;font-size:14px;font-weight:600;cursor:pointer;}
246
+ #top_search .akc_subm {position:absolute;left:660px;top:13px;+top:13px;height:24px;width:75px;font-size:14px;font-weight:600;cursor:pointer;}
247
+ #top_search .sr_ra {position:absolute;left:23px;top:42px;height:24px;overflow:hidden;}
248
+
249
+ #top_search .sr_w1 {position:absolute;width:60px;left:160px;top:15px;font-size:14px;font-weight:600;}
250
+ #top_search .sr_w2 {position:absolute;left:750px;top:20px;+top:20px;z-index:5;}
251
+ #top_search .sr_w2 li{float:left;padding-right:10px;color:#ffffff;}
252
+ #top_search .sr_w2 li a{color:#ffffff;}
253
+ #top_search .sr_w2 li a:link{color:#ffffff;}
254
+ #top_search .sr_w2 li a:visited{color:#ffffff;}
255
+ #top_search .sr_w2 li a:hover{color:#ffffff;}
256
+ #top_search .sr_w2 a:hover {text-decoration:none;}
257
+ #top_search .sr_w2a {position:absolute;left:730px;top:20px;+top:20px;z-index:5;}
258
+ #top_search .sr_w2a li{float:left;padding-right:10px;color:#ffffff;}
259
+ #top_search .sr_w2a li a{color:#ffffff;}
260
+ #top_search .sr_w2a li a:link{color:#ffffff;}
261
+ #top_search .sr_w2a li a:visited{color:#ffffff;}
262
+ #top_search .sr_w2a li a:hover{color:#ffffff;}
263
+ #top_search .sr_w2a a:hover {text-decoration:none;}
264
+ .dw_ico {background:url(http://img.china.alibaba.com/images/cn/home/070827/dianw.gif) 0px 4px no-repeat;padding-left:10px;}
265
+ #top_search .sr_w3 {position:absolute;right:42px;top:72px;z-index:5;}
266
+ #top_search .sr_w3 a {color:#CC0000;}
267
+ #top_search .sr_h_1 {position:absolute;top:47px;left:445px;height:14px;overflow:hidden;z-index:10;}
268
+ #top_search .sr_w4 {position:absolute;left:20px;top:35px;z-index:5;}
269
+ #top_search .sr_w5 {position:absolute;top:20px;left:790px;height:14px;overflow:hidden;z-index:10;}
270
+ #top_search .sr_w5 li{float:left;padding-right:10px;color:#ffffff;}
271
+ #top_search .sr_w5 li a{color:#ffffff;}
272
+ #top_search .sr_w5 li a:link{color:#ffffff;}
273
+ #top_search .sr_w5 li a:visited{color:#ffffff;}
274
+ #top_search .sr_w5 li a:hover{color:#ffffff;}
275
+
276
+ #top_search #sr_small .sr_box {width:776px;}
277
+ #top_search #sr_small #sr_sw_m {width:776px;}
278
+ #top_search #sr_small .topul_layer {width:778px;}
279
+ #top_search #sr_small #topul {width:778px;height:30px;}
280
+ #top_search #sr_small #topul li {font-size:12px;line-height:249%;}
281
+ #top_search #sr_small #topul li a {line-height:249%;font-size:12px;}
282
+
283
+ #top_search #sr_small .lw_v_2w {width:35px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_v_2w.gif) no-repeat;}
284
+ #top_search #sr_small .lw_v_3w {width:46px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_v_3w.gif) no-repeat;}
285
+ #top_search #sr_small .lw_v_4w {width:59px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_v_4w.gif) no-repeat;}
286
+ #top_search #sr_small .lw_v_5w {width:69px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_v_5w.gif) no-repeat;}
287
+ #top_search #sr_small .lw_v_5hw {width:80px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_v_5hw.gif) no-repeat;}
288
+
289
+ #top_search #sr_small .lw_2w {width:35px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_2w.gif) no-repeat;}
290
+ #top_search #sr_small .lw_3w {width:46px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_3w.gif) no-repeat;}
291
+ #top_search #sr_small .lw_4w {width:59px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_4w.gif) no-repeat;}
292
+ #top_search #sr_small .lw_5w {width:69px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_5w.gif) no-repeat;}
293
+ #top_search #sr_small .lw_5hw {width:80px;background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_5hw.gif) no-repeat;}
294
+
295
+ #top_search #sr_small .lw_2w:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_2w.gif) no-repeat;}
296
+ #top_search #sr_small .lw_2w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_h_2w.gif) no-repeat;}
297
+ #top_search #sr_small .lw_3w:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_3w.gif) no-repeat;}
298
+ #top_search #sr_small .lw_3w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_h_3w.gif) no-repeat;}
299
+ #top_search #sr_small .lw_4w:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_4w.gif) no-repeat;}
300
+ #top_search #sr_small .lw_4w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_h_4w.gif) no-repeat;}
301
+ #top_search #sr_small .lw_5w:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_5w.gif) no-repeat;}
302
+ #top_search #sr_small .lw_5w:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_h_5w.gif) no-repeat;}
303
+ #top_search #sr_small .lw_5hw:link {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_n_5hw.gif) no-repeat;}
304
+ #top_search #sr_small .lw_5hw:hover {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_h_5hw.gif) no-repeat;}
305
+ #top_search #sr_small .lw_lb {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_lb.gif);}
306
+ #top_search #sr_small .lw_rb {background:url(http://img.china.alibaba.com/images/cn/home/070709/sml/tstt_rb.gif);}
307
+
308
+ #top_search #sr_small .sr_in {left:148px;}
309
+ #top_search #sr_small .src_subm {left:578px;}
310
+ #top_search #sr_small .akc_subm {left:656px;}
311
+ #top_search #sr_small .sr_ra {left:148px;}
312
+
313
+ #top_search #sr_small .sr_w1 {left:88px;}
314
+ #top_search #sr_small .sr_w2 {left:578px;}
315
+ #top_search #sr_small .sr_w3 {right:22px;}
316
+ #top_search #sr_small .sr_h_1 {left:32px;}
317
+ /* top_search end */
318
+ /*---------------------------------------�������������----------*/
319
+
320
+ /*������Ͳ˵�*/
321
+ .MB_Menu {BORDER: #7B9CBC 1px solid;POSITION: absolute; DISPLAY: none;Z-INDEX: 9900; TEXT-ALIGN: left; width:285px;font-size:14px;BACKGROUND-COLOR: #ffffff;overflow:auto;}
322
+ .MB_Menu DIV {margin:0px;padding-top:2px;padding-left:2px;OVERFLOW: hidden; CURSOR: pointer; HEIGHT: 18px; COLOR: #000;font-size:14px;border:1px solid #ffffff;BACKGROUND-COLOR: #ffffff;}
323
+ .MB_Menu .MB_MenuSelectedItem {margin:0px;padding-top:2px;padding-left:2px;BACKGROUND-COLOR: #FFBB9D;color:#000;font-size:14px;}
324
+ .MB_Menu1 {BORDER: #ffffff 1px solid;POSITION: absolute; Z-INDEX: 100; TEXT-ALIGN: left; width:467px;display:none;height:205px;font-size: 12px;BACKGROUND-COLOR: #ff0000;overflow:auto;margin:1px 1px;}
@@ -0,0 +1,3 @@
1
+ @import url("http://style.china.alibaba.com/css/app/winport/layout/header/topbar.css");
2
+
3
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/default/default.css");
@@ -0,0 +1,13 @@
1
+ /**
2
+ * ����ǰ̨ҳ��
3
+ *
4
+ * @author qijun.weiqj
5
+ */
6
+
7
+ /**
8
+ * header
9
+ */
10
+ #header .topbar-wrapper {
11
+ padding-bottom: 0;
12
+ }
13
+
@@ -0,0 +1,25 @@
1
+ @import url("http://style.china.alibaba.com/css/app/winport/layout/header/topbar.css");
2
+
3
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/module/widget/dialog.css");
4
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/module/widget/floattips.css");
5
+
6
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/diy.css");
7
+
8
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/site/header.css");
9
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/site/skins.css");
10
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/site/pages.css");
11
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/site/publish-dialog.css");
12
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/site/switch-version.css");
13
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/site/guide.css");
14
+
15
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/bar.css");
16
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/shim.css");
17
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/view-mode.css");
18
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/adder.css");
19
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/list-panel.css");
20
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/edit-dialog.css");
21
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/move.css");
22
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/dd.css");
23
+
24
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/form/company-name.css");
25
+ @import url("http://style.china.alibaba.com/css/app/platform/winport/page/diy/mod/form/auto-rec-offers.css");
@@ -0,0 +1,27 @@
1
+ /* locked by Edgar 100511 */
2
+ .hide{display:none;}
3
+ .locate{position:relative;}
4
+ .clear{clear:left;}
5
+ .last-col{margin-right:0 !important;padding-right:0 !important;}
6
+ a.atom-img,a.atom-mix{display:inline-block;}
7
+ .content{width:100%;}
8
+ .content,.list-product,.list-tags,.cell-tags dd ul{display:inline-block;overflow:hidden;}
9
+ a.atom-mix:hover,a.atom-mix:visited{text-decoration:none;}
10
+ a.atom-mix .desc{display:block;line-height:18px;}
11
+ .list,.cell-header,.atom-term{float:left;width:100%;}
12
+ .float,.align,.align li,.align dt,.align dd,
13
+ .sort li,.term dt,.term dd,.atom-term dt,.atom-term dd,
14
+ .list li,.list-product li,.list-tags li,
15
+ .cell-header .title,.cell-product-3rd dt{float:left;}
16
+ .list li li,.list-tags li li{float:none;}
17
+ .cell-tags dd li{float:left;}
18
+ .cell-tags dt{_margin-right:-3px;}
19
+ .cell-header .btn,.cell-header .term,.cell-header .sort{float:right;}
20
+ .cell-list-text{line-height:20px;}
21
+ .cell-product-3rd{clear:left;}
22
+ .cell-product-1st dt,.cell-product-2nd dt,.cell-product-3rd dt{overflow:hidden;}
23
+ .cell-product-1st dd,.cell-product-2nd dd,.cell-product-3rd dd,.cell-tags dd{overflow:hidden;line-height:1.5;}
24
+ a.atom-mix img{_margin-bottom:-1px;}
25
+ .cell-tags dd{word-break:keep-all;}
26
+ .cny{font-family:Helvetica,Arial;}
27
+ .price .value{font-weight:700;}
@@ -0,0 +1,12 @@
1
+ @import url(http://style.china.alibaba.com/css/common/alicn_global.css);
2
+
3
+ @import url(http://style.china.alibaba.com/css/blog/antku/alicn_bb_v0.2.css);
4
+
5
+ @import url(http://style.china.alibaba.com/css/club/club_index_v0.2.css);
6
+
7
+ @import url(http://style.china.alibaba.com/css/blog/personcard.css);
8
+
9
+ @import url(http://style.china.alibaba.com/css/ali_index/navall.css);
10
+
11
+ @import url(http://style.china.alibaba.com/css/ali_index/BBX1.css);
12
+
@@ -0,0 +1,11 @@
1
+ @import url(http://style.china.alibaba.com/css/lib/fdev-v4/reset/reset-min.css);
2
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/html5-reset.css);
3
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/layout.css);
4
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/header.css);
5
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/left-nav.css);
6
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/footer.css);
7
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/type.css);
8
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/form.css);
9
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/grid.css);
10
+ @import url(http://style.china.alibaba.com/css/app/cbu/cms/module/dialog.css);
11
+ @import url(http://style.china.alibaba.com/css/lib/fdev-v4/widget/ui/datepicker.css);
@@ -0,0 +1,2 @@
1
+ @import url(http://style.china.alibaba.com/css/fdevlib2/reset/reset-min.css);
2
+ @import url(http://style.china.alibaba.com/css/fdevlib2/grid/grid-min.css);
@@ -0,0 +1,126 @@
1
+ /* create by sam at 02/27/08 */
2
+
3
+ a:link{color: #006AD0;text-decoration: none;}
4
+ a:visited{color: #006AD0;text-decoration: none;}
5
+ a:hover{color: #FF6600;text-decoration: underline;}
6
+
7
+ a.green,a.green:visited,.green,.green a,.green a:link,.green a:visited{color:#668621;}
8
+
9
+ .top_bar{height:96px;background:url(http://img.china.alibaba.com/images/cn/club/others/080226/top_bg.gif) repeat-x 0px 0px;border-bottom:7px solid #90B557;margin-top:-6px !important;>margin-top:0px !important;margin:0px;}
10
+ .top_bar .tool_bar{width:952px;margin:7px auto;padding-top:5px !important;>padding-top:0px !important;padding-top:0px;}
11
+ .top_bar .tool_bar ul li{float:left;}
12
+ .top_bar .tool_bar .logo_txt{margin:2px 0px 0px 7px;font-size:24px;font-family:����;font-weight:bold;}
13
+ .top_bar .tool_bar .info_txt{margin:7px 0px 0px 7px;color:#fff;}
14
+ .top_bar .tool_bar .info_txt a{color:#fff;}
15
+ .top_bar .tool_bar .top_srh{float:right;margin:4px 0px 0px 28px;}
16
+
17
+
18
+ .top_bar .top_nav{width:952px;margin:0px auto;margin-top:52px !important;>margin-top:16px !important;margin-top:16px;}
19
+ .top_bar .top_nav ul.main{margin-left:56px;}
20
+ .top_bar .top_nav ul.main li{float:left;width:94px;height:24px;background:url(http://img.china.alibaba.com/images/cn/club/others/080226/top_tab_off.gif) no-repeat 0px 0px;color:#2E4B09;padding:12px 0px 0px 21px;margin-top:3px !important;>margin-top:0px !important;margin-top:0px;}
21
+ .top_bar .top_nav ul.main li a{font-size:18px;font-family:����;color:#2E4B09;}
22
+ .top_bar .top_nav ul.main li a:hover{text-decoration: none;}
23
+ .top_bar .top_nav ul.main li.tab_on{width:94px;height:24px;background:url(http://img.china.alibaba.com/images/cn/club/others/080226/top_tab_on.gif) no-repeat 0px 0px;color:#fff;}
24
+ .top_bar .top_nav ul.main li.tab_on a{color:#fff;}
25
+ .top_bar .top_nav ul.txt{float:left;margin:16px 0px 0px 49px;}
26
+ .top_bar .top_nav ul.txt li{float:left;margin-right:12px;padding-right:12px;border-right:1px solid #fff;}
27
+ .top_bar .top_nav ul.txt li.no_border{border:0px;}
28
+ .top_bar .top_nav ul.txt li a{font-size:14px;text-decoration: none;color:#fff; font-weight:bold;}
29
+
30
+ .top_bar .tool_bar ul.txt{float:right;margin:4px 0px 0px 49px;}
31
+ .top_bar .tool_bar ul.txt li{float:left;margin-right:10px;padding-right:10px;border-right:1px solid #fff;padding-top:3px;}
32
+ .top_bar .tool_bar ul.txt li.no_border{border:0px;}
33
+ .top_bar .tool_bar ul.txt li.ico{margin-top:0px;padding-top:0px;}
34
+ .top_bar .tool_bar ul.txt li a{font-size:12px;text-decoration: none;color:#fff;}
35
+
36
+ .top_bt{width:952px;margin:7px auto;text-align:right;}
37
+
38
+ #content{width:952px;margin:7px auto;}
39
+ #rightcont{float:right;width:775px;overflow:hidden;padding-left:14px;}
40
+ .right_box{border:0px solid #489DE6;border-left:0px;margin-left:-14px;margin-top:1px;background:url(http://img.china.alibaba.com/images/cn/club/others/080226/warning_ico.gif) no-repeat 120px 70px;}
41
+ .right_box .txt{height:101px;font-size:26px;font-family:����; padding:70px 70px 0px 0px;text-align:center;}
42
+ #rightcont a{color:#000;text-decoration: underline;}
43
+ #leftmenu{float:left;width:163px;}
44
+
45
+ /*tree�����������˵����ߣ����ñ���ͼ*/
46
+ #tree1{
47
+ width:163px;
48
+ clear:both;
49
+ }
50
+ #tree1 .linkItem{
51
+ padding:1px;
52
+ }
53
+
54
+ #tree1 .indexmenu{
55
+ padding:5px 0px 5px 9px;
56
+ border:1px solid #489DE6;
57
+ border-right:0px;
58
+ background-color:#fff;
59
+ height:25px;
60
+ font-size:12px;
61
+ }
62
+ #tree1 .indexmenu a{font-size:12px;color:#FF7400;}
63
+ #tree1 .indexmenu a:link,#tree1 .indexmenu a:visited,#tree1 .indexmenu a:hover{font-size:12px;color:#FF7400;text-decoration: none}
64
+ /*һ���˵�*/
65
+ #tree1 .menu{
66
+ height:20px;
67
+ font-weight:bold;
68
+ padding:6px 10px 0px 10px;
69
+ border:1px solid #489DE6;
70
+ width:141px;
71
+ background:url(http://img.china.alibaba.com/images/cn/club/others/080226/admin_menu_bg.gif) no-repeat 0px 0px;
72
+ margin:1px 0px;
73
+ }
74
+ #tree1 .activedmenu{
75
+ height:20px;
76
+ font-weight:bold;
77
+ padding:6px 10px 0px 10px;
78
+ border:1px solid #489DE6;
79
+ width:141px;
80
+ margin:1px 0px;
81
+ background:url(http://img.china.alibaba.com/images/cn/club/others/080226/admin_menu_bg.gif) no-repeat 0px 0px;
82
+ }
83
+ #tree1 .menu a:link,#tree1 .menu a:visited,#tree1 .activedmenu a:link,#tree1 .activedmenu a:visited{color:#0059A4;text-decoration: none}
84
+
85
+ /*�����˵�*/
86
+ #tree1 .item2{
87
+ text-align:left;
88
+ padding-top:5px;
89
+ padding-bottom:5px;
90
+ font-size:12px;
91
+ }
92
+ #tree1 .item2 a{font-size:12px;color:#006AD0;}
93
+ #tree1 .item2 a:link {font-size:12px;text-decoration:underline;color:#006AD0;}
94
+ #tree1 .item2 a:visited {font-size:12px;text-decoration:underline;color:#006AD0;}
95
+ #tree1 .item2 a:hover {font-size:12px;text-decoration:underline;color:#ff7300;}
96
+ #tree1 .item2 a:active {font-size:12px;text-decoration:underline;color:#006AD0;}
97
+
98
+ /*��ǰѡ�в˵�div*/
99
+ #tree1 .selectItem2{
100
+ border:1px solid #489DE6;
101
+ border-right:0px;
102
+ background-color:#fff;
103
+ padding:5px 0px;
104
+ height:15px;
105
+ /*background:url(http://img.china.alibaba.com/images/cn/club/others/080226/orange_arrow.gif) no-repeat 15px 7px;*/
106
+ }
107
+ #tree1 .selectItem2 a{font-size:12px;color:#FF7300;}
108
+ #tree1 .selectItem2 a:link {font-size:12px;text-decoration:none;color:#FF7300;}
109
+ #tree1 .selectItem2 a:visited {font-size:12px;text-decoration:none;color:#FF7300;}
110
+ #tree1 .selectItem2 a:hover {font-size:12px;text-decoration:none;color:#ff7300;}
111
+ #tree1 .selectItem2 a:active {font-size:12px;text-decoration:none;color:#FF7300;}
112
+
113
+ /*�����˵�����*/
114
+ #tree1 .itembox{
115
+ padding-left:15px;
116
+ background-color:#E3F2FF;
117
+ }
118
+ #tree1 div{
119
+ clear:both;
120
+ }
121
+ #tree1{ font-size:14px;color:#0059A4}
122
+ #tree1 a:link {font-size:14px;text-decoration:underline;color:#0059A4}
123
+ #tree1 a:visited {font-size:14px;text-decoration:underline;color:#0059A4}
124
+ #tree1 a:hover {font-size:14px;text-decoration:underline;color:#0059A4}
125
+ #tree1 a:active {font-size:14px;text-decoration:underline;color:#0059A4}
126
+ #tree1 .itembox a:hover{color:#FF7300;}