
body{
	font-family: 'Microsoft Yahei',SimSun,sans-serif;
}

.page-content{
			margin-top: 112px;
		}
	.nothp{
		box-shadow: 0 2px 10px #d6eefd;
	}
	.nothp .logo h1{
		padding: 0;
		margin: 0;
		width: 172px;
		height: 38px;
		background: url(../img/logo_b.png) no-repeat 0 0;
		text-indent: -9999px;
		overflow: hidden;
		background-size: 100% 100%;
	}
	.nothp a.nav-link{
		color: #2B2E2E !important;
	}

.btn-more{
				font-size:16px;
				border-radius: 0;
				padding:0.5rem 1.0rem;
			}
			
			.news-ctg-container{
				display: flex;
				justify-content: flex-end;
			}
			
			.news-ctg{
						   font-family:"幼圆";
						   list-style: none;
						   margin: 0;
						   margin-top: 40px;
						   padding: 0;
						   position: fixed;
			}
			.news-ctg li{
						   margin-bottom: 8px;
						   text-align: right;
			}
			.news-ctg li>a{
						   opacity: .8;
						   font-weight: bold;
						   text-decoration: none;
						   color: #252526;
						   font-size: 18px;
						   text-align: justify;
			}
			.news-ctg li>a:hover{
						   color: #666668;
			}
			.news-ctg li>a:active{
						   color: #0069D3;
			}
			.news-link.active{
						   color: #0069D3;
			}

/*产品项或新闻项*/
.product-item {
	display: flex;
	flex-direction: column;
	max-width: 390px;
	border-bottom: 3px solid #eeeeee;
	background-color: #fff;
	margin-top: 25px;
	letter-spacing: .5px;
}

.product-item:hover {
	border-bottom: 3px solid #3788FE;
	cursor: pointer;
}

.product-item:hover .product-title {
	color: #3788FE;
	/*text-decoration: underline;*/
}
.product-title-decorate::after{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom: 0;
	width: 0;
	transition: 0.2s linear;
	background-color: #3788FE;
}
.product-item:hover .product-title-decorate::after {
	width: 72px;
}

.product-item:hover .product-desc {
	color: #333333;
}

.product-item-img-box {
	/*position: relative;*/
	/*height: 300px;*/
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #c5dafc;
	background-image: url(../img/u58.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 120px;
	height: 235px;
	overflow: hidden;
}

.product-item-img-box img {
	/*position: absolute;*/
	width: 100%;
	height:100%;
	/*max-height: 100%;*/
	object-fit: cover;
}


			
.product-item-img-box img:hover{
	-webkit-animation: scale-bg 1s linear forwards;
	animation: scale-bg 1s linear forwards;
}

@-webkit-keyframes scale-bg {
	from {-webkit-transform:scale(1);transform:scale(1);}
	to {-webkit-transform:scale(1.2);transform:scale(1.2);}
}
@keyframes scale-bg {
	from {-webkit-transform:scale(1);transform:scale(1);}
	to {-webkit-transform:scale(1.2);transform:scale(1.2);}
}

.product-title {
	color: #333;
	margin-top: 8px;
	font-weight: bold;
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-desc,
.publish-date {
	font-size: 16px;
	color: #6c6c6c;
}

.product-desc {
	height: 48px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: justify;
}

.publish-date {
	margin: 8px 0;
	font-size: 14px;
}

.product-title-decorate {
	width: 72px;
	height: 2px;
	background-color: #eeeeee;
	margin: 8px 0;
	position: relative;
}

/*快速导航新闻列表*/

.news-list {
	list-style-type: none;
	margin: 0;
	margin-top: 10px;
	padding: 0;
	height: 297.6px;
	display: flex;
	flex-direction: column;
	/*justify-content: space-between;*/
	/*margin-top:32.4px;*/
	letter-spacing: .5px;
}

.news-list li {
	/*margin: 0px 0;*/
	/*padding: 0;*/
	margin-top: 15px;
}

.news-list a.news-item{
	display: inline-block;
	/*font-size: 20px;*/
	font-weight: bold;
	color: #333;
	/*color: #000;*/
	text-decoration: none;
	/*color: #3788FE;*/
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;

}

.news-detail {
	display: block;
	text-decoration: none;
	font-size: 16px;
	
	color: #6c6c6c;
	opacity: 1;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	padding-top: 4px;
}
.news-detail:hover{
	color: #5e5e5e;
	text-decoration: underline;
}

/*新闻快速导航*/

.nav-pills .nav-link {
	/*font-family: "microsoft yahei";*/
	/*font-size: 20px;*/
	font-weight: bold;
	color: #333333;
	/*background-color: #ebebeb;*/
	background-color: rgba(235,235,235,0.8);
	border: 0;
	border-radius: 0;
	width: 100%;
}

.nav-pills .nav-link.active {
	color: #f0f0f0;
}

a[aria-expanded="false"] {
	color: #333333;
}

a[aria-expanded="true"] {
	color: #3788FE;
}

.btn-group button{
	/*height: 57px;*/
	height: 48px;
	border-radius: 0;
	font-size: 16px;
}

.contentWraper a{
	display: block;
	text-decoration: none;
}


/*大标题及分隔符*/
.item-title {
	text-align: center;
	margin: 40px 0;
}

			.item-title h3{
				font-family: '宋体';
				font-weight: bold;
				display: inline-block;
				font-size: 20px;
				text-align: center;
				position: relative;
				margin: 0;
				line-height: 1.5;
			}
			
			.item-title h3::after{
				display: block;
				content: "";
				height: 6px;
				width: 60%;
				margin: 0 auto;
				background: #3788FE;
			}
			
			.item-title h3::before{
				display: block;
				content: "";
				height: 1px;
				width: 160%;
				
				background: #c2c2cc;
				position: absolute;
				left:-30%;
				top:35px;
				z-index:-100;
			}
			


/*段标题*/
.item-title-sub{
	margin: 40px 0 0 0;
}
.item-title-zn {
	font-size: 16px;
	font-weight: bold;
}

.item-title-en {
	width: 201px;
	font-family: "Monotype Corsiva Normal", "Monotype Corsiva", sans-serif;
	border-bottom: 2px solid #EEEEEE;
}

.btn-more{
	font-size:16px;
	border-radius: 0;
	padding:0.5rem 1.0rem;
}

/*幻灯片*/
.carousel-indicators [data-bs-target] {
	width: 16px;
	height: 16px;
	border-radius: 50%;
}

.carousel-inner{
	/*height: 378px;*/
	height: 338px;
}
.carousel-inner img{
	width: 100%;
	/*height: 378px;*/
	height: 338px;
}

.custom-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 40px;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	padding-right: 2rem;
	list-style: none;
}

.custom-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex !important;
	justify-content: flex-start;
	align-items: center;
	height: 40px;
	color: #fff;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 2rem;
	text-align: left;
	background-color: rgba(111, 149, 207, 0.5);
}

.custom-caption h5 {
	padding: 0;
	margin: 0;
	font-size: 1rem;
}
.custom-caption h5>a {
	text-decoration: none;
	color: #fff;
}

.carousel-blue .carousel-indicators [data-bs-target] {
	background-color: #fff;
	/*#0049dd*/
	opacity: 0.9;
}

.carousel-blue .carousel-indicators .active {
	background-color: #0049dd !important;
}

@media screen and (max-width:768px) {
	
	/*幻灯片*/
	.carousel-indicators [data-bs-target] {
		width: 15px;
		height: 15px;
		border-radius: 50%;
	}
	.custom-indicators {
		padding-right: 8px;
		height: 36px;
	}
	.custom-caption {
		height: 36px;
		padding-left: 10px;
	}
	.custom-caption h5 {
		font-size: 12px;
	}
	.m-b-30{
		margin-bottom: 30px;
	}
	
	/*大标题及分隔符*/
	.item-title {
		padding: 30px 0 30px 0;
	}
	.item-title h3 {
		font-size: 18px;
		text-align: center;
	}
	/*段标题*/
	.item-title-sub{
		padding: 20px 0 0px 0;
	}
	.item-title-zn {
		font-size: 20px;
		font-weight: bold;
	}
	.item-title-en {
		width: 201px;
		font-family: "Monotype Corsiva Normal", "Monotype Corsiva", sans-serif;
		font-size: 16px;
		border-bottom: 2px solid #EEEEEE;
	}
}
