/* 页面内容区样式配置 */
/* 产品中心 */
#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 .proServiceArea{
	margin: 0 0 28px;
	padding: 18px 22px;
	font-size: 16px;
	line-height: 2;
	color: #222;
	text-align: left;
	background: rgba(3, 61, 214, 0.06);
	border-left: 4px solid #033dd6;
	border-radius: 4px;
	box-sizing: border-box;
	font-weight: bold;
}
#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 h3,
#product_161 .proBox h4{
	font-size: 20px;
	color: var(--c-text);
	font-weight: bold;
	line-height: 35px;
}
#product_161 .proBox .proScene{
	margin: 6px 0 0;
}
#product_161 .proBox .proScene span{
	display: inline-block;
	max-width: 100%;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(3, 61, 214, 0.08);
	color: #033dd6;
	font-size: 13px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
}
#product_161 .proBox h5{
	font-size: 16px;
	color: #033dd6;
	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 > a{
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
#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: flex-start;
	align-items: center;
	padding: 16px 8px 18px;
	box-sizing: border-box;
	overflow: hidden;
	text-align: center;
}
#product_161 .proBottom .proItem .proCont h3,
#product_161 .proBottom .proItem .proCont h5{
	font-size: 16px;
	color: var(--c-text);
	font-weight: bold;
	line-height: 1.4;
	display: block;
	width: 100%;
	margin: 0 0 10px;
	text-align: center;
}
#product_161 .proBottom .proItem .proCont p{
	color: var(--c-text-muted);
	font-size: 13px;
	line-height: 1.6;
	min-height: 0;
	display: block;
	width: 100%;
	margin: 0;
	text-align: center;
}
#product_161 .proBottom .proItem .proCont .proScene{
	margin: 0 0 8px;
}
#product_161 .proBottom .proItem .proCont .proScene span{
	display: inline-block;
	max-width: 100%;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(3, 61, 214, 0.08);
	color: #033dd6;
	font-size: 12px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
}
#product_161 .proBottom .proItem .proCont .proIntro{
	margin: 0 0 12px;
	padding: 0 4px;
	min-height: 61px;
	color: #70798a;
	font-size: 12px;
	line-height: 1.7;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
#product_161 .proBottom .proItem .proCont span.flexC,
#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: 0;
	background: transparent;
}
#product_161 .proBottom .proItem:hover .proCont > span.flexC{
	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 h3,
	#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: 15px;
	}
	#product_161 .proBottom .proItem .proCont{
	    padding:10px 10px 10px;
	}
	#product_161 .proBottom .proItem .proCont span{
	    margin-top: 5px;
	}
	#product_161 .proBottom .proItem .proCont h3,
	#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;
	}
}
/* 企业核心优势 */
#advantage_161{
	width: 100%;
	background: var(--bg-section);
	padding: 40px 0 80px;
	box-sizing: border-box;
}
#advantage_161 .advContainer{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}
#advantage_161 .advTit{
	margin: 0 0 30px;
	text-align: left;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--c-title, #033dd6);
}
#advantage_161 .advGrid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
#advantage_161 .advItem{
	background: #fff;
	border-radius: 12px;
	padding: 24px 22px 26px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
	transition: transform .25s ease, box-shadow .25s ease;
}
#advantage_161 .advItem:hover{
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(3, 61, 214, 0.1);
}
#advantage_161 .advIcon{
	display: block;
	margin-bottom: 12px;
	font-size: 28px;
	line-height: 1;
}
#advantage_161 .advItem h3,
#advantage_161 .advItem h4{
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #1b1b1b;
}
#advantage_161 .advItem p{
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #666e80;
}
@media screen and (max-width: 1024px){
	#advantage_161 .advGrid{
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	#advantage_161 .advTit{
		font-size: 24px;
		margin-bottom: 28px;
	}
}
@media screen and (max-width: 768px){
	#advantage_161{
		padding: 30px 0 50px;
	}
	#advantage_161 .advTit{
		font-size: 20px;
		margin-bottom: 22px;
	}
	#advantage_161 .advGrid{
		grid-template-columns: 1fr;
		gap: 12px;
	}
	#advantage_161 .advItem{
		padding: 18px 16px 20px;
	}
	#advantage_161 .advIcon{
		font-size: 24px;
	}
	#advantage_161 .advItem h3,
	#advantage_161 .advItem h4{
		font-size: 16px;
	}
	#advantage_161 .advItem p{
		font-size: 13px;
	}
}
/* 企业服务能力 */
#service_161{
	width: 100%;
	background: var(--bg-section);
	padding: 0 0 80px;
	box-sizing: border-box;
}
#service_161 .svcContainer{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}
#service_161 .svcTit{
	margin: 0 0 30px;
	text-align: left;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--c-title, #033dd6);
}
#service_161 .svcTit span{
	color: #1b1b1b;
}
#service_161 .svcGrid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
#service_161 .svcItem{
	background: #fff;
	border-radius: 12px;
	padding: 26px 24px 28px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
	transition: transform .25s ease, box-shadow .25s ease;
}
#service_161 .svcItem:hover{
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(3, 61, 214, 0.1);
}
#service_161 .svcIcon{
	display: block;
	margin-bottom: 14px;
	font-size: 30px;
	line-height: 1;
}
#service_161 .svcItem h3,
#service_161 .svcItem h4{
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #1b1b1b;
}
#service_161 .svcItem ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
#service_161 .svcItem li{
	position: relative;
	padding-left: 0;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.7;
	color: #666e80;
}
#service_161 .svcItem li:last-child{
	margin-bottom: 0;
}
@media screen and (max-width: 1024px){
	#service_161 .svcGrid{
		grid-template-columns: 1fr;
		gap: 16px;
	}
	#service_161 .svcTit{
		font-size: 24px;
		margin-bottom: 28px;
	}
}
@media screen and (max-width: 768px){
	#service_161{
		padding: 0 0 50px;
	}
	#service_161 .svcTit{
		font-size: 20px;
		margin-bottom: 22px;
	}
	#service_161 .svcItem{
		padding: 18px 16px 20px;
	}
	#service_161 .svcIcon{
		font-size: 26px;
	}
	#service_161 .svcItem h3,
	#service_161 .svcItem h4{
		font-size: 16px;
	}
	#service_161 .svcItem li{
		font-size: 13px;
	}
}
/* 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 .pdfItem > a{
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
#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,
#pdf_161 .pdfItem .pdfview h3{
    font-size: 16px;
    line-height: 30px;
    /*font-weight: bold;*/
    width: 100%;
	text-align: center;
    margin: 0;
}
#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;
	max-height: 480px;
}
#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,
    #pdf_161 .pdfItem .pdfview h3 {
        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,
    #pdf_161 .pdfItem .pdfview h3 {
        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: block;
	width: calc(50% - 30px);
	margin:10px 15px;
    border-radius: 8px;
    padding:15px 80px 15px 0;
    background: var(--c-deeper);
    box-sizing: border-box;
	float: left;
}
#news_161 .newsItem > a {
    display: flex;
    width: 100%;
    gap: 16px;
    align-items: stretch;
    color: inherit;
    text-decoration: none;
}
#news_161 .newsItemInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#news_161 .newsItemInfo h3,
#news_161 .newsItemInfo h4 {
    font-size: 16px;
    color: var(--c-text-inverse);
    font-weight: bold;
    line-height: 32px;
}
#news_161 .newsItemInfo p,
#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 time{
    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;
    }
}
/* 主营业务 */
#business_161 {
    width: 100%;
    background: var(--bg-section);
}
#business_161 .aboutCont {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
#business_161 .aboutInfo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#business_161 .aboutTit {
    display: flex;
    align-items: center;
    height: 50px;
}
#business_161 .aboutTit h2 {
    font-size: 28px;
    color: var(--c-title);
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}
#business_161 .aboutInfo > p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 28px;
    word-break: break-all;
}
@media screen and (max-width: 768px) {
    #business_161 .aboutTit h2 {
        font-size: 22px;
    }
    #business_161 .aboutInfo > p {
        font-size: 13px;
        line-height: 24px;
    }
}

/* 关于我们 */
#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);
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    /*-webkit-line-clamp:8;*/
	line-height: 1.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;
    }
}
