/* :root {
	--main-color:rgb(61, 142, 204);
	--main-font-color:rgb(189,131,47);
	--tran-03: all 0.3s ease;
	--tran-04: all 0.4s ease;
	--tran-05: all 0.5s ease;
	--tran-06: all 0.6s ease;
} */

/* 滚动条 */
/* ::-webkit-scrollbar {
	width: 5px;
} */

/* body::-webkit-scrollbar {
	width: 5px;
} */

/* ::-webkit-scrollbar-track {
	background: #eee;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
} */

/* ::-webkit-scrollbar-thumb {
	background: var(--main-color);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

::-webkit-scrollbar-thumb:vertical:hover {
	background: var(--main-color);
} */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	font-size: 14px;
	color: #999999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Firefox 19+ */
	font-size: 14px;
	color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* IE 10+ */
	font-size: 14px;
	color: #999999;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Firefox 18- */
	font-size: 14px;
	color: #999999;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* 引入字体 */
@font-face {
	font-family: "Montserrat";
	src: url('../font/Montserrat-Regular.ttf');
}

body,
input,
textarea,
button {
	font-family: "Montserrat", "Microsoft YaHei", "Arial", "SourceHanSansCN", "PingFang SC", "Tahoma", "sans-serif";
	font-size: 1rem;
}

/* body {
	font-family: "Montserrat", "Microsoft YaHei", "Arial", "SourceHanSansCN", "PingFang SC", "Tahoma", "sans-serif";
	
} */


a {
	text-decoration: none;
}

ul,p,h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.container {
	width: 100%;
	margin: auto;
}

@media (min-width: 576px) { .container { max-width: 1137px; } }

@media (min-width: 768px) { .container { max-width: 1138px; } }

@media (min-width: 992px) { .container { max-width: 1139px; } }

@media (min-width: 1400px) { .container { max-width: 1340px; } }

.container-fluid {	width: 100%;margin: auto;}

/*公共类*/
.fl {
	float: left
}

.fr {
	float: right
}

.al {
	text-align: left
}

.ac {
	text-align: center
}

.ar {
	text-align: right
}

.hide {
	display: none
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	*zoom: 1;
}