﻿/* 在CSS文件顶部添加字体引入 */

@font-face {
	font-family: "PingFang_SC";
	src: url(../fonts/opposans-m.ttf);
}

@font-face {
	font-family: "PingFang_two";
	src: url(../fonts/opposans-b.ttf);
}

/* 重置默认样式 */
* {
	margin: 0;
	padding: 0;
}

/* 基础字体和颜色设置 */
/* 设置整体页面的基础样式 */
body {
	/* 设置页面水平居中 */
	margin: 0 auto;

	/* 设置默认字体大小为14px */
	font-size: 14px;

	/* 设置字体族,按优先级排序:
       - PingFang SC (苹方字体)
       - Hiragino Sans GB (冬青黑体) 
       - Microsoft YaHei UI (微软雅黑UI)
       - Microsoft YaHei (微软雅黑)
       - Source Han Sans CN (思源黑体)
       - sans-serif (无衬线字体) */
	font-family: "PingFang_SC";

	/* 设置背景色为白色 */
	background: #fff;

	/* 设置文本两端对齐 */
	text-align: justify;

	/* 设置文字颜色为近黑色 */
	color: #010000;

	/* 设置定位为相对定位,作为子元素绝对定位的参考 */
	position: relative;
}

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;
}

/*header 开始*/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 0;
	height: 110px;
	background: #fff;

}

.header .logo {
	float: left;
	margin-top: 25px;
}

.header .nav {
	float: left;
	margin-left: 30px;
	z-index: 99;
}

.header .nav>li {
	float: left;
	padding: 0 25px;
	text-align: center;
	position: relative;
	line-height: 110px;
}

.header .nav>li:hover>a,
.header .nav>li.hover>a {
	color: #033a89;
}

.header .nav>li a {
	padding: 0;
	font-size: 18px;
	background: none;
}

.header .contact {
	float: right;
	background: url(../images/di1.png) no-repeat left;
	background-size: auto 20px;
	padding-left: 30px;
	font-size: 20px;
	color: #d61419;
	line-height: 100px;
	font-weight: bold;
}

.header .nav .sec {
	position: absolute;
	top: 110px;
	left: 0;
	width: 170%;
	background: #2962a9;
	padding: 10px 0;
	display: none;
	margin-left: -40px;
}

.header .nav>li:hover .sec {
	display: block;
}

.header .nav .sec>li {
	height: 37px;
	line-height: 37px;
	position: relative;
}

.header .nav .sec>li:hover,
.header .nav .sec>li.hover {
	background: #033a89;
}

.header .nav .sec>li a {
	color: #fff;
	font-size: 14px;
}

.header .nav .sec .level {
	width: 100%;
	padding: 10px 20px;
	position: absolute;
	left: 100px;
	top: 0;
	background: #033a89;
	display: none;
}

.header .nav .sec>li:hover .level {
	display: block;
}

.header .nav .sec .level>li {
	height: 37px;
	line-height: 37px;
	text-align: left;
}

.header .nav .sec .level li:hover {
	background: #2962a9;
}

.m_line {
	width: 25px;
	height: 16px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 3%;
	display: none;
}

.m_line span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000000;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s;
}

.m_line span:nth-child(2) {
	margin: 6px 0;
}

.header .sousuo {
	float: right;
	margin-top: 45px;
	display: none;
}

.header .sousuo img {
	width: 22px;
}

.header .sousuo img.im2 {
	display: none;
}

.header .sousuo.show img.im2 {
	display: block;
}

.header .sousuo.show img.im1 {
	display: none;
}


.header .tabyy {
	float: left;
	padding-left: 20px;
	margin-left: 20px;
	margin-top: 44px;
	position: relative;
}

.header .tabyy::after {
	display: block;
	content: '';
	width: 2px;
	height: 18px;
	background: #666;
	position: absolute;
	top: 4px;
	left: 0;

}

.header .tabyy a {
	display: block;
	font-size: 18px;
}

.header .nav {
	margin-left: 135px;
}

.banner {
	margin-top: 110px;
}

.banner img {
	width: 100%;
}

.banner .swiper-slide {
	position: relative;
}

.banner .swiper-slide .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	padding-top: 10%;
}

.banner .swiper-slide .text h3 {
	color: #fff;
	font-size: 48px;
	color: #ffffff;
	line-height: 1.5;
}

.banner .swiper-slide .text a {
	display: block;
	width: 240px;
	height: 65px;
	border: 1px solid #fff;
	border-radius: 30px;
	margin-top: 50px;
	text-align: left;
	line-height: 65px;
	font-size: 24px;
	color: #fff;
	padding-left: 50px;
	background: url(../images/more.png) no-repeat fixed;
	background-position-x: 80%;
	background-position-y: 24px;
}

.banner .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E);
	right: 10%;
	left: auto;
}

.banner .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E);
	left: 10%;
	right: auto;
}


.title {
	padding: 80px 0 60px 0;
}

.title h3 {
	display: inline-block;
	float: left;
	font-size: 42px;
	color: #333333;
	margin: 0;
	font-weight: 600;
}

.title a {
	float: right;
	display: inline-block;
	padding-right: 50px;
	font-size: 22px;
	color: #000000;
	margin-top: 5px;
	border-bottom: 2px solid #333;
	padding-bottom: 5px;
	background: url(../images/more2.png) no-repeat right;
}

.title a:hover {
	color: #033a89;
	border-bottom: 2px solid #033a89;
}

.fp_box_1 {
	padding-bottom: 200px;
	background: #f5f5f5;
}

.box_stab {
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
}

.box_stab ul li {
	width: 20%;
	float: left;
	height: 450px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.box_stab ul li .box {
	height: 100%;
	border-right: 1px solid #ccc;
}

.box_stab ul li:nth-child(4) .box {
	border: none;
}

.box_stab ul li.hover .box {
	border: none;
}

.box_stab ul li .om1 {
	padding: 40px 0;
	padding-left: 50px;
	position: relative;
	height: 100%;
}

.box_stab ul li .om1 img {}

.box_stab ul li .om1 .more {
	display: inline-block;
	width: 45px;
	height: 45px;
	border: 1px solid #c6c6c6;
	text-align: center;
	line-height: 45px;
	border-radius: 45px;
	position: absolute;
	bottom: 45px;
	left: 50px;
	background: #fff;
}

.box_stab ul li .om1 .text a {
	display: block;
}




.box_stab ul li.hover .box {
	border: none;
}

.box_stab ul li.hover {
	width: 40%;
	background: #777777;
}


.box_stab ul li.hover .om1 {
	width: 45%;
	float: left;
}

.box_stab ul li.hover .om1 .box>img {
	display: none;
}

.box_stab ul li.hover .om1 h3 {
	display: none;
}

.box_stab ul li.hover .om1 span {
	display: none;
}

.box_stab ul li .text {
	display: none;
}

.box_stab ul li.hover .text {
	display: block;
}

.box_stab ul li .text h4 {
	font-size: 25px;
	color: #fff;
}

.box_stab ul li .text em {
	font-size: 15px;
	color: #fff;
	margin-bottom: 40px;
	display: block;
}

.box_stab ul li .text a {
	display: block;
	color: #fff;
	padding: 10px 0;
}

.box_stab ul li .text a:hover {
	color: #033a89;
}

.box_stab ul li.hover .pic {
	width: 53%;
	height: 450px;
	float: right;
}

.box_stab ul li.hover .pic img {
	width: 100%;
	height: 100%;
}






.fp_box_2 {
	padding: 66px 0;
	background: url(../images/fp22.png) no-repeat right;
	background-size: 65% 560px;
	position: relative;
}

.fp_box_2 .imgpo {
	position: absolute;
	top: 20%;
	left: 0;
	width: 42%;
}

.fp_box_2 .rii {
	float: right;
	width: 45%;
}

.fp_box_2 .rii h3 {
	font-size: 36px;
	color: #333333;
	margin-bottom: 30px;
	margin-top: 150px;
}

.fp_box_2 .rii h3 a {
	float: right;
}

.fp_box_2 .rii p {
	font-size: 18px;
	color: #333333;
	text-indent: 3.5rem;
	line-height: 1.5;
}

.fp_box_2 .rii .text {
	margin-top: 50px;
}

.fp_box_2 .rii .text h4 {
	font-size: 18px;
	color: #333333;
}

.fp_box_2 .rii .text span {
	font-size: 36px;
	color: #000000;
	font-weight: bold;
}

.fp_box_2 .rii .text span strong {
	font-size: 18px;
	color: #0d6fb8;
	display: inline-block;
	margin-left: 5px;
}

.fp_box_2 .rii .text .link {
	margin-top: 90px;
}

.fp_box_2 .rii .text .link a {
	display: inline-block;
	padding-right: 80px;
	font-size: 22px;
	color: #000000;
	margin-top: 5px;
	border-bottom: 1px solid #333;
	padding-bottom: 5px;
	background: url(../images/more2.png) no-repeat right;

}

.fp_box_2 .rii .text .link a:nth-child(2) {
	float: right;
}

.fp_box_3 {
	margin-top: 80px;
	position: relative;
}

.box_01 {
	height: 655px;
	position: relative;
	z-index: 3;
	display: none;
}

.box_01.show {
	display: block;
}

.box_01 .rii {
	width: 50%;
	height: 460px;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 77px;
	background: url(../images/bg2.png) no-repeat center;
	background-size: 100% 100%;
	padding-right: 22%;
	border-radius: 40px 0 0 0;
	overflow: hidden;
}

.box_01 .rii h3 {
	font-size: 30px;
	color: #ffffff;
}

.box_01 .rii p {
	color: #fff;
	font-size: 16px;
	color: #ffffff;
	line-height: 1.8;
	margin: 25px 0;
}

.box_01 .rii a {
	background: #fff;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 10px;
	margin-top: 30px;
	position: relative;
	z-index: 5;
}

.box_01 .rii a:hover {
	background: #333;
	color: #fff;
}

.fp_box_3 .tab_fp3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

}

.fp_box_3 .tab_fp3 h3 {
	color: #fff;
	margin-top: 100px;
	margin-bottom: 20px;
	position: relative;
	z-index: 4;
}

.fp_box_3 .tab_fp3 h4 {
	font-size: 36px;
	color: #ffffff;
	margin-bottom: 60px;
	position: relative;
	z-index: 4;
}

.fp_box_3 .tab_fp3 .ilnk_tab a {
	display: block;
	width: 270px;
	height: 60px;
	background: #7a7f88;
	margin-bottom: 30px;
	padding-left: 30px;
	line-height: 60px;
	border-radius: 10px;
	font-size: 18px;
	color: #ffffff;
	position: relative;
	z-index: 4;
}

.fp_box_3 .tab_fp3 .ilnk_tab a.hover,
.fp_box_3 .tab_fp3 .ilnk_tab a:hover {
	color: #000;
	background: #fff;
}

.title h3 span {
	font-size: 24px;
	color: #9b9b9b;
	font-weight: normal;
	display: block;
	margin-top: 5px;
}

.fp_box_4 ul {
	margin-left: -16px;
	margin-right: -16px;
}

.fp_box_4 ul li {
	width: 33.33%;
	float: left;
	padding: 0 16px;
}

.fp_box_4 ul li .pic {
	width: 100%;
	height: 270px;
	overflow: hidden;
}

.fp_box_4 ul li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.fp_box_4 ul li .pic img:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	/*兼容-webkit-引擎浏览器*/
	-moz-transform: scale(1.1);
}

.fp_box_4 ul li .text {
	padding: 25px;
	border: 1px solid #eeeeee;
	border-top: none;
}

.fp_box_4 {
	padding-bottom: 80px;
}

.fp_box_4 ul li .text h3 {
	margin: 0;
	margin-bottom: 25px;
}

.fp_box_4 ul li .text h3 a {
	color: #0d6fb8;
	font-size: 22px;
}

.fp_box_4 ul li .text p {
	font-size: 18px;
	color: #000000;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 0;
}

.fp_box_4 ul li .time {
	padding: 15px 25px;
	border: 1px solid #eeeeee;
	border-top: none;
	position: relative;
	font-size: 18px;
	color: #bbb;
	background: url(../images/time.png) no-repeat center;
	background-position-x: 90%;

}

footer {
	background: #2c2c2c;
	padding-top: 70px;
}

footer .left {
	float: left;
	width: 25%;
	padding-bottom: 50px;
}


footer .left p {
	margin: 0;
	color: #fff;
	font-size: 18px;
	margin-bottom: 5px;
}

footer .left em {
	color: #a5a5a5;
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
	margin-top: 10px;
}

footer .foot_nav {
	float: right;
	width: 75%;
	padding-left: 50px;
}

footer .foot_nav ul li {
	width: 20%;
	float: left;
}

footer .foot_nav ul li h3 {
	margin: 0;
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 20px;
}

footer .foot_nav ul li a {
	color: #a5a5a5;
	display: block;
	font-size: 14px;
	margin-bottom: 20px;
	margin-top: 10px;
}

footer .foot_nav ul li a:hover {
	color: #0460a9;
}

.footer {
	background: #2c2c2c;
	padding: 20px 0;
	border-top: 1px solid #565656;
}

.footer .left {
	float: left;
	color: #a5a5a5;
	width: 50%;
}

.footer .rii {
	float: right;
	text-align: right;
	color: #a5a5a5;
	width: 50%;
}

.footer .rii a {
	color: #a5a5a5;
	display: inline-block;
	margin-right: 20px;
}

.footer .rii a:hover {
	color: #0460a9;
}

.sousuo_win {
	position: fixed;
	top: 110px;
	left: 0;
	width: 100%;
	text-align: center;
	height: 60px;
	background: #fff;
	z-index: 22;
	border-top: 1px solid #ddd;
	
	display: flex; 
	display: -webkit-flex;
	align-items:center;
	justify-content:center;
	display: none;
}
.sousuo_win.hoevere{
	display: flex; 
	display: -webkit-flex;
	align-items:center;
	justify-content:center;
	
}
.sousuo_win .in1 {
	width: 320px;
	height: 40px;
	margin-top: 2px;
	border: 1px solid #ccc;
	border-right: none;
	padding-left: 10px;
	float: left;
}

.sousuo_win .in2 {
	width: 40px;
	height: 40px;
	float: left;
	border: none;
	border: 1px solid #ccc;
	margin-left: -5px;
	margin-top: 2px;
	background: url(../images/sousuo.png) no-repeat center;
}

.box_01 {
	position: relative;
}
.box_01 .bg_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.box_01 .bg_img img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.fp_box_5 {
	background: #fff;
	margin: 50px 0;
}

.fp_box_5 .left {
	width: 313px;
	float: left;
}

.fp_box_5 .left h3 {
	font-family: "PingFang_two";
	width: 100%;
	height: 77px;
	background-image: url(../images/titlebg.png);
	background-size: 100% 100%;
	color: #fff;
	text-align: center;
	line-height: 77px;
	margin: 0;
}


.list_nav .top {
	padding: 0 0 0 15px;
	height: 60px;
	text-align: left;
	line-height: 60px;
	border: 1px solid #ccc;
	border-top: none;
}

.list_nav .top a {
	width: 80%;
	display: block;
	float: left;
}

.list_nav .top i {
	width: 20%;
	display: block;
	float: right;
	height: 60px;
	text-align: center;
	background: url(../images/jiantou.png) no-repeat center;
	background-size: 10px;
	transition: all 0.3s;
}

.list_nav .top.hover i {
	transform: rotate(90deg);
	background: url(../images/jiantou2.png) no-repeat center;
	background-size: 10px;
}

.fp_box_5 .left ul {
	border: 1px solid #ccc;
	margin: 0;
	border-top: none;
	padding: 20px;
	background: #f8f8f8;
	display: none;
}

.fp_box_5 .left ul.show {
	display: block;
}

.fp_box_5 .left ul li a {
	display: block;
	height: 30px;
	background: url(../images/jiantou.png) no-repeat right;
	background-size: 10px;
	line-height: 30px;
}

.fp_box_5 .rii {
	width: 75%;
	float: right;
}

.title_two {
	height: 80px;
	background: #f8f8f8;
	padding: 0 20px;
	border-left: 2px solid #00336c;
}

.title_two h3 {
	font-size: 24px;
	color: #00336c;
	float: left;
	width: 50%;
	margin: 0;
	line-height: 80px;
}

.title_two a {
	float: right;
	padding-left: 20px;

	margin-top: 30px;
	position: relative;
}

.title_two a::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/home.png) no-repeat left center;
	background-size: 15px;
	position: absolute;
	right: 0;
	top: -1px;
}

.fp_box_5 .rii .text {
	margin-top: 30px;
}

.fp_box_5 .rii .text H4 {
	font-size: 24PX;
	color: #242424;
	margin: 0;
	margin-bottom: 20px;
}

.fp_box_5 .rii .text1 {
	font-size: 18PX;
	color: #4a4a4a;
	line-height: 1.8;
}

.fp_box_5 .rii .rii_nav {
	padding: 30px 0;
	border: 1px solid #ccc;
	border-left: none;
	border-right: none;
	margin-top: 50px;
}

.fp_box_5 .rii .rii_nav a {
	display: inline-block;
	padding-left: 20px;
	background: url(../images/more22.png) no-repeat left center;
	background-size: 15px;
	margin-right: 50px;
}

.fp_box_6 .title_two {
	margin-bottom: 30px;
}

.fp_box_6 .title_two h3 {
	padding-left: 40px;
}


.fp_box_6 table {
	width: 100%;
	border: none;
	margin-bottom: 50px;
}

.fp_box_6 table th {
	text-align: center;
	background: #00336c;
	color: #fff;
	height: 40px;
	border: 1px solid #fff;
	border-bottom: none;
}

.fp_box_6 table td {
	text-align: center;
	height: 50px;
	border: none;
	/* 先清除所有边框 */
	border-bottom: 1px solid #ccc;
	/* 只保留下边框 */
}

.fp_box_6 table td select {
	border: 1px solid #ccc;
	/* 添加灰色边框 */
	outline: none;
	/* 取消点击时的黑色边框 */
	padding: 3px;
	/* 添加内边距使其更美观 */
	border-radius: 2px;
	/* 添加圆角 */
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #002b5c;
}

.form-group input {
	width: 80%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.form-group input.on{
	width: 30%;
}
.required {
	color: #f00;
	margin-right: 5px;
}

.form-submit {
	margin-top: 20px;
	text-align: left;
	
}

.form-submit button {
	padding: 6px 50px;
	background: #002b5c;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.form-submit button:hover {
	background-color: #0056b3;
}

.form {
	padding: 30px;
	border: 1px solid #ccc;
	border-radius: 10px;
	position: relative;
	margin-top: 50px;
}

.form h3 {
	display: inline-block;
	padding-bottom: 10px;
	margin-bottom: 30px;
	position: relative;
}

.form h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 3px;
	background: #4fbfe9;
}
.form p{
	margin-top: 20px;
	color: #666;
}

.form img{
	position: absolute;
	top: 30px;
	right: 30px;
}
.m_pic{
	display: none;
}



















@media only screen and (max-width:2000px) {
	.box_01 .rii {
		padding-right: 12%;
	}
}

@media only screen and (max-width:1700px) {
	.fp_box_2 .imgpo {
		position: absolute;
		top: 25%;
		left: 0;
		width: 50%;
	}

	.box_01 .rii {
		padding-right: 8%;
	}
}

@media only screen and (max-width:1600px) {
	.box_01 .rii {
		padding-top: 20px;
	}

	.box_01 .rii {
		padding-right: 5%;
	}
}


@media only screen and (max-width:1450px) {
	.fp_box_2 {
		padding: 0px 0;
		background: url(../images/fp22.png) no-repeat right;
		background-size: 65% 460px;
		position: relative;
	}

	.fp_box_2 .rii h3 {
		font-size: 30px;
		color: #333333;
		margin-bottom: 30px;
		margin-top: 130px;
	}

	.fp_box_2 .rii p {
		font-size: 16px;
		color: #333333;
		text-indent: 3.5rem;
		line-height: 1.5;
	}

	.fp_box_2 .rii .text .link {
		margin-top: 47px;
	}

	.header .nav {
		margin-left: 40px;
	}

	.header .nav>li {
		float: left;
		padding: 0 15px;
		text-align: center;
		position: relative;
		line-height: 110px;
	}

	.box_stab ul li {
		width: 20%;
		float: left;
		height: 400px;
	}

	.box_stab ul li .om1 {
		padding: 40px 0;
		padding-left: 25px;
		position: relative;
		height: 100%;
	}

	.box_stab ul li .om1 .text a {
		display: block;
		font-size: 12px;
	}

	.box_stab ul li.hover .pic {
		width: 53%;
		height: 400px;
		float: right;
	}

	.fp_box_1 {
		padding-bottom: 80px;
		background: #f5f5f5;
	}

	footer .foot_nav ul li a {
		font-size: 12px;
	}

	.banner .swiper-slide .text {
		padding-top: 5%;
	}

	.banner .swiper-slide .text h3 {
		color: #fff;
		font-size: 30px;
		color: #ffffff;
		line-height: 1.5;
	}

	.banner .swiper-slide .text a {
		display: block;
		width: 150px;
		height: 40px;
		border: 1px solid #fff;
		border-radius: 15px;
		margin-top: 50px;
		text-align: left;
		line-height: 40px;
		font-size: 14px;
		color: #fff;
		padding-left: 26px;
		background: url(../images/more.png) no-repeat;
		background-size: 8px;
		background-position-x: 80%;
		background-position-y: 15px;
	}

	.banner .swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E);
		left: 3%;
		right: auto;
	}

	.banner .swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E);
		right: 3%;
		left: auto;
	}


	
}





@media only screen and (max-width:1200px) {
	.header .container {
		width: 100%;
	}

	.header .logo {
		width: 260px;
		margin-top: 35px;
	}

	.header .logo img {
		width: 100%;
	}

	.header .contact {
		font-size: 18px;
	}

	.box_stab ul li {
		width: 20%;
		float: left;
		height: 350px;
	}

	.box_stab ul li .text em {
		font-size: 15px;
		color: #fff;
		margin-bottom: 5px;
		display: block;
	}

	.box_stab ul li.hover .pic {
		width: 53%;
		height: 350px;
		float: right;
	}

	.title {
		padding: 45px 0 45px 0;
	}

	.box_01 {
		height: 500px;
	}

	.fp_box_3 .tab_fp3 h3 {
		margin-top: 30px;
		margin-bottom: 15px;
	}

	.fp_box_3 .tab_fp3 h4 {
		font-size: 20px;
	}

	.fp_box_3 .tab_fp3 .ilnk_tab a {
		display: block;
		width: 270px;
		height: 45px;
		background: #7a7f88;
		margin-bottom: 30px;
		padding-left: 30px;
		line-height: 45px;
		border-radius: 10px;
		font-size: 18px;
		color: #ffffff;
		position: relative;
		z-index: 4;
	}

	.box_01 .rii {
		padding-bottom: 20px;
		height: 350px;
	}

	.box_01 .rii p {
		color: #fff;
		font-size: 14px;
		color: #ffffff;
		line-height: 1.8;
		margin: 25px 0;
	}

	.fp_box_4 ul li .pic {
		width: 100%;
		height: 190px;
		overflow: hidden;
	}

	.fp_box_4 ul li .text {
		padding: 15px;
		border: 1px solid #eeeeee;
		border-top: none;
	}

	.fp_box_4 ul li .text h3 {
		margin: 0;
		margin-bottom: 10px;
	}

	.fp_box_4 ul li .text p {
		font-size: 16px;
	}

	footer .left p {
		margin: 0;
		color: #fff;
		font-size: 12px;
		margin-bottom: 5px;
	}

	footer .left em {
		color: #a5a5a5;
		display: block;
		font-size: 12px;
		margin-bottom: 5px;
		margin-top: 10px;
	}

	footer .foot_nav ul li {
		width: 18%;
		float: left;
	}

	footer .foot_nav ul li:nth-child(1) {
		width: 28%;
	}

	.fp_box_5 .rii {
		width: 70%;
		float: right;
	}
	.form-group input {
		width: 100%;
	}
	.form-group input.on{
		width: 100%;
	}
}

@media only screen and (max-width: 1000px) {
	.header .contact {
		margin-right: 60px;
	}

	.header .nav {
		position: fixed;
		left: 0;
		top: 100px;
		width: 100%;
		height: 100%;
		background: #033a89;
		padding: 20px 0;
		margin: 0;
		display: none;
	}

	.header .nav>li {
		width: 100%;
		line-height: 80px;
	}

	.header .nav>li a {
		color: #fff;
	}

	.header .nav .sec {
		position: static;
	}

	.header .nav .sec>li {
		height: auto;
	}

	.header .nav .sec .level {
		position: static;
		width: 100%;
		padding: 10px 0;
	}

	.header .nav .sec .level li {
		text-align: center;
	}


	.m_line {
		display: block;
		width: 25px;
		height: 16px;
		margin-top: -8px;
		position: absolute;
		top: 50%;
		right: 3%;
	}

	.m_line span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #000000;
		-webkit-transition: all ease .3s;
		-o-transition: all ease .3s;
		-moz-transition: all ease .3s;
		transition: all ease .3s;
	}

	.m_line span:nth-child(2) {
		margin: 6px 0;
	}

	.header .ac .line1 {
		transform: rotate(45deg) translate(3px, 5px);
	}

	.header .ac .line2 {
		opacity: 0;
	}

	.header .ac .line3 {
		transform: rotate(-45deg) translate(6px, -8px);
	}

	.header .nav>li:hover>a,
	.header .nav>li.hover>a {
		color: #fff;
	}

	.header .nav>li a {
		padding: 0;
		font-size: 15px;
		background: none;
		width: 30%;
		padding-left: 20px;
	}

	.header .nav>li {
		width: 100%;
		padding: 0;
		line-height: 50px;

	}

	.header .nav>li.eron {
		background: url(../images/jiahao1.png) no-repeat center;
		background-size: 20px;
		background-position-x: 90%;
		background-position-y: 15px;
	}

	.header .nav .sec>li:hover,
	.header .nav .sec>li.hover {
		background: none;
	}

	.fp_box_5 .rii {
		width: 60%;
		float: right;
	}

	.header .sousuo {
		float: right;
		margin-top: 45px;
		margin-right: 50px;
	}
}

@media only screen and (max-width: 750px) {
	.header .contact {
		display: none;
	}

	.header {
		height: 60px;
	}

	.header .logo {
		width: 140px;
		margin-top: 18px;
	}

	.header .nav {
		top: 60px;
	}

	.header .tabyy a {
		display: block;
		font-size: 15px;
	}

	.header .tabyy {
		margin-top: 20px;

	}

	.header .tabyy::after {
		display: none;

	}

	.header .sousuo {
		float: right;
		margin-top: 17px;
		margin-right: 60px;
	}

	.banner {
		margin-top: 60px;
	}

	.banner img {
		height: 180px;
	}

	.sousuo_win {
		position: fixed;
		top: 60px;
	}

	.sousuo_win .in1 {
		width: 220px;
	}

	.banner .swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		background-size: 15px;
	}

	.banner .swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		background-size: 15px;
	}

	.banner .swiper-slide .text h3 {
		color: #fff;
		font-size: 16px;
		color: #ffffff;
		line-height: 1.5;
		padding-left: 40px;
		margin-top: 40px;
	}

	.banner .swiper-slide .text {
		padding-top: 0%;
	}

	.banner .swiper-slide .text a {
		display: block;
		width: 90px;
		height: 30px;
		border: 1px solid #fff;
		border-radius: 15px;
		margin-top: 10px;
		text-align: left;
		line-height: 30px;
		font-size: 12px;
		color: #fff;
		padding-left: 11px;
		background: url(../images/more.png) no-repeat;
		background-size: 8px;
		background-position-x: 80%;
		background-position-y: 9px;
		margin-left: 40px;
	}

	.title {
		padding: 20px 0;
	}

	.title h3 {
		display: inline-block;
		float: left;
		font-size: 22px;
		color: #333333;
		margin: 0;
		font-weight: 600;
	}

	.title a {
		float: right;
		display: inline-block;
		padding-right: 50px;
		font-size: 12px;
		color: #000000;
		margin-top: 1px;
		border-bottom: 1px solid #333;
		padding-bottom: 5px;
		background: url(../images/more2.png) no-repeat right;
	}

	.box_stab ul li {
		width: 100%;
		margin-bottom: 20px;
	}

	.box_stab ul li.hover {
		width: 100%;
		background: #777777;
	}

	.box_stab ul li .om1 .more {
		display: inline-block;
		width: 45px;
		height: 45px;
		border: 1px solid #c6c6c6;
		text-align: center;
		line-height: 45px;
		border-radius: 45px;
		position: absolute;
		bottom: 25px;
		left: 25px;
		background: #fff;
	}




	.box_stab ul li .om1 {
		width: 45%;
		float: left;
	}

	.box_stab ul li .box {
		border: none;
	}

	.box_stab ul li {
		width: 100%;
		background: #777777;
	}


	.box_stab ul li.om1 {
		width: 45%;
		float: left;
	}

	.box_stab ul li .om1 .box>img {
		display: none;
	}

	.box_stab ul li .om1 h3 {
		display: none;
	}

	.box_stab ul li .om1 span {
		display: none;
	}

	.box_stab ul li .text {
		display: none;
	}

	.box_stab ul li .text {
		display: block;
	}

	.box_stab ul li {
		height: 300px;
	}


	.box_stab ul li.hover .pic {
		width: 53%;
		height: 300px;
		float: right;
	}

	.box_stab ul li .pic {
		width: 53%;
		height: 300px;
		float: right;
	}

	.box_stab ul li .pic img {
		width: 100%;
		height: 100%;
	}

	.box_stab ul li .om1 {
		padding: 15px 0;
		padding-left: 15px;
		position: relative;
		height: 100%;
	}

	.box_stab {
		background: none;
		border-radius: 0;
	}

	.fp_box_1 {
		padding-bottom: 0px;
		background: #f5f5f5;
	}

	.fp_box_2 {
		padding-top: 280px;
		background: none;
	}

	.fp_box_2 .rii h3 {
		font-size: 24px;
		color: #333333;
		margin-bottom: 30px;
		margin-top: 0;
	}

	.fp_box_2 .imgpo {
		width: 100%;
		top: 20px;
		left: 0;
	}

	.fp_box_2 .rii {
		float: right;
		width: 100%;
	}

	.fp_box_2 .rii h3 img {
		width: 20px;
	}

	.fp_box_2 .rii .text {
		margin-top: 20px;
	}

	.fp_box_2 .rii .text .link a {
		display: inline-block;
		padding-right: 50px;
		font-size: 18px;
		color: #000000;
		margin-top: 0px;
		border-bottom: 1px solid #333;
		padding-bottom: 5px;
		background: url(../images/more2.png) no-repeat right;
	}

	.fp_box_2 .rii .text .link {
		margin-top: 15px;
	}

	.fp_box_3 {
		margin-top: 20px;
		position: relative;
	}

	.box_01 {
		height: 550px;
		background-size: 100% auto !important;
	}

	.fp_box_3 .tab_fp3 h3 {
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.fp_box_3 .tab_fp3 h4 {
		margin-bottom: 15px;
	}

	.fp_box_3 .tab_fp3 .ilnk_tab a {
		display: block;
		width: 45%;
		height: 40px;
		background: #7a7f88;
		margin-bottom: 15px;
		padding-left: 10px;
		line-height: 40px;
		border-radius: 10px;
		font-size: 14px;
		color: #ffffff;
		position: relative;
		z-index: 4;
		float: left;
		margin-right: 15px;
	}

	.box_01 .rii {
		padding-right: 0;
		width: 100%;
		padding-bottom: 20px;
		height: auto;
		padding-left: 20px;
	}

	.box_01 .rii p {
		color: #fff;
		font-size: 14px;
		color: #ffffff;
		line-height: 1.8;
		margin: 15px 0;
		padding-right: 15px;
	}

	.box_01 .rii h3 {
		font-size: 24px;
		color: #ffffff;
	}

	.box_01 .rii a {
		background: #fff;
		display: inline-block;
		padding: 10px 20px;
		border-radius: 10px;
		margin-top: 5px;
		position: relative;
		z-index: 5;
	}

	.title h3 span {
		font-size: 12px;
		color: #9b9b9b;
		font-weight: normal;
		display: block;
		margin-top: 5px;
	}

	.fp_box_4 .title a {
		margin-top: 10px;
	}

	.fp_box_4 ul li {
		width: 100%;
		float: left;
		padding: 0 16px;
		margin-bottom: 20px;
	}

	.fp_box_4 ul li .pic {
		height: auto;
	}

	.fp_box_4 ul li .text h3 a {
		color: #0d6fb8;
		font-size: 18px;
	}

	.fp_box_4 ul li .time {
		padding: 15px 15px;
		border: 1px solid #eeeeee;
		border-top: none;
		position: relative;
		font-size: 15px;
		color: #bbb;
		background: url(../images/time.png) no-repeat center;
		background-position-x: 90%;
		background-size: 10px;
	}

	.fp_box_4 {
		padding-bottom: 3px;
	}

	footer .left {
		float: left;
		width: 100%;
		padding-bottom: 50px;
		text-align: center;
	}

	footer {
		background: #2c2c2c;
		padding-top: 20px;
	}

	footer .foot_nav {
		float: right;
		width: 100%;
		padding-left: 0px;
	}

	footer .foot_nav ul li:nth-child(1) {
		width: 50%;
	}

	footer .foot_nav ul li {
		width: 50%;
		margin-bottom: 20px;
		text-align: center;
	}

	.footer .left {
		float: left;
		color: #a5a5a5;
		width: 100%;
		margin-bottom: 20px;
		font-size: 13px;
	}

	.footer .rii {
		float: right;
		text-align: left;
		color: #a5a5a5;
		width: 100%;

	}

	.box_stab ul li {
		height: auto;
	}

	.box_stab ul li .om1 {
		width: 100%;
		float: none;
	}

	.box_stab ul li.hover .om1 {
		width: 100%;
		float: left;
	}

	.box_stab ul li.hover .pic {
		width: 100%;
		height: auto;
		float: right;
	}

	.box_stab ul li .pic {
		width: 100%;
		height: auto;
		float: right;
	}

	.box_stab ul li .pic {
		width: 100%;
		height: auto;
		float: right;
		display: none;
	}

	.box_stab ul li .pic img {
		width: 100%;
		height: 220px;
		object-fit: cover;
	}
	.m_pic{
		display: block;
	}
	.box_stab ul li.hover .pic img {
		width: 100%;
		height: 220px;
		object-fit: cover;
	}

	.box_stab ul li .om1 .more {
		display: inline-block;
		width: 40px;
		height: 40px;
		border: 1px solid #c6c6c6;
		text-align: center;
		line-height: 40px;
		border-radius: 40px;
		position: absolute;
		bottom: auto;
		left: auto;
		top: 20px;
		right: 20px;
		background: #fff;
	}

	.box_stab ul li .text a {
		display: block;
		color: #fff;
		padding: 5px 0;
	}

	.box_01 {
		background-size: auto !important;
	}

	/* 左侧导航栏在手机端隐藏 */
	.fp_box_5 .left {
		display: none;
	}

	/* 右侧内容区域占满宽度 */
	.fp_box_5 .rii {
		width: 100%;
		float: none;
		padding: 0 15px;
	}

	/* 标题样式调整 */
	.title_two {
		height: auto;
		padding: 15px;
	}

	.title_two h3 {
		font-size: 20px;
		line-height: 1.5;
		width: auto;
		float: none;
		padding-left: 15px;
	}

	.title_two a {
		font-size: 14px;
		margin-top: 5px;
	}

	/* 产品导航链接样式 */
	.fp_box_5 .rii .rii_nav {
		padding: 12px 0;
		margin-top: 15px;
	}

	.fp_box_5 .rii .rii_nav a {
		font-size: 14px;
		padding: 8px 0 8px 25px;
		margin-bottom: 8px;
		background-size: 12px;
		background-position: 5px center;
	}

	/* 表格容器添加横向滚动 */
	.fp_box_6 .table-container {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* 固定表格最小宽度 */
	.fp_box_6 table {
		min-width: 800px;
		margin-bottom: 20px;
		overflow: auto;
	}

	/* 调整表格内容字体大小 */
	.fp_box_6 table th,
	.fp_box_6 table td {
		font-size: 13px;
		padding: 10px 5px;
		white-space: nowrap;
	}

	/* 调整下拉框样式 */
	.fp_box_6 table td select {
		font-size: 13px;
		padding: 3px 5px;
		max-width: 100px;
	}

	/* 页面整体间距调整 */
	.fp_box_5 {
		margin: 30px 0;
	}

	.fp_box_5 .rii {
		padding: 0 10px;
	}

	/* 底部版权文字调整 */
	.footer .left,
	.footer .rii,
	.footer .rii a {
		font-size: 12px;
		line-height: 1.5;
	}

	/* 页面容器边距调整 */
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.fp_box_6 .table-container {
		padding: 0 15px;
		padding-left: 0;
	}

	.title_two {
		height: auto;
		padding: 6px;
	}

	.title_two h3 {
		width: 50%;
		float: left;
	}

	.fp_box_5 .rii .text H4 {
		font-size: 19PX;
		color: #242424;
		margin: 0;
		margin-bottom: 10px;
	}

	.fp_box_5 .rii .text1 {
		font-size: 14PX;
		color: #4a4a4a;
		line-height: 1.8;
	}

	.fp_box_6 .title_two {
		margin-bottom: 0px;
	}

	.fp_box_6 table th,
	.fp_box_6 table td {
		font-size: 13px;
		padding: 5px 5px;
		white-space: nowrap;
	}

	.fp_box_6 table th {
		text-align: center;
		background: #00336c;
		color: #fff;
		height: 30px;
		border: 1px solid #fff;
		border-bottom: none;
		font-size: 12px;
	}

	.form {
		padding: 20px;
		border: 1px solid #ccc;
		border-radius: 10px;
		position: relative;
		margin-top: 30px;
		padding-top: 100px;
	}
	.form img {
		position: absolute;
		top: 30px;
		right: 30px;
		max-width: 100%;
	}
	.form-group input {
		width: 80%;
		padding: 5px;
		border: 1px solid #ddd;
		border-radius: 4px;
	}
	.form-group {
		margin-bottom: 5px;
	}
	.header .nav .sec {
		width: 100%;
		}
	/* 添加表格容器滚动样式 */
	@media only screen and (max-width: 750px) {
		.fp_box_6 .table-container {
			width: 100%;
			overflow-x: auto;
			-webkit-overflow-scrolling: touch;
		}
		
		.fp_box_6 table {
			min-width: 800px;  /* 确保表格在手机端有最小宽度 */
		}
		@media screen and (max-width: 768px) {
			.nav li.eron .sec {
				display: none;
			}
			.nav li.eron.active .sec {
				display: block;
			}
		}
}