/*--------------------------初始化代碼*/
/*清除默認的margin和padding*/
* {margin: 0;padding: 0;
}/*清除小圓點*/
ul {list-style: none;
}/*清除a標簽默認的下劃線*/
a {text-decoration: none;
}/*表格邊框合并*/
table {border-collapse: collapse;
}/*去除input標簽點擊之后的出現的輪廓線*/
input {outline-style: none;
}/*進制textarea標簽的自由縮放*/
textarea {resize: none;
}/*雙偽元素清除法(清除浮動和解決塌陷,給父元素加)*/
.clearfix::before,
.clearfix::after {content: "";display: table;
}
.clearfix::after {clear: both;
}
/* 兼容 IE 67 */
.clearfix {*zoom: 1;
}/*單行省略號:需要用的時候直接在對應的盒子上加上類即可*/
.ell {overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}/*左浮動*/
.fl {float: left;
}/*右浮動*/
.fr {float: right;
}/*版心*/
.w {width: 1142px;margin: 0 auto;
}
/*body {height: 30000px;
}*/