﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: #fff;
	text-align: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
}

h1,
h2,
h3 {
	font-weight: 500;
}

img {
	border: none;
}

a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}

a:hover {
	color: #006bb7;
}

ul {
	list-style-type: none;
}

em {
	font-style: normal;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

input.sub,
label {
	border: none;
	cursor: pointer;
}

input,
textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}

table {
	border-collapse: collapse;
}

table td,
table th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
}

div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 增强版清除浮动 */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/* 兼容IE */
.clearfix {
	zoom: 1;
}

/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.header-container {
	padding: 18px 20px;
}

.logo {
	float: left;
	display: inline-block;
}

.logo img {
	height: 60px;
	vertical-align: middle;
}

/* PC端导航样式 */
.nav-pc {
	float: right;
	margin-left: 30px;
	margin-top: 18px;
}

.nav-item {
	position: relative;
	margin: 0 25px;
	float: left;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #2e4e9e;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2e4e9e;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #2e4e9e;
}

/* 移动端菜单按钮 */
.menu-toggle {
	float: right;
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
	margin-left: 15px;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

/* 移动端菜单行布局 */
.mobile-menu-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

/* 移动端展开按钮样式 */
.mobile-expand-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	position: absolute;
	right: 10px;
	top: 43%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}

.nav-mobile-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	width: calc(100% - 50px);
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* 搜索按钮样式 */
.sousuo {
	position: relative;
	margin-left: 20px;
	float: right;
	margin-top: 18px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	margin-right: 15px;
}

.search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%);
}

.search-form {
	position: absolute;
	top: 100%;
	right: 0;
	width: 300px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 15px;
	display: none;
	z-index: 1001;
}

.search-form.active {
	display: flex;
}

.search-form input {
	flex: 1;
	height: 36px;
	border: 1px solid #e0e0e0;
	border-radius: 4px 0 0 4px;
	padding: 0 10px;
}

.search-form button {
	height: 36px;
	background: #2e4e9e;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	padding: 0 15px;
	cursor: pointer;
}

.search-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 16px;
	color: #999;
	cursor: pointer;
}

/* 语言切换样式 */
.yuyan_tab {
	position: relative;
	margin-left: 20px;
	z-index: 1001;
	float: right;
	margin-top: 14px;
}

.language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.language-current:hover {
	background: #f5f5f5;
}

.language-current img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.language-list {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 120px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	display: none;
}

.yuyan_tab:hover .language-list {
	display: block;
}

.language-list li {
	list-style: none;
}

.language-list li a {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.language-list li a:hover {
	background: #f5f5f5;
}

.language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}

/* 移动端搜索和语言切换 */
.mobile-functions {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
}

.mobile-search {
	position: relative;
	flex: 1;
	margin-right: 15px;
}

.mobile-search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.mobile-search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%);
}

.mobile-search-form {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 15px;
	display: none;
	z-index: 1001;
}

.mobile-search-form.active {
	display: flex;
}

.mobile-search-form input {
	flex: 1;
	height: 36px;
	border: 1px solid #e0e0e0;
	border-radius: 4px 0 0 4px;
	padding: 0 10px;
}

.mobile-search-form button {
	height: 36px;
	background: #2e4e9e;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	padding: 0 15px;
	cursor: pointer;
}

.mobile-search-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 16px;
	color: #999;
	cursor: pointer;
}

.mobile-language {
	position: relative;
}

.mobile-language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.mobile-language-current img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.mobile-language-list {
	position: absolute;
	top: 40px;
	right: 0;
	min-width: 120px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	display: none;
	z-index: 1001;
}

.mobile-language-list.active {
	display: block;
}

.mobile-language-list li {
	list-style: none;
}

.mobile-language-list li a {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.mobile-language-list li a:hover {
	background: #f5f5f5;
}

.mobile-language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}

/*  */
.banner {
	margin-top: 60px;
	position: relative;
}

.banner .text {
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	    padding-left: 2%;
    padding-right: 2%;
    text-align: center;
}

.banner .text h3 {
	color: #fff;
	font-size: 48px;
	font-weight: 500;
}

.banner .text p {
	font-size: 24px;
	color: #ffffff;
}

.title {
	padding: 0px 0;
}

.title h3 {
	position: relative;
	padding-left: 60px;
	font-size: 30px;
	color: #232323;
}

.title h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 50px;
	height: 2px;
	background: #074adb;
}

.fp_box_1 .container {
	position: relative;
}

.fp_box_1 .swiper-slide .pic {
	width: 100%;
	height: 185px;
	background: #f5f5f5;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fp_box_1 .swiper-slide .pic img {
	max-width: 95%;
	max-height: 95%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.fp_box_1 .swiper-slide:hover .pic img {
	transform: scale(1.1);
}

.fp_box_1 .swiper-slide .text {
	background: #909292;
	text-align: center;
	padding: 15px 0;
	border-radius: 0 0 20px 0;
	color: #fff;
	font-size: 18px;
}

.fp_box_1 .swiper-slide:hover .text {
	background: #074adb;
}

.fp_box_1 .swiper-button-next {
	width: 15px;
	height: 30px;
	background: url('../images/you.png') no-repeat center;
	background-size: 16px 30px;
	right: -30px;
	left: auto;
	top: 50%;
}

.fp_box_1 .swiper-button-prev {
	width: 15px;
	height: 30px;
	background: url('../images/zuo.png') no-repeat center;
	background-size: 16px 30px;
	left: -30px;
}

.list_box .box {
	margin-bottom: 30px;
}

.list_box .box .text {
	width: 50%;
	float: left;
	padding: 55px 0 0 35px;
}

.list_box .box .pic {
	width: 50%;
	float: right;
	height: 100%;
}

.list_box .box>div {
	background: #cecece;
	padding: 20px;
	height: 260px;
}

.list_box .box>div span {
	font-size: 18px;
	color: #ffffff;
	text-transform: uppercase;
}

.list_box .box>div h3 {
	font-size: 26px;
	color: #ffffff;
	margin-top: 10px;
	text-align:left;
}

.list_box .box>div a {
	display: block;
	font-size: 18px;
	color: #ffffff;
	margin-top: 30px;
	width: 180px;
	height: 45px;
	background: #074adb;
	border-radius: 10px;
	text-align: center;
	line-height: 45px;
}

.list_box .box>div a:hover {
	background: #fff;
	color: #006bb7;
}

.list_box .box>div .pic {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.list_box .box>div .pic img {
	max-width: 90%;
	max-height: 90%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.list_box .box>div:hover .pic img {
	transform: scale(1.1);
}

footer {
	background: #18202e url('../images/fbg.png') no-repeat right;
	background-size: auto;
	padding: 85px 0;
}

footer .left {
	width: 15%;
	float: left;
}

footer .left .flogo {
	width: 100%;
	margin-bottom: 30px;
}

footer .left .link {
	margin-top: 30px;
}

footer .left .link a {
	margin-right: 10px;
}

footer .right {
	width: 80%;
	float: right;
}

footer .right ul li {
	width: 18%;
	float: left;
}

footer .right ul li h3 {
	font-size: 18px;
	color: #fff;
}

footer .right ul li a {
	display: block;
	font-size: 15px;
	color: #fff;
	margin-top: 20px;
	text-align:left;
}

footer .right ul li a:hover {
	color: #074adb;
}

footer .right ul li p {
	font-size: 15px;
	color: #fff;
	margin-top: 20px;
	padding-left: 55px;
	position: relative;
	text-align:left;
}

footer .right ul li p em {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
	color: #fff;
	margin-right: 10px;
}

footer .right ul li.clearfix {
	width: 30%;
}

footer .right ul li.clearfix .zuo {
	width: 50%;
	float: left;
}

footer .right ul li.clearfix .you {
	width: 50%;
	float: right;
}

.footer {
	background: #1a2332;
	padding: 20px 0;
	font-size: 14px;
	color: #80889a;
}

.footer .left {
	float: left;
}

.footer .right {
	float: right;
	text-align: right;
}

.footer .right a {
	color: #80889a;
}

.footer .right a:hover {
	color: #074adb;
}
.fp_box_3{
	height: 65px;
	background: #eeeeee;
}
.fp_box_3 .left_nacv{
	width: 70%;
	float: left;
}
.fp_box_3 .left_nacv a{
	display: inline-block;
	padding: 0 35px;
	font-size: 16px;
	color: #333333;
	height: 100%;
	line-height: 65px;
	float: left;
}
.fp_box_3 .left_nacv a:hover{
	color: #fff;
	background: #074adb;
}
.fp_box_3 .left_nacv a.hover{
	color: #fff;
	background: #074adb;
}
.dqwz{
	float: right;
	line-height: 65px;
	font-size: 18px;
	color: #333333;
}
.dqwz a{
	font-size: 16px;
	color: #333333;
	display: inline-block;
	margin: 0 5px;
}
.dqwz a:hover{
	color: #074adb;
}
.fp_box_4{
	padding: 70px 0;
	padding-bottom:0px;
}
.fp_box_4 .left{
	width: 70%;
	float: left;
	margin-bottom: 0px;
	position: relative;
}
.fp_box_4 .left h3{
	font-size: 38px;
	color: #242424;
	margin-bottom: 24px;
	text-align:left;
}
.fp_box_4 .left p{
	font-size: 18px;
	color: #2f2f2f;
	line-height: 1.8;
	margin-bottom: 30px;
}
.fp_box_4 .right{
	width: 30%;
	float: left;
	padding-left: 60px;
	margin-bottom: 60px;
}
.fp_box_4 .right img{
	width: 100%;
}

.fp_box_4 .left video{
	width: 100%;
}
.fp_box_4 .right h5{
	font-size: 24px;
	color: #2f2f2f;
	margin-top: 20px;
}
.fp_box_4 .right p{
	font-size: 16px;
	color: #2f2f2f;
	margin-top: 10px;
	text-align:left;
}
.fp_box_4 .right p em{
	color: #074adb;
	font-size: 28px;
	display: inline-block;
	margin-right: 5px;
}
.fp_box_4 .right h5.two{
	margin-top: 80px;
}
.fp_box_4 .left .zegai{
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
}
.fp_box_4 .left .zegai img{
	width: 100px;
	height: 100px;
	cursor: pointer;
}
.shouji_banner{
	display: none;
}
.dbdh {
	display: none;
}
@media only screen and (max-width:1600px) {
	.fp_box_1 .swiper-slide .pic {
		height: 150px;
	}

	.fp_box_1 .swiper-slide .text {
		padding: 10px 0;
		font-size: 15px;
	}

	.list_box .box .text {
		width: 50%;
		float: left;
		padding: 55px 0 0 0px;
	}

	.list_box .box>div a {
		display: block;
		font-size: 14px;
		color: #ffffff;
		margin-top: 30px;
		width: 140px;
		height: 35px;
		background: #074adb;
		border-radius: 10px;
		text-align: center;
		line-height: 35px;
	}

	.list_box .box>div h3 {
		font-size: 18px;
		color: #ffffff;
		margin-top: 10px;
	}

	.list_box .box>div span {
		font-size: 14px;
		color: #ffffff;
		text-transform: uppercase;
	}

	footer .left .link a img {
		height: 15px;
	}

	footer .right ul li h3 {
		font-size: 16px;
		color: #fff;

	}

	footer .right ul li a {
		font-size: 12px;
	}

	footer .right ul li p {
		font-size: 12px;
		color: #fff;
		margin-top: 20px;
		padding-left: 35px;
		position: relative;
	}

	footer .right ul li p em {
		position: absolute;
		left: 0;
		top: 0;
		font-size: 12px;
		color: #fff;
		margin-right: 10px;
	}

	.footer {
		background: #1a2332;
		padding: 20px 0;
		font-size: 12px;
		color: #80889a;
	}

	footer {
		padding: 35px 0;
	}
	.fp_box_4 .left p {
		font-size: 18px;
		color: #2f2f2f;
		line-height: 2;
		margin-bottom: 15px;
		text-align:left;
	
	}
	.fp_box_4 .right p {
		font-size: 16px;
		color: #2f2f2f;
		margin-top: 0px;
	}
}

@media only screen and (max-width:1400px) {
	footer .left .flogo img {
		width: 100%;
		margin-top: 20px;
	}

	footer .left .link a img {
		height: 12px;
	}
	.fp_box_4 .left p {
        font-size: 18px;
        color: #2f2f2f;
        line-height: 2;
        margin-bottom: 15px;
    }
	.fp_box_4 .right p {
        font-size: 16px;
        color: #2f2f2f;
        margin-top: 0px;
		margin-bottom: 0;
    }
	.fp_box_4 .right h5.two {
		margin-top: 20px;
	}
	.fp_box_3 .left_nacv a {
		display: inline-block;
		padding: 0 20px;
		font-size: 14px;
		color: #333333;
		height: 100%;
		line-height: 65px;
		float: left;
	}
	.dqwz a {
		font-size: 14px;
		color: #333333;
		display: inline-block;
		margin: 0 5px;
	}
	.fp_box_4 .left h3 {
		font-size: 24px;
		color: #242424;
		margin-bottom: 30px;
	}
	.fp_box_4 .left p {
        font-size: 14px;
        color: #2f2f2f;
        line-height: 2;
        margin-bottom: 15px;
    }
	.fp_box_4 .right h5 {
		font-size: 18px;
		color: #2f2f2f;
		margin-top: 0px;
	}
	.fp_box_4 .right p {
        font-size: 12px;
        color: #2f2f2f;
        margin-top: 0px;
        margin-bottom: 0;
    }
	.fp_box_4 .right p em {
		color: #074adb;
		font-size: 18px;
		display: inline-block;
		margin-right: 5px;
	}
	.fp_box_4 {
		padding: 35px 0;
	}
	.dqwz {
		float: right;
		line-height: 65px;
		font-size: 14px;
		color: #333333;
	}
	.fp_box_3 {
		height: auto;
		background: #eeeeee;
	}
	.fp_box_3 .left_nacv {
		width: 100%;
		float: none;
	}
	.fp_box_3 .left_nacv a {
		display: inline-block;
		padding: 0 15px;
		font-size: 16px;
		height: 50px;
		line-height: 50px;
		color: #333333;
	}
	.dqwz{
		display: none;
	}
	.fp_box_4 .left {
		width: 100%;
		float: left;
		margin-bottom: 30px;
		position: relative;
	}
	.fp_box_4 .left h3 {
		font-size: 20px;
		color: #242424;
		margin-bottom: 15px;
	}
	.fp_box_4{
		padding-top: 0;
	}
	.fp_box_4 .right {
		width: 100%;
		float: left;
		padding-left: 0px;
		margin-bottom: 20px;
	}
	.fp_box_4 .right img{
		width: 60%;
		display: block;
		margin: 0 auto;
	}
	.fp_box_4 .right h5{
		margin-top: 0;
	}
	.fp_box_4 .left .zegai img {
		width: 50px;
		height: 50px;
		cursor: pointer;
	}
}

@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 960px;
	}

	.nav-item {
		margin: 0 15px;
	}

	.sousuo {
		margin-left: 15px;
	}

	.yuyan_tab {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		max-width: 720px;
	}

	.nav-item {
		margin: 0 10px;
	}

	.nav-link {
		font-size: 14px;
	}

	.sousuo {
		margin-left: 10px;
	}

	.yuyan_tab {
		margin-left: 10px;
	}

	.language-current span {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.header-container {
		padding: 10px 15px;
	}

	.logo img {
		height: 30px;
	}

	.sousuo {
		margin-right: 15px;
		margin-top: 3px;
	}

	.yuyan_tab {
		display: none;
	}

	.search-btn {
		display: none;
	}

	.mobile-search-form {
		width: 140%;
	}

	.mobile-search-form button {
		font-size: 10px;
	}

	.mobile-functions {
		border: none;
	}

	.menu-toggle {
		margin-left: 0px;
	}

	.sousuo {
		display: none;
	}

	.banner {
		margin-top: 50px;
	}

	.banner .text h3 {
		font-size: 20px;
	}

	.banner .text p {
		font-size: 12px;
		color: #ffffff;
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}

	.banner .text p {
		font-size: 12px;
		color: #ffffff;
	}

	.fp_box_1 .swiper-button-next {
		display: none;
	}

	.fp_box_1 .swiper-button-prev {
		display: none;
	}

	.header-container {
		max-width: 100%;
	}

	.title {
		padding: 0px 0;
	}

	.title h3 {
		position: relative;
		padding-left: 35px;
		font-size: 18px;
		color: #232323;
	}

	.title h3::before {
		width: 30px;
		height: 2px;
		background: #074adb;
		left: 0;
	}

	.fp_box_1 .swiper-slide .pic {
		height: 120px;
	}

	.fp_box_1 .swiper-slide .text {
		padding: 5px 0;
		font-size: 12px;
	}

	.list_box .box>div {
		height: auto;
		padding: 5px;
		border-radius: 5px;
	}

	.list_box .box .text {
		width: 100%;
		float: none;
		padding: 10px;
		text-align: center;
	}

	.list_box .box .text a {
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.list_box .box .pic {
		width: 100%;
		float: none;
		height: 100%;
	}

	footer {
		padding: 20px 0;
	}

	footer .left {
		width: 100%;
		float: left;
	}

	footer .left .flogo {
		margin-bottom: 10px;
	}

	footer .left .flogo img {
		width: 140px;
		display: block;
		margin: 0 auto;
	}

	footer .left .link {
		text-align: center;
	}

	footer .left .link a img {
		height: 20px;
	}

	footer .right ul {
		width: 100%;
		float: none;
	}

	footer .right ul li {
		width: 50%;
		float: left;
		min-height: 250px;
		margin-bottom: 30px;
	}

	footer .right ul li h3 {
		font-size: 16px;
	}

	footer .right ul li a {
		font-size: 10px;
	}

	footer .right {
		width: 100%;
		margin-top: 20px;
	}

	footer .right ul li.clearfix .zuo {
		width: 100%;
		float: none;
	}

	footer .right ul li.clearfix .you {
		width: 100%;
		float: none;
	}

	footer .right ul li.clearfix {
		width: 50%;
	}
	.footer {
		font-size: 10px;
	}
	.footer .left {
		float: left;
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}

	.footer .right {
		float: left;
		width: 100%;
		text-align: center;
	}
	.header.scrolled .header-container {
		padding: 20px 20px;
	}

	.shouji_banner{
		display: block;
		margin-top: 60px;
	}
	.banner{
		display: none;
	}
	.logo img {
        height: 40px;
    }
	.header.scrolled .header-container {
        padding: 0;
		height: 50px;
    }
	.header.scrolled .logo img {
        height: 40px;
		margin-top: 5px;
		margin-left: 5px;
    }
	.menu-toggle {
        margin-right: 10px;
		margin-top: 10px;
    }
	.dbdh {
		display: block;
	}
	body{
		padding-bottom: 45px;
	}
	.dbdh {
		min-width: 320px;
		max-width: 750px;
		width: 100%;
		position: fixed;
		bottom: -10px;
		z-index: 299;
	}

	.dbdh li {
		float: left;
		width: 25%;
		height: 4.5rem;
		background: #222222;
		box-sizing: border-box;
		border-right: 1px solid #343434;
	}

	.dbdh li.hover {
		background: #003171;
	}

	.dbdh li a {
		display: block;
		height: 4.5rem;
		padding-top: 0.45rem;
		box-sizing: border-box;
	}

	.dbdh li em {
		display: block;
		width: 1.3rem;
		height: 1.3rem;
		margin: 0 auto;
		line-height: 0;
	}

	.dbdh li em img {
		width: 100%;
	}

	.dbdh li i {
		display: block;
		height: 2.4rem;
		line-height: 2.4rem;
		text-align: center;
		font-size: 1.4rem;
		color: #FFF;
		font-style: normal;
	}
	.footer{
		display: none;
	}
	footer{
		display: none;
	}
	.header.scrolled .header-container {
		padding: 0 10px;
	}
}