/*================基本样式重置================*/
html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
span,
i,
a,
em,
strong,
b,
input,
textarea,
select {
	margin: 0;
	padding: 0;
}

i,
em {
	font-weight: normal;
	font-style: normal;
}

body {
	width: 100%;
	height: auto !important;
	position: relative;
	font: 12px/1.5 \5b8b\4f53, tahoma, arial, sans-serif;
	font-family: "Microsoft YaHei";
}
li {
	list-style: none;
}


a,
img,
input {
	border: 0 none;
}

/* a {
	text-decoration: none;
	outline: none;
} */

/* a:hover {
	text-decoration: none;
} */

a:focus,
input:focus {
	outline: 0 none;
}

textarea {
	resize: none;
	font-size: 12px;
}

/*去掉火狐和谷歌浏览器的Textarea改变尺寸大小功能*/
html {
	font-size: 16px;
}

img,video {
	/* 照顾低版本浏览器，如果图片外面包含了链接会有边框的问题 */
	border: 0;
	/* 取消图片底侧有空白缝隙的问题 */
	vertical-align: middle
}

/*========定义基础样式========*/
.fixed{
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
}
.hide {
	display: none !important;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
}

.clearfix {
	zoom: 1;
}

.wow {
   visibility: hidden;
 }

/*a标签鼠标hover高亮显示状态（可选用）*/
a .opacity {
	filter: alpha(opacity=100);
	opacity: 1;
	-moz-opacity: 1;
}

a:hover .opacity {
	filter: alpha(opacity=80);
	opacity: 0.8;
	-moz-opacity: 0.8;
}


/*主体宽度样式（可选用）如有新宽度，命名规则以小写w开头，后接具体宽度数据，例：*/
.w1160{
	width: 1160px;
	margin: 0 auto;
}
.w1100{
	width: 1100px;
	margin: 0 auto;
}



button {
	cursor: pointer
}

a {
	display: block;
	color: #666;
	text-decoration: none;
	cursor: pointer;
}

* {
	box-sizing: border-box;
}



.pd110{
	padding: 110px 0;
}
.pt110{
	padding-top: 110px;
}

.mt90{
	margin-top: 90px;
}

.h-title{
	font-size: 44px;
	/* font-weight: bold; */
	color: #333333;
	position: relative;
	text-align: center;
	padding-bottom: 10px;
	font-family: SourceHanSansCN-Bold;
}

.h-title::after{
	content: '';
	width: 60px;
	height: 5px;
	background: #6324A4;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.ny-title{
	font-size: 40px;
	/* font-weight: bold; */
	color: #333333;
	font-family: SourceHanSansCN-Bold;
}

.p_title{
	color: #232323;
	font-size: 18px;
	line-height: 30px;
}
.p_title:hover{
	color: #1a5493;
}
.banner .swiper-pagination-bullet{
	width: 22px;
	height: 8px;
	border-radius: 0;
	background: rgb(214, 214, 214);
	opacity: 1;
}
.banner .swiper-pagination .swiper-pagination-bullet-active{
	background: rgb(255, 137, 1);
}
.ny-banner{
	margin-bottom: 10px;
}
.ny-banner img{
	width: 100%;
}
.breadcrumb-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 3px solid #1a5493;
	padding-bottom: 3px;
	margin-bottom: 15px;
}
.breadcrumb-box .left h5 {
    height: 40px;
	line-height: 40px;
    font-weight: normal;
    font-size: 18px;
	color: #1a5493;
}
.breadcrumb-box .right{
	display: flex;
	align-items: center;
}
.breadcrumb-box .right img{
	width: 9px;
	height: 9px;
}

.breadcrumb-box .right a{
	color: #888;
	line-height: 40px;
}
.breadcrumb-box .right a:hover{
	text-decoration: underline;
	color: #1a5493;
}
.breadcrumb-box .right span{
	display: block;
	color: #888;
	line-height: 40px;
	margin: 0 5px;
}

.breadcrumb-box .right span:last-child{
	display: none;
}

.ny-content{
	display: flex;
}
.ny-nav{
	width: 234px;
	
	
}
.ny-nav .nav{
	margin-bottom: 15px;
	background: #eee;
}
.ny-nav .nav ul{
	padding: 18px 0;
}
.ny-nav .nav ul li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	color: #303436;
	transition: 0.4s;
}
.ny-nav .nav ul li:hover a,
.ny-nav .nav ul li.on a{
	background: #1a5493;
	color: #fff;
}
.ny-nav .nav ul li a{
	padding: 10px 32px;
}
.ny-nav .nav ul li a .right-ico{
	width: 7px;
	height: 11px;
	position: relative;
}
.ny-nav .nav ul li a .right-ico img{
	position: absolute;
	inset: 0;
	transition: 0.4s;
}
.ny-nav .nav ul li a .right-ico .on{
	opacity: 0;
}
.ny-nav .nav ul li a .right-ico .show{
	opacity: 1;
}
.ny-nav .nav ul li:hover a .right-ico .on,
.ny-nav .nav ul li.on a .right-ico .on{
	opacity: 1;
}
.ny-nav .nav ul li:hover a .right-ico .show,
.ny-nav .nav ul li.on a .right-ico .show{
	opacity: 0;
}
.recommend-product-box{
	background: #eee;
}

.recommend-product-box .title{
	width: 100%;
	height: 40px;
	padding-left: 10px;
	line-height: 40px;
	font-size: 18px;
	color: #333;
	background: #dfdfdf;
}
.recomProduct-box{
	padding: 10px;
}
.recomProduct-box ul li{
	padding-bottom: 20px;
}
.recomProduct-box ul li .pro-img{
	width: 100%;
	height: 142px;
	overflow: hidden;
}
.recomProduct-box ul li .pro-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.4s;
}
.recomProduct-box ul li:hover .pro-img img{
	transform: scale(1.05);
}
.recomProduct-box ul li a p{
	width: 100%;
	font-weight: bold;
	line-height: 20px;
	color: #1a5493;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
}

.recomProduct-box .swiper-pagination{
	padding: 0 10px;
	text-align: right;
}

.pager{
	display: flex;
	justify-content: center;
	color: #888;
	text-align: center;
	margin-top: 30px;
}
.pager .pagination{
	display: flex;
}
.pager .all,
.pager .page-num{
	white-space: nowrap;
	margin-right: 6px;
	border: solid 1px #dddddd;
	line-height: 22px;
	padding:0px 8px;
	font-size: 14px;
}
.pager ul li a,
.pager ul li span{
	display: block;
	border: solid 1px #dddddd;
	line-height: 22px;
	padding:0px 8px;
	margin: 0 3px;
}
.pager ul li.active span{
	background: #1a5493;
	color: #fff;
}
.pager ul li:hover a{
	background: #1a5493;
	color: #fff;
}