﻿@charset "utf-8";
/*author:英雄づ小将*/

*{ margin:0; padding:0;}
/* ==基础== */
/*
 * 1. 纠正正文字体大小使用 em 单位设置时，IE6/7 中的文本异常调整大小的问题
 * 2. 强制在非 IE 中使用垂直滚动条
 * 3. 防止在设备方向更改时调整 iOS 文本大小，而不需要禁用用户缩放: h5bp.com/g
 */
html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	min-width:1200px;
	  margin:0 auto;
	background: #000000;
}

/*==链接== */

a {
	/*word-wrap: break-word;*/
	text-decoration:none;
}
a:focus {
	outline:none;
}
/* 改善在所有浏览器中获取焦点和悬停时的可读性: h5bp.com/h */
a:hover, a:active {
/*	outline: 0;*/
	
}
body a{outline:none;blr:expression(this.onFocus=this.blur());}

/*== 排版规则== */

abbr[title] {
	border-bottom: 1px dotted;
}
b, strong {
	font-weight: bold;
}
blockquote {
	margin: 1em 40px;
}
dfn {
	font-style: italic;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
ins {
	background: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background: #ff0;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
/* 重新声明固定宽度字体系列: h5bp.com/j */
pre, code, kbd, samp {
	font-family: monospace, monospace;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}
/* 改善所有浏览器中预先格式化的文本的可读性 */
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
q {
	quotes: none;
}
q:before, q:after {
	content: "";
	content: none;
}
small {
	font-size: 85%;
}
/* 放置上标和下标内容，而不影响行高: h5bp.com/k */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
/* ==列表== */

ul, ol,ul li,ol li {
	list-style:none;
	list-style-type:none;

}
/*==嵌入内容== */

/*
 * 1. 改善在 IE7 中缩放时的图像质量: h5bp.com/d
 * 2. 删除图像容器上的图像与边框之间的间隙: h5bp.com/e 
 */

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
	height:auto;
	width:auto9; /* ie8 */
	border:0;
}
/* 简单流媒体
   注意: 流媒体要求您删除 HTML 中媒体的高度和宽度属性
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	height:auto;
	
}
/* IE 6 不支持最大宽度，因此默认为 100% 宽度 */
.ie6 img {
	width:100%;
}
/*
 * 纠正 IE9 中未隐藏的溢出 
 */

svg:not(:root) {
	overflow: hidden;
}
/*==图== */

figure {
	margin: 0;
}
/* ==表单== */

form {
	margin: 0;
}
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}
/* 指示“label”会将焦点移至相关联的表单元素 */
label {
	cursor: pointer;
}

/* 
 * 1. 纠正 IE6/7/8/9 中非继承的颜色 
 * 2. 纠正 IE6/7 中显示异常的对齐 
 */

legend {
	border: 0;
    *margin-left: -7px;
	padding: 0;
}
/*
 * 1. 纠正所有浏览器中非继承的字体大小
 * 2. 删除 FF3/4 S5 Chrome 中的边距
 * 3. 定义在所有浏览器中一致地垂直对齐显示
 */

button, input, select, textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
   *vertical-align: middle;
}
/*
 * 1. 将行高定义为正常，以匹配 FF3/4（使用 UA 样式表中的 !important 设置）
 * 2. 纠正 IE6/7 中显示异常的内边距
 */

button, input {
	line-height: normal;
	*overflow: visible;
}
/*
 * 在“table”中重新加入内边距，以避免 IE6/7 中的交迭和空白问题
 */

table button, table input {
	*overflow: auto;
}
/*
 * 1. 显示手形光标，表示可以点击的表单元素
 * 2. 允许 iOS 中可点击的表单元素的样式
 */

button, input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}
/*
 * 一致的框大小和外观
 */

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/* 
 * 删除 FF3/4 中的内边距和边框: h5bp.com/l 
 */

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/* 
 * 1. 删除 IE6/7/8/9 中的默认垂直滚动条 
 * 2. 仅允许垂直调整大小
 */

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

/* 用于表单验证的颜色 */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
 	background-color: #f0dddd;
}
/*== 表格== */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
td {
	vertical-align: top;
}

.clear{clear:both;font-size:0;line-height:0;height:0;}
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } /* Hides from IE-mac \*/ 
*html .clearfix {height: 1%;} /* End hide from IE-mac */ 

body {-webkit-text-size-adjust:none;  font-family:"微软雅黑",'宋体',Arial, Helvetica, sans-serif; font-size:100%;  font-size:1em;font-size: 12px;

scrollbar-arrow-color: #f4ae21; /*图6,三角箭头的颜色*/
scrollbar-face-color: #333; /*图5,立体滚动条的颜色*/
scrollbar-3dlight-color: #666; /*图1,立体滚动条亮边的颜

色*/
scrollbar-highlight-color: #666; /*图2,滚动条空白部分的

颜色*/
scrollbar-shadow-color: #999; /*图3,立体滚动条阴影的颜

色*/
scrollbar-darkshadow-color: #666; /*图4,立体滚动条强阴

影的颜色*/
scrollbar-track-color: #666; /*图7,立体滚动条背景颜色*/

scrollbar-base-color:#f8f8f8; /*滚动条的基本颜色*/
Cursor:url(mouse.cur); /*自定义个性鼠标*/ }

.w1200,.top ,.logo,#wapper{ width:1202px; margin:0 auto; }
.w1200,.overflows,#wapper { overflow:hidden;}

.shopCar a:hover,.wSearch span a:hover,.header_nav_subnav2 a:hover { color:#e60018;}





.footer{ background:#2a2a2a;padding:20px 0;color:#57585a; text-align:center; font-size:12px; line-height:18px;}

/***翻页**/
.fy{ overflow: hidden; padding:20px 0; margin:20px 0 10px 0; text-align:center; line-height:25px; clear:both;}
.fy a{ padding:3px 7px; margin:0 3px;color:#000000; font-size:12px; border:1px solid #000000;}
.fy a.on,.fy a:hover{ background:#000000;color:#fff;}
.fy .previous,.fy .next_page{ border:1px solid #ddd;}
