html,body {
	position: relative;
	min-height: 100%;
}
body {
	background: #f8fafb;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	color: #000;
	margin: 0;
	padding: 0;
}
*{
	outline: none;
	box-sizing: border-box;
}
ul,li{
	list-style: none;
	margin: 0;
	padding: 0;
}
a, a:hover,a:visited,a:focus{
	text-decoration: none;
}

/*nwz-header*/
.nwz-header{
	display: flex;
	width: 100%;
	height: 64px;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255,255,255,1);
	transition: background .3s;
	z-index: 3;
}
.nwz-header:hover{
	background: #fff;
}
.nwz-header.header-shrink{
	background: #fff;
	border-bottom: 1px solid #E4E4E4;
}
.nwz-header.header-reares{
	background: #fff;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.06);
}
.nwz-header.header-shrink.header-reares{
	border-bottom: 0;
}
.nwz-header .h-logo{
	padding: 0 60px 0 30px;
	width: 202px;
	text-align: left;
	box-sizing: border-box;
}
.nwz-header .h-logo .logo{
	display: inline-block;
	width: 112px;
	height: 64px;
	background: url("/images/logo1-b.svg") no-repeat center;
	background-size: 112px;
}
.nwz-header:hover .h-logo .logo,
.nwz-header.header-shrink .h-logo .logo,
.nwz-header.header-reares .h-logo .logo{
	background: url("/images/logo1-b.svg") no-repeat center;
	background-size: 112px;
}
.nwz-header .h-menu{
	flex: 1;
	display: flex;
	white-space: nowrap;
}
.nwz-header .h-menu .menu-list{
	display: block;
	line-height: 64px;
	padding: 0;
	color: #fff;
	font-size: 16px;
	margin: 0 40px 0 0;
}
.nwz-header .h-menu .menu-list .second-menu{
	display: none;
	position: absolute;
	background: #fff;
	box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
	width: 100%;
	margin: 0;
	left: 0;
	border-radius: 0 0 10px 10px;
	min-height: 400px;
	max-height: 644px;
	overflow: auto;
	padding: 20px 10%;
}
.nwz-header .h-menu .menu-list:hover .second-menu{
	display: block;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list{
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list{
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list{
	display: block;
	flex: 2;
	padding: 0 20px;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list+.list{
	border-left: 1px	solid #d9d9d9;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list:first-child{
	padding-left: 0;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list:last-child{
	flex: 3;
	padding-right: 0;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list .link{
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 20px;
	color: #727171;
	padding: 14px 10px;
	font-weight: normal;
	white-space: break-spaces;
	cursor: pointer;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list .link+.link{
	margin-top: 5px;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list .link:hover{
	background: #F9FAFC;
	color: #004098;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list .link.active{
	color: #004098;
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list .link.arrow.active>span{
	max-width: calc(100% - 26px);
}
.nwz-header .h-menu .menu-list .second-menu .menu-list .list .link.arrow.active::after{
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url("/images/icon-right2.svg") no-repeat right center;
	background-size: 16px;
	margin: 0 0 0 10px;
}
.nwz-header .h-menu .menu-list,
.nwz-header:hover .h-menu .menu-list,
.nwz-header.header-shrink .h-menu .menu-list,
.nwz-header.header-reares .h-menu .menu-list{
	color: #181818;
}
.nwz-header .h-menu .menu-list .menu-link{
	display: block;
	color: #181818;
	font-size: 16px;
	padding: 0;
	position:relative;
	cursor: pointer;
	text-decoration: none;
}
.nwz-header .h-menu .menu-list .menu-link:hover:before,
.nwz-header .h-menu .menu-list .menu-link.active:before{
	display: block;
	width:100%;
	height: 3px;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background: #004098;
}
.nwz-header .h-menu .menu-list.more{
	position: relative;
}
.nwz-header .h-menu .menu-list.more:hover .more-link{
	display: block;
}
.nwz-header .h-menu .menu-list.more .more-link{
	display: none;
	position: fixed;
	border-radius: 10px;
	padding: 15px;
	background: #fff;
	box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
	min-width: 164px;
	margin: 0 0 0 -64px;
}
.nwz-header .h-menu .menu-list.more .menu-link:hover:before{
	content: none;
}
.nwz-header .h-menu .menu-list.more .more-link .menu-link{
	display: block;
	padding: 14px 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}
.nwz-header .h-menu .menu-list.more .more-link .menu-link:hover{
	color: #004098;
	background: #F9FAFC;
}
.nwz-header .h-menu .menu-list.more .more-link .menu-link:before,
.nwz-header .h-menu .menu-list.more .more-link .menu-link:hover:before{
	content: none;
}

.nwz-header:hover .h-menu .menu-list .menu-link,
.nwz-header.header-shrink .h-menu .menu-list .menu-link,
.nwz-header.header-reares .h-menu .menu-list .menu-link{
	color: #181818;
}
.nwz-header .h-btn{
	width: 230px;
	box-sizing: border-box;
	justify-content:flex-end;
	padding: 2px 20px 0 0;
	display: flex;
}
.nwz-header .h-btn .btn-1{
	display: inline-block;
	padding: 0 16px;
	height: 62px;
	line-height: 64px;
	text-align: center;
	font-size: 18px;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
	border: 0;
	background: transparent;
	margin: 0 0 0 8px;
}
.nwz-header .h-btn .btn-1 i{
	font-size: 18px;
}
.nwz-header:hover .h-btn .btn-1,
.nwz-header.header-shrink .h-btn .btn-1,
.nwz-header.header-reares .h-btn .btn-1{
	color: #181818;
}
.nwz-header:hover .h-btn .btn-1:hover,
.nwz-header.header-shrink .h-btn .btn-1:hover,
.nwz-header.header-reares .h-btn .btn-1:hover{
	color: #004098 ;
}
.nwz-header .h-btn .serch-mask{
	display: none;
	position: fixed;
	width: 100%;
	height: calc(100% - 64px);
	left: 0;
	top: 64px;
	background: #495770;
	opacity: .2;
	z-index: 1;
}
.nwz-header .h-btn.open .serch-mask{
	display: block;
}
.nwz-header .h-btn .search-wrap{

}
.nwz-header .h-btn .search-wrap>.search-btn{
	display: inline-block;
	padding: 0 16px;
	height: 62px;
	line-height: 64px;
	text-align: center;
	font-size: 18px;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
	border: 0;
	background: transparent;
}
.nwz-header .h-btn .search-wrap>.search-btn i{
	font-size: 18px;
}
.nwz-header:hover .h-btn .search-wrap>.search-btn,
.nwz-header.header-shrink .h-btn .search-wrap>.search-btn,
.nwz-header.header-reares .h-btn .search-wrap>.search-btn{
	color: #181818;
}
.nwz-header:hover .h-btn .search-wrap>.search-btn:hover,
.nwz-header.header-shrink .h-btn .search-wrap>.search-btn:hover,
.nwz-header.header-reares .h-btn .search-wrap>.search-btn:hover{
	color: #004098 ;
}
.nwz-header .h-btn.open .search-wrap>.search-btn{
	display: none;
}
.nwz-header .h-btn .search-wrap>.search-dropdown{
	display: none;
	position: absolute;
	right: 90px;
	width: 428px;
	z-index: 2;
	background: #f9fbfc;
	box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
	border-radius: 0 0 8px 8px;
}
.nwz-header .h-btn.open .search-wrap .search-dropdown{
	display: block;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-bar{
	background: #fff;
	display: flex;
	border: 1px solid #FFFFFF;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-bar>input{
	display: block;
	height: 60px;
	padding: 0 22px;
	line-height: 62px;
	border: 0;
	background: transparent;
	outline: none;
	color: #333;
	font-size: 16px;
	width: 352px;
	box-sizing: border-box;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-bar>.search-btn{
	display: block;
	padding: 0;
	border: 0;
	height: 60px;
	line-height: 60px;
	background: transparent;
	cursor: pointer;
	margin: 0 20px 0 0;
	color: #004098;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-bar>.search-btn i{
	font-size: 16px;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result{
	padding: 12px 0 20px;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .ser-list{
	display: block;
	margin: 8px 0;
	padding: 0;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .ser-list .li-lis{
	display: block;
	margin: 0;
	padding: 0 22px;
	list-style: none;
	line-height: 22px;
	color: #495770;
	font-size: 14px;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .ser-list .li-lis+.li-lis{
	margin-top: 8px;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .ser-list .li-lis a{
	display: block;
	color: #495770;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .ser-list .li-lis a:hover{
	color: #004098;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .search-result-title{
	margin: 0 0 12px 0;
	padding: 0 22px;
	display: block;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	color: rgba(114, 113, 113, 0.8);
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .search-tag-blocks+.search-result-title{
	margin-top: 20px;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .search-tag-blocks{
	font-size: 0;
	margin: 0 14px -12px;
	overflow: hidden;
	padding: 0;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .search-tag-blocks>.search-tag-block{
	display: inline-block;
	vertical-align: top;
	padding: 0 23px 15px 7px;
	box-sizing: border-box;
	max-width: 400px;
	margin: 0;
	list-style: none;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .search-tag-blocks>.search-tag-block>a{
	box-sizing: border-box;
	border-radius: 2px;
	padding: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none;
	text-align: center;
	display: block;
	margin: 0;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	cursor: pointer;
	color: #333;
}
.nwz-header .h-btn .search-wrap>.search-dropdown .search-result .search-tag-blocks>.search-tag-block>a:hover{
	color: #004098;
}
/*ej-menu 二级菜单*/
.ej-menu{
	display: none;
	height: auto;
	position: fixed;
	left: 0;
	top: 63px;
	width: 100%;
	height: auto;
	max-height: 570px;
	overflow: auto;
	background-color: #F8FAFB;
	border-bottom: 10px solid #004098;
	z-index: 3;
}
.ej-menu::-webkit-scrollbar {
	display:block;
	width:12px;
	height:12px;
}
.ej-menu::-webkit-scrollbar-thumb {
	border-radius:7px;
	border:2px solid rgba(0, 0, 0, 0);
	background-color:rgba(0, 0, 0, .6);
	background-clip:padding-box;
}
.ej-menu.open{
	display: block;
}
.ej-menu.open:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 59px;
	background:url("/images/shadow.png") repeat-x left top;
	background-size: 27px;
	z-index: 1;
}
.ej-menu .close-btn{
	display: block;
	width: 18px;
	height: 18px;
	text-align: center;
	position: absolute;
	right: 35px;
	top: 24px;
	z-index: 2;
	padding: 0;
	line-height: 18px;
	color: #666;
	text-decoration: none;
	cursor: pointer;
	background: #F8FAFB;
}
.ej-menu .close-btn:hover{
	color: #004098;
}
.ej-menu .close-btn i{
	font-size: 18px;
	line-height: 18px;
}
.ej-menu .ej-menu-cont{
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
}
@media screen and (max-width: 1260px) {
	.ej-menu .ej-menu-cont{
		width: 100%;
		padding: 0 0 0 30px;
		box-sizing: border-box;
	}
}
.ej-menu .ej-menu-cont .ej-lef{
	position: relative;
	width: 240px;
	box-sizing: border-box;
	padding: 42px 22px 197px 0;
	color: #333;
	min-height: 478px;
}
.ej-menu .ej-menu-cont .ej-lef:before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 50vw;
	height: 100%;
	background: #fff url("/images/img2.png") right bottom no-repeat;
	background-size: 170px;
	z-index: 0;
}
.ej-menu.menu-bg1 .ej-menu-cont .ej-lef:before{
	background: #fff url("/images/menu-bg1.png") right bottom no-repeat;
	background-size: 170px;
}
.ej-menu.menu-bg2 .ej-menu-cont .ej-lef:before{
	background: #fff url("/images/menu-bg2.png") right bottom no-repeat;
	background-size: 170px;
}
.ej-menu.menu-bg3 .ej-menu-cont .ej-lef:before{
	background: #fff url("/images/menu-bg3.png") right bottom no-repeat;
	background-size: 170px;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont{
	position: relative;
	z-index: 1;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont .title{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: bold;
	color: #181818;
	line-height: 26px;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont .text+.title{
	margin-top: 25px;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont .text{
	display: block;
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #555A64;
	line-height: 26px;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont .text p{
	display: block;
	margin: 0;
	padding: 0;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont .link{
	color: #004098;
	cursor: pointer;
	text-decoration: none;
}
.ej-menu .ej-menu-cont .ej-lef .text-cont .link:hover{
	color: #004eff;
}
.ej-menu .ej-menu-cont .ej-rig{
	flex: 1;
	padding: 42px 0 30px 0;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
	.ej-menu .ej-menu-cont .ej-rig{
		padding: 42px 0 30px 30px;
	}
}
.ej-menu .ej-menu-cont .ej-rig::-webkit-scrollbar {
	display:block;
	width:12px;
	height:12px;
}
.ej-menu .ej-menu-cont .ej-rig::-webkit-scrollbar-thumb {
	border-radius:7px;
	border:2px solid rgba(0, 0, 0, 0);
	background-color:rgba(0, 0, 0, .6);
	background-clip:padding-box;
}
.ej-menu .ej-menu-cont .ej-rig .list{
	display: block;
	margin: 0 0 15px 44px;
	padding: 0;
	box-sizing: border-box;
	min-height: 127px;
	width: calc(33.3333333% - 44px);
}
@media screen and (max-width: 1260px) {
	.ej-menu .ej-menu-cont .ej-rig .list{
		margin: 0 30PX 15px 14px;
	}
}
@media (min-width: 801px) and (max-width: 1100px) {
	.ej-menu .ej-menu-cont .ej-rig .list {
		width: calc(50% - 44px);
	}
}
@media screen and (max-width: 800px) {
	.ej-menu .ej-menu-cont .ej-rig .list {
		width: calc(100% - 44px);
	}
}
.ej-menu .ej-menu-cont .ej-rig .list .list-title{
	display: block;
	font-size: 16px;
	color: #004098;
	line-height: 22px;
	margin: 0 0 12px 0;
	padding: 0 0 8px 0;
	border-bottom: 1px solid #d6dbe3;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	z-index: 2;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-title a,
.ej-menu .ej-menu-cont .ej-rig .list .list-title a:hover,
.ej-menu .ej-menu-cont .ej-rig .list .list-title a:visited,
.ej-menu .ej-menu-cont .ej-rig .list .list-title a:active{
	display: block;
	color: #004098;
	cursor: pointer;
	text-decoration: none;
	padding: 0 26px 0 0;
	position: relative;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-title i{
	display: none;
	width: 16px;
	height: 8px;
	color: transparent;
	background: url("/images/icon-r1.svg") no-repeat center;
	background-size: 16px;
	margin: 7px 0;
	position: absolute;
	right: 0;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-title:hover i{
	display: inline-block;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-text{
	display: block;
	margin: 0;
	padding: 0;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-text p{
	display: block;
	margin: 0;
	padding: 0;
	line-height: 20px;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-text .text-link{
	display: block;
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 16px;
	color: #000;
	line-height: 20px;
	cursor: pointer;
	text-decoration: none;
}
.ej-menu .ej-menu-cont .ej-rig .list .list-text .text-link:hover{
	color: #004098;
}
@media screen and (max-width: 1020px) {
.nwz-header{
	display: none;
}	
}

/*swiper 图片轮播*/
.banner{
	min-width: 1000px;
	padding-top: 64px;
}
.banner>img{
	width:100%;
}
.banner .banner-box{
	display: block;
	width: 100%;
	height: 720px;
	box-sizing: border-box;
	padding: 146px calc(50% - 600px) 20px;
}
.banner.min-banner .banner-box{
	height: 500px;
}
.banner .banner-box{
	background: url("/images/banner2.jpg") no-repeat top center;
	background-size:cover;
}
.banner .banner-box.reagent-bg2{
	background: url("/images/banner-details.jpg") no-repeat top center;
	background-size:cover;
}
.banner .banner-box.reagent-bg3{
	background: url("/images/banner-support.png") no-repeat top center;
	background-size:cover;
}
.banner .banner-box.reagent-bg4{
	background: url("/images/banner-aboutus.png") no-repeat top center;
	background-size:cover;
}
.banner .banner-box.reagent-cpzx1{
	height: 364px;
	background: transparent;
	padding:64px 0 0 0;
	position: relative;
	overflow: hidden;
}
.banner .banner-box.reagent-cpzx1 img{
	display: block;
	width: 100%;
	min-height: 300px;
}
.banner .banner-box.reagent-cpzx1 .banner-text{
	position: absolute;
	display: flex;
	height: 300px;
	max-width: 1200px;
	left: calc(50% - 600px);
	align-items: flex-start ;
	justify-content: center;
	flex-direction: column;
}
.banner .banner-box.reagent-cpzx1 .banner-text .title{
	display: block;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 40px;
	line-height: 60px;
	font-weight: 500;
}
.banner .banner-box.reagent-cpzx1 .banner-text .text{
	display: block;
	margin: 5px 0 0 0;
	padding: 0;
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
}

@media screen and (max-width: 1280px) {
.banner .banner-box{
	height: 440px;
	padding-top: 100px;
	padding-left: 30px;
	padding-right: 30px;
}
.banner.min-banner .banner-box{
	height: 305px;
}
.banner .banner-box.reagent-cpzx1 .banner-text{
	width: calc(100% - 32px);
	left: 16px;
}
.banner .banner-box .nwz-breadcrumb{
	margin: 0 0 20px 0!important;
	font-size: 18px !important;
	line-height: 20px !important;
}
.nwz-breadcrumb>a{
	line-height: 20px !important;
}
.nwz-breadcrumb>i {
    font-size: 18px !important;
    line-height: 20px !important;
}
.banner .banner-box .title{
	font-size: 22px !important;
	line-height: 36px !important;
	max-height: 90px !important;
}
.banner .banner-box .text {
	font-size: 13px !important;
	line-height: 22px !important;
	max-height: 44px !important;
}
.banner .banner-box .text.text-gg {
	max-height: 66px !important;
}
.banner .banner-box .ban-btn{
	margin: 20px 0 0 0 !important;
}
.banner .banner-box .ban-btn .btn,
.banner .banner-box .ban-btn .btn:hover {
	width: 80px !important;
	height: 30px !important;
	line-height: 30px !important;
	font-size: 13px !important;
}
}

@media (min-width: 1281px) and (max-width: 1536px) {
.banner .banner-box{
	height: 550px;
	padding-top: 110px;
}
.banner.min-banner .banner-box{
	height: 380px;
}
.banner .banner-box .nwz-breadcrumb{
	margin: 0 0 20px 0!important;
	font-size: 26px !important;
	line-height: 26px !important;
}
.nwz-breadcrumb>a{
	line-height: 26px !important;
}
.nwz-breadcrumb>i {
    font-size: 26px !important;
    line-height: 26px !important;
}
.banner .banner-box .title{
	font-size: 30px !important;
	line-height: 40px !important;
	max-height: 90px !important;
}

.banner .banner-box .text {
	font-size: 16px !important;
	line-height: 30px !important;
	max-height: 60px !important;
}
.banner .banner-box .text.text-gg {
	max-height: 90px !important;
}
.banner .banner-box .ban-btn{
	margin: 25px 0 0 0 !important;
}
.banner .banner-box .ban-btn .btn,
.banner .banner-box .ban-btn .btn:hover {
	height: 36px !important;
	line-height: 36px !important;
	font-size: 16px !important;
}
}

.banner .banner-box .title{
	display: block;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 48px;
	line-height: 60px;
	font-weight: 500;
	max-height: 140px;
	overflow: hidden;
}
.banner .banner-box .text{
	display: block;
	margin: 40px 0 0 0;
	padding: 0;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	max-height: 60px;
	overflow: hidden;
}
.banner .banner-box .text.text-gg{
	max-height: inherit;
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.banner .banner-box .text.text-gg .lab{
	display: inline-block;
	height: 40px;
	box-sizing: border-box;
	border: 1px solid #FFFFFF;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	min-width: 88px;
	line-height: 38px;
	text-align: center;
	padding: 0 10px;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	margin: 0 8px 0 0;
}
.banner .banner-box .text.text-gg .lab.active,
.banner .banner-box .text.text-gg .lab:hover{
	background: #004098;
	border: 1px solid #004098;
}
.banner .banner-box .text.text-gg+.text.text-gg{
	margin-top: 10px;
}
.banner .banner-box .text.text-gg p {
	display: inline;
}
.banner .banner-box .ban-btn{
	display: block;
	margin: 20px 0 0 0;
	padding: 0;
}
.banner .banner-box .ban-btn .btn,.banner .banner-box .ban-btn .btn:hover{
	display: inline-block;
	width: 98px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	background: #004098;
	cursor: pointer;
	text-decoration: none;
}
.banner .swiper-pagination{
	text-align: center;
	padding: 0 calc(50% - 600px);
	box-sizing: border-box;
}
.banner .swiper-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
	bottom: 40px;
}
.banner .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,10px));
	display: inline-block;
	border-radius: 0;
	background: var(--swiper-pagination-bullet-inactive-color,#fff);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,20px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,10px));
	background: var(--swiper-pagination-bullet-inactive-color,#004098);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}
.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,6px);
}
.banner .swiper {
	width: 100%;
	height: 720px;
	min-width: 1000px;
}
@media screen and (max-width: 1280px) {
	.banner .swiper {
		height: 440px !important;
	}
}
@media (min-width: 1281px) and (max-width: 1536px) {
	.banner .swiper {
		height: 550px !important;
	}
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}
@media screen and (max-width: 1020px) {
.banner {
    min-width: 100px;
	padding: 0px;
}
.banner .swiper {
    height: 200px !important; 
    min-width: 100px;
}
.banner .banner-box.reagent-cpzx1 {
    height: 140px;
    padding: 0;
}
.banner .banner-box.reagent-cpzx1 img {
	min-height: 140px !important;
}
.banner .banner-box.reagent-cpzx1 .banner-text{
	height: 140px;
}
.banner .banner-box.reagent-cpzx1 .banner-text{
	height: 140px;
}
.banner .banner-box {
    height: 140px;
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
}
.banner .banner-box .nwz-breadcrumb {
    margin: 0 0 16px 0!important;
    font-size: 14px !important;
    line-height: 20px !important;
	flex-wrap: wrap;
}
.banner .banner-box .title{
	font-size:16px;
	line-height: 22px;
	max-height: 80px;
}
.banner .banner-box .text{
	margin: 5px 0 0 0;
	font-size: 14px;
	line-height: 20px;
	max-height: 40px;
}
.banner .banner-box .text.text-gg{
	margin-top: 16px;
}
.search-results .sear-box{ 
	margin: 20px 0 40px 0 !important;
}
.search-results .rea-tabs{
	position: unset !important;
	justify-content: space-around;
}
.search-results .rea-tabs>.tabs{
	padding: 0 0 16px 0 !important;
	margin: 0 !important;
}
.banner .banner-box.search-results{
	height: auto !important;
	padding: 20px 16px 0 !important;
}
.search-results .sear-box >input {
  width: calc(100% - 80px) !important;
}
.search-results .sear-box .fl-resu{
	width: 100% !important;
}
.empty-1 {
	min-width: auto !important;
}
}

/*search-results 搜索结果banner区域*/
.banner .banner-box.search-results{
	background: url("/images/bg1.jpg") no-repeat center;
	background-size:cover ;
	height: 374px;
	position: relative;
	padding-top: 144px;
}
.banner .search-results .nwz-breadcrumb{
	color: #181818;
}
.banner .search-results .nwz-breadcrumb>a{
	color: #181818;
}
.banner .search-results .nwz-breadcrumb>a:hover,
.banner .search-results .nwz-breadcrumb>a:visited,
.banner .search-results .nwz-breadcrumb>a:focus{
	color: #181818 ;
}
.banner .banner-box.search-results .title{
	color: #181818;
	line-height: 48px;
}
.search-results .sear-box{
	display: flex;
	margin: 40px 0 0 0;
	position: relative;
}
.search-results .sear-box .fl-resu{
	position: absolute;
	top: 60px;
	left: 0;
	background: #fff;
	width: 624px;
	height: auto;
	max-height: 400px;
	overflow: auto;
	box-shadow: 0px 10px 16px 4px rgb(2 33 77 / 4%);
	z-index: 2;
	border: 1px solid #004098;
	box-sizing: border-box;
	border-top: 1px solid #E4E4E4;
}
.search-results .sear-box .fl-resu .ser-list{
	display: block;
	margin: 0;
	padding: 20px 0;
}
.search-results .sear-box .fl-resu .ser-list .li-lis{
	display: block;
	margin: 0;
	padding: 0 22px;
	list-style: none;
	line-height: 22px;
	color: #495770;
	font-size: 14px;
}
.search-results .sear-box .fl-resu .ser-list .li-lis+.li-lis{
	margin-top: 8px;
}
.search-results .sear-box .fl-resu .ser-list .li-lis a{
	display: block;
	color: #495770;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
}
.search-results .sear-box .fl-resu .ser-list .li-lis a:hover{
	color: #004098;
}
.search-results .sear-box>input{
	display: block;
	width: 624px;
	height: 61px;
	line-height: 59px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	box-sizing: border-box;
	padding: 0 22px;
	font-size: 16px;
	color: #181818;
}
.search-results .sear-box>input:focus{
	border: 1px solid #004098;
}
.search-results .sear-box>input::-webkit-input-placeholder{
	color: #5E6B81;
}
.search-results .sear-box>input::-moz-input-placeholder{
	color: #5E6B81;
}
.search-results .sear-box>input::-ms-input-placeholder{
	color: #5E6B81;
}
.search-results .sear-box>.sear-btn,
.search-results .sear-box>.sear-btn:hover{
	display: block;
	width: 80px;
	height: 61px;
	line-height: 61px;
	text-align: center;
	background: #004098;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border-radius: 0px;
	border: 0;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	text-decoration: none;
}
.search-results .rea-tabs{
	display: flex;
	position: absolute;
	bottom: 0;
}
.search-results .rea-tabs>.tabs{
	display: block;
	font-size: 20px;
	line-height: 20px;
	color: rgba(24, 24, 24, 0.7);
	padding: 0 0 22px 0;
	margin: 0 126px 0 0;
	border-bottom: 4px solid transparent;
	cursor: pointer;
	text-decoration: none;
	font-weight: 400;
}
.search-results .rea-tabs>.tabs:hover{
	color: #181818;
}
.search-results .rea-tabs>.tabs.active{
	color: #181818;
	border-bottom: 4px solid #004098;
}

/*map-banner 网站地图banner*/
.banner .banner-box.map-banner{
	background: url("/images/banner6.jpg") no-repeat center;
	background-size: cover;
	height: 320px;
	position: relative;
	padding-top: 144px;
}
.banner .banner-box.map-banner .title{
	color: #181818;
	line-height: 48px;
}
.banner .banner-box.map-banner .text-menu{
	display: block;
	margin: 84px 0 0 0;
	padding: 0 0 0 18px;
	font-size: 24px;
	font-weight: 500;
	line-height:24px;
	color: #181818;
}
.banner .banner-box.map-banner .text-menu .menu-link{
	display: flex;
	justify-content: space-between;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
	align-items: center;
}
.banner .banner-box.map-banner .text-menu .menu-link:hover{
	color: #004098;
}
.banner .banner-box.map-banner .text-menu .menu-link i{
	font-size: 24px;
	display: none;
	font-weight: bold;
}
.banner .banner-box.map-banner .text-menu .menu-link:hover i{
	display: block;
}
@media screen and (max-width: 1020px) {
.banner .swiper-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
	bottom: 16px;
}
.banner .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,5px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,5px));
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,5px));
}
}

/*back-top 返回顶部按钮*/
.back-top{
	position: fixed;
	display: none;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	background:#F5F7F9 url("/images/icon-top.svg") no-repeat center;
	background-size: 20px;
	color:transparent;
	z-index: 1;
	cursor: pointer;
	text-decoration: none;
	border: 2px solid #fff;
	box-shadow: 0px 10px 16px 4px rgb(2 33 77 / 4%);
	box-sizing: border-box;
	border-radius: 100%;
	margin: 10px 0 0 0;
}
.back-top:hover{
	position: fixed;
	display: none;
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	background:#004098 url("/images/icon-top2.svg") no-repeat center;
	background-size: 20px;
	color:transparent;
	z-index: 1;
	cursor: pointer;
	text-decoration: none;
	border: 2px solid #fff;
	box-shadow: 0px 10px 16px 4px rgb(2 33 77 / 4%);
	box-sizing: border-box;
	border-radius: 100%;
	margin: 10px 0 0 0;
}

/*suspend-btn 在线留言、联系我们*/
.suspend-btn{
	position: fixed;
	right: 20px;
	top: 270px;
	z-index: 3;
}
.suspend-btn>.btns+.btns{
	margin-top: 10px;
}
.suspend-btn>.btns{
	display: block;
	margin: 0;
	padding: 0;
	background: #F5F7F9;
	border: 2px solid #fff;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
}
.suspend-btn>.btns:hover{
	border: 2px solid #004098;
	height: 170px;
	background: #004098;
}
.suspend-btn>.btns.btns-wx{
	position: relative;
}
.suspend-btn>.btns.btns-wx:hover{
	height: 50px;
	background: #004098;
	border: 2px solid #fff;
	color: #fff;
}
.suspend-btn>.btns.btns-wx:hover>i{
	background: #004098;
	color: #fff;
}
.suspend-btn>.btns.btns-wx:hover .b-hover{
	display: block;
}
.suspend-btn>.btns.btns-wx .b-hover{
	display: none;
	position: absolute;
	right: 72px;
	top: -21px;
	background: #fff;
	padding: 10px;
	border: 1px solid #98b0d1;
	box-shadow: 0px 0px 10px rgb(41 43 64 / 20%);
	border-radius: 4px;
}
.suspend-btn>.btns.btns-wx .b-hover img{
	display: block;
	width: 80px;
}
.suspend-btn>.btns>i{
	display: block;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	background: #F5F7F9;
	border-radius: 100%;
	color: #004098;
	font-size: 22px;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
.suspend-btn>.btns>i.icon-kefu:before{
	content: "";
	background: url("/images/icon-kefu.svg") no-repeat center;
	background-size: 22px;
	display: block;
	width: 46px;
	height: 46px;
}
.suspend-btn>.btns>i.icon-dianhua:before{
	content: "";
	background: url("/images/icon-dianhua.svg") no-repeat center;
	background-size: 22px;
	display: block;
	width: 46px;
	height: 46px;
}
.suspend-btn>.btns>span{
	display: none;
	width: 46px;
	text-align: center;
	box-sizing: border-box;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
}
.suspend-btn>.btns:hover>span{
	display: block;
}
@media screen and (max-width: 900px) {
.suspend-btn{
	display: none;
}
}

/*nwzbody-box 内容区域*/
.nwzbody-box{
	display: block;
	margin: 0;
	padding: 80px 16px;
}
.box-title{
	display: block;
	text-align: center;
	background: #fff;
	padding: 80px calc(50% - 600px) 60px;
	box-sizing: border-box;
}
.nwzbody-box .box-title{
	display: block;
	text-align: center;
	background: transparent;
	padding: 0 calc(50% - 600px) 60px;
	box-sizing: border-box;
}
.box-title .title-chinese{
	display: block;
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 36px;
	color: #000;
	line-height: 44px;
}
.box-title .title-english{
	display: block;
	margin: 8px 0 0 0;
	padding: 0;
	font-weight: 500;
	font-size: 18px;
	color: #181818;
	line-height: 22px;
	opacity: 0.5;
}
.nwzbody-box .box-body{
	display: block;
	box-sizing: border-box;
	padding: 0;
	margin: 0 auto;
}
@media screen and (max-width: 1020px) {
.nwzbody-box{
	padding: 20px 16px;
	min-width: 100px;
}
.box-title{
	padding: 20px 16px;
	min-width: 100px;
}
.nwzbody-box .box-title{
	padding: 0 0 20px 0;
	min-width: 100px;
}
.box-title .title-chinese{
	font-size: 18px;
	line-height: 28px;
}
.box-title .title-english{
	font-size: 16px;
	line-height: 20px;
	margin: 5px 0 0 0;
}
}

/*tab1 试剂原料服务板块*/
.nwzbody-box .box-body .tab1{
	padding: 62px  0;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1280px) {
	.nwzbody-box .box-body .tab1{
		width: 100%;
		box-sizing: border-box;
		padding: 62px 30px;
	}
}
.tab1{
	display: flex;
}
.tab1 .tab_list{
	display: block;
	width: 452px;
	padding: 63px 113px 0 0;
	box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
	.tab1 .tab_list{
		width: 412px;
		padding-right: 63px;
	}
}
.tab1 .tab_list>ul{
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tab1 .tab_list>ul>li{
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.tab1 .tab_list>ul>li.current:before{
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 6px;
	height: 39px;
	background: #004098;
}
.tab1 .tab_list>ul>li.current{
	padding-left: 30px;
}
.tab1 .tab_list>ul>li+li{
	margin-top: 59px;
}
.tab1 .tab_list>ul>li .title{
	display: block;
	margin: 0;
	padding: 0;
	color: #555A64;
	font-size: 32px;
	line-height: 39px;
	font-style: oblique;
}
.tab1 .tab_list>ul>li.current .title{
	color: #181818;
}
.tab1 .tab_list>ul>li .text{
	display: block;
	margin: 10px 0 0 0;
	padding: 0;
	color: #555A64;
	font-size: 16px;
	line-height: 1.35;
	font-style: oblique;
}
.tab1 .tab_list>ul>li.current .text{
	color: #555A64;
}
.tab1 .tab_list>ul>li .more-btn{
	display: inline-block;
	width:52px;
	height:23px;
	margin: 19px 0 0 0;
	color: #004098;
	cursor: pointer;
	text-decoration: none;
	opacity: 0;
}
.tab1 .tab_list>ul>li.current .more-btn{
	opacity: 1;
}
.tab1 .tab_list>ul>li .more-btn i{
	display:block;
	width:46px;
	height:23px;
	background:url("/images/icon-r1.svg") no-repeat center;
	background-size:46px;
	color: transparent;
}
.tab1 .tab_con{
	flex: 1;
}
.tab1 .tab_con .item{
	display: none;
	background: url("/images/quotes-l.png") no-repeat left top;
	background-size: 83px;
	padding: 59px 0 0 39px;
}
.tab1 .tab_con .item .text{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #555A64;
	line-height: 32px;
}
.tab1 .tab_con .item .text p{
	display: block;
	margin: 0;
	padding: 0;
}
.tab1 .tab_con .item .text p+p{
	margin-top: 10px;
}
.tab1 .tab_con .item .btn{
	display: block;
	margin: 28px 0 0 0;
	padding: 0;
	text-align: right;
}
.tab1 .tab_con .item .btn .more-btn,
.tab1 .tab_con .item .btn .more-btn:hover{
	display: inline-block;
	width: 128px;
	height: 34px;
	line-height: 34px;
	background: #004098;
	text-align: center;
	font-size: 16px;
	color: #fff;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border: 0;
	cursor: pointer;
}
.tab1 .tab_con .item .btn .more-btn i{
	padding: 0 0 0 4px;
	transition: 0.5s;
	display: inline-block;
	width: 16px;
	height: 8px;
}
.tab1 .tab_con .item .btn .more-btn i:before{
	content: "";
	background: url("/images/icon-r2.svg") no-repeat center;
	background-size: 16px;
	display: block;
	width: 16px;
	height: 8px;
}
.tab1 .tab_con .item .btn .more-btn:hover i{
	padding: 0 0 0 12px;
}
.tab1 .tab_con .item .img{
	display: block;
	margin: 30px 0 0 0;
	padding: 0;
}
.tab1 .tab_con .item .img img{
	width: auto;
	max-width: 100%;
}

/*swiper1 新品*/
.nwzbody-box .box-body .swiper-xp{
	padding: 0 180px;
	box-sizing: border-box;
	margin: 0 auto;
	background: #f8fafb url("/images/bg1.jpg") repeat-y center;
	background-size: cover;
}
@media (min-width: 1301px) and (max-width: 1600px) {
	.nwzbody-box .box-body .swiper-xp{
		padding: 0 15px;
	}
}
@media screen and (max-width: 1300px) {
	.nwzbody-box .box-body .swiper-xp{
		padding: 0;
	}
}
.nwzbody-box .box-body .swiper-xp .swiper-button-next{
	width: 38px !important;
	height: 38px !important;
	color: #555 !important;
	border-radius: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 1px 0 0 3px;
}
.nwzbody-box .box-body .swiper-xp .swiper-button-prev{
	width: 38px !important;
	height: 38px !important;
	color: #555 !important;
	border-radius: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 1px 3px 0 0;
}
.nwzbody-box .box-body .swiper-xp .swiper-button-next:hover,
.nwzbody-box .box-body .swiper-xp .swiper-button-prev:hover{
	background: #FBFCFC;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	color: #004098  !important;
}
.nwzbody-box .box-body .swiper-xp .swiper-button-next:after,
.nwzbody-box .box-body .swiper-xp .swiper-button-prev:after{
	width: 11px;
	font-size: 20px;
	height: 20px;
	font-weight: bold;
}
.nwzbody-box .box-body .swiper-xp .swiper-pagination{
	text-align: center;
	padding: 0 calc(50% - 600px);
	box-sizing: border-box;
}
.nwzbody-box .box-body .swiper-xp .swiper-horizontal>.swiper-pagination-bullets,
.nwzbody-box .box-body .swiper-xp .swiper-pagination-bullets.swiper-pagination-horizontal,
.nwzbody-box .box-body .swiper-xp .swiper-pagination-custom,
.nwzbody-box .box-body .swiper-xp .swiper-pagination-fraction {
	bottom: 40px;
}
.nwzbody-box .box-body .swiper-xp .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,10px));
	display: inline-block;
	border-radius: 0;
	background: var(--swiper-pagination-bullet-inactive-color,#fff);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}
.nwzbody-box .box-body .swiper-xp .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,20px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,10px));
	background: var(--swiper-pagination-bullet-inactive-color,#004098);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}
.nwzbody-box .box-body .swiper-xp .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.nwzbody-box .box-body .swiper-xp .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,6px);
}


.swiper-xp{

}
.swiper-xp .swiper{
	height: 602px;
}
.swiper-xp .swiper-slide{
	background: transparent;
}
.swiper-xp .swiper-slide .xp-list{
	display: table;
	table-layout: fixed;
	max-width: 1200px;
	box-sizing: border-box;
	padding: 0;
}
@media screen and (max-width: 1280px) {
	.swiper-xp .swiper-slide .xp-list{
		width: 100%;
		padding: 0 30px;
	}
	body .swiper-button-prev,
	body .swiper-rtl .swiper-button-next{
		left: 0;
	}
	body .swiper-button-next,
	body .swiper-rtl .swiper-button-prev{
		right: 0;
	}
}
.swiper-xp .swiper-slide .xp-list .xp-img{
	display: table-cell;
	vertical-align: middle;
	width: 574px;
	padding: 14px 0;
}
.swiper-xp .swiper-slide .xp-list .xp-img img{
	width: 574px;
	height: 500px;
}
.swiper-xp .swiper-slide .xp-list .xp-text{
	display: table-cell;
	vertical-align: middle;
	padding: 0 0 0 50px;
	text-align: left;
}
.swiper-xp .swiper-slide .xp-list .xp-text .title{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 32px;
	font-weight: 500;
	color: #000000;
	line-height: 48px;
}
.swiper-xp .swiper-slide .xp-list .xp-text .text{
	display: block;
	margin: 40px 0 0 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #555A64;
	line-height: 32px;
}
.swiper-xp .swiper-slide .xp-list .xp-text .btn{
	display: block;
	margin: 44px 0 0 0;
	padding: 0;
	text-align: left;
}
.swiper-xp .swiper-slide .xp-list .xp-text .btn .more-btn,
.swiper-xp .swiper-slide .xp-list .xp-text .btn .more-btn:hover{
	display: inline-block;
	width: 128px;
	height: 34px;
	line-height: 34px;
	background: #004098;
	text-align: center;
	font-size: 16px;
	color: #fff;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border: 0;
	cursor: pointer;
}
.swiper-xp .swiper-slide .xp-list .xp-text .btn .more-btn i{
	padding: 0 0 0 4px;
	transition: 0.5s;
	display: inline-block;
	width: 16px;
	height: 8px;
}
.swiper-xp .swiper-slide .xp-list .xp-text .btn .more-btn i:before{
	content: "";
	background: url("/images/icon-r2.svg") no-repeat center;
	background-size: 16px;
	display: block;
	width: 16px;
	height: 8px;
}
.swiper-xp .swiper-slide .xp-list .xp-text .btn .more-btn:hover i{
	padding: 0 0 0 12px;
}

/*yfsl-box*/
.nwzbody-box .box-body.bg-1{
	background: url("/images/bg1.png") no-repeat center;
	background-size: cover;
	padding: 184px 0 160px 0;
}
.yfsl-box{
	display: block;
	padding: 0;
	text-align: left;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1280px) {
	.yfsl-box{
		width: 100%;
		padding: 0 30px;
		box-sizing: border-box;
	}
}
.yfsl-box .yfsl-cont{
	display: inline-block;
	width: 608px;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
	text-align: left;
}
.yfsl-box .yfsl-cont .title{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 28px;
	font-weight: 400;
	color: #000;
	line-height: 28px;
}
.yfsl-box .yfsl-cont .text{
	display: block;
	margin: 15px 0 0 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	color: #555A64;
	line-height: 40px;
}
.yfsl-box .yfsl-cont .btn{
	display: block;
	margin: 18px 0 0 0;
	padding: 0;
	text-align: left;
}
.yfsl-box .yfsl-cont .btn .more-btn,
.yfsl-box .yfsl-cont .btn .more-btn:hover{
	display: inline-block;
	width: 128px;
	height: 34px;
	line-height: 34px;
	background: #004098;
	text-align: center;
	font-size: 16px;
	color: #fff;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border: 0;
	cursor: pointer;
}
.yfsl-box .yfsl-cont .btn .more-btn i{
	padding: 0 0 0 4px;
	transition: 0.5s;
	display: inline-block;
	width: 16px;
	height: 8px;
}
.yfsl-box .yfsl-cont .btn .more-btn i:before{
	content: "";
	background: url("/images/icon-r2.svg") no-repeat center;
	background-size: 16px;
	display: block;
	width: 16px;
	height: 8px;
}
.yfsl-box .yfsl-cont .btn .more-btn:hover i{
	padding: 0 0 0 12px;
}

/*wzdz-box 关于我们*/
.wzdz-box{
	display: flex;
	justify-content: space-between;
	padding: 60px 30px;
	width: 1260px;
	margin: 0 auto;
	box-sizing: border-box;
	min-height: 334px;
}
.wzdz-box .wzdz-list{
	display: block;
}
.wzdz-box .wzdz-list.list-line{
	width: 1px;
	height: 213px;
	background: #EBEDF0;
}
.wzdz-box .wzdz-list .wzdz-logo{
	display: block;
	width: 165px;
	height: 54px;
	margin: 0 0 20px 0;
	padding: 0;
	background: url("/images/logo1-b.svg") no-repeat center;
	background-size: 165px;
}
.wzdz-box .wzdz-list .title{
	display: block;
	margin: 0 0 18px 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: #181818;
	line-height: 1.5;
}
.wzdz-box .wzdz-list .text{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	color: #555A64 ;
	line-height:20px;
}
.wzdz-box .wzdz-list .text p{
	display: flex;
	margin: 10px 0 0 0;
	padding: 0;
	align-items: center;
}
.wzdz-box .wzdz-list .text p .line{
	display: inline-block;
	width: 1px;
	height: 14px;
	background: #666;
	margin: 0 15px;
}
.wzdz-box .wzdz-list .text p a{
	color: #555A64;
	text-decoration: none;
	cursor: pointer;
}
.wzdz-box .wzdz-list .text p a:hover{
	color: #004098;
}
@media screen and (max-width: 1280px) {
.wzdz-box{
	width: 100%;
	min-width: 1000px;
}
}
@media screen and (max-width: 1020px) {
.wzdz-box{
	width: 100%;
	min-width: 100px;
	padding: 20px 16px;
	display: block;
}
.wzdz-box .wzdz-list+.wzdz-list{
	margin-top: 20px;
}
.wzdz-box .wzdz-list .title {
    margin: 0 0 10px 0;
}
.wzdz-box .wzdz-list .text p {
    flex-wrap: wrap;
}
}

/*nwz-footer 底部*/
.nwz-footer{
	display: flex;
	justify-content: space-between;
	padding: 23px calc(50% - 605px);
	background: #004098;
	font-size: 14px;
	color: #fff;
	line-height: 26px;
	min-width: 1000px;
	box-sizing: border-box;
}

.nwz-footer .list{
	display: flex;
}
.nwz-footer .list>*{
	margin: 0 5px;
}
.nwz-footer .list a{
	display: flex;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
}
.nwz-footer .list a img{
	display: block;
	height: 18px;
	width: auto;
	margin: 0 5px 0 0;
}
.nwz-footer .list a:hover{
	text-decoration: underline;
	color: #fff;
}
@media screen and (max-width: 1280px) {
.nwz-footer{
	padding: 23px  25px;
}
}
@media screen and (max-width: 1020px) {
.nwz-footer{
	min-width: 100px;
	padding: 20px 16px;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}	
.nwz-footer .list {
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
}

/*cook-popout cookIE弹窗*/
.cook-popout{
	position: fixed;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #3B69A7;
	display: flex;
	justify-content:space-between;
	color: #fff;
	font-size: 16px;
	padding:  20px calc(50% - 600px);
	box-sizing: border-box;
	line-height: 26px;
	opacity: 0.8;
}
@media screen and (max-width: 1280px) {
	.cook-popout{
		padding: 20px 30px;
	}
}
.cook-popout a,
.cook-popout a:hover{
	color: #fff;
	text-decoration: underline;
	cursor: pointer;
}
.cook-popout .close-btn,
.cook-popout .close-btn:hover{
	text-decoration: none;
}

/*nwztext-box1 试剂内容1*/
.nwztext-box1{
	display: block;
	margin: 0;
	padding: 70px calc(50% - 600px);
	background: #fff;
	font-weight: 400;
	color: #555A64;
	font-size: 16px;
	line-height: 32px;
	min-width: 1000px;
	box-sizing: border-box;
}
.nwztext-box1 .conts{
	display: block;
	margin: 0;
	padding: 0;
	word-break: break-all;
	min-height: 80px;
}
.nwztext-box1 .conts p{
	display: block;
	margin: 0;
	padding: 0;
}
.nwztext-box1 .conts p+p{
	margin-top: 15px;
}
@media screen and (max-width: 1280px) {
.nwztext-box1{
	padding: 70px 30px;
}
}
@media screen and (max-width: 1020px) {
.nwztext-box1{
	padding: 20px 16px;
	min-width: 100px;
	font-size: 14px;
	line-height: 1.75;
}	
}

/*nwztext-box2 研发实力*/
.nwztext-box2{
	display: block;
	margin: 0;
	padding: 70px 0;
	background: #fff;
	font-weight: 400;
	color: #555A64;
	font-size: 16px;
	line-height: 32px;
	min-width: 1000px;
	box-sizing: border-box;
}
.nwztext-box2 .conts{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	word-break: break-all;
	min-height: 80px;
	box-sizing: border-box;
}
.nwztext-box2 .conts p{
	display: block;
	margin: 0;
	padding: 0;
}
.nwztext-box2 .conts p+p{
	margin-top: 15px;
}
@media screen and (max-width: 1280px) {
.nwztext-box2 .conts{
	width: 100%;
	padding: 0 30px;
}
}
@media screen and (max-width: 1020px) {
.nwztext-box2{
	padding: 20px 16px;
	min-width: 100px;
	font-size: 14px;
	line-height: 1.75;
}
.nwztext-box2 .conts{
	padding: 0;
}
}

/*nwztext-box3 方法学开发与验证*/
.nwztext-box3{
	display: block;
	margin: 0;
	padding: 80px 0;
	background:url("/images/bg1.jpg") top center no-repeat;
	background-size: cover;
	font-weight: 400;
	color: #555A64;
	font-size: 18px;
	line-height: 40px;
	min-width: 1000px;
	box-sizing: border-box;
}
.nwztext-box3 .conts{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	word-break: break-all;
	min-height: 70px;
	box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
	.nwztext-box3 .conts{
		width: 100%;
		padding: 0 30px;
	}
}

/*nwztext-box4 免疫原性分析*/
.nwztext-box4{
	display: block;
	margin: 0;
	padding: 55px 30px;
	background:url("/images/bg1.jpg") top center no-repeat;
	background-size: cover;
	font-weight: 400;
	color: #555A64;
	font-size: 18px;
	line-height: 40px;
	min-width: 1000px;
}
.nwztext-box4 .conts{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	word-break: break-all;
	min-height: 70px;
}
@media screen and (max-width: 1280px) {
	.nwztext-box4 .conts{
		width: 100%;
	}
}
.nwztext-box4 .conts .title-img{
	display: block;
	width: 553px;
	height: auto;
	margin: 0 0 28px 0;
}
.nwztext-box4 .conts .text-list{
	display: table;
	width: 100%;
	table-layout: fixed;
	margin: 0;
	padding: 0;
}
.nwztext-box4 .conts .text-list+.text-list{
	margin-top: 30px;
}
.nwztext-box4 .conts .text-list .clum{
	display: table-cell;
	vertical-align: top;
	width: 150px;
	color: #181818;
	font-size: 20px;
	line-height: 22px;
	padding: 5px 0 0 0;
}
.nwztext-box4 .conts .text-list .text{
	display: table-cell;
	vertical-align: top;
}
.nwztext-box4 .conts .text-list .text .txt{
	display: inline-block;
	color: #004098;
	background: #EBF1F6;
	font-size: 12px;
	height: 22px;
	line-height: 22px;
	padding: 0 14px;
	margin: 5px 15px;
}

/*immune-box1 免疫原性分析*/
.immune-box1{
	display: block;
	padding: 36px 30px 83px 30px;
	margin: 0;
	background: #fff;
	min-width: 1000px;
}
.immune-box1 .conts{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
@media screen and (max-width: 1280px) {
	.immune-box1 .conts{
		width: 100%;
	}
}
.immune-box1 .conts .imm-title1{
	display: block;
	height: 50px;
	background: #ECF2F8;
	line-height: 50px;
	padding: 0 29px;
	color: #004098 ;
	font-size: 16px;
	margin: 0 0 15px 0;
	font-weight: 500;
}
.immune-box1 .conts .imm-text1+.imm-title1,
.immune-box1 .conts .imm-text2+.imm-title1{
	margin-top: 35px;
}
.immune-box1 .conts .imm-title2{
	display: inline-block;
	width: auto;
	height: 36px;
	background: #D4EDEB;
	line-height: 36px;
	padding: 0 29px;
	color: #278B84 ;
	font-size: 14px;
	margin: 0 0 25px 0;
	font-weight: 500;
}
.immune-box1 .conts .imm-title1+.imm-title2{
	margin-top: 13px;
}
.immune-box1 .conts .imm-text1+.imm-title2,
.immune-box1 .conts .imm-text2+.imm-title2{
	margin-top: 35px;
}
.immune-box1 .conts .imm-title3{
	display: block;
	line-height: 32px;
	padding: 0 29px;
	color: #181818 ;
	font-size: 16px;
	margin: 0 0 5px 0;
	font-weight: 500;
}
.immune-box1 .conts .imm-text1+.imm-title3,
.immune-box1 .conts .imm-text2+.imm-title3{
	margin-top: 35px;
}
.immune-box1 .conts .t-text+.imm-text1,
.immune-box1 .conts .t-text+.imm-text2{
	margin-top: 20px;
}
.immune-box1 .conts .imm-text1{
	display: block;
	font-size: 18px;
	color: #555A64;
	line-height: 36px;
	text-indent: 29px;
}
.immune-box1 .conts .imm-text2{
	display: block;
	font-size: 16px;
	color: #555A64;
	line-height: 32px;
	text-indent: 29px;
}
.immune-box1 .conts .imm-text1 p,
.immune-box1 .conts .imm-text2 p{
	display: block;
	margin: 0;
	padding: 0;
}
.immune-box1 .conts .imm-text1 img,
.immune-box1 .conts .imm-text2 img{
	display: block;
	margin: 52px auto 0 auto;
}
.immune-box1 .conts .imm-title3+.immta1{
	margin-top: 19px;
}
.immune-box1 .conts .immta1{
	width: 100%;
	margin: 0 auto;
	table-layout: fixed;
	margin: 0 auto 40px auto;
	border: 1px solid #EEF0F6;
}
.immune-box1 .conts .immta1 tr td{
	border: 1px solid #EEF0F6;
	color: #181818;
	font-size: 16px;
	text-align: center;
	vertical-align: middle;
	padding: 10px 15px;
	line-height: 28px;
	width: 50%;
}
.immune-box1 .conts .immta1 tr td p{
	display: block;
	margin: 0;
	padding: 0;
}
.immune-box1 .conts .immta1 tr td p+p{
	margin-top: 5px;
}
.immune-box1 .conts .immta1>tbody>tr:nth-child(2n+1)>td{
	background: #D4EDEB;
}
.immune-box1 .conts .immta1>tbody>tr:nth-child(2n)>td{
	background: #EEF0F6 ;
}
.immune-box1 .conts .more-btn,
.immune-box1 .conts .more-btn:hover{
	display: inline-block;
	height: 34px;
	line-height: 34px;
	padding: 0 28px;
	background: #004098;
	text-align: center;
	font-size: 16px;
	color: #fff;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border: 0;
	cursor: pointer;
	text-indent: 0;
	margin: 35px 0 0 0;
}
.immune-box1 .conts .more-btn i{
	padding: 0 0 0 16px;
	display: inline-block;
	width: 16px;
	height: 8px;
}
.immune-box1 .conts .more-btn i:before{
	content: "";
	background: url("/images/icon-r2.svg") no-repeat center;
	background-size: 16px;
	display: block;
	width: 16px;
	height: 8px;
}
.immune-box1 .conts .t-title{
	display: block;
	margin: 16px auto 0 auto;
	max-width: 1200px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	background: #004098;
	color: #fff;
	font-size: 16px;
}
.immune-box1 .conts .verify-table{
	width: 100%;
	margin: 0 auto;
	table-layout: fixed;
	border: 1px solid #EEF0F6;
}
.immune-box1 .conts .verify-table tr td{
	border: 1px solid #EEF0F6;
	color: #555A64;
	font-size: 16px;
	text-align: center;
	vertical-align: middle;
	padding: 10px 15px;
	line-height: 28px;
	width: 50%;
}
.immune-box1 .conts .verify-table tr td p{
	display: block;
	margin: 0;
	padding: 0;
}
.immune-box1 .conts .verify-table td.green{
	background: #D4EDEB ;
	color: #181818;
}
.immune-box1 .conts .verify-table td.blue{
	background: #E3ECFF;
	color: #181818;
}
.immune-box1 .conts .verify-table>tbody>tr:nth-child(2n+1)>td{
	background: #fff;
}
.immune-box1 .conts .verify-table>tbody>tr:nth-child(2n)>td{
	background: #F5F8FA;
}
.immune-box1 .conts .verify-table+.t-text,
.immune-box1 .conts .immta1+.t-text{
	margin-top: 18px;
}
.immune-box1 .conts .t-text{
	display: block;
	text-align: center;
	color: #555A64;
	font-size: 16px;
}
.immune-box1 .conts .fwlc-list{
	display: flex;
	padding: 0 14px;
	flex-wrap: wrap;
}
.immune-box1 .conts .fwlc-list .list{
	margin: 25px 15px 0 15px;
	display: block;
}
.immune-box1 .conts .fwlc-list .list .list-img{
	display: block;
	background: #F5F8FB;
	width: 66px;
	height: 66px;
	border-radius: 66px;
	margin: 0;
	padding: 20px 0;
	box-sizing: border-box;
}
.immune-box1 .conts .fwlc-list .list .list-img img{
	display: block;
	width: 26px;
	margin: 0 auto;
}
.immune-box1 .conts .fwlc-list .list .icon-xiangyoujiantou{
	display: block;
	margin: 0;
	padding: 0;
	line-height: 66px;
	color: #004098;
	font-size: 14px;
	font-weight: bold;
}
.immune-box1 .conts .fwlc-list .list .title{
	display: block;
	color: #555A64;
	font-size: 16px;
	line-height: 32px;
	margin: 13px 0 0 0;
	padding: 0;
}


/*verify-box1 方法学开发与验证*/
.verify-box1{
	display: block;
	background: #fff;
	padding: 60px 30px 80px 30px;
	margin: 0;
	min-width: 1000px;
	box-sizing: border-box;
}
.verify-box1 .title{
	display: block;
	max-width: 1200px;
	text-align:left;
	padding: 0;
	margin: 0 auto 35px auto;
	color: #181818;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
	.verify-box1 .title{
		width: 100%;
	}
}
.verify-box1 .t-title{
	display: block;
	margin: 0 auto;
	max-width: 1200px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	background: #004098;
	color: #fff;
	font-size: 16px;
}
.verify-box1 .verify-table{
	max-width: 1200px;
	margin: 0 auto;
	border: 1px solid #EEF0F6;
}
@media screen and (max-width: 1280px) {
	.verify-box1 .verify-table{
		width: 100%;
	}
}
.verify-box1 .verify-table tr td{
	border: 1px solid #EEF0F6;
	color: #555A64;
	font-size: 16px;
	text-align: center;
	vertical-align: middle;
	padding: 10px 15px;
	line-height: 28px;
	width: 50%;
}
.verify-box1 .verify-table td.green{
	background: #D4EDEB ;
	color: #181818;
}
.verify-box1 .verify-table td.blue{
	background: #E3ECFF;
	color: #181818;
}
.verify-box1 .verify-table td.lblue{
	background: #004098;
	color: #fff;
}
.verify-box1 .verify-table>tbody>tr:nth-child(2n+1)>td{
	background: #fff;
}
.verify-box1 .verify-table>tbody>tr:nth-child(2n)>td{
	background: #fff;
}

/*nwztext-list 试剂内容2*/
.nwzcpx .nwzcpx_con .item>.nwztext-list{
	padding-top: 39px;
}
.nwztext-list{
	display: flex;
	padding: 55px  calc(50% - 600px);
	flex-wrap:wrap;
	min-width: 1000px;
	box-sizing: border-box;
	background: #fcfcfc;
}
.nwztext-list .list{
	margin:25px 50px 25px 0;
	width: 366px;
	height: 366px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
@media screen and (max-width: 1280px) {
.nwztext-list{
	padding: 55px 30px;
}
.nwztext-list .list{
	width:calc(33.33333333% - 20px);
	height: 280px;
	margin:15px 30px 15px 0;
}
}
@media screen and (max-width: 1020px) {
.nwztext-list{
	min-width: 100px;
	padding:15px 16px;
}
.nwztext-list .list{
	margin:8px 0;
	width: 100%;
	min-height: 100px;
	height: auto;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.nwztext-list .list img {
	height: auto !important;
}
.nwztext-list .list>.title{
	display: none;
}
.nwztext-list .list img {
	height: auto !important;
}
.nwztext-list .list>.zz-text{
	display: flex;
	padding: 20px 0;
}
.nwztext-list .list>.zz-text .title {
    padding: 8px 55px 8px 20px;
    font-size: 16px;
    line-height: 1.75;
}
.nwztext-list .list>.zz-text .text {
    margin: 5px 0 0 0;
    padding: 0 20px;
    font-size: 13px;
	line-height: 1.75;
}
.nwzcpx .nwzcpx_con .item>.nwztext-list {
    padding-top: 15px;
}
}
@media screen and (max-width: 1280px) {
.nwzcpx .nwzcpx_list{
	padding: 0 30px;
}
}
@media screen and (max-width: 1020px) {
.nwzcpx{
	min-width: 100px;
}
.nwzcpx .nwzcpx_list{
	padding: 0 16px;
}
.nwzcpx .nwzcpx_list>ul>li {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
		overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nwzcpx .nwzcpx_list>ul>li .icon {
    font-size: 16px;
    padding: 0 5px 0 0;
}
}
@media screen and (max-width: 1020px) {
.nwz-paging {
    padding: 0 0 20px 0;
}
.nwz-paging .pager-list{
	display: none;
}	
}
@media screen and (max-width: 1020px) {
body .nwzbody-box .ui-pagination-container{
	padding: 0;
}
body .ui-pagination-container{
	text-align: center;
	height: auto;
	padding: 0 0 20px 0;
}
body .ui-pagination-container .ui-pagination-page-item{
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	margin: 5px 3px;
	padding: 0 5px;
	font-size: 12px;
}
}
@media screen and (max-width: 1280px) {
	.serve-box1 .list{
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
	.serve-box1 .list .list-img img{
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
.nwz-listserch{
	padding: 30px 30px;
}
}
@media screen and (max-width: 1020px) {
.nwzbody-box .nwz-listserch{
	padding: 0 0 20px  0;
}
.nwz-listserch{
	min-width: 100px;
	padding: 20px 16px;
	flex-flow: column;
	align-items: flex-start;
}
.nwz-listserch .c-title {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    min-width: 100px;
	width: 100%;
}
.nwz-listserch .c-ser {
    width: 100%;
    height: 50px;
}
.nwz-listserch .c-ser>input {
    display: block;
	flex: 1;
    width: auto;
    height: 48px;
    line-height: 48px;
    padding: 0 10px;
	font-size: 14px;
}
.nwz-listserch .c-ser .btn,
.nwz-listserch .c-ser .btn:hover{	
	width: 48px;
	height: 48px;
	line-height: 48px;
}
.nwz-listserch .c-ser .btn i{
	line-height: 48px;
	font-size: 16px;
}
}
@media screen and (max-width: 1280px) {
.nwz-list1{
	padding: 28px 30px 40px;
}
}
@media screen and (max-width: 1020px) {
.nwz-list1 {
    padding: 20px 16px;
	min-width: 100px;
}
.nwzcpx .nwzcpx_con .item .nwz-list1 {
    min-width: 100px;
	padding: 20px 16px;
}
.nwzcpx .nwzcpx_con.details-cont .item .nwz-list1 {
	padding: 0;
}
.nwz-list1 .list {
    padding: 16px 0 16px 0;
}
.nwz-list1 .list.list-word,
.nwz-list1 .list.list-word:hover,
.nwz-list1 .list.list-word:focus,.nwz-list1 .list.list-word.active,
.nwz-list1 .list.list-pdf,
.nwz-list1 .list.list-pdf:hover,
.nwz-list1 .list.list-pdf:focus,.nwz-list1 .list.list-pdf.active,
.nwz-list1 .list.list-png,
.nwz-list1 .list.list-png:hover,
.nwz-list1 .list.list-png:focus,.nwz-list1 .list.list-png.active,
.nwz-list1 .list.list-jpg,
.nwz-list1 .list.list-jpg:hover,
.nwz-list1 .list.list-jpg:focus,.nwz-list1 .list.list-jpg.active{
	background-size: 20px;
	background-position-x: 0;
	background-position-y: 22px;
}
.nwz-list1 .list.list-word .list-text,
.nwz-list1 .list.list-pdf .list-text,
.nwz-list1 .list.list-png .list-text,
.nwz-list1 .list.list-jpg .list-text{
	padding-left: 30px;
}
.nwz-list1 .list .list-text .title{
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}
.nwz-list1 .list .list-text .text{
	margin: 6px 0 0 0;
	font-size: 12px;
	line-height: 1.5;
}
.nwz-list1 .list .list-btn{
	width: 140px;
}
.nwz-list1 .list .list-btn .btn{
	padding: 10px 0 10px 20px;
	margin: 0 0 0 10px;
	font-size: 12px;
	line-height: 1;
}
.nwz-list1 .list .list-btn .btn i{
	font-size: 16px;
	padding: 0 3px 0 0;
	left: 0;
	top: 6px;
}

}
@media screen and (max-width: 1280px) {
.nwz-form1 .form-box table{
	width: 100%;
}
}
@media screen and (max-width: 1020px) {
.nwz-form1{
	min-width: 100px;
}
.nwz-form1 .form-box{
	padding: 20px 16px;
}
.nwz-form1 .form-box table{
	width: 100%;
}
.nwz-form1 .form-box table td,.form-box table th{
	padding: 10px 5px;
	font-size: 14px;
}
.nwz-form1 .form-box table .title{
	margin: 0 0 10px 0;
}
.nwz-form1 .form-box table .title .blue{
	font-size: 18px;
}
.nwz-form1 .form-box table input{
	height: 42px;
	border: 1px solid rgba(153 153 153 / 40%);
	line-height: 40px;
	padding: 0 10px;
	font-size: 14px;
}
.nwz-form1 .form-box table textarea {
    padding: 10px 10px;
    font-size: 14px;
}
.nwz-form1 .form-box .btn{
	height: 42px;
	line-height: 40px;
	font-size: 14px;
}
}
@media screen and (max-width: 1280px) {
.honest-item .item-cont{
	width: 100%;
}
.honest-text{
	padding: 39px 30px 100px;
}
}
@media screen and (max-width: 1020px) {
.honest-box .box-title{
	padding: 20px 16px;
}
.honest-item .item-cont {
    padding: 20px;
}
.honest-item .item-cont .list{
	flex-flow: column;
	align-items: center;
}
.honest-item .item-cont .list .list-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.honest-item .item-cont .list .list-icon i {
    line-height: 40px;
    font-size: 20px;
}
.honest-item .item-cont .list .list-text {
    padding: 16px 0 0 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.honest-item .item-cont .list .list-text .title{
	font-size: 14px;
	line-height: 20px;
}
.honest-item .item-cont .list .list-text .text{
	margin: 5px 0 0 0;
	font-size: 12px;
	line-height: 18px;
}
.honest-item .item-cont:before {
    height: 60px;
    top: calc(50% - 30px);
}
.honest-text{
	padding: 20px 16px;
	font-size: 14px;
	line-height: 1.75;
}
}
@media screen and (max-width: 1280px) {
.details-cont{
	padding: 40px 30px 0 !important;
}
}
@media screen and (max-width: 1020px) {
.details-cont{
	padding: 20px 16px !important;
}
}
@media screen and (max-width: 1280px) {
	.webmap-box .map-list{
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
.contact-zb .zb-cont{
	width: 100%;
}
.contact-zb .zb-cont .zb-img{
	margin: 0 0 0 65px;
}
}
@media screen and (max-width: 1020px) {
.contact-zb {
    padding: 20px 16px;
}
.contact-zb .zb-cont{
	flex-flow: column-reverse;
	align-items: center;
	justify-content: center;
}
.contact-zb .zb-cont .zb-text {
    width: 100%;
}
.contact-zb .zb-cont .zb-text .title {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
    position: relative;
}
.contact-zb .zb-cont .zb-text .text-list{
	display: block;
}
.contact-zb .zb-cont .zb-text .text-list .list+.list{
	margin-top: 16px;
}
.contact-zb .zb-cont .zb-text .text-list .list .tit {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 18px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt {
    font-size: 12px;
    line-height: 16px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt+.tit {
    margin-top: 16px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt+.txt {
    margin-top: 6px;
}
.contact-zb .zb-cont .zb-img {
	width: 100%;
    margin: 0 0 16px 0;
}
}
@media screen and (max-width: 1280px) {
	.contact-map .map-conts .swiper{
		width: 100%;
		padding: 100px 30px 0 30px;
	}
}
@media screen and (max-width: 1280px) {
	.empty-1 .text{
		width: 100%;
	}
}
@media screen and (max-width: 1260px) {
.conus-box .conts{
	width: 100%;
}
}
@media screen and (max-width: 1020px) {
.conus-box {
    padding: 0 10px;
}
.conus-box .conts .list {
    width: calc(50% - 12px);
    height: auto;
    margin: 6px 6px;
    padding: 20px;
	overflow: hidden;
}
.conus-box .conts .list.list-2 {
    width: calc(100% - 16px);
}
.conus-box .conts .list .list-bg {
    height: 160px;
}
.conus-box .conts .list .title{
	margin: 0 0 12px 0;
	font-size: 16px;
	line-height: 20px;
}
.conus-box .conts .list .text{
	font-size: 14px;
	line-height: 16px;
}
.conus-box .conts .list .text .txt+.txt, .conus-box .conts .list .text p+p {
    margin-top: 8px;
}
.conus-box .conts .list .text .txt .clum {
    width: auto;
}
}
@media screen and (max-width: 1020px) {
.home-list1{
	width: 100%;
}
.home-list1 .list{	
	width: 100%;
	margin: 16px 0 0 0;
}
.home-list1 .list:nth-child(2){
	margin-top: 16px;
}
.home-list1 .list .list-img{
	height: auto;
}
.home-list1 .list .list-img img{
	height: auto;
}
.home-list1 .list .list-cont {
    padding: 16px;
}
.home-list1 .list .list-cont .title{
	font-size: 14px;
	line-height: 20px;
}
.home-list1 .list .list-cont .title a,
.home-list1 .list .list-cont .title a:visited,
.home-list1 .list .list-cont .title a:active{
	height: 20px;
}
}
@media screen and (max-width: 1020px) {
.home-list2{
	display: flex;
}
.home-list2 .list{
	width: calc(50% - 6px);
	margin: 12px 0 0 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.home-list2.new-event-list .list{
	width: 100%;
}
.home-list2 .list:nth-child(4n+1){
	margin-left: auto;
}
.home-list2 .list:nth-child(4n){
	margin-right: auto;
}
.home-list2 .list:nth-child(2n+1){
	margin-right: 6px;
}
.home-list2 .list:nth-child(2n){
	margin-left: 6px;
}
.home-list2.new-event-list .list:nth-child(2n+1){
	margin-right: 0;
}
.home-list2.new-event-list .list:nth-child(2n){
	margin-left: 0;
}
.home-list2 .list:nth-child(1),
.home-list2 .list:nth-child(2){
	margin-top:0px;
}
.home-list2 .list:nth-child(3),
.home-list2 .list:nth-child(4) {
	margin-top:12px;
}
.home-list2.new-event-list .list:nth-child(1){
	margin-top:0px;
}
.home-list2.new-event-list .list:nth-child(2),
.home-list2.new-event-list .list:nth-child(3),
.home-list2.new-event-list .list:nth-child(4) {
	margin-top:12px;
}
.home-list2 .list .list-img{
	height: auto;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}
.home-list2.new-event-list .list .list-img{
	height: auto;
}
.home-list2.new-event-list .list .list-img img{
	height: auto;
}
.home-list2 .list .list-cont{
	padding: 10px;
}
.white-bg .home-list2 .list .time{
	justify-content: space-between;
	font-size: 12px;
}
.white-bg .home-list2 .list .time .lab {
    padding: 0 2px;
    margin: 0 2px 0 0;
	font-size: 12px;
}
.home-list2 .list .list-cont .sm-title{
	white-space: normal;
	font-size: 12px;
	line-height: 18px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 36px;
}
.home-list2 .list .list-cont .sm-title a, 
.home-list2 .list .list-cont .sm-title a:hover, 
.home-list2 .list .list-cont .sm-title a:visited, 
.home-list2 .list .list-cont .sm-title a:active{
	display: block;
	white-space: normal;
	height: 36px;
	overflow: initial;	    
}
.home-list2 .list .list-cont .title{
	white-space: normal;
	font-size: 12px;
	line-height: 20px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 40px;
}
.home-list2 .list .list-cont .title a,
.home-list2 .list .list-cont .title a:hover,
.home-list2 .list .list-cont .title a:visited,
.home-list2 .list .list-cont .title a:active{
	display: block;
	white-space: normal;
	height: 40px;
	overflow: initial;	    
}
.home-list2 .list .list-cont .title-2{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 40px;
	font-size: 12px;
	line-height: 20px;
}
.home-list2.new-event-list .list .list-cont .title-2{
	-webkit-line-clamp: inherit;
	height: auto;
	font-size: 12px;
	line-height: 20px;
}
.home-list2 .list .list-cont .title-2 a,
.home-list2 .list .list-cont .title-2 a:hover,
.home-list2 .list .list-cont .title-2 a:visited,
.home-list2 .list .list-cont .title-2 a:active{
	height: auto;
}
.home-list2 .list .list-cont .text{
	display: none;
	height: auto;
	font-size: 12px;
	line-height: 20px;
	margin: 12px 0;
}
.home-list2.new-event-list .list .list-cont .text{
	-webkit-line-clamp: inherit;
	height: auto;
	font-size: 12px;
	line-height: 20px;
	margin: 12px 0;
}
.home-list2 .list .list-cont .btns{
	padding: 12px 0 0 0;
	margin: 12px 0 0 0;
}
.home-list2 .list .list-cont .btns .btn,
.home-list2 .list .list-cont .btns .btn:hover,
.home-list2 .list .list-cont .btns .btn:active,
.home-list2 .list .list-cont .btns .btn:visited{
	font-size: 12px;
	line-height: 20px;
	height: 20px;
}
}
@media screen and (max-width: 1020px) {
.home-list3 .list {
    display: block;
    width: calc((100% - 16px) / 2);
    margin: 16px 16px 0 0;
}	
.home-list3 .list:nth-child(3){
	margin-top: 16px;
}
.home-list3 .list:nth-child(3n){
	margin-right: 16px;
}
.home-list3 .list:nth-child(2n){
	margin-right: 0;
}
.home-list3 .list .list-img {
    height: 100px;
}
.home-list3.xwzx-list .list .list-img {
    height: 120px;
}
.home-list3 .list .list-cont {
    padding: 15px;
}
.home-list3 .list .list-cont .title {
    font-size: 14px;
    line-height: 20px;
    white-space: pre-wrap;
    text-overflow: inherit;
}
.home-list3 .list .list-cont .title a,
.home-list3 .list .list-cont .title a:visited,
.home-list3 .list .list-cont .title a:active{
	line-height: 20px;
	white-space: pre-wrap;
	text-overflow: inherit;
}
.home-list3 .list .list-cont .btns {
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
}
.home-list3 .list .list-cont .btns .btn,
.home-list3 .list .list-cont .btns .btn:hover,
.home-list3 .list .list-cont .btns .btn:active,
.home-list3 .list .list-cont .btns .btn:visited{
	height: 20px;
	font-size: 12px;
	line-height: 20px;
	background: url("/images/icon-right2.svg") no-repeat right center;
	background-size: 12px;
}
}
@media screen and (max-width: 1020px) {
.news-list .list {
    flex-direction: column;
    margin: 16px 0;
}
.news-list .list .limg{
	width: 100%;
	height: auto;
	border: 0;
	padding: 0;
}
.news-list .list .limg img{
	height: auto;
}
.news-list .list:hover .limg img{
	transform: scale(1);
}
.news-list .ltext {
	margin-left: 0;
	margin-top: 0;
	border-bottom: 0;
	background: #f8f8f8;
	padding: 16px;
	height: auto;
	min-height: 50px;
}
.news-list .ltext .title {
    padding-top: 0;
    font-size: 14px;
    line-height: 20px;
}
.news-list .ltext .text {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 0 8px 0;
    display: block;
    -webkit-box-orient: inherit;
}
.news-list .ltext .btn {
    margin: 16px 0 0 0;
}
}
@media screen and (max-width: 1020px) {
.news-detail .htitle {
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.news-detail .htitle .title {
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
}
.news-detail .htitle .time {
    text-align: left;
    margin: 0;
    line-height: 1.5;
    font-size: 12px;
    padding: 10px 0 0 0;
}	
}
@media screen and (max-width: 1020px) {
.sms-search{
	width: 100%;
	margin: 0 0 20px 0;
	flex-flow: column;
	align-items: flex-start;
}
.sms-search .title {
    font-size: 16px;
	height: 40px;
	line-height: 40px;
	min-width: 100px;
	width: 100%;
	padding: 0;
	margin: 0;
    border-bottom: 0;
	font-weight: bold;
}
.sms-search .c-ser {
	display: flex;
    background: #F8FAFB;
	border: 1px solid #E4E4E4;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
}
.sms-search .c-ser input {
    display: block;
	flex: 1;
	width: auto;
	height: 48px;
	line-height: 48px;
	padding: 0 10px;
	font-size: 14px;
	border: 0;
	background: transparent;
}
.sms-search .c-ser .btn,
.sms-search .c-ser .btn:hover,
.sms-search .c-ser .btn:visited,
.sms-search .c-ser .btn:active{
	position: inherit;
	display: block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	padding: 0;
	margin: 0;
	text-align: center;
	color: #004098;
	cursor: pointer;
	border: 0;
}
.sms-search .c-ser .btn i{
	line-height: 48px;
	font-size: 16px;
	color: #004098;
}	
}
@media screen and (max-width: 1020px) {
.sms-list .list{
	width: calc((100% - 16px) / 2);
	height: auto;
	border-radius: 4px;
	background: #F9FAFC;
	margin: 16px 16px 0 0;
	padding: 15px;
}
.sms-list .list:nth-child(1),
.sms-list .list:nth-child(2){
	margin-top: 0;
}
.sms-list .list:nth-child(4n){
	margin-right: 16px;
}
.sms-list .list:nth-child(2n){
	margin-right: 0;
}
.sms-list .list .title {
    font-size: 14px;
    line-height: 20px;
}
.sms-list .list .l-btn {
    flex-flow: column;
	margin: 15px 0 0 0;
}
.sms-list .list .l-btn .btn,
.sms-list .list .l-btn .btn:visited,
.sms-list .list .l-btn .btn:active{
	width: 100%;
}
.sms-list .list .l-btn .btn+.btn {
    margin-left: 0;
	margin-top: 10px;
}
.sms-list+#pagination1{
	margin-top: 20px;
}
}
@media screen and (max-width: 1020px) {
.cpxq-flex {
    flex-flow: column;
}
.cpxq-flex .fleft {
    width: 100%;
}
.cpxq-flex .fleft .img-content .big-img{
	height: 400px;
}
.cpxq-flex .fleft+.fright {
    width: 100%;
    padding-left: 0px;
	padding-top: 16px;
}
.cpxq-flex .fright .title{
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 22px;
}
.cpxq-flex .fright .text {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
}
.cpxq-flex .fright .othert {
    margin: 15px 0 0 0;
}
.cpxq-flex .fright .othert .tlist {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
}
.cpxq-flex .fright .othert .tlist .lab{
	padding: 0 5px;
	font-size: 13px;
	line-height: 18px;
	line-height: 20px;
	margin: 0 5px 0 0;
}
.cpxq-flex .fright .othert .tbtn {
    margin: 15px 0 0 0;
}
}
@media screen and (max-width: 1020px) {
.phone-header{
    display: flex;
}
.phone-header .btns .more-searchs .search-list .associate-list .li-lis{
    display: block;
    color: #495770;
    font-size: 12px;
    line-height: 20px;
    padding: 6px  0;
}
}
@media screen and (max-width: 1260px) {
	.ej-menu .ej-menu-cont{
		width: 100%;
		padding: 0 0 0 30px;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 1260px) {
	.ej-menu .ej-menu-cont .ej-rig{
		padding: 42px 0 30px 30px;
	}
}
@media screen and (max-width: 1260px) {
	.ej-menu .ej-menu-cont .ej-rig .list{
		margin: 0 30PX 15px 14px;
	}
}
@media (min-width: 801px) and (max-width: 1100px) {
	.ej-menu .ej-menu-cont .ej-rig .list {
		width: calc(50% - 44px);
	}
}
@media screen and (max-width: 800px) {
	.ej-menu .ej-menu-cont .ej-rig .list {
		width: calc(100% - 44px);
	}
}
@media screen and (max-width: 1280px) {
.banner .banner-box{
	height: 440px;
	padding-top: 100px;
	padding-left: 30px;
	padding-right: 30px;
}
.banner.min-banner .banner-box{
	height: 305px;
}
.banner .banner-box.reagent-cpzx1 .banner-text{
	width: calc(100% - 32px);
	left: 16px;
}
.banner .banner-box .nwz-breadcrumb{
	margin: 0 0 20px 0!important;
	font-size: 18px !important;
	line-height: 20px !important;
}
.nwz-breadcrumb>a{
	line-height: 20px !important;
}
.nwz-breadcrumb>i {
    font-size: 18px !important;
    line-height: 20px !important;
}
.banner .banner-box .title{
	font-size: 22px !important;
	line-height: 36px !important;
	max-height: 90px !important;
}
.banner .banner-box .text {
	font-size: 13px !important;
	line-height: 22px !important;
	max-height: 44px !important;
}
.banner .banner-box .text.text-gg {
	max-height: 66px !important;
}
.banner .banner-box .ban-btn{
	margin: 20px 0 0 0 !important;
}
.banner .banner-box .ban-btn .btn,
.banner .banner-box .ban-btn .btn:hover {
	width: 80px !important;
	height: 30px !important;
	line-height: 30px !important;
	font-size: 13px !important;
}
}

@media (min-width: 1281px) and (max-width: 1536px) {
.banner .banner-box{
	height: 550px;
	padding-top: 110px;
}
.banner.min-banner .banner-box{
	height: 380px;
}
.banner .banner-box .nwz-breadcrumb{
	margin: 0 0 20px 0!important;
	font-size: 26px !important;
	line-height: 26px !important;
}
.nwz-breadcrumb>a{
	line-height: 26px !important;
}
.nwz-breadcrumb>i {
    font-size: 26px !important;
    line-height: 26px !important;
}
.banner .banner-box .title{
	font-size: 30px !important;
	line-height: 40px !important;
	max-height: 90px !important;
}

.banner .banner-box .text {
	font-size: 16px !important;
	line-height: 30px !important;
	max-height: 60px !important;
}
.banner .banner-box .text.text-gg {
	max-height: 90px !important;
}
.banner .banner-box .ban-btn{
	margin: 25px 0 0 0 !important;
}
.banner .banner-box .ban-btn .btn,
.banner .banner-box .ban-btn .btn:hover {
	height: 36px !important;
	line-height: 36px !important;
	font-size: 16px !important;
}
}
@media screen and (max-width: 1280px) {
	.banner .swiper {
		height: 440px !important;
	}
}
@media (min-width: 1281px) and (max-width: 1536px) {
	.banner .swiper {
		height: 550px !important;
	}
}
@media screen and (max-width: 1020px) {
.banner {
    min-width: 100px;
}
.banner .swiper {
    height: 200px !important; 
    min-width: 100px;
}
.banner .banner-box.reagent-cpzx1 {
    height: 140px;
    padding: 0;
}
.banner .banner-box.reagent-cpzx1 .banner-text{
	height: 140px;
}
.banner .banner-box {
    height: 140px;
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
}
.banner .banner-box .nwz-breadcrumb {
    margin: 0 0 16px 0!important;
    font-size: 14px !important;
    line-height: 20px !important;
	flex-wrap: wrap;
}
.banner .banner-box .title{
	font-size:16px;
	line-height: 22px;
	max-height: 80px;
}
.banner .banner-box .text{
	margin: 5px 0 0 0;
	font-size: 14px;
	line-height: 20px;
	max-height: 40px;
}
.banner .banner-box .text.text-gg{
	margin-top: 16px;
}
}
@media screen and (max-width: 1020px) {
.banner .swiper-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
	bottom: 16px;
}
.banner .swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,5px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,5px));
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
	height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,5px));
}
}
@media screen and (max-width: 900px) {
.suspend-btn{
	display: none;
}
}
@media screen and (max-width: 1020px) {
.nwzbody-box{
	padding: 20px 16px;
	min-width: 100px;
}
.box-title{
	padding: 20px 16px;
	min-width: 100px;
}
.nwzbody-box .box-title{
	padding: 0 0 20px 0;
	min-width: 100px;
}
.box-title .title-chinese{
	font-size: 18px;
	line-height: 28px;
}
.box-title .title-english{
	font-size: 16px;
	line-height: 20px;
	margin: 5px 0 0 0;
}
}
@media screen and (max-width: 1280px) {
	.nwzbody-box .box-body .tab1{
		width: 100%;
		box-sizing: border-box;
		padding: 62px 30px;
	}
}
@media screen and (max-width: 1280px) {
	.tab1 .tab_list{
		width: 412px;
		padding-right: 63px;
	}
}
@media (min-width: 1301px) and (max-width: 1600px) {
	.nwzbody-box .box-body .swiper-xp{
		padding: 0 15px;
	}
}
@media screen and (max-width: 1300px) {
	.nwzbody-box .box-body .swiper-xp{
		padding: 0;
	}
}
@media screen and (max-width: 1280px) {
	.swiper-xp .swiper-slide .xp-list{
		width: 100%;
		padding: 0 30px;
	}
	body .swiper-button-prev,
	body .swiper-rtl .swiper-button-next{
		left: 0;
	}
	body .swiper-button-next,
	body .swiper-rtl .swiper-button-prev{
		right: 0;
	}
}
@media screen and (max-width: 1280px) {
	.yfsl-box{
		width: 100%;
		padding: 0 30px;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 1280px) {
.wzdz-box{
	width: 100%;
	min-width: 1000px;
}
}
@media screen and (max-width: 1020px) {
.wzdz-box{
	width: 100%;
	min-width: 100px;
	padding: 20px 16px;
	display: block;
}
.wzdz-box .wzdz-list+.wzdz-list{
	margin-top: 20px;
}
.wzdz-box .wzdz-list .title {
    margin: 0 0 10px 0;
}
.wzdz-box .wzdz-list .text p {
    flex-wrap: wrap;
}
}
@media screen and (max-width: 1280px) {
.nwz-footer{
	padding: 23px  25px;
}
}
@media screen and (max-width: 1020px) {
.nwz-footer{
	min-width: 100px;
	padding: 20px 16px;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}	
.nwz-footer .list {
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
}
@media screen and (max-width: 1280px) {
	.cook-popout{
		padding: 20px 30px;
	}
}
@media screen and (max-width: 1280px) {
.nwztext-box1{
	padding: 70px 30px;
}
}
@media screen and (max-width: 1020px) {
.nwztext-box1{
	padding: 20px 16px;
	min-width: 100px;
	font-size: 14px;
	line-height: 1.75;
}	
}
@media screen and (max-width: 1280px) {
.nwztext-box2 .conts{
	width: 100%;
	padding: 0 30px;
}
}
@media screen and (max-width: 1020px) {
.nwztext-box2{
	padding: 20px 16px;
	min-width: 100px;
	font-size: 14px;
	line-height: 1.75;
}
.nwztext-box2 .conts{
	padding: 0;
}
}
@media screen and (max-width: 1280px) {
	.nwztext-box3 .conts{
		width: 100%;
		padding: 0 30px;
	}
}
@media screen and (max-width: 1280px) {
	.nwztext-box4 .conts{
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
	.immune-box1 .conts{
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
	.verify-box1 .title{
		width: 100%;
	}
}
@media screen and (max-width: 1280px) {
	.verify-box1 .verify-table{
		width: 100%;
	}
}
.nwztext-list .list:nth-child(3n){
	margin-right: 0;
}
.nwztext-list .list img{
	display: block;
	width: 100%;
	height: 100%;
}
.nwztext-list .list:hover>.title{
	display: none;
}
.nwztext-list .list>.title{
	position: absolute;
	display: flex;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 8px 15px;
	box-sizing: border-box;
	color: #fff;
	font-size: 20px;
	margin: 0;
	line-height: 1.75;
	background:linear-gradient( 0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.005) 100%);
	height: 100%;
	align-items: flex-end;
}
.nwztext-list .list:hover>.zz-text{
	display: flex;
}
.nwztext-list .list>.zz-text{
	display: none;
	flex-direction:column-reverse;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #000000 0%, rgba(0,0,0,0.5) 49%, rgba(0,0,0,0.01) 100%);
	transition: bottom 0.3s;
	box-sizing: border-box;
	padding: 15px 0;
}
.nwztext-list .list>.zz-text .title{
	display: block;
	margin: 0;
	padding: 8px 55px 8px 15px;
	box-sizing: border-box;
	color: #fff;
	font-size: 20px;
	margin: 0;
	line-height: 1.45;
	position: relative;
}
.nwztext-list .list>.zz-text .title .title{
	display: inline;
	padding: 0;
}
.nwztext-list .list>.zz-text .title .more-btn{
	position: absolute;
	right: 15px;
	top: calc(50% - 15px);
	margin-left: 10px;
}
.nwztext-list .list>.zz-text .title .more-btn i{
	display: block;
	height: 30px;
	background: url("/images/icon-r2.svg") no-repeat center;
	background-size: 30px;
	color: transparent;
	width: 30px;
}
.nwztext-list .list>.zz-text .text{
	display: block;
	margin: 5px 0 0 0;
	padding: 0 15px;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
}
@media screen and (max-width: 1280px) {
.nwztext-list{
	padding: 55px 30px;
}
.nwztext-list .list{
	width:calc(33.33333333% - 20px);
	height: 280px;
	margin:15px 30px 15px 0;
}
}
@media screen and (max-width: 1020px) {
.nwztext-list{
	min-width: 100px;
	padding:15px 16px;
}
.nwztext-list .list{
	margin:8px 0;
	width: 100%;
	min-height: 100px;
	height: auto;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.nwztext-list .list>.title{
	display: none;
}
.nwztext-list .list>.zz-text{
	display: flex;
	padding: 20px 0;
}
.nwztext-list .list>.zz-text .title {
    padding: 8px 55px 8px 20px;
    font-size: 16px;
    line-height: 1.75;
}
.nwztext-list .list>.zz-text .text {
    margin: 5px 0 0 0;
    padding: 0 20px;
    font-size: 13px;
	line-height: 1.75;
}
.nwzcpx .nwzcpx_con .item>.nwztext-list {
    padding-top: 15px;
}
}

/*nwzcpx 产品线*/
.nwzcpx{
	min-width: 1000px;
	background: #fcfcfc;
}
.nwzcpx .nwzcpx_list{
	display: block;
	margin: 0;
	padding: 0 calc(50% - 600px);
	background: #fff;
	border-bottom: 1px solid #ddd;
}
.nwzcpx .nwzcpx_list>ul{
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: space-around;
}
.nwzcpx .nwzcpx_list>ul>li{
	display: block;
	height: 100px;
	line-height: 100px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 20px;
	color: #666;
	position: relative;
	cursor: pointer;
}
.nwzcpx .nwzcpx_list>ul>li.current{
	color: #181818;
}
.nwzcpx .nwzcpx_list>ul>li.current:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	display: block;
	width: 100%;
	height: 4px;
	background: #004098;
}
.nwzcpx .nwzcpx_list>ul>li .icon{
	display: none;
	font-size: 36px;
	padding: 0 5px 0 0;
	float: left;
	color: #004098;
}
.nwzcpx .nwzcpx_list>ul>li.current .icon{
	display: inline;
}
.nwzcpx .nwzcpx_con{
	display: block;
	margin: 0;
	padding: 0;
	min-height: 600px;
	background: #fcfcfc !important;
}
.nwzcpx .nwzcpx_con.details-cont{
	background: #fff !important;
}
.nwzcpx .nwzcpx_con .item{
	display: none;
}
.nwzcpx .nwzcpx_con .item .nwztext-list{
	border: 0;
}
.nwzcpx .nwzcpx_con .item .nwztext-list .list:hover{
	box-shadow: 0px 10px 16px 4px rgb(2 33 77 / 4%);
}
@media screen and (max-width: 1280px) {
.nwzcpx .nwzcpx_list{
	padding: 0 30px;
}
}
@media screen and (max-width: 1020px) {
.nwzcpx{
	min-width: 100px;
}
.nwzcpx .nwzcpx_con{
	min-height: 150px;
}
.nwzcpx .nwzcpx_list{
	padding: 0 16px;
}
.nwzcpx .nwzcpx_list>ul>li {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}
.nwzcpx .nwzcpx_list>ul>li .icon {
    font-size: 16px;
    padding: 0 5px 0 0;
}
}

/*nwz-paging 分页*/
.nwz-list1 .nwz-paging{
	padding: 40px 0;
}
.nwz-paging{
	display: flex;
	justify-content: center;
	padding: 0 0 80px 0;
}
.nwz-paging .btn-prev,.nwz-paging .btn-next{
	display: block;
	width: 50px;
	height: 50px;
	line-height: 46px;
	text-align: center;
	background: linear-gradient(45deg, #F4F5FA 0%, #FFFFFF 100%);
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border-radius: 2px;
	border: 2px solid #fff;
	margin: 0 5px;
	color: #333;
	font-size: 18px;
	cursor: pointer;
}
.nwz-paging .btn-prev:hover,.nwz-paging .btn-next:hover{
	color: #004098;
}
.nwz-paging .btn-prev:disabled,.nwz-paging .btn-next:hover:disabled{
	color: #ddd;
	cursor: no-drop;
}
.nwz-paging>select{
	display: block;
	min-width: 50px;
	height: 50px;
	line-height: 46px;
	text-align: center;
	background: linear-gradient(45deg, #F4F5FA 0%, #FFFFFF 100%);
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border-radius: 2px;
	border: 2px solid #fff;
	margin: 0 5px;
	padding: 0 27px;
	color: #555A64;
	font-size: 18px;
	outline: none;
}
.nwz-paging .pager-list{
	display: flex;
	margin: 0;
	padding: 0;
}
.nwz-paging .pager-list .list{
	display: block;
	width: 50px;
	height: 50px;
	line-height: 46px;
	box-sizing: border-box;
	text-align: center;
	margin: 0 5px;
	padding: 0;
	list-style: none;
	background: linear-gradient(45deg, #F4F5FA 0%, #FFFFFF 100%);
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border-radius: 2px;
	border: 2px solid #fff;
	color: #555A64;
	font-size: 18px;
	cursor: pointer;
}
.nwz-paging .pager-list .list:hover{
	color: #004098;
}
.nwz-paging .pager-list .list.active,
.nwz-paging .pager-list .list.active:hover{
	border-color: #004098;
	background: #004098;
	color: #fff;
}
@media screen and (max-width: 1020px) {
.nwz-paging {
    padding: 0 0 20px 0;
}
.nwz-paging .pager-list{
	display: none;
}	
}

/*ui-pagination-container 分页组件*/
body .ui-pagination-container{
	text-align: center;
	height: auto;
	padding: 0 0 80px 0;
}
body .ui-pagination-container .ui-pagination-page-item{
	min-width: 50px;
	height: 50px;
	display: inline-block;
	background: linear-gradient( 45deg, #F4F5FA 0%, #FFFFFF 100%);
	box-shadow: 0px 10px 16px 4px rgb(2 33 77 / 4%);
	border-radius: 2px;
	border: 2px solid #fff;
	color: #555A64;
	padding: 0 10px;
	text-align: center;
	line-height: 46px;
	box-sizing: border-box;
	font-size: 18px;
}
body .ui-pagination-container .ui-pagination-page-item:hover{
	color: #004098;
	border: 2px solid #fff;
}
body .ui-pagination-container .ui-pagination-page-item.active,
body .ui-pagination-container .ui-pagination-page-item.active:hover{
	border-color: #004098;
	background: #004098;
	color: #fff;
}
body .ui-pagination-container .ui-pagination-page-item.disabled,
body .ui-pagination-container .ui-pagination-page-item.disabled:hover{
	color: #ddd;
	cursor: no-drop;
}
body .ui-pagination-container select{
	display: inline-block;
	min-width: 50px;
	height: 50px;
	line-height: 46px;
	text-align: center;
	background: linear-gradient(45deg, #F4F5FA 0%, #FFFFFF 100%);
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border-radius: 2px;
	border: 2px solid #fff;
	margin: 0 5px;
	padding: 0 27px;
	color: #555A64;
	font-size: 18px;
	outline: none;
}
@media screen and (max-width: 1020px) {
body .nwzbody-box .ui-pagination-container{
	padding: 0;
}
body .ui-pagination-container{
	text-align: center;
	height: auto;
	padding: 0 0 20px 0;
}
body .ui-pagination-container .ui-pagination-page-item{
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	margin: 5px 3px;
	padding: 0 5px;
	font-size: 12px;
}
}

/*nwz-breadcrumb 面包屑*/
.nwz-breadcrumb{
	display: flex;
	color: rgba(255,255,255,.95);
	font-size: 30px;
	line-height: 30px;
	margin: 0 0 50px 0;
	padding: 0;
}
.nwz-breadcrumb>a{
	display: block;
	line-height: 30px;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
}
.nwz-breadcrumb>a:hover,.nwz-breadcrumb>a:visited,.nwz-breadcrumb>a:active{
	color: #fff;
}
.nwz-breadcrumb>i{
	display: block;
	font-size: 20px;
	line-height: 30px;
	padding: 0 5px;
	margin: 0;
}
.nwz-breadcrumb>span{
	display: block;
	padding: 0;
	margin: 0;
}

/*serve-box1服务*/
.serve-box1{
	display: block;
	padding: 0;
	box-sizing: border-box;
	min-width: 1000px;
	box-sizing: border-box;
	background: #fcfcfc;
}
.serve-box1 .list{
	display: table;
	table-layout: fixed;
	width: 1260px;
	padding: 60px 0;
	margin: 0 auto;
}
@media screen and (max-width: 1280px) {
	.serve-box1 .list{
		width: 100%;
	}
}
.serve-box1 .list .list-img{
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	padding: 0 30px;
}
.serve-box1 .list .list-text+.list-img{
	text-align: left;
}
.serve-box1 .list .list-img img{
	width: 570px;
	height: auto;
	display: inline-block;
}
@media screen and (max-width: 1280px) {
	.serve-box1 .list .list-img img{
		width: 100%;
	}
}
.serve-box1 .list .list-text{
	display: table-cell;
	vertical-align: middle;
	padding: 0 30px;
}
.serve-box1 .list .list-text .title{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 32px;
	color: #000;
	line-height: 1.75;
	text-align: right;
}
.serve-box1 .list .list-img+.list-text .title{
	text-align: left;
}
.serve-box1 .list .list-text .text{
	display: block;
	margin: 20px 0 0 0;
	padding: 0;
	font-size: 16px;
	color: #636770 ;
	line-height: 1.75;
	text-align: right;
}
.serve-box1 .list .list-img+.list-text .text{
	text-align: left;
}
.serve-box1 .list .list-text .btn{
	display: block;
	margin: 32px 0 0 0;
	padding: 0;
	text-align: right;
}
.serve-box1 .list .list-img+.list-text .btn{
	text-align: left;
}
.serve-box1 .list .list-text .btn .more-btn,
.serve-box1 .list .list-text .btn .more-btn:hover{
	display: inline-block;
	width: 128px;
	height: 34px;
	line-height: 34px;
	background: #004098;
	text-align: center;
	font-size: 16px;
	color: #fff;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	border: 0;
	cursor: pointer;
}
.serve-box1 .list .list-text .btn .more-btn i{
	padding: 0 0 0 4px;
	transition: 0.5s;
	display: inline-block;
	width: 16px;
	height: 8px;
}
.serve-box1 .list .list-text .btn .more-btn i:before{
	content: "";
	background: url("/images/icon-r2.svg") no-repeat center;
	background-size: 16px;
	display: block;
	width: 16px;
	height: 8px;
}
.serve-box1 .list .list-text .btn .more-btn:hover i{
	padding: 0 0 0 12px;
}

/*nwz-listserch 列表搜索*/
.nwz-listserch{
	display: flex;
	padding: 30px calc(50% - 600px);
	justify-content: space-between;
	background: #fff;
	align-items:center;
	box-sizing: border-box;
	min-width: 1000px;
}
.nwz-listserch .c-title{
	display: block;
	color: #181818;
	font-size: 20px;
	height: 100px;
	line-height: 100px;
	min-width: 114px;
	font-weight: bold;
}
.nwz-listserch .c-ser{
	display: flex;
	margin:0;
	width: 428px;
	height: 61px;
	background: #F8FAFB;
	border: 1px solid #E4E4E4;
	box-sizing: border-box;
}
.nwz-listserch .c-ser>input{
	display: block;
	width: 380px;
	border: 0;
	background: transparent;
	outline: none;
	color: #333;
	font-size: 16px;
	height: 59px;
	line-height: 59px;
	padding: 0 15px;
	box-sizing: border-box;
}
.nwz-listserch .c-ser>input::-webkit-input-placeholder{
	color: #5E6B81;
}
.nwz-listserch .c-ser>input::-moz-input-placeholder{
	color: #5E6B81;
}
.nwz-listserch .c-ser>input::-ms-input-placeholder{
	color: #5E6B81;
}
.nwz-listserch .c-ser .btn,
.nwz-listserch .c-ser .btn:hover{
	display: block;
	padding: 0;
	margin: 0;
	width: 46px;
	height: 59px;
	line-height: 59px;
	text-align: center;
	color: #004098;
	cursor: pointer;
	border: 0;
}
.nwz-listserch .c-ser .btn i{
	line-height: 59px;
	font-size: 16px;
}
@media screen and (max-width: 1280px) {
.nwz-listserch{
	padding: 30px 30px;
}
}
@media screen and (max-width: 1020px) {
.nwzbody-box .nwz-listserch{
	padding: 0 0 20px  0;
}
.nwz-listserch{
	min-width: 100px;
	padding: 20px 16px;
	flex-flow: column;
	align-items: flex-start;
}
.nwz-listserch .c-title {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    min-width: 100px;
	width: 100%;
}
.nwz-listserch .c-ser {
    width: 100%;
    height: 50px;
}
.nwz-listserch .c-ser>input {
    display: block;
	flex: 1;
    width: auto;
    height: 48px;
    line-height: 48px;
    padding: 0 10px;
	font-size: 14px;
}
.nwz-listserch .c-ser .btn,
.nwz-listserch .c-ser .btn:hover{	
	width: 48px;
	height: 48px;
	line-height: 48px;
}
.nwz-listserch .c-ser .btn i{
	line-height: 48px;
	font-size: 16px;
}
}

/*nwz-list1 列表1*/
.nwzcpx .nwz-list1{
	border-bottom: 0;
}
.nwzcpx .nwzcpx_con .item .nwz-list1{
	width: 100%;
	min-width: 1000px;
	background: #fff;
}
.nwz-list1{
	display: block;
	padding: 60px calc(50% - 600px) 40px;
	min-height: 700px;
	box-sizing: border-box;
	min-width: 1000px;
	background: #fcfcfc;
}
.nwz-list1 .list{
	display: flex;
	justify-content: space-between;
	padding: 40px 50px 48px 50px;
	border-bottom: 1px solid #E4E4E4;
	align-items:center;
}
.nwz-list1 .list:hover{
	background: #EBF1F6;
}
.nwz-list1 .list:focus,.nwz-list1 .list.active{
	background: #004098;
}
.nwz-list1 .list:focus .list-text .title,.nwz-list1 .list.active .list-text .title{
	color: #fff !important;
}
.nwz-list1 .list:focus .list-btn .btn,.nwz-list1 .list.active .list-btn .btn,
.nwz-list1 .list:focus .list-btn .btn:hover,.nwz-list1 .list.active .list-btn .btn:hover{
	color: #fff !important;
	text-decoration: underline;
}
.nwz-list1 .list.list-word{
	background: url("/images/icon-word.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-word:hover{
	background:#EBF1F6 url("/images/icon-word.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-word:focus,.nwz-list1 .list.list-word.active{
	background:#004098 url("/images/icon-word.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-pdf{
	background: url("/images/icon-pdf.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-pdf:hover{
	background:#EBF1F6 url("/images/icon-pdf.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-pdf:focus,.nwz-list1 .list.list-pdf.active{
	background:#004098 url("/images/icon-pdf.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-png{
	background: url("/images/icon-png.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-png:hover{
	background:#EBF1F6 url("/images/icon-png.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-png:focus,.nwz-list1 .list.list-png.active{
	background:#004098 url("/images/icon-png.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-jpg{
	background: url("/images/icon-jpg.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-jpg:hover{
	background:#EBF1F6 url("/images/icon-jpg.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-jpg:focus,.nwz-list1 .list.list-jpg.active{
	background:#004098 url("/images/icon-jpg.svg") no-repeat 20px 43px;
	background-size: 40px;
}
.nwz-list1 .list.list-word .list-text,
.nwz-list1 .list.list-pdf .list-text,
.nwz-list1 .list.list-png .list-text,
.nwz-list1 .list.list-jpg .list-text{
	padding-left: 34px;
}
.nwz-list1 .list.list-word .list-text .title,
.nwz-list1 .list.list-pdf .list-text .title,
.nwz-list1 .list.list-png .list-text .title,
.nwz-list1 .list.list-jpg .list-text .title{
	color: #181818;
}
.nwz-list1 .list .list-text{
	display: block;
	flex: 1;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.nwz-list1 .list .list-text .title{
	display: block;
	margin: 0;
	padding: 0;
	color: #004098;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
}
.nwz-list1 .list .list-text .text{
	display: block;
	margin: 12px 0 0 0;
	padding: 0;
	color: #555A64;
	font-size: 16px;
	line-height: 1.5;
}
.nwz-list1 .list:focus .list-text .text,.nwz-list1 .list.active .list-text .text{
	color: rgba(255 255 255 / 50%);
}
.nwz-list1 .list .list-btn{
	display: block;
	width: 200px;
	text-align: right;
	margin: 0;
	padding: 0;
}
.nwz-list1 .list .list-btn .btn{
	display: inline-block;
	padding: 15px 0 15px 30px;
	margin: 0 0 0 15px;
	color: #004098;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}
.nwz-list1 .list:hover .list-btn .btn{
	text-decoration: underline;
}
.nwz-list1 .list .list-btn .btn:hover{
	color: #004098;
}
.nwz-list1 .list .list-btn .btn i{
	font-size: 22px;
	line-height: 1;
	padding: 0 5px 0 0;
	position: absolute;
	left: 0;
	top: 10px;
}
@media screen and (max-width: 1280px) {
.nwz-list1{
	padding: 28px 30px 40px;
}
}
@media screen and (max-width: 1020px) {
.nwz-list1 {
    padding: 20px 16px;
	min-width: 100px;
}
.nwzcpx .nwzcpx_con .item .nwz-list1 {
    min-width: 100px;
	padding: 20px 16px;
}
.nwzcpx .nwzcpx_con.details-cont .item .nwz-list1 {
	padding: 0;
}
.nwz-list1 .list {
    padding: 16px 0 16px 0;
}
.nwz-list1 .list.list-word,
.nwz-list1 .list.list-word:hover,
.nwz-list1 .list.list-word:focus,.nwz-list1 .list.list-word.active,
.nwz-list1 .list.list-pdf,
.nwz-list1 .list.list-pdf:hover,
.nwz-list1 .list.list-pdf:focus,.nwz-list1 .list.list-pdf.active,
.nwz-list1 .list.list-png,
.nwz-list1 .list.list-png:hover,
.nwz-list1 .list.list-png:focus,.nwz-list1 .list.list-png.active,
.nwz-list1 .list.list-jpg,
.nwz-list1 .list.list-jpg:hover,
.nwz-list1 .list.list-jpg:focus,.nwz-list1 .list.list-jpg.active{
	background-size: 20px;
	background-position-x: 0;
	background-position-y: 22px;
}
.nwz-list1 .list.list-word .list-text,
.nwz-list1 .list.list-pdf .list-text,
.nwz-list1 .list.list-png .list-text,
.nwz-list1 .list.list-jpg .list-text{
	padding-left: 30px;
}
.nwz-list1 .list .list-text .title{
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}
.nwz-list1 .list .list-text .text{
	margin: 6px 0 0 0;
	font-size: 12px;
	line-height: 1.5;
}
.nwz-list1 .list .list-btn{
	width: 140px;
}
.nwz-list1 .list .list-btn .btn{
	padding: 10px 0 10px 20px;
	margin: 0 0 0 10px;
	font-size: 12px;
	line-height: 1;
}
.nwz-list1 .list .list-btn .btn i{
	font-size: 16px;
	padding: 0 3px 0 0;
	left: 0;
	top: 6px;
}

}

/*nwz-form1 询价表单*/
.nwz-form1{
	display: block;
	margin: 0;
	padding: 0;
	min-width: 1000px;
}
.nwz-form1 .form-box{
	padding: 60px 16px;
	background: #fcfcfc;
}
.nwz-form1 .form-box table{
	width: 1200px;
	border: 0;
	margin: 0 auto;
	box-sizing: border-box;
}
.nwz-form1 .form-box table td,.form-box table th{
	border: 0;
	padding: 19px 82px;
	color: #666;
	font-size: 16px;
}
.nwz-form1 .form-box table tr>td:first-child,.form-box table tr>th:first-child{
	padding-left: 0;
}
.nwz-form1 .form-box table tr>td:last-child,.form-box table tr>th:last-child{
	padding-right: 0;
}
.nwz-form1 .form-box table .center{
	text-align: center;
}
.nwz-form1 .form-box table .title{
	display: block;
	margin: 0 0 16px 0;
	padding: 0;
	line-height: 1;
}
.nwz-form1 .form-box table .title .blue{
	padding: 0 0 0 5px;
	font-size: 20px;
}
.nwz-form1 .form-box table input{
	display: block;
	width: 100%;
	height: 66px;
	border: 1px solid rgba(153 153 153 / 40%);
	line-height: 64px;
	padding: 0 15px;
	box-sizing: border-box;
	font-size: 16px;
	color: #333;
	outline: none;
	border-radius: 0;
	background: transparent;
}
.nwz-form1 .form-box table input::-webkit-input-placeholder{
	color: rgba(153 153 153 / 40%);
}
.nwz-form1 .form-box table input::-moz-input-placeholder{
	color: rgba(153 153 153 / 40%);
}
.nwz-form1 .form-box table input::-ms-input-placeholder{
	color: rgba(153 153 153 / 40%);
}
.nwz-form1 .form-box table select{
	display: block;
	width: 100%;
	height: 66px;
	border: 1px solid rgba(153 153 153 / 40%);
	line-height: 64px;
	padding: 0 15px;
	box-sizing: border-box;
	font-size: 16px;
	color: #333;
	outline: none;
	border-radius: 0;
	background: transparent;
}
.nwz-form1 .form-box table textarea{
	display: block;
	width: 100%;
	min-height: 160px;
	border: 1px solid rgba(153 153 153 / 40%);
	line-height: 1.5;
	padding: 10px 15px;
	box-sizing: border-box;
	font-size: 16px;
	color: #333;
	outline: none;
	border-radius: 0;
	background: transparent;
}
.nwz-form1 .form-box table input:focus,
.nwz-form1 .form-box table select:focus,
.nwz-form1 .form-box table textarea:focus{
	color: rgba(0 0 0 / 80%);
	background: #fbfcfd;
	border: 1px solid rgba(153 153 153 / 40%);
}
.nwz-form1 .form-box table input:-webkit-autofill {
	box-shadow: 0 0 0 1000px #fbfcfd inset;
	-webkit-text-fill-color: rgba(0 0 0 / 80%);
}
.nwz-form1 .form-box .btn{
	display: block;
	width: 100%;
	height: 66px;
	line-height: 64px;
	text-align: center;
	font-size: 16px;
	color: #666;
	border: 1px solid #aaa;
	background: #fff;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
}
.nwz-form1 .form-box .btn:hover{
	color: #333;
	border: 1px solid #999999;
	background: #fff;
}
.nwz-form1 .form-box .btn.active{
	color: #fff;
	border: 1px solid #014099;
	background: #014099;
}
.nwz-form1 .form-box .btn.active:hover{
	color: #fff;
	border: 1px solid #004098;
	background: #004098;
}
@media screen and (max-width: 1280px) {
.nwz-form1 .form-box table{
	width: 100%;
}
}
@media screen and (max-width: 1020px) {
.nwz-form1{
	min-width: 100px;
}
.nwz-form1 .form-box{
	padding: 20px 16px;
}
.nwz-form1 .form-box table{
	width: 100%;
}
.nwz-form1 .form-box table td,.form-box table th{
	padding: 10px 5px;
	font-size: 14px;
}
.nwz-form1 .form-box table .title{
	margin: 0 0 10px 0;
}
.nwz-form1 .form-box table .title .blue{
	font-size: 18px;
}
.nwz-form1 .form-box table input{
	height: 42px;
	border: 1px solid rgba(153 153 153 / 40%);
	line-height: 40px;
	padding: 0 10px;
	font-size: 14px;
}
.nwz-form1 .form-box table textarea {
    padding: 10px 10px;
    font-size: 14px;
}
.nwz-form1 .form-box .btn{
	height: 42px;
	line-height: 40px;
	font-size: 14px;
}
}

/*honest-box 廉洁举报*/
.honest-box{
	display: block;
	margin: 0;
	padding: 0;
}
.honest-box .box-title{
	padding: 80px 16px 60px;
	max-width: 1200px;
	margin: 0 auto;
}
.honest-item{
	background: #fff;
	display: block;
	padding:0 16px;
	margin: 0;
}
.honest-item .item-cont{
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #F8FAFB;
	padding: 57px 0;
	position: relative;
}
.honest-item .item-cont:before{
	display: block;
	width: 1px;
	height: 28px;
	content: "";
	position: absolute;
	top: calc(50% - 14px);
	left: 50%;
	background: #E4E4E4 ;
}
.honest-item .item-cont .list{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.honest-item .item-cont .list .list-icon{
	display: block;
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	background: #EEF3F7;
	color: #004098;
	border-radius: 100%;
}
.honest-item .item-cont .list .list-icon i{
	line-height: 65px;
	font-size: 28px;
}
.honest-item .item-cont .list .list-text{
	display: block;
	margin: 0;
	padding: 0 0 0 32px;
}
.honest-item .item-cont .list .list-text .title{
	display: block;
	margin: 0;
	padding: 0;
	color: #181818;
	font-size: 18px;
	line-height: 1.5;
	font-weight: bold;
}
.honest-item .item-cont .list .list-text .text{
	display: block;
	margin: 8px 0 0 0;
	padding: 0;
	color: #555A64;
	font-size: 14px;
	line-height: 1.5;
}
.honest-text{
	display: block;
	padding: 39px calc(50% - 600px) 100px;
	background: #fff;
	color: #555A64 ;
	font-size: 18px;
	line-height: 1.7;
}
.honest-text p{
	display: block;
	margin: 0;
	padding: 0;
}
.honest-text p+p{
	margin-top: 12px;
}
@media screen and (max-width: 1280px) {
.honest-item .item-cont{
	width: 100%;
}
.honest-text{
	padding: 39px 30px 100px;
}
}
@media screen and (max-width: 1020px) {
.honest-box .box-title{
	padding: 20px 16px;
}
.honest-item .item-cont {
    padding: 20px;
}
.honest-item .item-cont .list{
	flex-flow: column;
	align-items: center;
}
.honest-item .item-cont .list .list-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.honest-item .item-cont .list .list-icon i {
    line-height: 40px;
    font-size: 20px;
}
.honest-item .item-cont .list .list-text {
    padding: 16px 0 0 0;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.honest-item .item-cont .list .list-text .title{
	font-size: 14px;
	line-height: 20px;
}
.honest-item .item-cont .list .list-text .text{
	margin: 5px 0 0 0;
	font-size: 12px;
	line-height: 18px;
}
.honest-item .item-cont:before {
    height: 60px;
    top: calc(50% - 30px);
}
.honest-text{
	padding: 20px 16px;
	font-size: 14px;
	line-height: 1.75;
}
}

/*颜色*/
.blue{
	color: #004098;
}
.black{
	color: #181818;
}

/*details-cont 详情*/
.details-cont{
	background: #fff !important;
	padding: 40px calc(50% - 600px) 0 !important;
	border: 0 !important;
}
.details-cont img{
	max-width: 100%;
}
@media screen and (max-width: 1280px) {
.details-cont{
	padding: 40px 30px 0 !important;
}
}
@media screen and (max-width: 1020px) {
.details-cont{
	padding: 20px 16px !important;
}
}

/*webmap-box 网站地图*/
.webmap-box{
	display: block;
	margin: 0;
	padding: 73px 30px;
	background: #fff;
	box-sizing: border-box;
	min-width: 1000px;
}
.webmap-box .map-list{
	display: block;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0;
}
@media screen and (max-width: 1280px) {
	.webmap-box .map-list{
		width: 100%;
	}
}
.webmap-box .map-list+.map-list{
	margin-top: 80px;
}
.webmap-box .map-list .map-title{
	display: block;
	margin: 0;
	padding: 0 18px;
	color: #181818;
	font-size: 24px;
	font-weight: 500;
	line-height: 24px;
}
.webmap-box .map-list .map-title .menu-link{
	display: flex;
	justify-content: space-between;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
	align-items: center;
}
.webmap-box .map-list .map-title .menu-link:hover{
	color: #004098;
}
.webmap-box .map-list .map-title .menu-link i{
	font-size: 24px;
	display: none;
	font-weight: bold;
}
.webmap-box .map-list .map-title .menu-link:hover i{
	display: block;
}
.webmap-box .map-list .map-title+.map-text{
	margin-top: 23px;
}
.webmap-box .map-list .map-text{
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 5px 18px 30px 18px;
	background: #F8FAFB;
}
.webmap-box .map-list .map-text .list{
	display: block;
	width: calc(33.33333333333333% - 50px);
	margin: 15px 75px 15px 0;
}
.webmap-box .map-list .map-text .list:nth-child(3n){
	margin-right: 0;
}
.webmap-box .map-list .map-text .list .list-title{
	display: block;
	font-size: 20px;
	line-height: 56px;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
	padding: 0;
	border-bottom: 1px solid #EDE8E8;
}
.webmap-box .map-list .map-text .list .list-title i{
	display: none;
}
.webmap-box .map-list .map-text .list .list-title:hover i{
	display: none;
}
.webmap-box .map-list .map-text .list .list-title:hover{
	color: #004098;
}
.webmap-box .map-list .map-text .list .list-title a{
	display: block;
	color: #181818;
	cursor: pointer;
	text-decoration: none;
}
.webmap-box .map-list .map-text .list .list-title a:hover{
	background:url("/images/icon-r1.svg") no-repeat center right;
	background-size:20px;
	color: #004098;
}
.webmap-box .map-list .map-text .list .list-title+.list-text{
	margin-top: 28px;
}
.webmap-box .map-list .map-text .list .list-text{
	display: block;
	margin: 0;
	padding: 0;
}
.webmap-box .map-list .map-text .list .list-text p{
	display: block;
	margin: 0;
	padding: 0;
	line-height: 20px;
}
.webmap-box .map-list .map-text .list .list-text .text-link{
	display: block;
	margin: 0 0 31px 0;
	padding: 0;
	font-size: 18px;
	color: #555A64 ;
	line-height: 20px;
	cursor: pointer;
	text-decoration: none;
}
.webmap-box .map-list .map-text .list .list-text .text-link:hover{
	color: #004098;
}

/*contact-zb 联系我们*/
.contact-zb{
	background: #F9FAFC;
	padding: 70px 16px;
}
.contact-zb .zb-cont{
	display: flex;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	box-sizing: border-box;
}
.contact-zb .zb-cont .zb-text{
	display: block;
	width: 606px;
	margin: 0;
	padding: 0;
}
.contact-zb .zb-cont .zb-text .title{
	display: block;
	font-size: 22px;
	line-height: 22px;
	color: #181818;
	font-weight: 500;
	margin: 0 0 65px 0;
	padding: 42px 0 34px 0;
	position: relative;
}
.contact-zb .zb-cont .zb-text .title:before{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: #004098;
}
.contact-zb .zb-cont .zb-text .text-list{
	display: flex;
	justify-content: space-between;
}
.contact-zb .zb-cont .zb-text .text-list .list{
	display: block;
	margin: 0;
	padding: 0;
}
.contact-zb .zb-cont .zb-text .text-list .list .tit{
	display: block;
	margin: 0 0 40px 0;
	padding: 0;
	font-size: 20px;
	line-height: 20px;
	color: #181818;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt+.tit{
	margin-top: 40px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 16px;
	color: #555A64;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt+.txt{
	margin-top: 22px;
}
.contact-zb .zb-cont .zb-text .text-list .list .dw-txt{
	display: block;
	margin: 121px 0 0 0;
	padding: 0;
}
.contact-zb .zb-cont .zb-text .text-list .list .dw-txt span{
	display: inline-block;
	width: 179px;
	height: 45px;
	line-height: 45px;
	background: #EBECEE;
	text-align: center;
	color: #181818;
	font-size: 20px;
}
.contact-zb .zb-cont .zb-img{
	display: block;
	width: 488px;
	margin: 0 0 0 105px;
	padding: 0;
}

.contact-zb .zb-cont .zb-img img{
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 1280px) {
.contact-zb .zb-cont{
	width: 100%;
}
.contact-zb .zb-cont .zb-img{
	margin: 0 0 0 65px;
}
}
@media screen and (max-width: 1020px) {
.contact-zb {
    padding: 20px 16px;
}
.contact-zb .zb-cont{
	flex-flow: column-reverse;
	align-items: center;
	justify-content: center;
}
.contact-zb .zb-cont .zb-text {
    width: 100%;
}
.contact-zb .zb-cont .zb-text .title {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
    position: relative;
}
.contact-zb .zb-cont .zb-text .text-list{
	display: block;
}
.contact-zb .zb-cont .zb-text .text-list .list+.list{
	margin-top: 16px;
}
.contact-zb .zb-cont .zb-text .text-list .list .tit {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 18px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt {
    font-size: 12px;
    line-height: 16px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt+.tit {
    margin-top: 16px;
}
.contact-zb .zb-cont .zb-text .text-list .list .txt+.txt {
    margin-top: 6px;
}
.contact-zb .zb-cont .zb-img {
	width: 100%;
    margin: 0 0 16px 0;
}
}

/*contact-hwqd 联系我们*/
.contact-hwqd{
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 80px 0;
	background: #fff;
	min-width: 1000px;
}
.contact-hwqd .hwqd-list{
	display: block;
	width: 480px;
	height: 490px;
	margin: 0;
	position: relative;
	padding: 0 27px;
	box-sizing: border-box;
}
.contact-hwqd .hwqd-list+.hwqd-list{
	margin-left: 128px;
}
.contact-hwqd .hwqd-list .bg{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.contact-hwqd .hwqd-list .title{
	display: block;
	font-size: 22px;
	line-height: 22px;
	color: #181818;
	font-weight: 500;
	margin: 0 0 62px 0;
	padding: 35px 0 33px 0;
	position: relative;
}
.contact-hwqd .hwqd-list .title:before{
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: #004098;
}
.contact-hwqd .hwqd-list .text-list{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.contact-hwqd .hwqd-list .text-list .list{
	display: block;
	margin: 0;
	padding: 0;
}
.contact-hwqd .hwqd-list .text-list .list .tit{
	display: block;
	margin: 0 0 35px 0;
	padding: 0;
	font-size: 20px;
	line-height: 20px;
	color: #181818;
}
.contact-hwqd .hwqd-list .text-list .list .txt+.tit{
	margin-top: 60px;
}
.contact-hwqd .hwqd-list .text-list .list .txt{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 18px;
	color: #555A64;
}
.contact-hwqd .hwqd-list .text-list .list .txt+.txt{
	margin-top: 15px;
}
.contact-hwqd .hwqd-list .zd-txt{
	display: inline-block;
	width: 179px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	position: relative;
	z-index: 1;
	padding: 0;
	margin: 60px 0 0 0;
}
.contact-hwqd .hwqd-list .zd-txt.green{
	background: #278B84;
	color: #fff;
}
.contact-hwqd .hwqd-list .zd-txt.blue{
	background: #543BEF;
	color: #fff;
}

/*contact-map 联系我们*/
.contact-map{
	display: block;
	padding: 60px 0;
	background: #fcfcfc;
	min-width: 1000px;
}
.contact-map .map-conts{
	display: block;
	height: 950px;
	text-align: center;
	margin: 0 auto;
	background: url("/images/bg-dt.png") no-repeat center top;
	background-size: 1201px;
	padding: 600px 0 0 0;
	box-sizing: border-box;
}
.contact-map .map-conts .swiper{
	max-width: 1200px;
	margin: 0 auto;
	height: 342px;
	padding: 100px 0 0 0;
	box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
	.contact-map .map-conts .swiper{
		width: 100%;
		padding: 100px 30px 0 30px;
	}
}
.contact-map .map-conts .swiper .swiper-wrapper{

}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide{
	width: 360px;
	height: 242px;
	background: rgba(255,255,255,.6);
	padding: 40px 36px;
	box-sizing: border-box;
	display: block;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide.swiper-slide-active{
	background: #FFFFFF;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .name-ico{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 30px 0;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .name-ico .name{
	display: block;
	font-size: 32px;
	color: #181818;
	margin: 0;
	padding: 0;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .name-ico .name{
	color: #004098;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .name-ico .ico{
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50px;;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .text-list{
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: space-between;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .text-list .list{
	display: block;
	margin: 0;
	padding: 0;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .text-list .list .tit{
	display: block;
	margin: 0 0 30px 0;
	padding: 0;
	color: #181818;
	font-size: 20px;
	text-align: left;
}
.contact-map .map-conts .swiper .swiper-wrapper .swiper-slide .text-list .list .txt{
	display: block;
	margin: 0;
	padding: 0;
	color: #555A64;
	font-size: 18px;
	text-align: left;
}
.contact-map .map-conts .swiper .swiper-button-next{
	width: 45px !important;
	height: 45px !important;
	color: #555 !important;
	border-radius: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 1px 0 0 5px;
	top: 25px;
	right: 15px;
}
.contact-map .map-conts .swiper .swiper-button-prev{
	width: 45px !important;
	height: 45px !important;
	color: #555 !important;
	border-radius: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 1px 5px 0 0;
	top: 25px;
	left: 15px;
}
.contact-map .map-conts .swiper .swiper-button-next:hover,
.contact-map .map-conts .swiper .swiper-button-prev:hover{
	background: #FBFCFC;
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
	color: #004098  !important;
}
.contact-map .map-conts .swiper .swiper-button-next:after,
.contact-map .map-conts .swiper .swiper-button-prev:after{
	width: 13px;
	font-size: 22px;
	height: 22px;
	font-weight: bold;
}

/*empty-1 搜索结果为空*/
.empty-1{
	display: block;
	margin: 0;
	padding: 80px 30px;
	min-width: 1000px;
	height: 588px;
	box-sizing: border-box;
	background: #fcfcfc;
}
.empty-1 .text{
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	align-items: center;
}
@media screen and (max-width: 1280px) {
	.empty-1 .text{
		width: 100%;
	}
}
.empty-1 .text>img{
	display: block;
	margin: 0 20px 0 0;
	width: 34px;
	height: 34px;
}
.empty-1 .text>span{
	display: block;
	color: #373D41;
	font-size: 18px;
	line-height: 34px;
}

/*myyxfx-tab 免疫原性分析*/
.myyxfx-tab{
	display: flex;
	justify-content: center;
	padding: 60px 30px;
	background: #fff;
	box-sizing: border-box;
	min-width: 1000px;
}
.myyxfx-tab .nwzcpx_list{
	display: block;
	width: 261px;
	border-right: 1px solid #EBEDF0;
	box-sizing: border-box;
}
.myyxfx-tab.add-bor .nwzcpx_list{
	border-left: 1px solid rgba(235 237 240 / 50%);
	border-top:1px solid rgba(235 237 240 / 50%);
	border-bottom: 1px solid rgba(235 237 240 / 50%);
}
.myyxfx-tab .nwzcpx_list ul{
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.myyxfx-tab .nwzcpx_list ul li{
	display: block;
	margin: 0;
	list-style: none;
	background: #F6F8FD;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	box-sizing: border-box;
	padding: 25px 10px;
	line-height: 1.7;
}
.myyxfx-tab .nwzcpx_list ul li.current,
.myyxfx-tab .nwzcpx_list ul li:hover{
	background: #004098;
	color: #fff;
}
.myyxfx-tab .nwzcpx_con{
	display: block;
	max-width: 939px;
	flex: 1;
	padding: 0;
	box-sizing: border-box;
}
.myyxfx-tab .nwzcpx_con .item{
	display: none;
}
.myyxfx-tab .nwzcpx_con .item .imm-title1{
	display: block;
	height: 50px;
	background: #ECF2F8;
	line-height: 50px;
	padding: 0 0 0 30px;
	color: #004098;
	font-size: 16px;
	margin: 0 0 30px 0;
	font-weight: 500;
}
.myyxfx-tab .nwzcpx_con .item .imm-smtitle{
	display: block;
	padding: 0 0 0 30px;
	font-size: 16px;
	line-height: 1.75;
	color: #333;
	font-weight: bold;
	margin: 30px 0 10px 0;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1{
	display: block;
	padding: 0 0 0 30px;
	font-size: 16px;
	line-height: 1.75;
	color: #333;
	margin: 0;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1 p{
	display: block;
	margin: 0;
	padding: 0;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1 p+p,
.myyxfx-tab .nwzcpx_con .item .imm-txt1 p+img,
.myyxfx-tab .nwzcpx_con .item .imm-txt1 img+p,
.myyxfx-tab .nwzcpx_con .item .imm-txt1 img+img,
.myyxfx-tab .nwzcpx_con .item .imm-txt1 .verify-table+.verify-table,
.myyxfx-tab .nwzcpx_con .item .imm-txt1 img+.verify-table,
.myyxfx-tab .nwzcpx_con .item .imm-txt1 p+.verify-table{
	margin-top: 10px;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1 img{
	display: block;
	margin: 0 auto;
	width: auto;
	max-width: 100%;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1 .verify-table{
	width: 100%;
	margin: 0;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1 .table-title{
	text-align: center;
	margin: 15px 0 0 0;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1 .table-sm{
	text-align: center;
	color: #666;
	font-size: 14px;
	margin: 10px 0 0 0;
}
.myyxfx-tab .nwzcpx_con .item .imm-txt1+.imm-title1{
	margin-top: 60px;
}
.myyxfx-tab .nwzcpx_con .item .verify-table+.imm-title1{
	margin-top: 60px;
}
.myyxfx-tab .nwzcpx_con .item .verify-table{
	width: calc(100% - 30px);
	margin: 0 0 0 30px;
	border: 1px solid #EEF0F6;
}
.myyxfx-tab .nwzcpx_con .item .verify-table tr td{
	border: 1px solid #EEF0F6;
	color: #555A64;
	font-size: 16px;
	text-align: center;
	vertical-align: middle;
	padding: 10px 15px;
	line-height: 28px;
	width: 50%;
}
.myyxfx-tab .nwzcpx_con .item .verify-table.fwxq-table tr .td-tit{
	width: 120px;
}
.myyxfx-tab .nwzcpx_con .item .verify-table.fwxq-table tr .td-txt{
	width: auto;
	text-align: left;
}
.myyxfx-tab .nwzcpx_con .item .verify-table td.green{
	background: #D4EDEB;
	color: #181818;
}
.myyxfx-tab .nwzcpx_con .item .verify-table td.blue{
	background: #E3ECFF;
	color: #181818;
}
.myyxfx-tab .nwzcpx_con .item .verify-table td.lblue{
	background: #004098;
	color: #fff;
}
.myyxfx-tab .nwzcpx_con .item .verify-table>tbody>tr:nth-child(2n+1)>td{
	background: #fff;
}
.myyxfx-tab .nwzcpx_con .item .verify-table>tbody>tr:nth-child(2n)>td{
	background: #F5F8FA;
}
.myyxfx-tab .nwzcpx_con .item .verify-table.fwxq-table>tbody>tr:nth-child(2n)>td{
	background: #fff;
}
.myyxfx-tab .nwzcpx_con .item .verify-table tr td p{
	display: block;
	margin: 0;
	padding: 0;
}
.myyxfx-tab .nwzcpx_con .item .verify-table tr td p+p{
	margin-top: 5px;
}
.myyxfx-tab .nwzcpx_con .item .qdhw-box{
	display: block;
	margin: 0;
	padding: 0;
	border-left: 0;
	border-right: 1px solid rgba(235 237 240 / 50%);
	border-top: 1px solid rgba(235 237 240 / 50%);
	border-bottom: 1px solid rgba(235 237 240 / 50%);
	box-sizing: border-box;
}
.myyxfx-tab .nwzcpx_con .item .qdhw-box .hed{
	display: block;
	height: 50px;
	background: #ECF2F8;
	line-height: 50px;
	padding:0 30px;
	color: #004098;
	font-size: 16px;
	margin:0;
	font-weight: 500;
}
.myyxfx-tab .nwzcpx_con .item .qdhw-box .bod{
	display: flex;
	min-height: 110px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0 30px;
	box-sizing: border-box;
}
.myyxfx-tab .nwzcpx_con .item .qdhw-box .bod .txt-list{
	width: 33.3333333333%;
	margin: 24px 0;
}
.myyxfx-tab .nwzcpx_con .item .qdhw-box .bod .txt-list .tit{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 20px;
	color: #181818;
}
.myyxfx-tab .nwzcpx_con .item .qdhw-box .bod .txt-list .txt{
	display: block;
	margin: 24px 0 0 0;
	padding: 0;
	font-size: 18px;
	line-height: 18px;
	color: #555A64 ;
}

/*map 组件*/
.amap-info-content.amap-info-outer{
	box-shadow: 0px 10px 16px 4px rgb(2 33 77 / 4%) !important;
	border: 0;
}
.amap-info-content{
	padding: 16px;
}
.amap-info-close{
	display: none;
}

/*repre_box 办事处*/
.repre_box{
	display: block;
	width: 327px;
	margin: 0;
	padding: 0;
}
.repre_box .repre_title{
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #004098;
	padding: 0 0 0 12px;
	margin: 0 0 16px 0;
	position: relative;
	line-height: 16px;
}
.repre_box .repre_title:before{
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	display: block;
	width: 7px;
	height: 7px;
	background: #004098;
	border-radius: 100%;
}
.repre_box .repre_text{
	display: block;
	margin: 0 0 16px 0;
	padding: 16px;
	box-sizing: border-box;
	border: 1px solid #EDEFF2;
}
.repre_box>.repre_text:last-child{
	margin-bottom: 0;
}
.repre_box .repre_text .text-list{
	display: flex;
	margin: 0;
	padding: 0;
}
.repre_box .repre_text .text-list+.text-list{
	margin-top: 28px;
}
.repre_box .repre_text .text-list .clum{
	display: block;
	width: 110px;
	margin: 0;
	padding: 0;
	color: #181818 ;
	font-size: 14px;
}
.repre_box .repre_text .text-list .txt{
	display: block;
	width: 183px;
	margin: 0;
	padding: 0;
	color: #555A64 ;
	font-size: 14px;
}

/*文本编辑器*/
.selectTdClass {
	background-color:#edf5fa !important
}
table.noBorderTable td, table.noBorderTable th, table.noBorderTable caption {
	border:1px dashed #ddd !important
}
table {
	margin-bottom:10px;
	border-collapse:collapse;
	display:table;
}
td, th {
	padding: 5px 10px;
	border: 1px solid #DDD;
}
caption {
	border:1px dashed #DDD;
	border-bottom:0;
	padding:3px;
	text-align:center;
}
th {
	border-top:1px solid #BBB;
	background-color:#F7F7F7;
}
table tr.firstRow th {
	border-top-width:2px;
}
.ue-table-interlace-color-single {
	background-color: #fcfcfc;
}
.ue-table-interlace-color-double {
	background-color: #f7faff;
}
td p {
	margin:0;
	padding:0;
}

/*conus-box*/
.conus-box{
	display: block;
	background: #fff;
	margin: 0;
	padding: 0 4px;
}
.conus-box .conts{
	display: flex;
	flex-wrap: wrap;
	padding: 12px 0;
	max-width: 1224px;
	box-sizing: border-box;
	margin: 0 auto;
}
@media screen and (max-width: 1260px) {
	.conus-box .conts{
		width: 100%;
	}
}
.conus-box .conts .list{
	display: block;
	width: calc(33.33333333333% - 24px);
	height: 268px;
	margin:12px;
	background: #F9FAFC;
	position: relative;
	box-sizing: border-box;
	padding: 58px 60px;
}
.conus-box .conts .list:hover{
	box-shadow: 0px 10px 16px 4px rgba(2,33,77,0.04);
}
.conus-box .conts .list.list-2{
	width: calc(50% - 24px);
}
.conus-box .conts .list .title{
	display: block;
	margin: 0 0 40px 0;
	padding: 0;
	color: #004098;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	z-index: 2;
	position: relative;
}
.conus-box .conts .list .text{
	display: block;
	margin: 0;
	padding: 0;
	color: #555A64;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	z-index: 2;
	position: relative;
}
.conus-box .conts .list .text .txt,
.conus-box .conts .list .text p{
	display: flex;
	margin: 0;
	padding: 0;
}
.conus-box .conts .list .text .txt+.txt,
.conus-box .conts .list .text p+p{
	margin-top: 24px;
}
.conus-box .conts .list .text .txt .clum{
	width: 80px;
}
.conus-box .conts .list .list-bg{
	display: block;
	position: absolute;
	height: 268px;
	width: auto;
	right: 0;
	bottom: 0;
}
@media screen and (max-width: 1020px) {
.conus-box {
    padding: 0 10px;
}
.conus-box .conts .list {
    width: calc(50% - 12px);
    height: auto;
    margin: 6px 6px;
    padding: 20px;
	overflow: hidden;
}
.conus-box .conts .list.list-2 {
    width: calc(100% - 16px);
}
.conus-box .conts .list .list-bg {
    height: 160px;
}
.conus-box .conts .list .title{
	margin: 0 0 12px 0;
	font-size: 16px;
	line-height: 20px;
}
.conus-box .conts .list .text{
	font-size: 14px;
	line-height: 16px;
}
.conus-box .conts .list .text .txt+.txt, .conus-box .conts .list .text p+p {
    margin-top: 8px;
}
.conus-box .conts .list .text .txt .clum {
    width: auto;
}
}

/*white-bg*/
.white-bg{
	background: #fff;
}

/*home-list1*/
.home-list1{
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.home-list1 .list{	
	display: block;
	width: calc((100% - 30px) / 2);
	margin: 30px 30px 0 0;
	background: #fff;
	border-radius: 8px;
	transition: box-shadow .3s;
	box-sizing: border-box;
}
.white-bg .home-list1 .list{
	background: #F9FAFC;
	border: none;
}
.home-list1 .list:nth-child(1),
.home-list1 .list:nth-child(2){
	margin-top: 0;
}
.home-list1 .list:nth-child(2n){
	margin-right: 0;
}
.home-list1 .list:hover{
	box-shadow:0 8px 16px 0 rgba(7,12,20,.08);
}
.home-list1 .list .list-img{
	display: block;
	width: 100%;
	height: 268px;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.home-list1 .list .list-img img{
	display: block;
	width: 100%;
	height: 100%;
	transition: transform .55s;
}
.home-list1 .list:hover .list-img img{
	transform: scale(1.1);
}
.home-list1 .list .list-cont{
	display: block;
	padding: 20px;
	border-radius: 0 0 8px 8px;
}
.home-list1 .list .list-cont .title{
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 36px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.home-list1 .list .list-cont .title a,
.home-list1 .list .list-cont .title a:visited,
.home-list1 .list .list-cont .title a:active{
	display: block;
	height: 36px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333;
	cursor: pointer;
}
.home-list1 .list .list-cont .title a:hover,
.home-list1 .list:hover .list-cont .title a{
	color: #004098;
}
@media screen and (max-width: 1020px) {
.home-list1{
	width: 100%;
}
.home-list1 .list{	
	width: 100%;
	margin: 16px 0 0 0;
}
.home-list1 .list:nth-child(2){
	margin-top: 16px;
}
.home-list1 .list .list-img{
	height: auto;
}
.home-list1 .list .list-img img{
	height: auto;
}
.home-list1 .list .list-cont {
    padding: 16px;
}
.home-list1 .list .list-cont .title{
	font-size: 14px;
	line-height: 20px;
}
.home-list1 .list .list-cont .title a,
.home-list1 .list .list-cont .title a:visited,
.home-list1 .list .list-cont .title a:active{
	height: 20px;
}
}

/*home-list2*/
.home-list2{
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}
.home-list2 .list{
	display: block;
	background: #F9FAFC;
	width: calc(25% - 22.5px);
	border-radius: 8px;
	margin: 30px 15px 0 15px;
	border: 1px solid rgba(114, 113, 113, 0.2);
	transition: box-shadow .3s;
}
.bg-1 .home-list2 .list{
	background: #fff;
	border: none;
}
.home-list2 .list:nth-child(4n+1){
	margin-left: 0;
}
.home-list2 .list:nth-child(4n){
	margin-right: 0;
}
.home-list2 .list:nth-child(1),
.home-list2 .list:nth-child(2),
.home-list2 .list:nth-child(3),
.home-list2 .list:nth-child(4){
	margin-top: 0;
}
.home-list2 .list:hover{
	box-shadow:0 8px 16px 0 rgba(7,12,20,.08);
}
.home-list2 .list .list-img{
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.home-list2 .list .list-img img{
	display: block;
	width: 100%;
	height: auto;
	transition: transform .55s;
}
.home-list2.new-event-list .list .list-img{
	height: 176px;
}
.home-list2.new-event-list .list .list-img img{
	width: 100%;
	height: 100%;
}
.home-list2 .list:hover .list-img img{
	transform: scale(1.1);
}
.home-list2 .list .list-cont{
	display: block;
	padding: 20px;
	border-radius: 0 0 8px 8px;
}
.white-bg .home-list2 .list .time{
	display: flex;
	align-items: center;
	margin: 0 0 8px 0;
	font-size: 14px;
	line-height: 20px;
	color: #999;
}
.white-bg .home-list2 .list .time .lab{
	display: block;
	padding: 1px 5px;
	border: 1px solid #004098;
	color: #004098;
	border-radius: 4px;
	margin: 0 8px 0 0;
	font-size: 12px;
	line-height: 18px;
}
.home-list2 .list .list-cont .sm-title{
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #999;
}
.home-list2 .list .list-cont .sm-title a,
.home-list2 .list .list-cont .sm-title a:hover,
.home-list2 .list .list-cont .sm-title a:visited,
.home-list2 .list .list-cont .sm-title a:active{
	display: block;
	height: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #999;
	cursor: pointer;
}
.home-list2 .list .list-cont .title{
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.home-list2 .list .list-cont .title a,
.home-list2 .list .list-cont .title a:hover,
.home-list2 .list .list-cont .title a:visited,
.home-list2 .list .list-cont .title a:active{
	display: block;
	height: 22px;
	color: #333;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
}
.home-list2 .list .list-cont .title-2{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	height: 44px;
}
.home-list2 .list .list-cont .title-2 a,
.home-list2 .list .list-cont .title-2 a:hover,
.home-list2 .list .list-cont .title-2 a:visited,
.home-list2 .list .list-cont .title-2 a:active{
	display: block;
	height: 44px;
	color: #333;
	cursor: pointer;
}
.home-list2 .list .list-cont .title-3{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: normal;
	font-size: 14px;
	line-height: 22px;
	height: 44px;
}
.home-list2 .list .list-cont .title-3 a,
.home-list2 .list .list-cont .title-3 a:hover,
.home-list2 .list .list-cont .title-3 a:visited,
.home-list2 .list .list-cont .title-3 a:active{
	display: block;
	height: 44px;
	color: #333;
	cursor: pointer;
}
.home-list2 .list .list-cont .text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	height: 66px;
	margin:16px 0;
	color: #666;
}
.home-list2 .list .list-cont .text a,
.home-list2 .list .list-cont .text a:hover,
.home-list2 .list .list-cont .text a:visited,
.home-list2 .list .list-cont .text a:active{
	display: block;
	height: 66px;
	color: #666;
	cursor: pointer;
}
.home-list2 .list .list-cont .btns{
	display: block;
	padding: 16px 0 0 0;
	margin: 16px 0 0 0;
	border-top: 1px solid rgba(114, 113, 113, 0.2);
}
.home-list2 .list .list-cont .btns .btn,
.home-list2 .list .list-cont .btns .btn:hover,
.home-list2 .list .list-cont .btns .btn:active,
.home-list2 .list .list-cont .btns .btn:visited{
	display: block;
	width: 100%;
	height: 22px;
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	color: #004098;
	cursor: pointer;
	background: url("/images/icon-right2.svg") no-repeat right center;
	background-size: 16px;
}
@media screen and (max-width: 1020px) {
.home-list2{
	display: flex;
}
.home-list2 .list{
	width: calc(50% - 6px);
	margin: 12px 0 0 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.home-list2.new-event-list .list{
	width: 100%;
}
.home-list2 .list:nth-child(4n+1){
	margin-left: auto;
}
.home-list2 .list:nth-child(4n){
	margin-right: auto;
}
.home-list2 .list:nth-child(2n+1){
	margin-right: 6px;
}
.home-list2 .list:nth-child(2n){
	margin-left: 6px;
}
.home-list2.new-event-list .list:nth-child(2n+1){
	margin-right: 0;
}
.home-list2.new-event-list .list:nth-child(2n){
	margin-left: 0;
}
.home-list2 .list:nth-child(1),
.home-list2 .list:nth-child(2){
	margin-top:0px;
}
.home-list2 .list:nth-child(3),
.home-list2 .list:nth-child(4) {
	margin-top:12px;
}
.home-list2.new-event-list .list:nth-child(1){
	margin-top:0px;
}
.home-list2.new-event-list .list:nth-child(2),
.home-list2.new-event-list .list:nth-child(3),
.home-list2.new-event-list .list:nth-child(4) {
	margin-top:12px;
}
.home-list2 .list .list-img{
	height: auto;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}
.home-list2.new-event-list .list .list-img{
	height: auto;
}
.home-list2.new-event-list .list .list-img img{
	height: auto;
}
.home-list2 .list .list-cont{
	padding: 10px;
}
.white-bg .home-list2 .list .time{
	justify-content: space-between;
	font-size: 12px;
}
.white-bg .home-list2 .list .time .lab {
    padding: 0 2px;
    margin: 0 2px 0 0;
	font-size: 12px;
}
.home-list2 .list .list-cont .sm-title{
	white-space: normal;
	font-size: 12px;
	line-height: 18px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 36px;
}
.home-list2 .list .list-cont .sm-title a, 
.home-list2 .list .list-cont .sm-title a:hover, 
.home-list2 .list .list-cont .sm-title a:visited, 
.home-list2 .list .list-cont .sm-title a:active{
	display: block;
	white-space: normal;
	height: 36px;
	overflow: initial;	    
}
.home-list2 .list .list-cont .title{
	white-space: normal;
	font-size: 12px;
	line-height: 20px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 40px;
}
.home-list2 .list .list-cont .title a,
.home-list2 .list .list-cont .title a:hover,
.home-list2 .list .list-cont .title a:visited,
.home-list2 .list .list-cont .title a:active{
	display: block;
	white-space: normal;
	height: 40px;
	overflow: initial;	    
}
.home-list2 .list .list-cont .title-2{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 40px;
	font-size: 12px;
	line-height: 20px;
}
.home-list2.new-event-list .list .list-cont .title-2{
	-webkit-line-clamp: inherit;
	height: auto;
	font-size: 12px;
	line-height: 20px;
}
.home-list2 .list .list-cont .title-2 a,
.home-list2 .list .list-cont .title-2 a:hover,
.home-list2 .list .list-cont .title-2 a:visited,
.home-list2 .list .list-cont .title-2 a:active{
	height: auto;
}
.home-list2 .list .list-cont .text{
	display: none;
	height: auto;
	font-size: 12px;
	line-height: 20px;
	margin: 12px 0;
}
.home-list2.new-event-list .list .list-cont .text{
	-webkit-line-clamp: inherit;
	height: auto;
	font-size: 12px;
	line-height: 20px;
	margin: 12px 0;
}
.home-list2 .list .list-cont .btns{
	padding: 12px 0 0 0;
	margin: 12px 0 0 0;
}
.home-list2 .list .list-cont .btns .btn,
.home-list2 .list .list-cont .btns .btn:hover,
.home-list2 .list .list-cont .btns .btn:active,
.home-list2 .list .list-cont .btns .btn:visited{
	font-size: 12px;
	line-height: 20px;
	height: 20px;
}
}

/*home-list3*/
.home-list3{
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.home-list3 .list{	
	display: block;
	width: calc((100% - 60px) / 3);
	margin: 30px 30px 0 0;
	background: #fff;
	border-radius: 8px;
	transition: box-shadow .3s;
	box-sizing: border-box;
}
.white-bg .home-list3 .list{
	background: #F9FAFC;
	border: none;
}
.home-list3 .list:nth-child(1),
.home-list3 .list:nth-child(2),
.home-list3 .list:nth-child(3){
	margin-top: 0;
}
.home-list3 .list:nth-child(3n){
	margin-right: 0;
}
.home-list3 .list:hover{
	box-shadow:0 8px 16px 0 rgba(7,12,20,.08);
}
.home-list3 .list .list-img{
	display: block;
	width: 100%;
	height: 153px;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.home-list3.xwzx-list .list .list-img{
	height: 257px;
}
.home-list3 .list .list-img img{
	display: block;
	width: 100%;
	height: 100%;
	transition: transform .55s;
}
.home-list3 .list:hover .list-img img{
	transform: scale(1.1);
}
.home-list3 .list .list-cont{
	display: block;
	padding: 20px;
	border-radius: 0 0 8px 8px;
}
.home-list3 .list .list-cont .title{
	display: block;
	font-weight: normal;
	font-size: 16px;
	line-height: 36px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.home-list3 .list .list-cont .title a,
.home-list3 .list .list-cont .title a:visited,
.home-list3 .list .list-cont .title a:active{
	display: block;
	height: 36px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333;
	cursor: pointer;
}
.home-list3 .list .list-cont .title a:hover,
.home-list3 .list:hover .list-cont .title a{
	color: #004098;
}
.home-list3 .list .list-cont .btns{
	display: block;
	padding: 16px 0 0 0;
	margin: 16px 0 0 0;
	border-top: 1px solid rgba(114, 113, 113, 0.2);
}
.home-list3 .list .list-cont .btns .btn,
.home-list3 .list .list-cont .btns .btn:hover,
.home-list3 .list .list-cont .btns .btn:active,
.home-list3 .list .list-cont .btns .btn:visited{
	display: block;
	width: 100%;
	height: 22px;
	font-weight: normal;
	font-size: 14px;
	line-height: 22px;
	color: #004098;
	cursor: pointer;
	background: url("/images/icon-right2.svg") no-repeat right center;
	background-size: 16px;
}
@media screen and (max-width: 1020px) {
.home-list3 .list {
    display: block;
    width: calc((100% - 16px) / 2);
    margin: 16px 16px 0 0;
}	
.home-list3 .list:nth-child(3){
	margin-top: 16px;
}
.home-list3 .list:nth-child(3n){
	margin-right: 16px;
}
.home-list3 .list:nth-child(2n){
	margin-right: 0;
}
.home-list3 .list .list-img {
    height: 100px;
}
.home-list3.xwzx-list .list .list-img {
    height: 120px;
}
.home-list3 .list .list-cont {
    padding: 15px;
}
.home-list3 .list .list-cont .title {
    font-size: 14px;
    line-height: 20px;
    white-space: pre-wrap;
    text-overflow: inherit;
}
.home-list3 .list .list-cont .title a,
.home-list3 .list .list-cont .title a:visited,
.home-list3 .list .list-cont .title a:active{
	line-height: 20px;
	white-space: pre-wrap;
	text-overflow: inherit;
}
.home-list3 .list .list-cont .btns {
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
}
.home-list3 .list .list-cont .btns .btn,
.home-list3 .list .list-cont .btns .btn:hover,
.home-list3 .list .list-cont .btns .btn:active,
.home-list3 .list .list-cont .btns .btn:visited{
	height: 20px;
	font-size: 12px;
	line-height: 20px;
	background: url("/images/icon-right2.svg") no-repeat right center;
	background-size: 12px;
}
}

/*news-list*/
.news-list{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}
.news-list .list{
	flex-wrap: nowrap;
	flex-direction: row;
	display: flex;
	margin: 40px 0;
	cursor: pointer;
}
.news-list .list .limg{
	display: block;
	width: 337px;
	height: 230px;
	padding: 10px;
	border: 1px solid #F2F4F7;
	overflow: hidden;
	box-sizing: border-box;
}
.news-list .list .limg img{
	width: 100%;
	height: 100%;
	margin: 0;
	transition: transform .55s;
}
.news-list .list:hover .limg img{
	transform: scale(1.12);
}
.news-list .ltext{
	padding: 0px;
	flex-wrap: nowrap;
	flex-direction: column;
	display: flex;
	flex: 1;
	width: 100%;
	position: relative;
	margin-left: 30px;
	justify-content: flex-start;
	height: 100%;
	min-height: 230px;
	border-bottom: 1px solid #F2F4F7;
	flex: 1;
}
.news-list .ltext .title{
	display: block;
	padding-bottom: 0px;
	flex-direction: row;
	word-wrap: break-word;
	padding-top: 10px;
	padding-left: 0px;
	font-weight: 400;
	font-size: 24px;
	line-height: 34px;
}
.news-list .ltext .text{
	color: #666;
	flex-direction: row;
	word-wrap: break-word;
	font-weight: 400;
	font-size: 14px;
	line-height: 28px;
	padding: 8px 0;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.news-list .ltext .other1{
	align-items: center;
	flex-direction: row;
	display: flex;
	padding-right: 0px;
	box-sizing: border-box;
	justify-content: flex-start;
	margin-left: 0px;
	margin-right: 0px;
	padding-bottom: 0px;
	flex-wrap: nowrap;
	width: 100%;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-left: 0px;
	height: 30%;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	color: #999;
}
.news-list .ltext .btn{
	display: flex;
	align-items: center;
	margin: 30px 0 0 0;
}
.news-list .ltext .btn .btns,
.news-list .ltext .btn .btns:hover,
.news-list .ltext .btn .btns:active,
.news-list .ltext .btn .btns:visited,
.news-list .ltext .btn .btns:focus{
	display: block;
	padding: 0 26px 0 0;
	font-size: 14px;
	color: #004098;
	background: url(/images/icon-right2.svg) no-repeat right center;
	background-size: 14px;
	cursor: pointer;
	text-decoration: none;
}
@media screen and (max-width: 1020px) {
.news-list .list {
    flex-direction: column;
    margin: 16px 0;
}
.news-list .list .limg{
	width: 100%;
	height: auto;
	border: 0;
	padding: 0;
}
.news-list .list .limg img{
	height: auto;
}
.news-list .list:hover .limg img{
	transform: scale(1);
}
.news-list .ltext {
	margin-left: 0;
	margin-top: 0;
	border-bottom: 0;
	background: #f8f8f8;
	padding: 16px;
	height: auto;
	min-height: 50px;
}
.news-list .ltext .title {
    padding-top: 0;
    font-size: 14px;
    line-height: 20px;
}
.news-list .ltext .text {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 0 8px 0;
    display: block;
    -webkit-box-orient: inherit;
}
.news-list .ltext .btn {
    margin: 16px 0 0 0;
}
}

/*news-detail*/
.news-detail{
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}
.news-detail .htitle{
	 border-bottom: 1px solid #f2f2f2;
	 margin-bottom: 30px;
	 padding-bottom: 20px;
}
.news-detail .htitle .title{
	text-align: center;
	color: #333 !important;
	font-weight: normal;
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1.5;
	display: block;
}
.news-detail .htitle .time{
	text-align: center;
	margin: 0;
	line-height: 1.5; 
	font-size: 14px;
	color: #9195a3;
	padding: 15px 0 0 0;
}
.news-detail .btext{
	display: block;
	margin: 0;
	color: #333;
	font-size: 14px;
	line-height: 1.75;
}
.news-detail .btext>*+*{
	margin-top: 10px;
}
.news-detail .btext img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	max-width: 100%;
}
@media screen and (max-width: 1020px) {
.news-detail .htitle {
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.news-detail .htitle .title {
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
}
.news-detail .htitle .time {
    text-align: left;
    margin: 0;
    line-height: 1.5;
    font-size: 12px;
    padding: 10px 0 0 0;
}	
}

/*sms-search*/
.sms-search{
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	justify-content: space-between;
}
.sms-search .title{
	display: block;
	font-size: 36px;
	line-height: 48px;
	color: #020814;
	padding: 0 0 14px 0;
	border-bottom: 2px solid #004098;
}
.sms-search .c-ser{
	display: block;
	position: relative;
}
.sms-search .c-ser input{
	display: block;
	width: 468px;
	height: 50px;
	line-height: 48px;
	box-sizing: border-box;
	border: 1px solid #020814;
	padding: 3px 48px 3px 24px;
	font-size: 16px;
	color: #000;
}
.sms-search .c-ser .btn,
.sms-search .c-ser .btn:hover,
.sms-search .c-ser .btn:visited,
.sms-search .c-ser .btn:active{
	display: block;
	position: absolute;
	right: 0;
	top: 1px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-size: 20px;
	color: #020814;
	cursor: pointer;
	z-index: 1;
}
.sms-search .c-ser .btn i{
	font-size: 20px;
	color: #020814;
}
@media screen and (max-width: 1020px) {
.sms-search{
	width: 100%;
	margin: 0 0 20px 0;
	flex-flow: column;
	align-items: flex-start;
}
.sms-search .title {
    font-size: 16px;
	height: 40px;
	line-height: 40px;
	min-width: 100px;
	width: 100%;
	padding: 0;
	margin: 0;
    border-bottom: 0;
	font-weight: bold;
}
.sms-search .c-ser {
	display: flex;
    background: #F8FAFB;
	border: 1px solid #E4E4E4;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
}
.sms-search .c-ser input {
    display: block;
	flex: 1;
	width: auto;
	height: 48px;
	line-height: 48px;
	padding: 0 10px;
	font-size: 14px;
	border: 0;
	background: transparent;
}
.sms-search .c-ser .btn,
.sms-search .c-ser .btn:hover,
.sms-search .c-ser .btn:visited,
.sms-search .c-ser .btn:active{
	position: inherit;
	display: block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	padding: 0;
	margin: 0;
	text-align: center;
	color: #004098;
	cursor: pointer;
	border: 0;
}
.sms-search .c-ser .btn i{
	line-height: 48px;
	font-size: 16px;
	color: #004098;
}	
}

/*sms-list*/
.sms-list{
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}
.sms-list .list{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc((100% - 60px) / 4);
	height: 180px;
	border-radius: 10px;
	background: #F9FAFC;
	margin: 20px 20px 0 0;
	padding: 33px 20px 26px;
	box-sizing: border-box;
}
.sms-list .list:nth-child(4n){
	margin-right: 0;
}
.sms-list .list .title{
	display: block;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}
.sms-list .list .l-btn{
	display: flex;
	align-items: center;
}
.sms-list .list .l-btn .btn,
.sms-list .list .l-btn .btn:visited,
.sms-list .list .l-btn .btn:active{
	display: block;
	flex: 1;
	text-align: center;
	border: 1px solid #004098;
	background: #FFF;
	padding: 3px 24px;
	color: #004098;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	border-radius: 30px;
	cursor: pointer;
}
.sms-list .list .l-btn .btn:hover{
	border-color: #0353c3;
	color: #0353c3;
}
.sms-list .list .l-btn .btn+.btn{
	margin-left: 16px;
}
.sms-list .list .l-btn .btn.bblue{
	background: #004098;
	color: #fff;
}
.sms-list .list .l-btn .btn.bblue:hover{
	background: #0353c3;
	border-color: #0353c3;
	color: #fff;
}
.sms-list+#pagination1{
	margin-top: 40px;
}
.sciencePagination{
	margin-top: 40px;
}
@media screen and (max-width: 1020px) {
.sms-list .list{
	width: calc((100% - 16px) / 2);
	height: auto;
	border-radius: 4px;
	background: #F9FAFC;
	margin: 16px 16px 0 0;
	padding: 15px;
}
.sms-list .list:nth-child(1),
.sms-list .list:nth-child(2){
	margin-top: 0;
}
.sms-list .list:nth-child(4n){
	margin-right: 16px;
}
.sms-list .list:nth-child(2n){
	margin-right: 0;
}
.sms-list .list .title {
    font-size: 14px;
    line-height: 20px;
}
.sms-list .list .l-btn {
    flex-flow: column;
	margin: 15px 0 0 0;
}
.sms-list .list .l-btn .btn,
.sms-list .list .l-btn .btn:visited,
.sms-list .list .l-btn .btn:active{
	width: 100%;
}
.sms-list .list .l-btn .btn+.btn {
    margin-left: 0;
	margin-top: 10px;
}
.sms-list+#pagination1{
	margin-top: 20px;
}
}

/*cpxq-flex*/
.cpxq-flex{
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}
.cpxq-flex .fleft{
	display: block;
	width: 350px;
}
.cpxq-flex .fleft .big-img{
	display: block;
	width: 100%;
	height: 350px;
	margin: 0 0 16px 0;
	overflow: hidden;
	background: #fff;
}
.cpxq-flex .fleft .big-img img{
	display: block;
	width: 350px;
	height: 350px;
}
.cpxq-flex .fleft .small-list{
	display: block;
	position: relative;
	padding: 0 31px;
}
.cpxq-flex .fleft .small-list .limit{
	position: absolute;
	top: 0;
	display: block;
	width: 31px;
	height: 70px;	
	line-height: 70px;
	cursor: pointer;
	color: #333;
}
.cpxq-flex .fleft .small-list .limit:hover{
	color: #004098
}
.cpxq-flex .fleft .small-list .limit i{
	font-size: 20px;
}
.cpxq-flex .fleft .small-list .limit.left-arrow{
	left: 0;
	text-align: left;
}
.cpxq-flex .fleft .small-list .limit.right-arrow{
	right: 0;
	text-align: right;
}
.cpxq-flex .fleft .small-list .img-box{
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
}
.cpxq-flex .fleft .small-list .img-box .item{
	display: block;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	border: 1px solid rgba(0,64,152,.2);
	border-radius: 4px;
	cursor: pointer;
}
.cpxq-flex .fleft .small-list .img-box .item img{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}
.cpxq-flex .fleft .small-list .img-box .item+.item{
	margin-left: 16px;
}
.cpxq-flex .fleft .small-list .img-box .item:hover,
.cpxq-flex .fleft .small-list .img-box .item.active{
	border: 1px solid rgba(0,64,152,1);
}
.cpxq-flex .fleft+.fright{
	width: calc(100% - 350px);
	padding-left: 80px;
}
.cpxq-flex .fright{
	display: block;
	flex: 1;
	padding: 0;
	width: 100%;
}
.cpxq-flex .fright .title{
	display: block;
	margin: 0 0 10px 0;
	color: #020814;
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
}
.cpxq-flex .fright .text{
	display: block;
	margin: 0 0 10px 0;
	color: #020814;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
}
.cpxq-flex .fright .othert{
	display: block;
	margin: 30px 0 0 0;
}
.cpxq-flex .fright .othert .tlist{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 16px 0;
	color: #020814;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
}
.cpxq-flex .fright .othert .tlist .lab{
	display: block;
	border: 1px solid #020814;
	padding: 0 20px;
	color: #020814;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	margin: 0 8px 0 0;
}
.cpxq-flex .fright .othert .tlist .lab.active{
	border-color: #004098;
	color: #004098;
}
.cpxq-flex .fright .othert .tbtn{
	display: flex;
	align-items: center;
	margin: 10px 0 0 0;
}
.cpxq-flex .fright .othert .tbtn .btn,
.cpxq-flex .fright .othert .tbtn .btn:visited,
.cpxq-flex .fright .othert .tbtn .btn:active{
	display: block;
	text-align: center;
	border: 1px solid #004098;
	background: #FFF;
	padding: 0 40px;
	color: #004098;
	font-size: 14px;
	font-weight: 400;
	line-height: 34px;
	border-radius: 36px;
	cursor: pointer;
}
.cpxq-flex .fright .othert .tbtn .btn:hover{
	border-color: #0353c3;
	color: #0353c3;
}
.cpxq-flex .fright .othert .tbtn .btn+.btn{
	margin-left: 16px;
}
.cpxq-flex .fright .othert .tbtn .btn.bblue{
	background: #004098;
	color: #fff;
}
.cpxq-flex .fright .othert .tbtn .btn.bblue:hover{
	background: #0353c3;
	border-color: #0353c3;
	color: #fff;
}

.cpxq-flex .fleft .img-content *{
	box-sizing: border-box;
}
.cpxq-flex .fleft .img-content{
	width: 100%;
}
.cpxq-flex .fleft .img-content .small-img{
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0 31px;
}
.cpxq-flex .fleft .img-content .small-img ul{
	list-style: none;
	position: relative;
	width: 5000px;
	margin: 0;
	padding: 0;
	left: 0;
}
.cpxq-flex .fleft .img-content .small-img ul:after{
	content: "";
	display: block;
	clear: both;
}
.cpxq-flex .fleft .img-content .small-img ul li{
	float: left;
	width: 60px;
	height: 60px;
	margin-right: 16px;
    box-sizing: border-box;
}
.cpxq-flex .fleft .img-content .small-img ul li img.moveimg{
	width: 100%;
	height: 100%;
	cursor: pointer;
	border: 1px solid rgba(0,64,152,.2);
	border-radius: 4px;
}
.cpxq-flex .fleft .img-content .small-img ul li img.moveimg.active{
	border: 1px solid rgba(0,64,152,1);
}
.cpxq-flex .fleft .img-content .big-img{
	width: 100%;
	height: 350px;
	position: relative;
	overflow: hidden;
	background: #fff;
	margin: 0 0 16px 0;
}
.cpxq-flex .fleft .img-content .big-img img{
	width: 100%;
	height: 100%;
	cursor:pointer;
	border-radius: 10px;
	position: absolute;
}
.cpxq-flex .fleft .img-content .small-img .left{
	display: inline-block;
	position: absolute;
	z-index: 2;
	width: 31px;
	height: 60px;
	text-align: left;
	line-height: 60px;
	color: #333;
	cursor: pointer;
	font-size: 20px;
	left: 0;
	top: 0;
	background: #f8fafb;
}
.cpxq-flex .fleft .img-content .small-img .right{
	display: inline-block;
	position: absolute;
	z-index: 2;
	width: 31px;
	height: 60px;
	text-align: right;
	line-height: 60px;
	color: #333;
	cursor: pointer;
	font-size: 20px;
	right: 0;
	top: 0;
	background: #f8fafb;
}
.cpxq-flex .fleft .img-content .big-img .img-parent{
	width:100%;
	height: 100%;
	position: absolute;
}
@media screen and (max-width: 1020px) {
.cpxq-flex {
    flex-flow: column;
}
.cpxq-flex .fleft {
    width: 100%;
}
.cpxq-flex .fleft .img-content .big-img{
	height: 400px;
}
.cpxq-flex .fleft+.fright {
    width: 100%;
    padding-left: 0px;
	padding-top: 16px;
}
.cpxq-flex .fright .title{
	margin: 0 0 10px 0;
	font-size: 16px;
	line-height: 22px;
}
.cpxq-flex .fright .text {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
}
.cpxq-flex .fright .othert {
    margin: 15px 0 0 0;
}
.cpxq-flex .fright .othert .tlist {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
}
.cpxq-flex .fright .othert .tlist .lab{
	padding: 0 5px;
	font-size: 13px;
	line-height: 18px;
	line-height: 20px;
	margin: 0 5px 0 0;
}
.cpxq-flex .fright .othert .tbtn {
    margin: 15px 0 0 0;
}
}

/*phone-header 移动端导航*/
.phone-header{
  display: none;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 3;
  box-shadow: 3px 5px 10px 0px rgba(37, 45, 51, 0.10);
}
.phone-header.open-menu,.phone-header.open-sear{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.phone-header .logo{
  display: block;
  width: 100px;
  height: 56px;
  background: url("/images/logo1-b.svg") no-repeat center;
  background-size: 100px;
}
.phone-header .btns{
  display: block;
}
.phone-header .btns .sear-btn{
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/images/icon-search-b.svg") no-repeat center;
  background-size: 24px;
  margin: 0 50px 0 0;
}
.phone-header.open-menu .btns .sear-btn{
  display: none;
}
.phone-header .btns .opens-btn{
  display: inline-block;
  width: 25px;
  height: 25px;
  z-index: 3;
  position: absolute;
  top: 27px;
  right: 16px;
}
.phone-header .btns .opens-btn em {
  vertical-align: top;
  width: 100%;
  display: inline-block;
  height: 3px;
  position: relative;
  transition: background .5s;
  background: #253554;
}
.phone-header.open-menu .btns .opens-btn em,
.phone-header.open-sear .btns .opens-btn em{
  background: transparent;
}
.phone-header .btns .opens-btn em::before, .phone-header .btns .opens-btn em::after {
  content: '';
  transition: .5s all;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #253554;
  border-radius: 1px;
}
.phone-header .btns .opens-btn em::before {
  top: -9px;
}
.phone-header.open-menu .btns .opens-btn em::before,
.phone-header.open-sear .btns .opens-btn em::before{
  transform: rotate(45deg);
  top: 0;
}
.phone-header .btns .opens-btn em::after {
  top: 9px;
}
.phone-header.open-menu .btns .opens-btn em::after,
.phone-header.open-sear .btns .opens-btn em::after{
  transform: rotate(-45deg);
  top: 0;
}
.phone-header .btns .menu-box{
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  overflow: auto;
  background: #fff;
  border-top: 1px solid rgba(155 166 183 / 40%);
  z-index: 1;
}
.phone-header.open-menu .btns .menu-box{
  display: block;
}
.phone-header.open-sear.open-menu .btns .menu-box{
  display: none;
}
.phone-header .btns .menu-box .meun-list{
  display: block;
  padding: 8px 16px;
}
.phone-header .btns .menu-box .meun-list>li{
  display: block;
}
.phone-header .btns .menu-box .meun-list>li+li{
  margin-top: 15px;
  border-top: 1px dashed #ddd;
  padding-top: 15px;
}
.phone-header .btns .menu-box .meun-list>li>a,
.phone-header .btns .menu-box .meun-list>li>a:visited,
.phone-header .btns .menu-box .meun-list>li>a:active{
  display: block;
  padding: 8px 0;
  line-height: 24px;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
.phone-header .btns .menu-box .meun-list>li.active>a{
  color: #004098;
  font-weight: 700;
}
.phone-header .btns .menu-box .meun-list>li>a:hover{
  color: #004098;
}
.phone-header .btns .menu-box .meun-list>li .second-menu{
  display: block;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li{
  display: block;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li>a,
.phone-header .btns .menu-box .meun-list>li .second-menu>li>a:visited,
.phone-header .btns .menu-box .meun-list>li .second-menu>li>a:active{
  display: block;
  padding: 8px 0;
  line-height: 24px;
  font-size: 15px;
  color: #333;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li.active>a,
.phone-header .btns .menu-box .meun-list>li .second-menu>li>a:hover{
  color: #004098;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul{
  display: block;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul li{
  display: block;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul li a,
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul li a:visited,
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul li a:active{
  display: block;
  padding: 8px 0;
  line-height: 24px;
  font-size: 12px;
  color: #999;
}
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul li.active a,
.phone-header .btns .menu-box .meun-list>li .second-menu>li ul li a:hover{
  color: #004098;
}

.phone-header .menu-box .ce{
  display:block;
  background:#fff;
}
.phone-header .menu-box .ce li{
  border: 0;
  position: relative;
}
.phone-header .menu-box .ce li input{
	margin: 16px 24px;
	width: calc(100% - 48px);
	border: 1px solid #EAEBF0;
	height: 36px;
	line-height: 36px;
	background: #fff;
	font-size: 14px;
	color: #333;
	border-radius: 4px;
	padding: 0 10px;
}
.phone-header .menu-box .ce li a{
  color: #333;
  font-size: 14px;
  line-height: 20px;
  display:block;
  cursor:pointer;
  padding: 16px 24px;
  border-bottom: 1px solid #EAEBF0;
  font-weight: bold;
}
.phone-header .menu-box .ce li a:hover,
.phone-header .menu-box .ce li a:active{
  color: #024fb9;
}
.phone-header .menu-box .ce li>a{
	display: flex;
	align-items: center;
}
.phone-header .menu-box .ce li>a img{
	display: block;
	margin: 0 4px 0 0;
	width: 16px;
}
.phone-header .menu-box .ce li i{
  position: absolute;
  right: 0;
  top: 0;
  width: 53px;
  height: 53px;
  display: block;
  text-align: center;
  line-height: 53px;
  font-size: 16px;
  font-weight: bold;
}
.phone-header .menu-box .ce li i.open {
  transform: rotate(180deg);
  color: #004098;
}
.phone-header .menu-box .ce li a .el-icon-arrow-down,
.phone-header .menu-box .ce li a .icon-xiangyoujiantou{
  line-height: 20px;
  float: right;
  font-size: 16px;
  font-weight: bold;
  color: #09121F;
}
.phone-header .menu-box .er{
  display:none;
  background:#fafafa;
}
.phone-header .menu-box .er>li>a{
  padding-left:32px;
}
.phone-header .menu-box .thr{
  display:none;
  background:#f7f7f7;
}
.phone-header .menu-box .thr>li>a{
  padding-left:50px;
}
.phone-header .menu-box .thr_nr{
  display: none;
  background: #f1f1f1;
}
.phone-header .menu-box .thr_nr>li>a{
  padding-left:65px;
  font-size: 12px;
}
.phone-header .btns .more-searchs{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  top: 0;
  left: 0;
}
.phone-header.open-sear .btns .more-searchs{
  display: block;
}
.phone-header .btns .more-searchs .search-box{
  display: flex;
  align-items: center;
  margin: 10px 55px 10px 16px;
  border: 1px solid #004098;
  border-radius: 8px;
  height: 36px;
}
.phone-header .btns .more-searchs .search-box img{
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 10px;
}
.phone-header .btns .more-searchs .search-box input{
  display: block;
  border: 0;
  flex: 1;
  padding: 0 10px 0 0;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  border-radius: 8px;
}
.phone-header .btns .more-searchs .search-list{
  display: block;
  height: calc(100% - 56px);
  overflow: auto;
  border-top: 1px solid rgba(155 166 183 / 40%);
  padding: 16px 0;
}
.phone-header .btns .more-searchs .search-list .associate-list{
  display: block;
  padding: 0  20px;
}
.phone-header .btns .more-searchs .search-list .associate-list .li-lis{
  display: block;
  color: #495770;
  font-size: 16px;
  line-height: 1.75;
  padding: 6px  0;
}
.phone-header .btns .more-searchs .search-list .associate-list .li-lis a,
.phone-header .btns .more-searchs .search-list .associate-list .li-lis a:visited,
.phone-header .btns .more-searchs .search-list .associate-list .li-lis a:active{
  color: #495770;
  cursor: pointer;
  text-decoration: none;
}
.phone-header .btns .more-searchs .search-list .associate-list .li-lis a:hover{
  color: #004098;
}
.phone-header .btns .more-searchs .search-list .list{
  display: block;
}
.phone-header .btns .more-searchs .search-list .list+.list{
  margin-top: 20px;
}
.phone-header .btns .more-searchs .search-list .list .title{
  display: block;
  color: rgba(114, 113, 113, 0.8);
  font-size: 14px;
  line-height: 22px;
  padding: 0 16px;
}
.phone-header .btns .more-searchs .search-list .list .text{
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;
}
.phone-header .btns .more-searchs .search-list .list .text .txt,
.phone-header .btns .more-searchs .search-list .list .text .txt:visited,
.phone-header .btns .more-searchs .search-list .list .text .txt:active{
  display: block;
  color: #333;
  font-size: 12px;
  line-height: 20px;
  margin: 8px 8px 0 8px;
  cursor: pointer;
}
.phone-header .btns .more-searchs .search-list .list .text .txt:hover{
  color: #004098;
}
.sticky-header{
  position: sticky;
  top: 0;
  z-index: 3;
}
@media screen and (max-width: 1020px) {
.phone-header{
    display: flex;
}
.phone-header .btns .more-searchs .search-list .associate-list .li-lis{
    display: block;
    color: #495770;
    font-size: 12px;
    line-height: 20px;
    padding: 6px  0;
}
.modal-content {
	border: none !important;
	width: 90% !important;
	padding: 0 10px 10px !important;
}
}
.modal {
	display: none; /* 默认隐藏模态窗口 */
	position: fixed;
	z-index: 1; /* 置于顶层 */
	left: 0;
	top: 0;
	width: 100%; /* 宽度100% */
	height: 100%; /* 高度100% */
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}
/* 内容部分的样式 */
.modal-content {
	background-color: #fefefe;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	position: fixed;
	padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-content img {
	width: 100% !important;
}
/* 关闭按钮的样式 */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}