html,
body {
	font-family: Arial, "微软雅黑";
}

ul,
list {
	list-style: none;
}

select {
	border: none;
	outline: none;
	outline: none;
	-webkit-appearance: none;
}

.header {
	box-sizing: border-box;
	padding-left: 37px;
	padding-right: 37px;
	height: 71px;
	width: 100%;
	min-width: 1280px;
	position: sticky;
	z-index: 9999;
	transform: translateZ(1000px);
	margin: auto;
	background: rgba(255, 255, 255, 0.1);
	/* background: linear-gradient(90deg, rgba(2, 99, 230,0.8) , rgba(0, 207, 246,0.8)); */
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	top: 0px;
	transition: all 0.6s linear 0s;
}

.header_left {
	width: 800px;
	height: 71px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;

}

.logo {
	width: 200px;
}

.navigation {
	width: 800px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-left: 80px;
}

.navigation li {
	width: 85px;
	text-align: center;
	height: 69px;
	box-sizing: border-box;
	font-size: 16px;
	/* font-family: Microsoft YaHei; */
	font-weight: 400;
	color: #000;
	line-height: 69px;
	cursor: pointer;
}

.header-link {
	display: block;
	width: 85px;
	text-align: center;
	height: 69px;
	box-sizing: border-box;
	font-size: 16px;
	/* font-family: Microsoft YaHei; */
	font-weight: 400;
	color: #000;
	line-height: 69px;
	cursor: pointer;
}

.navigation li:hover {
	border-top: solid 0 transparent;
	border-right: solid 0 transparent;
	border-left: solid 0 transparent;
	border-bottom: 3px solid #0264E8;
	border-image: linear-gradient(90deg, #0264E8, #00D1F8) 20 20;
}

.header_right {
	width: 430px;
	height: 71px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	position: absolute;
	right: 3%;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	/* overflow: hidden; */
	transition: all 0.3s;
	/* display: none; */
}

#searchButton img {
	width: 100%;
	height: 100%;
}

.header_solution {
	/* padding-right: 10px; */
	/* padding-left: 16px; */
	margin-top: 15px;
	width: 115px;
	height: 44px;
	background: #009EF0;
	border-radius: 21px 0px 0px 21px;
	font-size: 15px;
	font-weight: 400;
	color: #FFFFFF;
	position: relative;
}

.header_solutions {
	width: 100%;
	height: 44px;
	line-height: 44px;
	/* background: #009ef0; */
	border-radius: 21px 0px 0px 21px;
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	/* padding-left: 15px; */
	cursor: pointer;
}

.header_solutions_map {
	position: absolute;
	z-index: 9999;
	top: 54px;
	left: 0;
	width: 100%;
	height: 150px;
	background-color: #fff;
	display: none;
	color: #000;
	border-radius: 5px;
	overflow: hidden;
}

.header_solutions_map li {
	width: 100%;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	cursor: pointer;
}

.header_solutions_map li:hover {
	background-color: #009ef0;
	color: #fff;
}

.header_solution_img {
	margin-left: 5px;
	cursor: pointer;
}


.header_input {
	margin-top: 15px;
	width: 300px;
	height: 42px;
	background: #fff;
	border: 1px solid #009EF0;
	border-left: none;
	border-radius: 0px 21px 21px 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.header_input input {
	width: 75%;
	font-size: 14px;
	font-weight: 400;
	color: #999999;

}

.searchline {
	width: 1px;
	height: 24px;
	background-color: #999;
	display: none;
}

.searchClone {
	display: none;
	justify-content: center;
	align-items: center;
}

.searchClone img {
	width: 100%;
	height: 100%;

}

.header_SearchResult {
	width: 100%;
	height: auto;
	background-color: #fff;
	position: absolute;
	top: 70px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	display: none;
	padding-bottom: 30px;
}

.SearchResult {
	width: 100%;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow-y: scroll;
	overflow-x: hidden;
	/* scrollbar-width: none; */
}

/* 谷歌浏览器滚动条样式 */
.SearchResult::-webkit-scrollbar {
	width: 5px;
	/* 设置滚动条宽度 */
}

.SearchResult::-webkit-scrollbar-thumb {
	background-color: #009EF0;
	/* 设置滚动条颜色 */
}

.SearchResult::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	/* 设置滚动条轨道背景色 */
}

/* 火狐浏览器滚动条样式 */
.SearchResult {
	scrollbar-width: thin;
	scrollbar-color: #009EF0 #f1f1f1;
}

/*搜索结果不为空*/
.SearchResult .result {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
}

.SearchResult .result:hover {
	background-color: rgba(0, 158, 240, 0.14);
}

.SearchResult .result:hover .result_con .result_title {
	color: #009EF0;
}

/* .SearchResult .result .result_logo {
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
}

.SearchResult .result .result_logo img {
	width: 100%;
	height: auto;
} */

.SearchResult .result .result_con {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.SearchResult .result:hover .result_con::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: #009EF0;
}

.SearchResult .result .result_con .result_title {
	width: 80%;
	height: 100%;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	padding: 15px 0px;
	display: flex;
	align-items: center;
}

/* .SearchResult .result .result_con .result_desc {
	width: 100%;
	height: 40px;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
} */


/*搜索结果为空时*/
.SearchResult .kongResult {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	color: #999;
}

/*为你推荐*/

.Searchguan {
	margin-top: 20px;
	width: 80%;
	height: auto;
	border-top: 1px solid #999;
	/* padding: 0px 10%; */
	background-color: #fff;
}


.Searchguan_btn {
	padding-right: 5px;
	height: 60px;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	line-height: 75px;
	text-align: left;
	opacity: 0.6;
}

.Searchguan_tui {
	width: 100%;
	height: auto;
	/* display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start; */
}

.search_service {
	float: left;
	width: 40%;
	height: 50px;
	display: block;
	/* font-family: SimSun; */
	font-weight: 600;
	font-size: 16px;
	line-height: 50px;
	color: #000000;
	text-align: left;
	cursor: pointer;
	margin-right: 5%;
	white-space: nowrap;
	/* 不换行 */
	overflow: hidden;
	/* 超出隐藏 */
	text-overflow: ellipsis;
	/* 超出部分显示省略号 */
}

.rect1c {
	width: 100%;
	height: 50px;
	background: rgba(000, 000, 000, 0.5);
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 0;
	z-index: 6;
}

#news {
	font-size: 14px;
	font-weight: 400;
	color: #EBEBEB;
	bottom: 50px;
}


/* ----导航下拉------ */
.nav-expand {
	position: absolute;
	z-index: 150;
	transform: translateZ(900px);
	/* height:315px; */
	width: 100%;
	left: 0;
	background-color: #fff;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 10px;
	box-sizing: border-box;
	display: none;
}

.nav-expand-box {
	width: 1280px;
	margin: 0 auto;
	display: flex;
	margin-bottom: 50px;

}

.expand-img {
	width: 40px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.expand-title {
	font-size: 20px;
	font-weight: 400;
	color: #333333;
}

.expand-item {
	width: 25%;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;

}

.expand-top {
	display: flex;
	align-items: center;
	height: 60px;
	/* width: 190px; */
	/* border-bottom: 1px solid #E5E5E5; */
}

.expand-line {
	width: 190px;
	height: 1px;
	background-color: #E5E5E5;
}

.expand-list {
	margin-top: 5px;
	display: flex;
	flex-direction: column;
}

.expand-list-link {
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	font-weight: 400;
	color: #666666;
	margin-top: 10px;
}

.expand-list-link:hover {
	color: #0671EA;
	/* border-bottom: 1px solid #0671EA; */
	text-decoration: underline;
}

.expand-list a {
	text-align: left;
	height: 30px;
	line-height: 30px;
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #666666;
	margin-top: 10px;
}

.expand-list a:hover {
	color: #0671EA;

	text-decoration: underline;
}

.expand-item:last-child {
	border-bottom: none;
}



/* -----底部------ */
.footer {
	width: 100%;
	height: 260px;
	min-width: 1280px;
	background: #1f66d1;
}

.footer_box {
	width: 1280px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 auto;
}

.left_content {
	display: flex;
	flex-direction: column;
	margin: 65px 0
}

.left_title {
	font-size: 24px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 30px;
}

.left_text {
	width: 900px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 40px;
}

.left_item {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 30px;
	width: 320px;
}

.left_item_title {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 30px;
}

.links {
	display: flex;
	flex-direction: row;
	margin-top: 15px;
}

.links span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 30px;
}

.links_item {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 30px;
	margin-left: 25px;
}

.links_content {
	display: flex
}

.right_content {
	display: flex;
	flex-direction: column;
	margin: 75px 0
}

.right_content_top {
	width: 120px;
	height: 120px;
}

.right_content_img {
	width: 100%;
}

.right_content_bottom {
	width: 120px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
	margin-top: 5px;
}

.m-header {
	display: none
}


.bottom {
	position: relative;
	z-index: 120;
	transform: translateZ(500px);
	width: 100%;
	height: 40px;
	min-width: 1280px;
	background-color: #1f66d1;
	border-top: 1px solid #5487d5;
}

.bottom_box {
	width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.bottom_content {
	line-height: 40px;
	color: #fff;
	text-align: center;
	font-size: 14px;
}

.bottom_beian {
	line-height: 40px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	margin-left: 20px;
	cursor: pointer;
}

/* ----------移动端----- */
/* @media screen and (max-width: 750px) {
	.header{
		display:none;
	}
    
} */