/*@charset "gb2312";*/
/* CSS Document */

/*1.清除默认样式*/

/*html*/
html{color:#000;background:#fff;}

/*body*/
body{font:12px/1.5 "Microsoft Yahei",Tahoma,Arial,Helvetica,sans-serif;word-break:break-all;word-wrap:break-word; min-width: 1200px;}
/*内外边距*/
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,select,th,td{margin:0;padding:0}

/*h1-h6*/
h1,h2,h3,h4,h5,h6{font-size: 100%;font-weight: normal;}
button,input,select,textarea{font-size:100%}

/*ul,ol*/
ul,ol{list-style: none;}

/*a链接*/
a{text-decoration: none;color: #333;}
a:hover{color: #ee0000;text-decoration: none}

/*img*/
img{border: none;vertical-align: middle}

/*p em strong small*/
p{word-wrap: break-word}
em,i{font-style: normal}
b,strong,th{font-weight: normal}
small{font-size:12px}

/*table*/
table{border-collapse:collapse;border-spacing:0}

/*input select button框*/
input,select,button{
    background: none;
    border:none;
    outline:none;
    vertical-align:middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=button],input[type=text],input[type=password]{-webkit-appearance:none;outline:none}/*-用于IOS下移除原生样式*/

/*textarea*/
textarea {resize:none;}


/*2.公共样式（公共类名）*/
/*清浮动*/
.clearfix:after{
    content: "";
    display: block;
    clear: both;
}
.clearfix{
    *zoom: 1;
}
/*闭合浮动*/
.clearDiv{
    clear:both;
    height:0;
    font-size:0;
    overflow: hidden;
}
/*左右浮动*/
.fl{
    float: left;
}
.fr{
    float: right;
}
/*外框*/
.wrap{
    width: 100%;
}
/*有效区主体*/
.main{
    width: 1000px;
    margin: 0 auto;
}
/*隐藏*/
.overflow{overflow:hidden}
.hide{display:none}
/*块*/
.block{display:block}
.inline{display:inline}
/*文字处理*/
.wordwrap{word-break:break-all;word-wrap:break-word}








