/*  去除标签自带默认样式 */
/* 去掉所有元素的内外边距 */
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, pre,
a, img,  ul, li, form, label, input,
table, tbody, tfoot, thead, tr, th, td,
audio, video {
	margin: 0;
	padding: 0;
}
body{
	line-height: 1;
}
/* 列表元素去掉默认的列表样式 */
ol, ul {
	list-style: none;
}
/* Table元素的边框折叠 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* 去掉默认的下划线 */
a{
	text-decoration: none;
}
/* 去掉input自带的边缘效果和背景颜色 */
input{
	outline: none;
	background: none;
}

img{
	display: block;
}

/*@font-face {*/
/*font-family: 'PhHuiTR';*/
/*src: url('../font/Alibaba-PuHuiTi-Regular.ttf') format('truetype');*/
/*}*/

/*@font-face {*/
/*font-family: 'PopB';*/
/*src: url('../font/Poppins-Bold.ttf') format('truetype');*/
/*}*/

.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt15{
	margin-top: 15px;
}
.mt20{
	margin-top: 20px;
}
.mt25{
	margin-top: 25px;
}

.mt30{
	margin-top: 30px;
}

.mt33{
	margin-top: 33px;
}

.mt35{
	margin-top: 35px;
}

.mb40{
	margin-bottom: 40px;
}