/* 页面内容区样式配置 */
/* 产品中心 */
#product_161{
    width:100%;
    background: var(--bg-section);
	padding: 20px 0;
}
#product_161 .proContainer{
	background: var(--bg-glass);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	max-width: 1240px;
	width: 100%;
	margin: 0 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: var(--c-title);
    font-weight: bold;
    line-height: 1.2;
}
#product_161 .proTop .moreBtn,
.aboutInfo .moreBtn{
    font-size: 14px;
    color: var(--c-text-muted);
    padding: 6px 15px 6px;
    white-space: nowrap;
	position: absolute;
	right:0;
	top:20px;
    transition: all .3s;
}
#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: var(--c-text);
	font-weight: bold;
	line-height: 35px;
}
#product_161 .proBox h5{
	font-size: 16px;
	color: var(--c-text-muted);
	line-height: 32px;
}
#product_161 .proBox .intro{
	font-size: 14px;
	color: var(--c-text-subtle);
	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: var(--bd) solid 1px;
	font-size: 12px;
	color: var(--c-text-muted);
	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: var(--c-action);
	color: var(--c-text-inverse);
}
#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: var(--bd) 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: var(--c-text);
	font-weight: bold;
	line-height: 26px;
	display: block;
	width: 100%;
}
#product_161 .proBottom .proItem .proCont p{
	color: var(--c-text-muted);
	font-size: 14px;
	line-height: 24px;
	min-height: 24px;
	display: block;
	width: 100%;
}
#product_161 .proBottom .proItem .proCont span{
	border-radius: 15px;
	border: var(--bd) solid 1px;
	font-size: 12px;
	color: var(--c-text-muted);
	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: var(--c-action);
	color: var(--c-text-inverse);
}
/* iPad 适配 */
@media screen and (max-width: 1024px) {
	#product_161 {
		padding:20px 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 10px;
	}
	#product_161 {
		padding: 20px 15px;
		margin: 0 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: 10px;
		padding-top: 20px;
		padding-bottom: 30px;
	}
	#product_161 .proBottom .proItem .proCont{
	    padding:10px 10px 10px;
	}
	#product_161 .proBottom .proItem .proCont span{
	    margin-top: 5px;
	}
	#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: var(--bg-section);
    width: 100%;
    padding: 80px 0;
    position: relative;
}
#pdf_161.prodcutBox{
	padding: 80px 0 0;
}
#pdf_161 .pdfCont{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap:30px;
    align-items: stretch;
    padding: 0 15px;
    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: var(--c-title);
    font-weight: bold;
}
#pdf_161 .moreBtn {
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 6px 15px 6px;
    white-space: nowrap;
    transition: all .3s;
}
#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 .productList{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	flex: 1;
	gap:20px;
}
#pdf_161 .pdfItem{
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
#pdf_161 .productItem{
	aspect-ratio: 4 / 3;
}
#pdf_161 .pdfItem::before{
    width: 100%;
    height: 4px;
    /*background: var(--c-title);*/
    content: '';
    position: absolute;
    left: 0;
    top:0;
    z-index: 1;
}
#pdf_161 .pdfItem .pdfview{
    width: 100%;
    /*background: var(--bg-pdf-overlay);*/
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 5px;
    box-sizing: border-box;
}
#pdf_161 .pdfItem .pdfview span{
    font-size: 16px;
    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: var(--c-action);
    color: var(--c-text-inverse);
    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 .productList{
		grid-template-columns: repeat(2, 1fr);
		gap:10px;
	}
    #pdf_161 {
        padding: 50px 0;
    }
	#pdf_161.prodcutBox{
		padding: 20px 0 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: var(--bg-mask);
    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: var(--c-text-inverse);
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
    transition: opacity .2s;
}
#pdf_161 .dialog .dialogClose:hover{
    opacity: .7;
}
/* 新闻资讯 */
/* 新闻资讯 */
#news_161 {
    background: var(--c-deep);
    width: 100%;
    padding: 80px 0;
}
#news_161 .newsCont {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    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: var(--c-text-inverse);
    font-weight: bold;
    line-height: 1.2;
}
#news_161 .newsTit p {
    font-size: 16px;
    margin-top: 6px;
	color: var(--c-text-inverse);
	opacity: 0.8;
}
#news_161 .moreBtn {
    font-size: 14px;
    padding: 6px 15px 6px;
    white-space: nowrap;
    transition: all .3s;
	color: var(--c-text-inverse);
	opacity: 0.8;
}
#news_161 .newsList {
    width: 100%;
    align-items: stretch;
    position: relative;
}

#news_161 .newsList::before{
    content: '';
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 50%;
    width: 1px;
	height: calc(100% - 20px);
    transform: translateX(-0.5px);
    background: rgba(255,255,255,.15);
    pointer-events: none;
}
/* 左侧主新闻 */
#news_161 .newsMain {
    grid-column: 1 / 2;
    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: var(--bg-mask-soft);
    font-size: 16px;
    color: var(--c-text-inverse);
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}
#news_161 .newsItem {
    display: flex;
	width: calc(50% - 30px);
    gap: 16px;
	margin:10px 15px;
    align-items: stretch;
    border-radius: 8px;
    padding:15px 80px 15px 0;
    background: var(--c-deeper);
    box-sizing: border-box;
	float: left;
}
#news_161 .newsItemInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#news_161 .newsItemInfo h4 {
    font-size: 16px;
    color: var(--c-text-inverse);
    font-weight: bold;
    line-height: 32px;
}
#news_161 .newsItemInfo span{
    font-size: 14px;
    color: var(--c-text-faint);
    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: var(--c-text-inverse);
    opacity: 0.8;
    font-weight: bold;
}
#news_161 .newsItemDate p{
    font-size: 12px;
    color: var(--c-text-inverse);
	opacity: 0.8;
}
/* 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 .newsItem{
        width: 100%;
        padding:10px 0 10px 0;
        margin: 10px 0;
    }
    #news_161 {
        padding: 20px 0;
    }
    #news_161 .newsTop {
        margin-bottom: 24px;
    }
    #news_161 .newsTit h2 {
        font-size: 22px;
    }
    #news_161 .newsList {
        grid-auto-flow: row;
        grid-template-rows: none;
        grid-template-columns: 1fr;
        gap: 16px;
        max-height: 360px;
        overflow: hidden;
    }
    #news_161 .newsList::before{
        display: none;
    }
    #news_161 .newsGroup {
        gap: 12px;
    }
    #news_161 .newsItemImg {
        width: 90px;
    }
    #news_161 .newsInfo{
        font-size: 16px;
    }
}
/* 关于我们 */
/* 关于我们 */
#about_161 {
    background: var(--bg-section);
    width: 100%;
    padding: 80px 0 60px;
}
#about_161 .aboutCont {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    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: var(--bd) 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;
    gap:10px;
	overflow: hidden;
	position: relative;
	align-items: center;
	height: 50px;
}
#about_161 .aboutTit h2 {
    font-size: 28px;
    color: var(--c-title);
    font-weight: bold;
    line-height: 1.2;
}
#about_161 .aboutTit p {
    font-size: 16px;
    color: var(--c-text-strong);
}
#about_161 .aboutDesc {
    font-size: 16px;
    color: var(--c-text);
    line-height: 26px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:8;
	text-indent: 2em;
}
/* 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: 20px 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;
		line-height: 22px;
    }
}
