/*$$
{"color":[
{"val":"#000000","title":"主要文字颜色"},
{"val":"#ffffff","title":"白色文字/按钮文字"},
{"val":"#bfbfbf","title":"分页默认/非激活文字"},
{"val":"#666e80","title":"文章简介文字"},
{"val":"#999999","title":"文章日期"},
{"val":"#0d3795","title":"分类标题/hover色"}],
"background":[ 
{"val":"#f4f4f4","title":"侧栏与卡片浅灰底"},
{"val":"#f7f7f7","title":"二级分类展开底"},
{"val":"#0d3795","title":"分类背景颜色/hover色"},
{"val":"rgba(0,0,0,.85)","title":"视频弹窗遮罩"}],
"border":[
{"val":"#e6e6e6","title":"分隔线/边框"}]}
$$*/
#proList_xxx{
	width: 1200px;
	margin:20px auto;
}
#proList_xxx .className{
	height: 50px;
	border-bottom: #e6e6e6 solid 1px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
#proList_xxx .className .title-1{
	font-size: 22px;
	color: #000000;
	position: relative;
	display: inline-block;
	font-weight: bold;
}
#proList_xxx .className .title-1 a{
	color: #000000;
}
#proList_xxx .className .title-2,
#proList_xxx .className .title-2 a{
	color: #000000;
	font-size: 14px;
}
#proList_xxx .listbox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
#proList_xxx .classleft{
	width: 300px;
	float: left;
}
#proList_xxx .contactBox{
	width: 300px;
	display: block;
	background: #f4f4f4;
}
#proList_xxx .subClass{
	width: 300px;
	display: block;
	background: #f4f4f4;
	padding-bottom:5px;
	margin-bottom: 20px;
}
#proList_xxx .subClass dt,
#proList_xxx .subClass-dt,
#proList_xxx .toptact{
	width: 100%;
	background: #0d3795;
	font-size: 22px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	position: relative;
	color: #ffffff;
}
#proList_xxx .contact{
	border-bottom: #e6e6e6 solid 1px;
	width: 100%;
	color: #000000;
	padding: 10px 0;
	line-height: 32px;
}
#proList_xxx .contact p{
	font-size: 18px;
	text-align: center;
}
#proList_xxx .contact span{
	font-size:22px;
	font-weight: 550;
	text-align: center;
	display: block;
}
#proList_xxx .code{
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 40px;
	font-size: 16px;
	color: #000000;
}
#proList_xxx .code img{
	width: 150px;
	height: 150px;
	object-fit: cover;
}
#proList_xxx .subClass dt a,
#proList_xxx .subClass-dt a{
	color: #ffffff;
	text-decoration: none;
}
/* JS 无限级分类树（#js-subClass 内动态插入） */
#proList_xxx .subClass .levelClass{
	width: 100%;
	border-bottom: #e6e6e6 solid 1px;
}
#proList_xxx .subClass .classTitRow{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	padding: 8px 12px 8px 0;
	box-sizing: border-box;
}
#proList_xxx .subClass .classTitLink{
	flex: 1;
	min-width: 0;
	position: relative;
	padding: 8px 12px 8px 48px;
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
	text-decoration: none;
	display: block;
}
/* 一级左侧蓝点（与旧版 .title::after 一致） */
#proList_xxx .subClass .classTitLink::before{
	content: '';
	position: absolute;
	left: 22px;
	top: 50%;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	background: #0d3795;
	border-radius: 50%;
	z-index: 1;
}
#proList_xxx .subClass .classTitLink:hover,
#proList_xxx .subClass .classTitLink.active{
	color: #0d3795;
}
/* 有子级时：仅箭头可点展开，样式同二级 .secondBtn */
#proList_xxx .subClass .classTitBtn{
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin-left: 4px;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}
#proList_xxx .subClass .classTitBtn::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	margin: -3px 0 0 -5px;
	border: 6px solid transparent;
	border-top-color: #999999;
	transition: transform .2s ease;
}
#proList_xxx .subClass .classTitBtn.open::after{
	transform: rotate(180deg);
	margin-top: -9px;
}
#proList_xxx .subClass .classTitBtn:hover::after{
	border-top: #0d3795;
}
#proList_xxx .subClass .secondTit{
	display: none;
	background: #f7f7f7;
	padding: 0 0 8px;
}
#proList_xxx .subClass .secondTitItem{
	border-bottom: #e6e6e6 solid 1px;
}
#proList_xxx .subClass .secondTitItem:last-child{
	border-bottom: none;
}
#proList_xxx .subClass .secodClass{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	padding: 0 12px 0 32px;
}
#proList_xxx .subClass .secondname{
	flex: 1;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
}
#proList_xxx .subClass .secondname.active,
#proList_xxx .subClass .secondname:hover{
	color: #0d3795;
}
#proList_xxx .subClass .secondBtn{
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	margin-left: 8px;
	cursor: pointer;
	position: relative;
}
#proList_xxx .subClass .secondBtn::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	margin: -4px 0 0 -3px;
	border: 5px solid transparent;
	border-top-color: #999999;
	transition: transform .2s;
}
#proList_xxx .subClass .secondBtn.open::after{
	transform: rotate(180deg);
	margin-top: -6px;
}
#proList_xxx .subClass .thirdTit{
	display: none;
	padding-left: 16px;
	background: #f4f4f4;
}
#proList_xxx .subClass dd{
	width: 100%;
	font-size: 16px;
	position: relative;
	cursor: pointer;
	margin-bottom: 2px;
	line-height: 90px;
}
#proList_xxx .subClass .title{
	height: 65px;
	line-height:65px;
	text-indent: 80px;
	display: block;
	width: 100%;
	font-size: 18px;
	color: #000000;
	position: relative;
	transition: hover .3s ease;
}
#proList_xxx .subClass .title::after{
	width: 8px;
	content: '';
	position: absolute;
	left:50px;
	top:50%;
	height: 8px;
	background:#0d3795;
	z-index: 100;
	margin-top: -4px;
	border-radius: 50%;
}
#proList_xxx .subClass dd .title.active,
#proList_xxx .subClass .title:hover{
	color: #0d3795;
}

#proList_xxx .subClass dd .moulmnList{
	background: #f4f4f4;
	padding: 0 8px;
	width: 100%;
	list-style-type: none;
	text-indent: 80px;
	display: none;
}
#proList_xxx .subClass dd .moulmnList li{
	line-height: 54px;
	font-size: 14px;
	color: #000000;
	width: 100%;
	height: 54px;
	border-bottom: #e6e6e6 solid 1px;
}
#proList_xxx .subClass dd .moulmnList li a{
	color: #000000;
}
#proList_xxx .subClass dd .moulmnList li.active a{
	color: #0d3795;
}
#proList_xxx .proliCon{
	flex: 1;
	width: 100%;
	gap: 10px;
}
#proList_xxx .proliCon.noLeft{
	width: 100%;
}
/* 列表空状态 */
#proList_xxx .proliCon .noData{
	grid-column: 1 / -1;
	width: 100%;
	min-height: 260px;
	margin: 8px 0 24px;
	padding: 40px 28px 44px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(180deg, #fafbfd 0%, #f3f5f9 100%);
	border: 1px dashed #d5dce6;
	border-radius: 12px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
#proList_xxx .proliCon .noData-icon{
	display: block;
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: linear-gradient(160deg, #eef2f8 0%, #e2e8f2 100%);
	box-shadow: inset 0 2px 6px rgba(255,255,255,.9), 0 4px 14px rgba(13,55,149,.06);
	position: relative;
}
#proList_xxx .proliCon .noData-icon::before,
#proList_xxx .proliCon .noData-icon::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 6px;
}
#proList_xxx .proliCon .noData-icon::before{
	width: 36px;
	height: 44px;
	border: 2px solid #b8c5d9;
	background: rgba(255,255,255,.65);
}
#proList_xxx .proliCon .noData-icon::after{
	width: 20px;
	height: 3px;
	margin-top: 8px;
	background: #d0d8e6;
	border-radius: 2px;
	box-shadow: 0 -10px 0 #d0d8e6, 0 -20px 0 #d0d8e6;
}
#proList_xxx .proliCon .noData-title{
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 600;
	color: #000000;
	opacity: 0.8;
	letter-spacing: 0.02em;
}
#proList_xxx .proliCon .noData-desc{
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #000000;
	opacity: 0.6;
	max-width: 320px;
}

.pages{
	width: 100%;
	margin: 20px auto;
	height: 30px;
	line-height: 30px;
}
.pages .pagination{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}
.pages .pagination li{
	color: #bfbfbf;
	padding: 0 5px;
	line-height: 30px;
	display: inline-block;
	margin: 0 5px;
}
.pages .pagination li a{
	color: #bfbfbf;
}
.pages .pagination li.active{
	background: #0d3795;
	color: #ffffff;
	border-radius: 50%;
	height: 30px;
	padding: 0 10px;
}
/* 视频弹窗 */
#videoDialog{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.85);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
#videoDialog.cur{
    display: flex;
}
#videoDialog video{
    width: auto;
	height: auto;
    max-width: 900px;
    max-height: 80vh;
    border-radius: 6px;
    outline: none;
}
#videoDialog .dialogClose{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
    transition: opacity .2s;
}
#videoDialog .dialogClose:hover{
    opacity: .7;
}
#proList_xxx .listCon{
	width: 100%;
	float: right;
}
#proList_xxx .listCon li{
	width: 100%;
	height: auto;
	padding: 10px 0 20px 0;
	border-bottom:#e6e6e6 1px dashed;
}
#proList_xxx .listCon li .list_top{
	width: 100%;
	line-height: 55px;
}
#proList_xxx .listCon li .list_bottom{
	width: 100%;
	font-size: 14px;
	color: #666e80;  
	line-height: 32px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
#proList_xxx .listCon li a{
	width: 100%;
	display: block;
} 
#proList_xxx .listCon .tit{
	width: calc(100% - 150px);
	float: left;
	display: block;
	color: #000000;
	font-size: 18px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
#proList_xxx .listCon li:hover .tit{
	color: #0d3795;
}
#proList_xxx .listCon .date{
	float: right;
	color: #999999;
	font-size: 14px;
	background: url(/static/images/LT00002_05.png) no-repeat left center;
	background-size: 16px 16px;
	padding-left: 25px;
}
@media screen and (max-width:1200px) {
	#proList_xxx{
		width: 96%;
	}
	#proList_xxx .proliCon .itemLi .name{
		line-height: 30px;
		height: 30px;
	}
}
@media screen and (max-width:992px){
	#proList_xxx{
		width: 100%;
		padding: 0 15px;
		margin: 0;
	}
	#proList_xxx .classleft{
		float: none;
		width: 100%;
		max-width: 100%;
		margin-bottom: 15px;
	}
	#proList_xxx .subClass{
		width: 100%;
	}
	#proList_xxx .contactBox{
		display: none;
	}
	#proList_xxx .proliCon{
		width: 100%;
		float: none;
	}
	#proList_xxx .proliCon .itemLi .name{
		line-height: 30px;
		height: 30px;
	}
}
@media screen and (max-width:767px){
	#proList_xxx .subClass{
		margin-bottom: 0;
	}
	#proList_xxx .listbox{
		flex-direction: column;
		gap:0;
	}
	#proList_xxx .proliCon{
		justify-content: start;
	}
	#proList_xxx .proliCon{
		width: 100%;
		margin-right: 0;
		padding-top: 5px;
	}
	#proList_xxx .proliCon .itemLi .name{
		font-size: 14px;
		line-height: 30px;
		height: 30px;
	}
	#proList_xxx .className .title-1{
		font-size: 18px;
	}
	#proList_xxx .className{
		padding: 0 5px;
		line-height: 40px;
		height: 40px;
		margin-bottom: 5px;
	}
	#proList_xxx .subClass dt,
	#proList_xxx .subClass-dt,
	#proList_xxx .toptact{
		height: 50px;
		font-size: 18px;
	}
	#proList_xxx .subClass .title{
		height: 45px;
		line-height: 45px;
		font-size: 16px;
	}
	#proList_xxx .proliCon .noData{
		min-height: 220px;
		padding: 28px 18px 32px;
	}
	#proList_xxx .proliCon .noData-icon{
		width: 64px;
		height: 64px;
		margin-bottom: 14px;
	}
	#proList_xxx .proliCon .noData-title{
		font-size: 16px;
	}
	#proList_xxx .proliCon .noData-desc{
		font-size: 12px;
	}
}