html {
	box-sizing: border-box;
}

html,
body {
	/* 在有些手机浏览器中点击一个链接或着可点击元素的时候，会出现一个半透明的灰色背景； */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* 提升移动端滚动的体验效果  */
	-webkit-overflow-scrolling: touch;
	/* 与浏览器窗口高度一致 */
	height: 100%;
	color: #000;
	font-family: 'Microsoft YaHei', 'SimSun';
}

body {
	/* 有些背景默认为浅灰色，所以统一设置为纯白 */
	background: #fff;
	/* 使字体更加顺滑 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 去除浏览器默认的margin和padding, 自行删减一些不必要的标签 */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
ul,
ol,
th,
td,
button,
figure,
input,
textarea,
form,
pre,
blockquote,
figure {
	margin: 0;
	padding: 0;
}



a {
	/* 小手 */
	cursor: pointer;
	/* 取消超链接的默认下划线 */
	text-decoration: none;
	/* antd里面还做了 ， 看你团队需不需要这样的风格 */
}

ol,
ul {
	/* 去除自带的ugly样式。 */
	list-style: none;
}

button,
input[type='submit'],
input[type='button'] {
	/* 可点击小手 */
	cursor: pointer;
}


p {
	font-size: 14px;
}

.pd_2 {
	padding: 20px 0;
}

.pd_4 {
	padding: 40px 0;
}

.pd_6 {
	padding: 60px 0;
}

.pd_7 {
	padding: 70px 0;
}

.mt-1 {
	margin-top: 10px;
}

.mt-2 {
	margin-top: 20px;
}

.mt-3 {
	margin-top: 30px;
}

.mb-2 {
	margin-bottom: 20px;
}

.mb-1 {
	margin-bottom: 10px;
}

/*火狐浏览器家的标准*/
button,
input[type="reset"],
input[type="butto`这里写代码片`n"],
input[type="submit"] {
	line-height: normal !important;
}

.com_width {
	width: 1200px !important;
	margin: 0 auto;
}

/* 屏幕小于1440 */
/* @media screen and (max-width:1440px) {
	.com_width {
		width: 1200px !important;
	}
}

/* 屏幕小于1280 */
/* @media screen and (max-width:1280px) {
	.com_width {
		width: 1024px !important;
	}
} */

/* 屏幕小于1024px */
/* @media screen and (max-width: 1024px) {
	.com_width {
		width: 992px !important;
	}
} */
/* 在大屏幕设备上，将最大宽度设置为1170px */
/* @media only screen and (min-width: 1200px) and (max-width: 1440px) {
	.com_width {
		width: 1170px !important;
	}
} */
/* 在中等屏幕设备上，将最大宽度设置为1000px */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.com_width {
		width: 1000px !important;
	}
}
/* 在中等屏幕设备上，将最大宽度设置为970px */
@media only screen and (min-width: 768px) and (max-width: 992px) {
	.com_width {
		width: 900px !important;
	}
}

/* 屏幕小于768px */
@media screen and (max-width: 768px) {
	.com_width {
		width: 90% !important;
	}
}