/**
* CSS 通用样式
* @author: jwl;
* @data: 2020/09/29;
**/

/**
* 初始化浏览器默认样式
**/
*,
::before,
::after {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}
body,
html{
	width: 100%;
	height: 100%;
}
body {
	min-width: 1200px;
	background-color: #FEFEFE;
}
body,
input,
button,
select,
textarea {
	/*字体大小/行高   字体类型,字体库,字体图库*/
	font: 12px/1.5 "Microsoft Yahei", "Helvetica Neue", "iconfont";
	font-family: "microsoft yahei";
	/*谷歌浏览器字体抗锯齿*/
	-webkit-font-smoothing: antialiased;
	/*火狐浏览器字体抗锯齿*/
	-moz-osx-font-smoothing: grayscale;
	/*声明启用了该字体支持的样式集,liga:标准连写,kern:字距调整*/
	-moz-font-feature-settings: "liga", "kern";
}
img,
a img {
	border: 0;
}
a {
	color: #369;
	/*点击时去掉外边框*/
	outline: medium none;
	text-decoration: none;
}
a:hover {
	text-decoration: none
}
label {
	cursor: pointer
}
ul li {
	list-style: none
}
em,
cite,
i {
	font-style: normal
}
p {
	/*在长单词或 URL 地址内部进行换行。*/
	word-wrap: break-word;
	/*允许在单词内换行*/
	word-break: break-all;
}
.wrap{
	width: 1100px;
	min-width: 1100px;
	height: 100%;
	margin: 0 auto;
}
::-webkit-scrollbar {
  width: 0;
	height: 0;
}

