html,
body {
	padding: 0;
	margin: 0;
	font-family: fontR, "微软雅黑";
	font-size: 14px;
	color: #333;
	overflow-x: hidden;
	
}

body {
	overflow: hidden;
	z-index: -9;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none;
}

ol li {
	list-style: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
	color: inherit;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	background: none;
	text-decoration: none;
	transition-duration: .5s;
	-ms-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-webkit-transition-duration: .5s;
}

.imgDiv {
	overflow: hidden;
	text-align: center;
}

img {
	max-width: 100%;
}

input:focus,
button:focus,
textarea:focus {
	outline: none;
}

p,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}

.ovh {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ovh3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.ease05 {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.bgf9f9f9 {
	background: #f9f9f9;
	transition: 0.4s;
}


/*******/


/*首页头部导航*/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	height: 120px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header .logo a {
	height: 80px;
	position: relative;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .logo a img {
	max-height: 40px;
}

header .rightDiv .menu {
	text-align: right;
	position: relative;
	height: 80px;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	margin-left: 55px;
}

header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li:hover>a {
	color: #122a88;
}

header .rightDiv .menu>ul>li>a {
	line-height: 80px;
	text-align: center;
	display: block;
	position: relative;
	text-transform: capitalize;
	font-size: 16px;
}

header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 3px;
	background: #122a88;
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	transition: .5s;
}

header .rightDiv .menu>ul>li.on>a::after,
header .rightDiv .menu>ul>li:hover>a::after {
	width: 100%;
	transition: .5s;
}


/*.menu ul ul {
	position: absolute;
	top: 80px;
	left: -9999px;
	text-align: left;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
	padding: 20px 25px;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	width: 300px;
}*/

.menu ul ul {
	position: absolute;
	top: 80px;
	left: -9999px;
	text-align: left;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
	padding: 20px 25px;
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
}

.menu ul li:hover>ul {
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.menu ul ul li {
	white-space: nowrap;
	text-align: center;
	line-height: 36px;
	/*float: left;
	width: 33%;*/
}

.menu ul ul li:hover>a,
.menu ul ul li a:hover {
	color: #122a88;
}

header .mbtn {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: url(../img/menu.svg) no-repeat center center;
	background-size: 18px auto;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
}

header .mbtn:active {
	opacity: .8;
}

body.on-menu header .mbtn {
	background: url(../img/close.svg) no-repeat center center;
	background-size: 18px auto;
}


/*******/

header .upper {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

header .upper .icon {
	display: block;
	position: relative;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	margin-right: 40px;
	background: url(../img/weixin.svg)#666 center center no-repeat;
	background-size: 18px;
}

header .upper .tooltip {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
	padding: 5px 8px;
	border-radius: 5px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	white-space: nowrap;
	padding: 10px;
}

header .upper .tooltip img {
	max-width: 70px;
}

header .upper .icon:hover .tooltip {
	top: 40px;
}

header .upper .weixin:hover,
header .upper .weixin:hover .tooltip {
	background-color: #2ec100;
	color: #ffffff;
	opacity: 1;
}

header .upper .tel {
	background: url(../img/dh9.png)left center no-repeat;
	/*background-size: 18px;*/
	padding-left: 30px;
	font-weight: bold;
	color: #303276;
	font-size: 18px;
}


/* banner */

.index-banner {
	width: 100%;
	position: relative;
}

.ui-homebanner .swiper-slide {
	overflow: hidden;
	position: relative;
}

.ui-homebanner .swiper-slide .img {
	width: 100%;
	display: block;
	height: 500px;
	background: none no-repeat center;
	background-size: cover;
	margin-top: 120px;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
	position: absolute;
	bottom: 20px;
}

.ui-homebanner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #fff;
	opacity: 1;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}

.ui-homebanner .swiper-pagination-bullet-active {
	/*opacity: 1;
	background: #00aded;*/
	width: 30px;
}


/*底部*/

footer {
	color: #fff;
}

footer .copyright {
	background: #122a88;
	color: #fff;
	text-align: center;
	padding: 15px 0;
}

footer .leftDiv {
	background: #122a88;
	width: 300px;
	text-align: center;
	padding: 45px 0;
}

footer .logo img {
	max-width: 195px;
}

footer .code img {
	max-width: 103px;
	margin: 45px 0 16px;
}

footer .rightDiv {
	width: calc(100% - 300px);
	padding: 60px 0 60px 60px;
}

footer .links {
	display: flex;
	justify-content: space-around;
	border-bottom: 1px solid #666d98;
	padding-bottom: 10px;
}

footer .links a {
	display: block;
	position: relative;
}

footer .links a::after {
	content: "";
	width: 0;
	height: 3px;
	background: #4e84f1;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -12px;
	transition: 0.5s;
}

footer .links a:hover::after {
	width: 100%;
	transition: 0.5s;
}

footer ul {
	overflow: hidden;
	margin: 0 -60px;
	margin-top: 40px;
}

footer ul li {
	float: left;
	padding: 0 60px;
}

footer ul li p {
	margin-bottom: 20px;
}


/****右侧****/

.rightLink {
	position: fixed;
	right: 0;
	bottom: 50px;
	z-index: 999;
}

.rightLink a {
	display: block;
	background: #475fc7;
	border-radius: 5px 0 0 5px;
	margin: 5px 0;
	text-align: center;
	color: #fff;
	font-size: 12px;
	width: 65px;
	height: 65px;
	padding: 10px 0;
	position: relative;
}

.rightLink a:hover {
	background: #e15517;
}

.rightLink a .mask {
	background: #e15517;
	position: absolute;
	right: 0;
	top: 0;
	left: auto;
	padding: 20px;
	transform: translateX(100%);
	z-index: 1;
	min-height: 65px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: bold;
	border-radius: 5px 0 0 5px;
}

.rightLink a:hover .mask {
	transform: translateX(0);
}

.rightLink a .imgDiv img {
	width: 20px;
	margin-bottom: 10px;
}

.rightLink .weixin .imgDiv img {
	width: 22px;
}

.rightLink .mask img {
	max-width: 80px;
}


/***首页***/

.indexDiv {
	padding: 80px 0;
}

.index .title {
	text-align: center;
	margin-bottom: 50px;
}

.index .title h2 {
	font-size: 30px;
	color: #122A88;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.index .title h2 span {
	color: #e15517;
	margin-right: 10px;
}

.index .title p {
	font-size: 24px;
}


/***服务项目***/

.indexDiv1 .row {
	margin: -7px;
}

.indexDiv1 .row>div {
	padding: 7px;
	flex: 0 0 20%;
	max-width: 20%;
}

.indexDiv1 .row a {
	line-height: 60px;
	background-color: #fff;
	border: 1px solid #eee;
	background: linear-gradient(90deg, #E15517, #E15517) no-repeat;
	background-size: 0 100%;
	display: flex;
	justify-content: center;
	font-size: 16px;
}

.indexDiv1 .row a span {
	min-width: 96px;
}

.indexDiv1 .row a i {
	position: relative;
	margin-right: 10px;
}

.indexDiv1 .row a i .icon-w {
	position: absolute;
	top: 50%;
	transform: translatey(-44%);
	left: 0;
	opacity: 0;
}

.indexDiv1 .row a:hover {
	background-size: 100% 100%;
	border: 1px solid #E15517;
	color: #fff;
}

.indexDiv1 .row a:hover .icon {
	opacity: 0;
}

.indexDiv1 .row a:hover .icon-w {
	opacity: 1;
}


/**报关案例**/

.indexDiv2 {
	background: #f6f9fd;
}

.indexDiv2 .row {
	margin: -14px;
}

.indexDiv2 .row>div {
	padding: 14px;
}

.indexDiv2 .row a {
	display: block;
	height: 100%;
}

.indexDiv2 .row a .text {
	position: relative;
	padding: 25px;
	background: #fff;
	height: 140px;
	overflow: hidden;
}

.indexDiv2 .row a:hover .text {
	height: 215px;
	margin-top: -75px;
	background: #4a69ce;
	color: #fff;
}

.indexDiv2 .row a .text h6 {
	font-size: 18px;
	margin-bottom: 10px;
}

.indexDiv2 .row a .text p {
	font-size: 14px;
	line-height: 22px;
}

.indexDiv2 .row a .text span {
	display: block;
	color: #fff;
	width: 100px;
	line-height: 35px;
	text-align: center;
	font-size: 12px;
	background-color: #fff;
	border: 1px solid #fff;
	background: linear-gradient(90deg, #fff, #fff) no-repeat;
	background-size: 0 100%;
	margin-top: 30px;
	transition: 0.5s;
}

.indexDiv2 .row a .text span:hover {
	background-size: 100% 100%;
	color: #122A88;
	transition: 0.5s;
}

.indexDiv3 .title,
.indexDiv3 .title h2,
.indexDiv3 .title h2 span {
	color: #fff;
}


/***公司简介***/

.indexDiv4 .upper {
	position: relative;
	margin-bottom: 60px;
}

.indexDiv4 .upper .imgDiv {
	position: absolute;
	height: 100%;
	width: 41.5%;
}

.indexDiv4 .upper .imgDiv img {
	height: 100%;
	object-fit: cover;
}

.indexDiv4 .upper .text {
	width: 54.3%;
	min-height: 266px;
	padding: 20px 0;
}

.indexDiv4 .upper .text h4 {
	font-size: 22px;
	margin-bottom: 35px;
}

.indexDiv4 .upper .text p {
	font-size: 16px;
	margin: 14px 0;
}

.indexDiv4 .below {
	position: relative;
	padding: 0 60px;
	text-align: center;
}

.indexDiv4 .below p {
	margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
}

.indexDiv4 .swiper-button-prev,
.indexDiv4 .swiper-container-rtl .swiper-button-next {
	background-image: url(../img/left.svg);
	left: 0;
}

.indexDiv4 .swiper-button-next,
.indexDiv4 .swiper-container-rtl .swiper-button-prev {
	background-image: url(../img/left.svg);
	transform: rotate(180deg);
	right: 0;
}


/***海关政策***/

.indexDiv5 ul {
	margin: -20px 0;
}

.indexDiv5 ul li a {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 40px 0;
}

.indexDiv5 ul li a:hover {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 40px 20px;
}

.indexDiv5 ul li a .more {
	width: 20px;
}

.indexDiv5 ul li a .date {
	text-align: right;
	font-size: 18px;
}

.indexDiv5 ul li a .date p {
	font-size: 30px;
}

.indexDiv5 ul li a .text {
	width: calc(100% - 110px);
	padding: 0 50px 0 70px;
}

.indexDiv5 ul li a .text .title {
	font-size: 18px;
	margin-bottom: 17px;
	text-align: left;
	height: 22px;
}

.indexDiv5 ul li a .text p {
	height: 18px;
	overflow: hidden;
}


/*列表页*/

.ny-main {
	padding: 120px 0 100px;
	min-height: calc(100vh - 73px);
	background: #f9f9f9;
}

.ny-banner .img {
	height: 300px;
}

.ny-main .breadcrumbs {
	color: #999;
	padding: 25px 0 30px;
}

.ny-main .breadcrumbs a:hover {
	color: #333;
}


/*页码*/

.pageNum {
	margin-top: 20px;
	text-align: center;
}

.pageNum span,
.pageNum a {
	display: inline-block;
	padding: 3px 9px;
	margin: 0 5px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.pageNum span,
.pageNum a:hover {
	background: #4a69ce;
	color: #fff;
	border: 1px solid #4a69ce;
}

.ny-main .ny-menu {
	width: 200px;
}

.ny-main .ny-menu p {
	background: #4a69ce;
	text-align: center;
	color: #fff;
	font-size: 24px;
	padding: 30px 0;
}

.ny-main .ny-menu a {
	display: block;
	background: #fff;
	text-align: center;
	padding: 20px 0;
}

.ny-main .ny-menu a span {
	position: relative;
}

.ny-main .ny-menu a.on {
	background: #e7e9f3;
}

.ny-main .ny-menu a.on span,
.ny-main .ny-menu a:hover span {
	color: #122A88;
}

.ny-main .ny-menu a.on span::before {
	content: ">";
	color: #122A88;
	position: absolute;
	top: 0;
	left: -15px;
}

.ny-main .content {
	width: calc(100% - 230px);
	padding: 35px 0 50px;
	background: #fff;
}

.ny-main .content>h4 {
	text-align: center;
	font-size: 18px;
	border-bottom: 1px solid #eee;
	padding-bottom: 25px;
}


/***服务项目***/

.fuwu .content {
	padding: 45px 50px 80px;
}

.fuwu .content .upper {
	overflow: hidden;
	margin-bottom: 50px;
}

.fuwu .content .upper .imgDiv {
	width: 40%;
}

.fuwu .content .upper .text {
	width: 59%;
	padding: 15px 30px;
}

.fuwu .content h3 {
	font-size: 24px;
	color: #122A88;
	font-weight: normal;
	margin-bottom: 10px;
}

.fuwu .content .upper .text p {
	margin-top: 25px;
	text-indent: 2em;
}

.fuwu .fuwu-title {
	text-align: center;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 50px;
}

.fuwu .below ul li {
	position: relative;
	overflow: hidden;
	padding: 14px 8px;
	/*width: 100%;*/
}

.fuwu .below ul li::before {
	content: "";
	width: 3px;
	height: 100%;
	background: #eee;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1px;
}

.fuwu .below ul li span {
	display: block;
	width: 50px;
	text-align: center;
	line-height: 50px;
	background: #4a69ce;
	color: #fff;
	border-radius: 100px;
	font-size: 18px;
	font-weight: bold;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
}

.fuwu .below ul li .text {
	width: 40%;
	background: #fff;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	padding: 25px;
	transition: 0.5s;
}

.fuwu .below ul li:hover .text,
.fuwu .below ul li:hover span {
	background: #E15517;
	color: #fff;
	transition: 0.5s;
}

.fuwu .below ul li:nth-child(even) .text {
	float: right;
}

.fuwu .below ul li .text h6 {
	font-size: 18px;
}

.fuwu .below ul li .text p {
	margin-top: 10px;
}


/***报关报检***/

.baoguan .content .text h6 {
	font-size: 16px;
	color: #0070c0;
	position: relative;
	padding-left: 20px;
}

.baoguan .content .text h6::before {
	content: "";
	width: 3px;
	height: 16px;
	background: #0070c0;
	position: absolute;
	left: 0;
}

.baoguan .upper {
	padding: 50px 70px 0;
}

.baoguan .upper p {
	margin-top: 12px;
}

.baoguan .upper .blue {
	color: #0070c0;
}

.baoguan .upper .imgDiv {
	margin: 20px 0;
}


/**报关案例及海关政策**/

.news .content ul {
	padding: 0 40px;
}

.news .content ul li {
	padding: 34px 0;
	border-bottom: 1px solid #eee;
}

.news .content ul li:last-child {
	border: none;
}

.news .content ul li a {
	overflow: hidden;
	display: flex;
	align-items: center;
}

.news .content ul li a img {
	transition: 0.5s;
}

.news .content ul li a:hover img {
	transform: scale(1.1);
	transition: 0.5s;
}

.news .content ul li a .imgDiv {
	width: 26.7%;
}

.news .content ul li a .text {
	width: 73.3%;
	padding-left: 30px;
}

.news .content .text h5 {
	font-size: 18px;
	margin-bottom: 25px;
}

.news .content .text p {
	overflow: hidden;
	color: #666;
	line-height: 30px;
}

.news .content .text p span {
	float: right;
}

.news .content a:hover .text p span {
	color: #E15517;
}


/***联系方式***/

.contactus .content {
	padding: 60px 50px 70px;
	width: 100%;
}

.contactus .title {
	text-align: center;
	font-size: 24px;
	position: relative;
	margin-bottom: 64px;
}

.contactus .title::after {
	content: "";
	width: 44px;
	height: 3px;
	background: #122A88;
	position: absolute;
	left: 50%;
	margin-left: -22px;
	bottom: -15px;
}

.contactus .upper {
	position: relative;
}

.contactus .upper .imgDiv {
	width: 45%;
	position: absolute;
	height: 100%;
	right: 0;
}

.contactus .upper .imgDiv img {
	height: 100%;
	object-fit: cover;
}

.contactus .upper .text {
	width: 55%;
	min-height: 265px;
	padding-right: 30px;
}

.contactus .upper .text h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

.contactus .upper .text p {
	text-indent: 2em;
	line-height: 30px;
}

.contactus .honor {
	margin: 60px 0;
}

.contactus .honor .row {
	margin: -15px;
}

.contactus .honor .row>div {
	flex: 0 0 20%;
	max-width: 20%;
	padding: 15px;
	text-align: center;
}

.contactus .honor p {
	margin-top: 15px;
}

.contactus .contact .below {
	display: flex;
	overflow: hidden;
	align-items: center;
}

.contactus .contact .imgDiv,
.contactus .contact .text {
	width: 50%;
}

.contactus .contact .text {
	padding-left: 40px;
	font-size: 16px;
}

.contactus .contact .text p {
	margin: 8px 0;
}

.contactus .contact .map {
	height: 360px;
	margin-top: 50px;
}


/*笔记本*/

@media all and (max-width:1220px) {
	.wrap {
		padding: 0 20px
	}
	header .logo a img {
		max-height: 32px;
	}
	header .rightDiv .menu>ul>li {
		margin-left: 45px;
	}
	header .rightDiv .menu>ul>li>a {
		font-size: 14px;
	}
}

@media (min-width:993px) and (max-width:1024px) {
	header .rightDiv .menu>ul>li {
		margin-left: 40px;
	}
	.ui-homebanner .swiper-slide .img {
		height: 400px;
	}
	.ny-banner .img {
		height: 250px;
	}
}

@media all and (max-width:992px) {
	.wrap {
		padding: 0 3vw;
	}
	header .upper {
		display: none;
	}
	.rightLink {
		display: none !important;
	}
	.menu {
		width: 100%
	}
	.menu ul {
		width: 100%;
		display: block;
	}
	.menu ul ul {
		top: 0;
		border: 0;
	}
	.menu>ul>li>a {
		padding: 0 20px;
	}
	.menu.align-center>ul,
	.menu.align-right ul ul {
		text-align: left
	}
	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(0, 0, 0, .1)
	}
	.menu ul li a,
	.menu ul ul li a {
		width: 100%
	}
	.menu>ul>li,
	.menu.align-center>ul>li,
	.menu.align-right>ul>li {
		float: none;
		display: block
	}
	.menu ul ul li a {
		padding: 0 20px 0 30px;
		font-size: 12px;
		color: #333;
		background: 0 0
	}
	.menu ul ul li:hover>a,
	.menu ul ul li a:hover {
		color: #333
	}
	.menu ul ul ul li a {
		padding-left: 40px
	}
	.menu ul ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0
	}
	.menu>ul>li.has-sub>a::after,
	.menu ul ul li.has-sub>a::after {
		display: none
	}
	#menu-line {
		display: none
	}
	.menu #menu-button {
		display: block;
		padding: 20px;
		color: #000;
		cursor: pointer;
		font-size: 12px;
		text-transform: uppercase
	}
	.menu #menu-button::after {
		content: '';
		position: absolute;
		top: 20px;
		right: 20px;
		display: block;
		width: 15px;
		height: 2px;
		background: #fff
	}
	.menu #menu-button::before {
		content: '';
		position: absolute;
		top: 25px;
		right: 20px;
		display: block;
		width: 15px;
		height: 3px;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}
	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		display: block;
		border-left: 1px solid rgba(0, 0, 0, .1);
		height: 60px;
		width: 60px;
		cursor: pointer
	}
	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 2px;
		height: 12px;
		background: #333;
		z-index: 99
	}
	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 12px;
		height: 2px;
		background: #333;
		z-index: 99
	}
	.menu .has-sub:hover>ul {
		left: 0;
		margin-left: 0;
		background: rgba(0, 0, 0, 0.15);
	}
	.menu ul ul p {
		display: none;
	}
	.menu .submenu-button.submenu-opened:after {
		display: none
	}
	.menu ul ul {
		background: transparent;
		border-bottom: none;
		padding: 0;
	}
	.menu ul ul ul {
		top: 0;
	}
	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}
	header {
		position: fixed !important;
		z-index: 99;
		top: 0;
		left: auto;
		right: 0;
		width: 100%;
		height: 60px;
		transition: right 300ms !important;
	}
	header .logo a {
		height: 60px;
		line-height: 60px;
		width: initial;
	}
	header .logo img {
		height: 35px;
	}
	header .mbtn {
		display: block;
	}
	body.on-menu header .mbtn {
		z-index: 1;
	}
	header .rightDiv .menu {
		float: right;
		position: fixed;
		top: 0px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		background-color: #fff;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		overflow-y: auto;
	}
	header .rightDiv .menu ul li {
		padding: 0;
		margin: 0;
		float: none;
	}
	header .rightDiv .menu ul li a {
		display: block;
		line-height: 60px;
		height: 60px;
		text-align: left;
		font-size: 16px;
	}
	header .rightDiv .menu>ul {
		padding-top: 60px;
	}
	header .rightDiv .menu ul li a span {
		display: none;
	}
	header .rightDiv .menu>ul>li>a img {
		display: none;
	}
	header .rightDiv .menu>ul>li.on>a img.red,
	header .rightDiv .menu>ul>li:hover>a img.red {
		display: none;
	}
	header .rightDiv .menu ul li a.on {
		background: none;
	}
	body.on-menu header .rightDiv .menu {
		right: 0;
	}
	body.on-menu .main {
		right: 0;
	}
	header .rightDiv .menu ul li>a {
		margin: 0;
		width: calc(100% - 50px);
	}
	header .rightDiv .menu>ul>li.has-sub {
		padding: 0;
	}
	header .menu .search {
		padding: 5vw;
		width: 100%;
	}
	header .rightDiv .menu>ul>li.on>a::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		bottom: 26px;
	}
	header .logo img {
		height: 28px;
	}
	.ui-homebanner .swiper-slide .img {
		height: 310px;
		margin-top: 60px;
	}
	.indexDiv {
		padding: 50px 0;
	}
	.index .title {
		margin-bottom: 38px;
	}
	.index .title h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.index .title p {
		font-size: 20px;
	}
	.indexDiv1 .row a i {
		margin-right: 5px;
	}
	.indexDiv1 .row a {
		font-size: 12px;
	}
	.indexDiv1 .row a img {
		max-width: 20px;
	}
	.indexDiv1 .row a span {
		min-width: 76px;
	}
	.indexDiv2 .row {
		margin: -8px;
	}
	.indexDiv2 .row>div {
		padding: 8px;
	}
	.indexDiv2 .row a .text {
		padding: 15px;
		height: 130px;
	}
	.indexDiv2 .row a:hover .text {
		height: 205px;
	}
	.indexDiv5 ul li a .date p {
		font-size: 24px;
	}
	.indexDiv5 ul li a .text {
		width: calc(100% - 89px);
		padding: 0 35px;
	}
	footer .logo img {
		max-width: 120px;
	}
	footer .code img {
		max-width: 80px;
	}
	footer .leftDiv {
		width: 170px;
		padding: 40px 0;
	}
	footer .rightDiv {
		width: calc(100% - 190px);
		padding: 40px 0 40px 0px;
	}
	footer ul {
		margin: 0 -25px;
		margin-top: 30px;
	}
	footer ul li {
		padding: 0 25px;
	}
	header .rightDiv .menu>ul>li.on>a::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		width: 0;
		transition: .5s;
	}
	.ny-main {
		padding: 60px 0 60px;
	}
	.ny-banner .img {
		height: 200px;
	}
	.ny-main .ny-menu {
		width: 170px;
	}
	.ny-main .ny-menu p {
		font-size: 18px;
	}
	.ny-main .content {
		width: calc(100% - 190px);
	}
	.baoguan .upper {
		padding: 35px 35px 0;
	}
	.news .content ul {
		padding: 0 23px;
	}
	.news .content .text h5 {
		margin-bottom: 15px;
	}
	.news .content .text p {
		line-height: 22px;
	}
	.contactus .content {
		width: 100%;
	}
	.fuwu .content {
		padding: 30px 25px 40px;
	}
	.fuwu .content .upper .text {
		padding: 0;
		padding-left: 15px;
	}
	.fuwu .content h3 {
		font-size: 18px;
		margin-bottom: 6px;
	}
	.fuwu .content .upper .text p {
		margin-top: 10px;
	}
	.fuwu .below ul li .text {
		width: 80%;
		float: right;
	}
	.fuwu .below ul li span {
		left: 0;
		transform: translate(0, -50%);
	}
	.fuwu .below ul li::before {
		left: 0;
		margin-left: 25px;
	}
}


/*手机端*/

@media (max-width:767px) {
	html,
	body {
		font-size: 12px;
	}
	.wrap {
		padding: 0 5vw;
	}
	.ui-homebanner .swiper-slide .img {
		height: 175px;
	}
	.ui-homebanner .swiper-pagination-bullet {
		height: 6px;
	}
	.indexDiv {
		padding: 35px 0;
	}
	.index .title {
		margin-bottom: 25px;
	}
	.indexDiv1 .row>div {
		padding: 7px;
		flex: 0 0 33.3%;
		max-width: 33.3%;
	}
	.indexDiv1 .row a {
		line-height: 40px;
	}
	.indexDiv1 .row a span {
		min-width: auto;
	}
	.index .title h2 {
		font-size: 20px;
		margin-bottom: 6px;
	}
	.index .title p {
		font-size: 18px;
	}
	.indexDiv2 .row a .text h6 {
		font-size: 15px;
		margin-bottom: 5px;
	}
	.indexDiv2 .row a .text {
		height: 110px;
	}
	.indexDiv2 .row a:hover .text {
		height: 175px;
		margin-top: -65px;
	}
	.indexDiv2 .row a .text span {
		line-height: 32px;
		margin-top: 23px;
	}
	.indexDiv2 .row a .text p {
		font-size: 12px;
		line-height: 18px;
	}
	.indexDiv4 .upper .imgDiv,
	.indexDiv4 .upper .text {
		width: 100%;
		position: inherit;
		min-height: auto;
	}
	.indexDiv4 .upper .text h4 {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.indexDiv4 .upper {
		margin-bottom: 25px;
	}
	.indexDiv4 .upper .text p {
		font-size: 13px;
		margin: 12px 0;
	}
	.indexDiv5 ul li a .more {
		display: none;
	}
	.indexDiv5 ul li a .date p {
		font-size: 18px;
	}
	.indexDiv5 ul li a .date {
		text-align: right;
		font-size: 13px;
	}
	.indexDiv5 ul li a .text {
		width: calc(100% - 50px);
		padding: 0 20px;
	}
	.indexDiv5 ul li a .text .title {
		font-size: 16px;
		margin-bottom: 8px;
	}
	.indexDiv5 ul li a .text p {
		height: 38px;
	}
	.indexDiv5 ul li a {
		padding: 20px 0;
	}
	footer .leftDiv {
		width: 100%;
		padding: 20px 0;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	footer .code img {
		max-width: 80px;
		margin-top: 0;
	}
	footer .logo img {
		max-width: 130px;
	}
	footer .rightDiv {
		width: 100%;
		padding: 30px 0;
	}
	footer ul {
		margin: 0 -10px;
		margin-top: 25px;
	}
	footer ul li {
		padding: 0 10px;
		width: 50%;
	}
	footer ul li p {
		margin-bottom: 13px;
	}
	footer .links {
		justify-content: inherit;
		flex-wrap: wrap;
		margin: 0 -20px;
	}
	footer .links a {
		padding: 8px 20px;
	}
	/*内页*/
	.ny-banner .img {
		height: 30vw;
	}
	.pageNum {
		margin-top: 38px;
	}
	.ny-main .ny-menu {
		width: 100%;
		overflow: hidden;
		background: #fff;
		margin-bottom: 30px;
	}
	.ny-main .ny-menu p {
		font-size: 16px;
		padding: 16px 0;
	}
	.ny-main .ny-menu a {
		width: 33.3%;
		float: left;
		padding: 10px 0;
	}
	.ny-main .breadcrumbs {
		font-size: 12px;
		padding: 15px 0 20px;
	}
	.ny-main .content {
		width: 100%;
		padding: 25px 0 30px;
	}
	.fuwu .content .upper .imgDiv {
		width: 100%;
	}
	.fuwu .content .upper .text {
		width: 100%;
		padding: 0;
		margin-top: 20px;
	}
	.fuwu .below ul li .text h6 {
		font-size: 15px;
	}
	.news .content ul li a {
		display: block;
	}
	.news .content ul li a .imgDiv {
		width: 100%;
		margin-bottom: 20px;
	}
	.news .content ul li a .text {
		width: 100%;
		padding-left: 0;
	}
	.contactus .content {
		padding: 25px 20px 30px;
	}
	.contactus .upper .text {
		width: 100%;
		min-height: auto;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.contactus .upper .imgDiv {
		width: 100%;
		position: inherit;
	}
	.contactus .upper .text h4 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.contactus .upper .text p {
		line-height: 22px;
	}
	.contactus .honor {
		margin: 35px 0;
	}
	.contactus .title {
		font-size: 18px;
		margin-bottom: 45px;
	}
	.contactus .title::after {
		width: 34px;
		margin-left: -17px;
		bottom: -12px;
	}
	.contactus .honor .row>div {
		flex: 0 0 33.3%;
		max-width: 33.3%;
	}
	.contactus .contact .imgDiv,
	.contactus .contact .text {
		width: 100%;
	}
	.contactus .contact .below {
		display: block;
	}
	.contactus .contact .text {
		padding-left: 0;
		font-size: 14px;
		margin-top: 25px;
	}
	.contactus .contact .map {
		height: 260px;
	}
}