@charset "UTF-8";
/*css初始化*/ 
body, article, aside, blockquote, button, code, dd, dialog, div, dl, dt, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, input, legend, li, nav, ol, p, pre, section, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}
body{
    min-width: 1226px;   /*屏幕最小宽度*/
    margin: 0 auto;
    font-family: "Microsoft YaHei";
    font-size: 14px;
    color:#333;
    background: #fff;
}
.w {
    width: 1200px;
    margin: 0 auto;
}
/*去掉默认下划线*/
a {
    text-decoration: none;
    color: #333;
 
}
/*去掉默认小圆点*/
ul, li ,ol {
    list-style: none;
}
/*默认字体*/
em, i ,h1, h2, h3, h4, h5, h6 {
    font-style: normal
}
input, button, textarea, select, img ,a{
    outline-style: none;
    border: none;
}
/*去掉边框*/
fieldset{
    border: 0;
}
img{
    /* width: 100%; */
    vertical-align: middle;
}
/*清除table默认样式*/
table {
    border-collapse: collapse;
    border-spacing: 0
}
/*文字超出隐藏...*/
.text_hide{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*清除浮动*/
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}
/*左浮动*/
.fl {
    float: left;
}
/*右浮动*/
.fr {
    float: right;
}
/*居中*/
.ct {
    text-align: center;
}
.text_fr{
    text-align: right;
}
.text_fl{

    text-align: left;
}