/* 页面内容区样式配置 */
/*$$
{
  "color": [
    { "val": "#000000", "title": "深色主文字" },
    { "val": "#1b1b1b", "title": "更深的说明文字" },
    { "val": "#072567", "title": "深蓝链接/标题强调" },
    { "val": "#033dd6", "title": "主标题/链接色" },
    { "val": "#ffffff", "title": "白色文字" },
    { "val": "#565f72", "title": "次级文字色" },
    { "val": "#707070", "title": "辅助说明文字色" },
    { "val": "#dcdcdc", "title": "置灰/弱化文字" },
    { "val": "#87a9d1", "title": "浅蓝说明文字色" },
    { "val": "#c0daf9", "title": "深色背景上的浅色文字" },
    { "val": "#c1dbf9", "title": "高亮浅色文字" }
  ],
  "background": [
    { "val": "#0060fc", "title": "主蓝背景/按钮底色" },
    { "val": "#033dd6", "title": "深蓝按钮/标题背景" },
    { "val": "#0d3795", "title": "新闻区块背景" },
    { "val": "#092b77", "title": "新闻列表项背景" },
    { "val": "#f3f7fc", "title": "页面/区块底色" },
    { "val": "rgb(255, 255, 255,0.9)", "title": "产品底色背景" },
    { "val": "rgba(0, 96, 255, .8)", "title": "PDF遮罩背景" },
    { "val": "rgba(0,0,0,.85)", "title": "视频弹窗蒙层" },
    { "val": "rgba(0,0,0,0.8)", "title": "视频/遮罩蒙层(透明)" }
  ],
  "border": [
    { "val": "#d1dae5", "title": "通用边框色" }
  ]
}
$$*/
/* 产品中心 */
#product_161{
    width:100%;
    background: #f3f7fc;
}
#product_161 .proContainer{
	background:rgb(255, 255, 255,0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	max-width: 1240px;
	width: 100%;
	margin: -40px auto 0;
	position: relative;
	z-index:10;
	padding: 0 50px;
	box-sizing: border-box;
}
#product_161 .proTop{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	position: relative;
}
#product_161 .proTop .titBox{
    display: flex;
    gap:5px;
    align-items: flex-end;
}
#product_161 .proTop h2 {
    font-size: 28px;
    color: #033dd6;
    font-weight: bold;
    line-height: 1.2;
}
#product_161 .proTop p {
    font-size: 16px;
    color: #c0daf9;
    margin-top: 6px;
}
#product_161 .proTop .moreBtn {
    font-size: 14px;
    color: #565f72;
    padding: 6px 15px 6px;
    white-space: nowrap;
	position: absolute;
	right:0;
	top:20px;
    transition: all .3s;
    background: url(/static/images/NP00059_03.png) no-repeat right top;
}
#product_161 .proCent{
	display: flex;
	justify-content: space-between;
	gap:75px;
}
#product_161 .proCent .imgT{
	width: 480px;
	aspect-ratio: 4 / 3;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}
#product_161 .proCent .imgT .img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#product_161 .proBox{
	flex: 1;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#product_161 .proBox h4{
	font-size: 20px;
	color: #000000;
	font-weight: bold;
	line-height: 35px;
}
#product_161 .proBox h5{
	font-size: 16px;
	color: #565f72;
	line-height: 32px;
}
#product_161 .proBox .intro{
	font-size: 14px;
	color: #707070;
	line-height: 22px;
	margin: 20px 0 50px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:5;
}
#product_161 .proBox .btnMore{
	border-radius: 15px;
	border:#d1dae5 solid 1px;
	font-size: 12px;
	color: #565f72;
	display: inline-block;
	padding: 0 18px;
	height: 30px;
	line-height: 28px;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .3s;
}
#product_161 .proBox .btnMore:hover{
	background: #0060fc;
	color: #ffffff;
}
#product_161 .proBottom{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 25px;
	padding-top: 30px;
	padding-bottom: 50px;
}
#product_161 .proBottom .proItem{
	width: 100%;
	height: auto;
	overflow: hidden;
	transition: all .3s;
}
#product_161 .proBottom .proItem:hover{
	transform:translateY(-12px);
}
#product_161 .proBottom .proItem .proImg{
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	border-radius: 4px;
	border:#d1dae5 solid 1px;
	aspect-ratio: 4 / 3;
}
#product_161 .proBottom .proItem img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
#product_161 .proBottom .proItem:hover img{
	transform: scale(1.1);
}
#product_161 .proBottom .proItem .proCont{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px 10px 30px;
	box-sizing: border-box;
	overflow: hidden;
}
#product_161 .proBottom .proItem .proCont h5{
	font-size: 16px;
	color: #000000;
	font-weight: bold;
	line-height: 26px;
	display: block;
	width: 100%;
}
#product_161 .proBottom .proItem .proCont p{
	color: #565f72;
	font-size: 14px;
	line-height: 24px;
	min-height: 24px;
	display: block;
	width: 100%;
}
#product_161 .proBottom .proItem .proCont span{
	border-radius: 15px;
	border:#d1dae5 solid 1px;
	font-size: 12px;
	color: #565f72;
	display: inline-block;
	padding: 0 18px;
	height: 30px;
	line-height: 28px;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .3s;
	margin-top: 15px;
}
#product_161 .proBottom .proItem:hover .proCont span{
	background: #0060fc;
	color: #ffffff;
}
/* iPad 适配 */
@media screen and (max-width: 1024px) {
	#product_161 {
		padding: 0 30px;
	}
	#product_161 .proCent {
		gap: 40px;
	}
	#product_161 .proCent .imgT {
		width: 360px;
	}
	#product_161 .proBottom {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	#product_161 .proBox .intro {
		margin: 15px 0 30px;
	}
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
	#product_161 .proContainer{
		padding: 0 25px;
	}
	#product_161 {
		padding: 0 15px;
		margin: -20px auto 0;
	}
	#product_161 .proTop {
		height: 70px;
	}
	#product_161 .proTop h2 {
		font-size: 22px;
	}
	#product_161 .proCent {
		flex-direction: column;
		gap: 20px;
	}
	#product_161 .proCent .imgT {
		width: 100%;
	}
	#product_161 .proBox h4 {
		font-size: 17px;
		line-height: 28px;
	}
	#product_161 .proBox h5 {
		font-size: 14px;
	}
	#product_161 .proBox .intro {
		margin: 12px 0 20px;
	}
	#product_161 .proBottom {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding-top: 20px;
		padding-bottom: 30px;
	}
	#product_161 .proBottom .proItem .proCont h5 {
		font-size: 14px;
	}
	#product_161 .proBottom .proItem .proCont p {
		font-size: 12px;
	}
	#product_161 .proBottom .proItem:hover {
		transform: none;
	}
}
/* pdf */
#pdf_161{
    background: #f3f7fc;
    width: 100%;
    padding: 80px 0;
    position: relative;
}
#pdf_161 .pdfCont{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap:30px;
    align-items: stretch;
    padding: 0 20px;
    box-sizing: border-box;
}
#pdf_161 .pdfTop{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    margin-bottom: 20px;
}
#pdf_161 .pdfTop span{
    display: flex;
    gap:5px;
    align-items: flex-end;
}
#pdf_161 .pdfTop h2{
    font-size: 26px;
    color: #033dd6;
    font-weight: bold;
}
#pdf_161 .moreBtn {
    font-size: 12px;
    color: #565f72;
    padding: 6px 15px 6px;
    white-space: nowrap;
    transition: all .3s;
    background: url(/static/images/NP00060_05.png) no-repeat right top;
}
#pdf_161 .pdfBox{
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
#pdf_161 .pdfList{
    display: flex;
    gap:20px;
    flex: 1;
}
#pdf_161 .pdfItem{
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
#pdf_161 .pdfItem::before{
    width: 100%;
    height: 4px;
    background: #033dd6;
    content: '';
    position: absolute;
    left: 0;
    top:0;
    z-index: 1;
}
#pdf_161 .pdfItem .pdfview{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background:rgba(0, 96, 255, .8);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    box-sizing: border-box;
}
#pdf_161 .pdfItem .pdfview span{
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    width: 100%;
	text-align: center;
}
#pdf_161 .pdfItem .pdfview p{
    font-size: 14px;
    line-height: 20px;
}
#pdf_161 .pdfItem .pdfview p i{
    background: url(/static/images/NP00060_06.png) no-repeat right 6px;
    padding-right: 20px;
    display: inline-block;
}
#pdf_161 .pdfItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
#pdf_161 .pdfItem:hover img{
    transform: scale(1.05);
}
#pdf_161 .videoBox{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#pdf_161 .videoCon{
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
#pdf_161 .videoCon .btnplay{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 1;
}
#pdf_161 .videoCon .videoImg{
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}
#pdf_161 .videoCon .poster{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
#pdf_161 .videoCon:hover .poster{
    transform: scale(1.05);
}
#pdf_161 .videoCon p{
    height: 50px;
    background-color: #0060fc;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* iPad 适配 */
@media screen and (max-width: 1024px) {
    #pdf_161 {
        padding: 60px 0;
    }
    #pdf_161 .pdfTop h2 {
        font-size: 22px;
    }
    #pdf_161 .pdfItem .pdfview span {
        font-size: 15px;
        line-height: 26px;
    }
    #pdf_161 .videoCon p {
        font-size: 16px;
    }
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    #pdf_161 {
        padding: 50px 0;
    }
    #pdf_161 .pdfCont {
        flex-direction: column;
        gap: 40px;
    }
    #pdf_161 .pdfBox {
        width: 100%;
    }
    #pdf_161 .videoBox {
        width: 100%;
    }
    #pdf_161 .pdfList {
        gap: 12px;
    }
    #pdf_161 .pdfTop h2 {
        font-size: 20px;
    }
    #pdf_161 .pdfItem .pdfview span {
        font-size: 13px;
        line-height: 22px;
    }
    #pdf_161 .pdfItem .pdfview p {
        font-size: 12px;
    }
    #pdf_161 .videoCon p {
        font-size: 15px;
        height: 42px;
    }
    #pdf_161 .videoCon .btnplay {
        width: 44px;
        height: 44px;
    }
}
/* 视频弹窗 */
#pdf_161 .dialog{
    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;
}
#pdf_161 .dialog.cur{
    display: flex;
}
#pdf_161 .dialog video{
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    border-radius: 6px;
    outline: none;
}
#pdf_161 .dialog .dialogClose{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
    transition: opacity .2s;
}
#pdf_161 .dialog .dialogClose:hover{
    opacity: .7;
}
/* 新闻资讯 */
/* 新闻资讯 */
#news_161 {
    background: #0d3795;
    width: 100%;
    padding: 80px 0;
}
#news_161 .newsCont {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
#news_161 .newsTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
#news_161 .newsTit span{
    display: flex;
    gap:5px;
    align-items: flex-end;
}
#news_161 .newsTit h2 {
    font-size: 28px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}
#news_161 .newsTit p {
    font-size: 16px;
    color: #c0daf9;
    margin-top: 6px;
}
#news_161 .moreBtn {
    font-size: 14px;
    color: #c1dbf9;
    padding: 6px 15px 6px;
    white-space: nowrap;
    transition: all .3s;
    background: url(/static/images/NP00061_03.png) no-repeat right top;
}
#news_161 .newsList {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
/* 左侧主新闻 */
#news_161 .newsMain {
    flex: 0.5;
    overflow: hidden;
    position: relative;
}
#news_161 .newsImg {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
#news_161 .newsImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
#news_161 .newsMain:hover .newsImg img {
    transform: scale(1.05);
}
#news_161 .newsInfo{
    padding: 0 20px;
    line-height: 50px;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    background: rgba(0,0,0,0.8);
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}
#news_161 .newsDate {
    font-size: 12px;
    margin-top: auto;
    position: absolute;
    color: #072567;
    left:20px;
    bottom: 55px;
}
/* 右侧新闻列表 */
#news_161 .newsGroup {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}
#news_161 .newsItem {
    display: flex;
    gap: 16px;
    align-items: stretch;
    border-radius: 8px;
    padding:15px 80px 15px 0;
    background: #092b77;
    box-sizing: border-box;
}
#news_161 .newsItemInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#news_161 .newsItemInfo h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    line-height: 32px;
}
#news_161 .newsItemInfo span{
    font-size: 14px;
    color: #dcdcdc;
    line-height: 26px;
}
#news_161 .newsItemDate{
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:5px;
}
#news_161 .newsItemDate span{
    font-size: 34px;
    color: #87a9d1;
    font-weight: bold;
}
#news_161 .newsItemDate p{
    font-size: 12px;
    color: #87a9d1;
}
/* iPad 适配 */
@media screen and (max-width: 1024px) {
    #news_161 .newsList {
        gap: 20px;
    }
    #news_161 .newsItemImg {
        width: 90px;
    }
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    #news_161 {
        padding: 50px 0;
    }
    #news_161 .newsTop {
        margin-bottom: 24px;
    }
    #news_161 .newsTit h2 {
        font-size: 22px;
    }
    #news_161 .newsList {
        flex-direction: column;
        gap: 16px;
    }
    #news_161 .newsMain {
        flex: none;
    }
    #news_161 .newsGroup {
        gap: 12px;
    }
    #news_161 .newsItemImg {
        width: 90px;
    }
    #news_161 .newsInfo{
        font-size: 16px;
    }
}
/* 关于我们 */
/* 关于我们 */
#about_161 {
    background: #f3f7fc;
    width: 100%;
    padding: 80px 0 60px;
}
#about_161 .aboutCont {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 80px;
}
#about_161 .aboutImg {
    flex: 0.65;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    border-radius: 4px;
	border:#d1dae5 solid 1px;
}
#about_161 .aboutImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
#about_161 .aboutImg:hover img {
    transform: scale(1.03);
}
#about_161 .aboutInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
	overflow: hidden;
}
#about_161 .aboutTit{
    display: flex;
    flex-direction: column;
    gap:10px;
	overflow: hidden;
}
#about_161 .aboutTit span{
    display: flex;
    gap:10px;
    align-items: flex-end;
}
#about_161 .aboutTit h2 {
    font-size: 28px;
    color: #033dd6;
    font-weight: bold;
    line-height: 1.2;
}
#about_161 .aboutTit p {
    font-size: 16px;
    color: #1b1b1b;
}
#about_161 .aboutDesc {
    font-size: 14px;
    color: #707070;
    line-height: 24px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:5;
}
#about_161 .aboutBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0060fc;
    color: #ffffff;
    font-size: 15px;
    height: 30px;
    padding: 0 13px 0 22px;
    border-radius: 15px;
    align-self: flex-start;
}
/* iPad 适配 */
@media screen and (max-width: 1024px) {
    #about_161 .aboutCont {
        gap: 40px;
    }
    #about_161 .aboutImg {
        max-width: 420px;
    }
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    #about_161 {
        padding: 50px 0;
    }
    #about_161 .aboutCont {
        flex-direction: column;
        gap: 30px;
    }
	#about_161 .aboutInfo {
		width: 100%;
	}
    #about_161 .aboutImg {
        max-width: 100%;
        width: 100%;
    }
    #about_161 .aboutTit h2 {
        font-size: 22px;
    }
    #about_161 .aboutDesc {
        font-size: 14px;
    }
}
