
/* flex布局 */

.flex {
	display: flex;
}

.basis-xs {
	flex-basis: 20%;
}

.basis-sm {
	flex-basis: 40%;
}

.basis-df {
	flex-basis: 50%;
}

.basis-lg {
	flex-basis: 60%;
}

.basis-xl {
	flex-basis: 80%;
}

.basis-xxl {
	flex-basis: 100%;
}

.flex-sub {
	flex: 1;
}

.flex-twice {
	flex: 2;
}

.flex-treble {
	flex: 3;
}

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.flex-wrap {
	flex-wrap: wrap;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.align-center {
	align-items: center;
}

.align-stretch {
	align-items: stretch;
}

.self-start {
	align-self: flex-start;
}

.self-center {
	align-self: flex-center;
}

.self-end {
	align-self: flex-end;
}

.self-stretch {
	align-self: stretch;
}

.align-stretch {
	align-items: stretch;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}


/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
	{
	margin: 0;
	padding: 0;
}

/** 设置默认字体 **/
body,
button,
input,
select,
textarea

/* for ie */
	{
	font: 16px/1 system-ui,"Microsoft YaHei","微软雅黑","arial","tahoma","MicrosoftJhengHei", "sans-serif";

}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

address,
cite,
dfn,
em,
var,
i {
	font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp {
	font-family: courier new, courier, monospace;
}

/* 统一等宽字体 */
small {
	font-size: 12px;
}

/* 小于 12px 的中文很难阅读, 让 small 正常化 */

/** 重置列表元素 **/
ul,
ol {
	list-style: none;
}

/** 重置文本格式元素 **/
a {
	color: #333;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
	text-decoration: none;
	cursor: pointer;
}

sup {
	vertical-align: text-top;
}

/* 重置, 减少对行高的影响 */
sub {
	vertical-align: text-bottom;
}

/** 重置表单元素 **/
legend {
	color: #000;
}

/* for ie6 */
fieldset,
img {
	border: 0;
}

/* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
	font-size: 100%;
	outline: none;
}

/* 使得表单元素在 ie 下能继承字体大小 */
button,
input[type="button"] {
	cursor: pointer;
	-webkit-appearance: none;
}

input::-ms-clear {
	display: none;
}

/*隐藏文本框叉子*/
input::-ms-reveal {
	display: none;
}

/*隐藏密码框小眼睛*/
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	display: block;
	margin: 0;
	padding: 0;
}


html {
	font-size: 100px;
}

body {
	color: #333;
	background: #fff;
	padding-top: 0.7rem;
}

.clear_both::after {
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

.w82 {
	width: 82%;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
}



.hs_body {
	background: #f7f7f7;
}

.head_box {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 0.7rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .w82 {
	height: 100%;
}

.head_box .logo_a {
	display: inline-block;
	vertical-align: top;
	height: 100%;
	width: 1.2rem;
	background-size: contain;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box form {
	float: right;
	width: 0.3rem;
	height: 0.3rem;
	margin-top: 0.2rem;
	position: relative;
	z-index: 3;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box form input {
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	border: none;
	border-radius: 0.15rem;
	font-size: 0.14rem;
	width: 0;
	height: 100%;
	padding: 0 0.14rem;
	opacity: 0;
	color: #3dae6c;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box form button {
	width: 100%;
	height: 100%;
	border: none;
	position: relative;
	z-index: 3;
	background: url(tb18.png) no-repeat center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .yy_dl {
	float: right;
	height: 0.2rem;
	padding-right: 0.16rem;
	margin-top: 0.25rem;
	position: relative;
	font-size: 0;
	margin-right: 0.35rem;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .yy_dl dd {
	display: inline-block;
	vertical-align: top;
	height: 0.2rem;
	line-height: 0.22rem;
	overflow: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .yy_dl dd a {
	display: block;
	font-size: 0.16rem;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .yy_dl::before {
	content: "";
	display: inline-block;
	vertical-align: top;
	width: 0.2rem;
	height: 0.2rem;
	background: url(tb17.png) no-repeat;
	background-size: contain;
	margin-right: 0.16rem;
}

.head_box .yy_dl::after {
	display: none;
	content: "";
	position: absolute;
	right: 0;
	top: 0.06rem;
	width: 0.09rem;
	height: 0.09rem;
	background: url(jt4.png) no-repeat center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .active_dl dd {
	height: 0.44rem;
}

.head_box .active_dl::after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.head_box .nav_ul {
	font-size: 0;
	float: right;
	margin-right: 0.4rem;
	padding-right: 0.13rem;
	position: relative;
}

.head_box .nav_ul::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 40%;
	background: #fff;
	opacity: 0.2;
}

.head_box .nav_ul li {
	padding: 0 0.28rem;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.head_box .nav_ul li>a {
	display: block;
	font-size: 0.16rem;
	height: 0.7rem;
	line-height: 0.7rem;
	color: #000;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .nav_ul li>a:hover  {
	color: #2823a5;
}

.head_box .nav_ul li>a::after {
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #2823a5;
	opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .nav_ul li:hover>a::after {
	width: 100%;
	opacity: 1;
}

.head_box .nav_ul li.active>a::after {
	opacity: 1;
	width: 100%;
}

.head_box .nav_ul li.active::after {
	width: 100%;
	opacity: 1;
}

.head_box .nav_ul li a i {
	float: right;
	display: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .nav_ul li p {
	display: none;
	position: absolute;
	width: 100%;
	padding: 0.1rem 0;
	text-align: center;
	top: 100%;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
}

.head_box .nav_ul li p a {
	opacity: 0.7;
	display: block;
	color: #fff;
	width: 100%;
	margin: 0;
	line-height: 2.2;
	font-size: 0.15rem;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .nav_ul li p .hide_a{
	display: none;
}

.head_box .nav_ul li.active_li a i {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.head_box .nav_ul li div {
	display: none;
	position: absolute;
	width: 100%;
	padding: 0.1rem 0;
	text-align: center;
	top: 100%;
	left: 0;
	background: #ebf0f4;
}

.head_box .nav_ul li div a {
	display: block;
	color: #666666;
	width: 100%;
	margin: 0;
	line-height: 2.2;
	font-size: 0.15rem;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .nav_ul li div a:hover {
	color: #2823a5;
}

.headb_box {
	height: 0.5rem;
	background: #fff;
	box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
}

.headb_box .nav_ul li>a {
	height: 0.5rem;
	line-height: 0.5rem;
}

.headb_box form {
	margin-top: 0.1rem;
}

.headb_box .yy_dl {
	margin-top: 0.15rem;
}

.head_box .nav_div {
	display: none;
	width: 52px;
	height: 100%;
	float: right;
	background: #000;
	position: relative;
}

.head_box .nav_div span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	font-size: 0;
}

.head_box .nav_div i {
	display: inline-block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	margin: 3px 0;
	opacity: 1;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.head_box .active_div {}

.head_box .active_div i:nth-of-type(1) {
	-webkit-transform: rotate(45deg) translate(6px, 6px);
	transform: rotate(45deg) translate(6px, 6px);
}

.head_box .active_div i:nth-of-type(2) {
	opacity: 0;
}

.head_box .active_div i:nth-of-type(3) {
	-webkit-transform: rotate(-45deg) translate(6px, -6px);
	transform: rotate(-45deg) translate(6px, -6px);
}

.swiper_box {
	height: 860px;
}



@keyframes mymove3 {
	0% {
		opacity: 0;
		bottom: 0.4rem;
	}

	70% {
		opacity: 1;
		bottom: 0.2rem;
	}

	100% {
		opacity: 0;
		bottom: 0.1rem;
	}
}
.foot_box{
	background: #000;color: #fff;padding:40px 0 90px 0;
}

.foot_box p a{
	font-weight: bold;
	font-size: 18px;color: #cccccc;
}
.foot_box ul{
	margin-top: 20px;
}
.foot_box li {
	margin-top: 15px;
}
.foot_box a{
	color: #999999;
}
.foot_box a:hover{
	color: #fff;
}

.index-about{
	text-align: center;margin-top: 90px;
}
.index-about .list{
	margin-top: 90px;margin-bottom: 90px;
}
.index-about img{
	width: 90px;height: 90px;
}
.index-about .info{
	color:#2823a5;
}
.index-about .info .number{
	font-size:40px;font-family:Source Han Sans,Geneva,sans-serif;line-height:2;
	text-align: left;
	margin-bottom: 16px;
}
.index-goods{

}
.index-goods .img{
	background: url("31721177.png") no-repeat;
	background-size:cover;
	height: 610px;
	padding-top: 60px;
	padding-left: 10px;
}
.index-goods .info{
	background-color:rgb(252, 175, 37);
	height: 610px;
	color: #fff;line-height: 2;text-align: center;
}

.swiper-pagination span{
	width: 15px;height: 15px;background-color: #fff;
}

.hz-header{
	background:url("../../img/hz.png?t=1") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}

.about-header{
	background:url("../../img/about/37034005.png?t=1") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}
.about-fzlc{
	background:url("../../img/about/32044686.png") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}

.news-header{
	background:url("../../img/news/37125988.png?t=1") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}
.job-header{
	background:url("../../img/job/31721469.png") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}
.contact-header{
	background:url("../../img/contact.png") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}
.job-main{
	background:url("../../img/job/37127425.png") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;height: 300px;
}
.job-lists{
	box-shadow:0 5px 30px 0 rgba(0,0,0,0.1);cursor:pointer;
	-webkit-transition:all .3s ease-in-out;
}
.job-career{
	background:url("../../img/zzff.png") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}
.goods-header{
	background:url("../../img/goods/31721383.png") no-repeat;
	background-position: 50% 50%;
	background-size:cover;color: #fff;
}
.goods-group{
	background-color:#2823a5 ;
}
.goods-group a{
	padding: 20px 0;color:#fff;display: block;
	border-bottom: 1px solid #453f95;text-align: center;
}
.goods-group a:hover{
	background-color: #504d9f;
}
.goods-lists a{
	border: 1px solid #eee;width: 100%;display: block;
	padding: 15px;
	margin-bottom: 10px;
}

.goods-lists a:hover{
	background-color: #e4e4e4;
}

.bg-form .form-group{
	width: 100%;margin-right: 10px;
}
.bg-form span{
	color: red;
}
.bg-row{
	display: flex;
}
/* 适配 */



@media (max-width: 1200px) {
	body {
		padding-top: 46px;
	}

	.bg-row{
		flex-wrap:wrap;
	}

	.w82 {
		width: 92%;
	}

	.head_box .logo_a {
		width: 100px;
	}

	.head_box .nav_ul li>a::after{
		display: none;
	}

	.head_box .yy_dl {
		float: none;
		display: inline-block;
		vertical-align: top;
		margin-top: 14px;
		margin-left: 20px;
		margin-right: 0;
	}

	.head_box .yy_dl::before {
		margin-right: 10px;
	}

	.head_box {
		height: 46px;
		background: #fff;
		border-bottom: none;
	}

	.head_box .nav_ul {
		display: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 46px;
		background: #fff;
		box-sizing: border-box;
		padding: 0 4%;
		margin-right: 0;
	}

	.head_box .nav_div {
		display: block;
		margin-right: -4%;
	}

	.head_box .nav_ul li {
		display: block;
		margin: 0;
		padding: 0;
		border-top: 1px solid #E6E6E6;
	}

	.head_box .nav_ul li.active::after {
		display: none;
	}

	.head_box .nav_ul li div {
		position: static;
		padding: 10px 18px;
		text-align: left;
		box-sizing: border-box;
	}

	.head_box .nav_ul li>a {
		height: 40px;
		line-height: 40px;
	}

	.head_box .nav_ul li a i {
		display: block;
	}

	.head_box .nav_ul li p {
		position: static;
		padding: 10px 18px;
		text-align: left;
		box-sizing: border-box;
	}

	.head_box .nav_ul li p a {
		height: 36px;
		line-height: 36px;
	}

	.head_box .nav_ul li p .hide_a{
		display: block;
	}

	.head_box .nav_ul li p {
		background: rgba(0, 0, 0, 0.2);
	}






}

@media (max-width: 768px) {

}
