/*css 初始化 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #F5F5F5
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #E2E2E2
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555
}





*{box-sizing: border-box;}
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img {
    margin: 0;
    padding: 0;  }
fieldset, img, input, button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none; /*去掉input 获取焦点后的外框环绕*/
}
ul, ol {
    list-style: none;  }

/*去掉原样式中的小黑点*/
input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "Arial";  }
select, input {
    vertical-align: middle;  }
/*输入字居中显示*/
select, input, textarea {
    font-size: 12px;
    margin: 0;  }
/**/
textarea {
    resize: none; /*去掉右下角*/
}

/*防止拖动*/
img {
    border: 0;
    vertical-align: middle; /*  去掉图片底部默认的3像素空白缝隙*/  }
table {
    border-collapse: collapse; /*合并外连线*/  }

.clearfix:before, .clearfix:after {
    /*清除浮动，最好最标准的写法*/
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
    visibility: hidden;/*保留位置*/  }

.clearfix {
    *zoom: 1; /*IE/7/6*/  /*兼容IE6下的写法*/  }

a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #C81623;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

s, i, em {
    font-style: normal;/*将原有的样式去掉*/
    text-decoration: none;/*去掉下划线，但也可以去掉中划线(贯穿线)*/
}

.col-red {
    color: #C81623 !important;/*京东主色调*/
}

/*公共类*/
.w {
    /*版心 提取 */
    width: 1210px;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.al {
    text-align: left;
}

.ac {
    text-align: center;
}

.ar {
    text-align: right;
}

.hide {
    display: none;
}

/*css初始化完成*/

/********** Í·²¿ **********/



/********** µ×²¿ **********/








/* 分页 */
div.fy { margin:20px 0 50px 0; padding:0 10px; text-align:center;}
div.fy a { cursor:pointer; margin:2px 5px; padding:5px 10px; color:#717071; text-decoration:none; font-size:1.4em;  border-radius:2px;}
div.fy a:hover { color:#fff;background-color:#4d2d80;}
div.fy a:active { color:#fff; background-color:#4d2d80;}
div.fy span.current {border-radius:2px; margin:2px 5px; padding:5px 10px; background-color:#4d2d80; color:#FFF; font-weight:bold; font-size:1.4em;}
div.fy span.disabled {border-radius:2px; margin:2px 5px; padding:5px 10px; color:#CCC; font-size:1.4em;}

