 /* 全局重置 */
 * {box-sizing: border-box;}
 html {-webkit-text-size-adjust: 100%;}
 body {
 	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
 	-webkit-tap-highlight-color: transparent;
 }

 /* 安全区域适配 */
 .container-fluid {
 	padding-left: max(12px, env(safe-area-inset-left));
 	padding-right: max(12px, env(safe-area-inset-right));
 }

 /* 针对微信的特定修复 */
 @media screen and (-webkit-min-device-pixel-ratio: 0) {
 	.wechat-fix {
 		transform: translateZ(0);
 	}
 }

 a {text-decoration: none; color: #454545;}

 .lbc-fs-14 {
 	font-size: 14px;
 }

 .lbc-fs-12 {
 	font-size: 12px;
 }
 .lbc-fs-24 {
 	font-size: 24px;
 }
 .lbc-bg-dh {
 	background-color: #57201b;
 }

 .lbc-text-hong {
 	color: #ff0000;
 }

 .lbc-text-hui {
 	color: #bfbfbf;
 }

 .lbc-border-huang {
 	border-color: #fc6800 !important;
 	color: #fc6800;
 }

 .lbc-border-huang:hover {
 	background-color: #fc6800;
 	color: #ffffff;
 }
 .lbc-border-zong {
 	border-color: #57201b !important;
 }
 .lbc-bg-hong {
 	background-color: #ff0000;
 }

 .lbc-dh:hover {
 	background-color: #ff0000;
 }

 .lbc-b {
 	font-weight: bold;
 }

 .lbc-bg-hang {
 	background-color: #fc6800;
 }

 .lbc-indent2 {
 	text-indent: 2em;
 }

 /* 幻灯片 */
 .carousel-item img {
 	object-fit: cover;
 	object-position: center;
 }

 @media (min-width: 992px) {
 	.carousel-item img {
 		height: 550px;
 	}
 }

 @media (max-width: 991px) {
 	.carousel-item img {
 		height: 300px;
 	}
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
 	background-color: rgba(0, 0, 0, 0.5);
 	border-radius: 50%;
 	width: 30px;
 	height: 30px;
 }

 .carousel-indicators [data-bs-target] {
 	background-color: rgba(0, 0, 0, 0.5);
 	width: 12px;
 	height: 12px;
 	border-radius: 50%;
 }

 .carousel-caption {
 	background-color: rgba(0, 0, 0, 0.5);
 	border-radius: 10px;
 	padding: 15px;
 }

 /* 幻灯片结束 */
 /* huan-x-01点击咨询 */
 .responsive-image {
 	position: relative;
 	width: 100%;
 	overflow: hidden;
 }

 .responsive-image img {
 	object-fit: cover;
 	object-position: center;
 	width: 100%;
 	height: auto;
 }

 .responsive-image .content {
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%, -50%);
 	text-align: center;
 	color: white;
 }

 @media (min-width: 768px) {
 	.responsive-image img {
 		height: 250px;
 	}
 }

 @media (max-width: 767px) {
 	.responsive-image img {
 		height: 200px;
 	}
 }

 .text-truncate-2 {
 	display: -webkit-box;
 	-webkit-box-orient: vertical;
 	-webkit-line-clamp: 2;
 	overflow: hidden;
 	text-overflow: ellipsis;
 }

 /* 上级DIV flex-wrap: wrap; 在PC下自适应宽度，在窗口小于768px下flex按照20%宽度显示 */
 .lbc-fx20 {
 	flex: 0 0 20%;
 	/* 手机端20%宽度 */
 }

 .lbc-fx25 {
 	flex: 0 0 25%;
 }

 .lbc-fx50 {
 	flex: 0 0 50%;
 }

 .lbc-fx-25-50 {
 	flex: 0 0 50%;
 }

 .lbc-sm-bj-hui {
 	background-color: #efefef;
 }

 /* 手机端灰色 */
 .lbc-border-hms {
 	border-top: 1px solid #efefef;
 }

 .lbc-img250-200 img {
 	object-fit: cover;
 	object-position: center;
 	height: 200px;
 }

 @media (min-width:768px) {
 	.lbc-fx20 {
 		flex: 0 0 auto;
 		/* PC端25%宽度 */
 	}

 	.lbc-fx25 {
 		flex: 0 0 auto;
 	}

 	.lbc-fx50 {
 		flex: 0 0 auto;
 	}

 	.lbc-sm-bj-hui {
 		background-color: #ffffff;
 	}

 	/* PC端白色 */
 	.lbc-border-hms {
 		border: none;
 	}

 	.lbc-img250-200 img {
 		height: 250px;
 	}

 	/* PC端高度250px */
 	.lbc-fx-25-50 {
 		flex: 0 0 25%;
 	}
 }

 

 footer {
 	border-top: 3px solid #e52029;
 	background-color: #57201b;
 	overflow: hidden;
 	color: #c3c3c3;
 }

 footer a {
 	color: #efefef;
 }

 /* 标题下划线 */
 .lbc-xia-hong {
 	border-bottom: 2px solid #c3c3c3;
 	display: inline-block;
 	padding-bottom: 2px;
 	position: relative;
 }

 .lbc-xia-hong::after {
 	content: '';
 	position: absolute;
 	left: 0;
 	bottom: -3px;
 	width: 35%;
 	height: 4px;
 	background: #e52029;
 }


 /* 新闻列表分页 */
 .page-num-current {
     z-index: 1;
     color: #fff;
     background-color: #57201b;
     border-color: #c3c3c3;
 }
 .page-num, .page-link {
     position: relative;
     display: block;
     padding: 0.5rem 0.75rem;
     margin-left: -1px;
     line-height: 1.25;
     color: #57201b;
     background-color: #fff;
     border: 1px solid #c3c3c3;
 }
 .page-link:hover {
     z-index: 2; color: #fff;
     background-color: #e52029;
     border-color: #e52029;
 }
 
 
	
	/* 响应式荣誉高度设置 */
	@media (max-width: 576px) {
	  .responsive-height {
		  object-fit: cover;
		  object-position: center;
		width: 100%;
	    height: 135px;
		overflow: hidden;
	  }
	}
	@media (min-width: 577px) and (max-width: 767px) {
	  .responsive-height {
		  object-fit: cover;
		  object-position: center;
		width: 100%;
	    height: 175px;
		overflow: hidden;
	  }
	}
	
	@media (min-width: 768px) and (max-width: 992px) {
	  .responsive-height {
		  object-fit: cover;
		  object-position: center;
		width: 100%;
	    height: 120px;
		overflow: hidden;
	  }
	}
	
	@media (min-width: 993px) {
	  .responsive-height {
		  object-fit: cover;
		  object-position: center;
		width: 100%;
	    height: 225px;
		overflow: hidden;
	  }
	}
	
.lbc-content img{max-width: 100%; height: auto;}
	