/* 引入阿里字体 */
/* @import "//at.alicdn.com/t/font_2707962_l33blnhbog.css"; */

blockquote,
body,
button,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
	margin: 0;
	padding: 0
}
button{
	cursor: pointer;
}
body {
	background: #fff;
	color: #333;
	font-size: 14px;
	line-height: 1.2;
	font-family: "Microsoft YaHei", "Arial", sans-serif;
	/* overflow-x: hidden; */
}
.top-form{
	height: 100%;
}
caption,
td,
th {
	font-size: 14px
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	font-size: 100%
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: 400
}
li,
ol,
ul {
	list-style: none
}

button,
input,
select,
textarea {
	font-family: 'poppins';

}

table {
	border-collapse: collapse
}


/* 工具类 */
:root {
	--main-color: #043b8d;
}

:root {
	--hover-color: #ff9925;
}
:root {
	--text-333: #333;
}
:root {
	--text-ccc: #ccc;
}
:root {
	--text-000: #000;
}
:root {
	--text-8181: #818181;
}
:root {
	--text-abab: #ababab;
}
:root {
	--text-c7c7: #c7c7c7;
}
:root {
	--text-fff: #fff;
}
:root {
	--bg-f1: #f1f1f1;
}
:root {
	--bg-c2: #c2c2c2;
}
:root {
	--bg-ed: #ededed;
}
:root {
	--text-de2910: #de2910;
}
:root {
	--text-e8e8: #e8e8e8;
}
:root {
	--border-e1: #e1e1e1;
}
.dx {
    text-transform: uppercase;
}
.tc{text-align: center;}
a {
	color: var(--text-333);
	text-decoration: none;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
a:hover{
	color: var(--main-color);
	text-decoration:none;
}


img {
	max-width: 100%;
	border: 0;
	vertical-align: middle;
	position: relative;
	font-size: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}

img::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #f2f2f2
}


.cf:after {
	clear: both;
	display: table;
	content: " "
}
.dx {
	text-transform: uppercase;
}

/* flex*/
.d-flex {
	display: flex;
}

.d-flex-center-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.d-flex-center {
	display: flex;
	align-items: center;
}

.d-flex-start {
	display: flex;
	align-items: flex-start;
}

.d-flex-between {
	display: flex;
	justify-content: space-between;
}

.d-flex-justify-center {
	display: flex;
	justify-content: center;
}

.d-flex-center-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.flex-1 {
	flex: 1;
}

.flex-column {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-shrink {
	flex-shrink: 0;
}


.text-overflow1 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.text-overflow2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.text-overflow3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.text-overflow4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}
.text-overflow5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.m8-pt55{
	padding: 55px 0;
}



