/*$$
{"color":[
{"val":"#000000","title":"页眉标题/正文/侧栏分类与列表默认字色"},
{"val":"#0d3795","title":"链接与当前项悬停、激活；一级圆点"},
{"val":"#ffffff","title":"侧栏顶栏字色；分页当前页字；视频关闭按钮"},
{"val":"#bfbfbf","title":"分页未选中页码与链接"}],
"background":[
{"val":"#0d3795","title":"侧栏 dt 标题栏、分页 li.active 圆形底"},
{"val":"#f4f4f4","title":"联系区、侧栏主体、三级区、栏目列表容器"},
{"val":"#f7f7f7","title":"二级分类展开区"},
{"val":"rgba(0,0,0,.85)","title":"视频全屏遮罩"}],
"border":[
{"val":"#e6e6e6","title":"顶栏下划线、侧栏行分隔、表格与列表底边"}]}
$$*/
#detail_xxx{
	width: 1200px;
	margin:20px auto;
}
#detail_xxx .className{
	height: 50px;
	border-bottom:#e6e6e6 solid 1px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
#detail_xxx .className .title-1{
	font-size: 22px;
	color: #000000;
	position: relative;
	display: inline-block;
	font-weight: bold;
}
#detail_xxx .className .title-1 a{
	color: #000000;
}
#detail_xxx .className .title-2,
#detail_xxx .className .title-2 a{
	color: #000000;
	font-size: 14px;
}
#detail_xxx .listbox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
#detail_xxx .classleft{
	width: 300px;
	float: left;
}
#detail_xxx .contactBox{
	width: 300px;
	display: block;
	background: #f4f4f4;
}
#detail_xxx .subClass{
	width: 300px;
	display: block;
	background: #f4f4f4;
	padding-bottom:5px;
	margin-bottom: 20px;
}
#detail_xxx .subClass dt,
#detail_xxx .subClass-dt,
#detail_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;
}
#detail_xxx .contact{
	border-bottom:#e6e6e6 solid 1px;
	width: 100%;
	color: #000000;
	padding: 10px 0;
	line-height: 32px;
}
#detail_xxx .contact p{
	font-size: 18px;
	text-align: center;
}
#detail_xxx .contact span{
	font-size:22px;
	font-weight: 550;
	text-align: center;
	display: block;
}
#detail_xxx .code{
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 40px;
	font-size: 16px;
	color: #000000;
}
#detail_xxx .code img{
	width: 150px;
	height: 150px;
	object-fit: cover;
}
#detail_xxx .subClass dt a,
#detail_xxx .subClass-dt a{
	color: #ffffff;
	text-decoration: none;
}
/* JS 无限级分类树（#js-subClass 内动态插入） */
#detail_xxx .subClass .levelClass{
	width: 100%;
	border-bottom: #e6e6e6 solid 1px;
}
#detail_xxx .subClass .classTitRow{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	padding: 8px 12px 8px 0;
	box-sizing: border-box;
}
#detail_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 一致） */
#detail_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;
}
#detail_xxx .subClass .classTitLink:hover,
#detail_xxx .subClass .classTitLink.active{
	color: #0d3795;
}
/* 有子级时：仅箭头可点展开，样式同二级 .secondBtn */
#detail_xxx .subClass .classTitBtn{
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin-left: 4px;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}
#detail_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;
}
#detail_xxx .subClass .classTitBtn.open::after{
	transform: rotate(180deg);
	margin-top: -9px;
}
#detail_xxx .subClass .classTitBtn:hover::after{
	border-top-color: #0d3795;
}
#detail_xxx .subClass .secondTit{
	display: none;
	background: #f7f7f7;
	padding: 0 0 8px;
}
#detail_xxx .subClass .secondTitItem{
	border-bottom: #e6e6e6 solid 1px;
}
#detail_xxx .subClass .secondTitItem:last-child{
	border-bottom: none;
}
#detail_xxx .subClass .secodClass{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	padding: 0 12px 0 32px;
}
#detail_xxx .subClass .secondname{
	flex: 1;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
}
#detail_xxx .subClass .secondname.active,
#detail_xxx .subClass .secondname:hover{
	color: #0d3795;
}
#detail_xxx .subClass .secondBtn{
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	margin-left: 8px;
	cursor: pointer;
	position: relative;
}
#detail_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;
}
#detail_xxx .subClass .secondBtn.open::after{
	transform: rotate(180deg);
	margin-top: -6px;
}
#detail_xxx .subClass .thirdTit{
	display: none;
	padding-left: 16px;
	background: #f4f4f4;
}
#detail_xxx .subClass dd{
	width: 100%;
	font-size: 16px;
	position: relative;
	cursor: pointer;
	margin-bottom: 2px;
	line-height: 90px;
}
#detail_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;
}
#detail_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%;
}
#detail_xxx .subClass dd .title.active,
#detail_xxx .subClass .title:hover{
	color: #0d3795;
}

#detail_xxx .subClass dd .moulmnList{
	background: #f4f4f4;
	padding: 0 8px;
	width: 100%;
	list-style-type: none;
	text-indent: 80px;
	display: none;
}
#detail_xxx .subClass dd .moulmnList li{
	line-height: 54px;
	font-size: 14px;
	color: #000000;
	width: 100%;
	height: 54px;
	border-bottom:#e6e6e6 solid 1px;
}
#detail_xxx .subClass dd .moulmnList li a{
	color: #000000;
}
#detail_xxx .subClass dd .moulmnList li.active a{
	color: #0d3795;
}
.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;
}
#detail_xxx .contentR{
	flex: 1;
	width: auto;
	min-width: 0;
	float: none;
}
#detail_xxx .content > header{
	margin: 0;
	padding: 0;
	border: none;
}
#detail_xxx .content .title{
	font-size: 22px;
	color: #000000;
	width: 100%;
	text-align: center;
	line-height: 80px;
	word-wrap: break-word;
	display: block;
	border-bottom:#e6e6e6 solid 2px;
	margin: 0;
	font-weight: bold;
}
#detail_xxx .content .cont{
	width: 100%;
	font-size: 14px;
	color: #000000;
	line-height: 30px;
	padding: 40px 0;
}
#detail_xxx .content .cont table{
	border:#e6e6e6 solid 0.5px ;
	max-width: 100%;
	border-spacing: inherit;
}
#detail_xxx .content .cont tr,
#detail_xxx .content .cont td{
	border:#e6e6e6 solid 0.5px ;
	text-align: center;
}
#detail_xxx .content .cont .imgT{
	text-align: center;
}
#detail_xxx .content .cont p{
	width: 100%;
	margin: 5px 0;
}
#detail_xxx .content .cont p img{
	max-width: 100%;
	width: auto;
	margin: 0 auto;
}
#detail_xxx .contpage{
	width: 100%;
	font-size: 14px;
}
#detail_xxx .contpage .page{
	width: 100%;
	font-size: 14px;
	line-height: 32px;
	display: block;
	color: #000000;
}
#detail_xxx .contpage .page.disable{
	opacity: 0.7;
}
@media screen and (max-width:1200px) {
	#detail_xxx{
		width: 96%;
	}
}
@media screen and (max-width:992px){
	#detail_xxx{
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
	}
	#detail_xxx .classleft{
		float: none;
		width: 100%;
		max-width: 100%;
		margin-bottom: 15px;
	}
	#detail_xxx .subClass{
		width: 100%;
	}
	#detail_xxx .contactBox{
		display: none;
	}
	#detail_xxx .listbox{
		flex-direction: column;
	}
	#detail_xxx .contentR{
		width: 100%;
	}
}
@media screen and (max-width:767px){
	#detail_xxx{
		padding: 20px 0;
	}
	#detail_xxx .className{
		flex-wrap: wrap;
		align-items: flex-start;
		height: auto;
		min-height: 50px;
		line-height: normal;
		padding: 0 5px;
		margin-bottom: 5px;
	}
	#detail_xxx .className .title-1{
		font-size: 18px;
		width: 100%;
	}
	#detail_xxx .className .title-2{
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 12px;
	}
	#detail_xxx .subClass dt,
	#detail_xxx .toptact{
		height: 50px;
		font-size: 18px;
	}
	#detail_xxx .subClass .title{
		height: 45px;
		line-height: 45px;
		font-size: 16px;
	}
	#detail_xxx .content .title{
		line-height: 30px;
		font-size: 20px;
		padding: 10px;
	}
	#detail_xxx .content .cont{
		padding: 20px 0;
		line-height: 26px;
	}
	#detail_xxx .content .cont table{
		width: 100% !important;
	}
}
