body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,button,p,blockquote,span,em,strong,s,i,b,select,option,img,a,table,td,th{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    outline: none;
    -webkit-touch-callout:none;
    -webkit-tap-highlight-color: transparent;
}

*:not(input,textarea) { 
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
}


/*表格细线*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}


h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:normal;
}

ul,ol,li {
    list-style: none;
}

em,i {
    font-style: normal;
}

fieldset,img {
    border: none;
    outline: 0;
}



a,input,img {
    vertical-align: middle;
}

abbr,article,aside,audio,canvas,datalist,details,figure,footer,header,hgroup,menu,nav,output,progress,section,video {
    display: block;
    margin: 0;
    padding: 0;
}

body {
    max-width: 2560px;
    min-width: 1310px;
    background-color: #282828;
    color: #333;
    /*font-family:Helvetica Neue,Helvetica,Roboto,PingFang SC,Hiragino Sans GB,Microsoft YaHei UI,Microsoft YaHei,"\5FAE\8F6F\96C5\9ED1",Arial,sans-serif!important;*/
    font: 14px 'Microsoft YaHei', 'SimSun', '\5b8b\4f53', sans-serif;
    line-height: 1.5em;
    /*用处：防止iPhone在坚屏转向横屏时放大文字*/
    -webkit-text-size-adjust: none;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    blr:expression(this.onFocus=this.blur());
    outline: 0;
}


a:link,
a:visited {
    text-decoration: none;
}

a:hover,
a:active {
    text-decoration: none;
}


address,caption,cite,code,dfn,em,th,var {
    font-style: normal;
    font-weight: normal;
}

/*图片滑动放大效果*/
.bigimg{
/*transition ie9不支持 ie10支持*/
transition: all 1s;
-moz-transition: all 1s; /* Firefox 4 */
-webkit-transition: all 1s; /* Safari 和 Chrome */
-o-transition: all 1s; /* Opera */
}
.bigimg:hover{
    transform:scale(1.1);
    -ms-transform:scale(1.1);   /* IE 9 */
    -moz-transform:scale(1.1));     /* Firefox */
    -webkit-transform:scale(1.1); /* Safari 和 Chrome */
    -o-transform:scale(1.1);    /* Opera */
}

input,textarea,select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    *font-size: 100%;
    outline:none;
    border:0;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

/*清除浮动*/
.cf:before, body:before, .header:before, .footer:before { 
    content: '';
     display: table; 
 }
.cf:after, after, .header:after,  .footer:after { 
    content: ''; 
    clear: both; 
    display: table; 
}
.cf, .header, .footer { 
    *zoom: 1; 
}

/*文字单行溢出*/
.wzyc{ white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden; }

/*多行文字溢出只兼容webkit内核的浏览器*/
.wzyc2{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.wzyc3{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}


.wzyc4{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}

.wzyc6{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
}

input[type=button], input[type=submit], input[type=file], button { cursor:pointer; -webkit-appearance: none; } 


/*修改placehodler*/
::-webkit-input-placeholder{ color:#555;}    /* 使用webkit内核的浏览器 */
:-moz-placeholder{color:#555;}                  /* Firefox版本4-18 */
::-moz-placeholder{color:#555;}                  /* Firefox版本19+ */
:-ms-input-placeholder{color:#555;}           /* IE浏览器 */


/*修改浏览器滚动条样式*/
::-webkit-scrollbar{width:10px;height:10px;}
::-webkit-scrollbar-button:vertical{display:none;}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#FFF}
::-webkit-scrollbar-thumb:vertical{background-color:#8E8E8E;border-radius:10px;}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#0094ef}
::-webkit-scrollbar-corner:vertical{background-color:#535353}
::-webkit-scrollbar-resizer:vertical{background-color:#FF6E00}


/* 去掉保存密码后input背景色问题 */
input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
	-webkit-text-fill-color: #ededed !important;
	-webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;
	background-color:transparent;
	background-image: none;
	transition: background-color 50000s ease-in-out 0s; /* 背景色透明  生效时长  过渡效果  启用时延迟的时间 */
}