/* CSS Document */
html,
body,
iframe,
div,
table,
tr,
th,
td,
iframe,
dl,
ul,
ol,
li,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
img,
span,
form,
input,
select,
textarea,
pre {
	margin : 0;
	padding: 0;
	border : 0;
}

ul li {
	/* float: left; */
}

ul,
ol {
	list-style: none;
}

li {
	height: auto;
}

input,
select,
textarea {
	font-size  : 14px;
	color      : #666666;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
i,
em,
cite {
	font-weight: normal;
	font-style : normal;
}


body {
	font-size  : 14px;
	color: #1E2B51;
  background-color: #fff;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

div {
  scroll-margin-top: 80px;
  }

a {
	text-decoration: none;
	cursor: pointer;
  color: #23272B;
}

a:link,
a:visited {
	text-decoration: none;
}

a:hover,
a:active {
	color: #006EFF;
}

button {
	border: none;
}

table {
	border-collapse: collapse;
}

ul {
	/* width: 100%; */
}

ul:after,
ul li:after {
	clear: both;
}


.clear{clear:both;zoom: 1;} 

* {
	box-sizing        : border-box;
	-moz-box-sizing   : border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Safari */
}

.transition,
.transition a {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition   : all 0.3s ease-in-out;
	-o-transition     : all 0.3s ease-in-out;
	transition        : all 0.3s ease-in-out;
}


/*公用*/
.flex {
	display: -webkit-flex;
	display: flex;
}

.flex_end {
	-webkit-justify-content: space-between;
	justify-content        : space-between;
}
.flex_middle{
	align-items: center;
}

.color_fff{
    color: #fff;
}
.color_black{
    color: #23272B;
}
.cursor{
	cursor: pointer;
}
.text_center{
	text-align: center;
}

img{
  max-width: 100%;
}


