	@charset "utf-8";
    /*弹出层结束*/
    .left_fly {
		display: none;
	}
	.newDialog{
		width: 250px;
		position: fixed; 
		right: 8px;
		top: 90px;
		z-index: 1001;
		text-align:center;
		margin: 0 auto;
	}
	.newDialog .new_penDialog_box{
		display: block;
		width: 250px;
		background: #FFFFFF;
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
		border-radius: 8px;
		text-align:center;
		margin: 0 auto;
	}
	.newDialog .new_title_top img .t_img{
		display: block;
		padding: 4px;
		border: 1px solid #FFFFFF;
		width: 69px;
		height: 69px;
		border-radius: 100%;
		margin: 8px auto 0;
	}
	.newDialog .new_title_top span{
		display: block;
		font-size: 18px;
		font-weight: 500;
		color: #FFFFFF;
		line-height: 24px;
	}
	.newDialog .new_title_top p{
		font-size: 14px;
		font-weight: 400;
		color: #FFFFFF;
		line-height: 16px;
		padding: 0;
		padding-bottom: 10px;
		margin-top: 0;
	}
	.newDialog img.ewm{
		width: 162px;
		height: 162px;
		margin: 0 auto;
	}
	.newDialog .title{
		font-size: 12px;
		font-weight: 400;
		color: #000000;
		line-height: 12px;
		margin-bottom: 16px;
		height: auto;
    	padding: 0;
	}
	.newDialog .new_penDialog_box .new_title_top{
		background: url("/skin/images/bg.png") top center no-repeat;
		background-size: 250px auto;
		padding: 0;
		padding-top: 10px;
	}
	.newDialog .new_penDialog_box ul{display: flex;justify-content: space-between;flex-wrap: wrap;width: 188px;padding-bottom: 10px;margin: 0 auto;}
	.newDialog ul li{
		background: url("/skin/images/bgicon1.png") left top no-repeat;
		font-size: 12px;
		font-weight: 500;
		color: #132750;
		line-height: 12px;
		padding: 10px 0;
		margin-bottom: 8px;
		margin-right: 8px;
		text-align: left;
		padding-left: 8px;
		width: 82px;
	}
	.newDialog ul li:nth-child(1){
		background: url("/skin/images/bgicon2.png") left top no-repeat;
	}
	.newDialog ul li:nth-child(2n){
		margin-right: 0;
	}
	.newDialog ul li:nth-child(2){
		background: url("/skin/images/bgicon3.png") left top no-repeat;
	}
	.newDialog ul li:nth-child(3){
		background: url("/skin/images/bgicon4.png") left top no-repeat;
	}
	.closeBtn{
		margin: 0 auto;
		margin-top: 6px;
	}
	
	/* 服务特色横条样式 */
	.service-features {
		background-color: #212121;
		padding: 20px 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.service-features .container {
		max-width: 1200px;
		width: 100%;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	
	.service-features .feature-item {
		display: flex;
		align-items: center;
		color: white;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.4;
	}
	
	.service-features .feature-item span {
		display: block;
	}
	
	.service-features .feature-item .main-title {
		font-weight: bold;
		color: #FFFFFF;
		font-size: 18px;
	}
	
	.service-features .feature-item .sub-title {
		color: #FFFFFF;
		opacity: 0.8;
		font-size: 12px;
		margin-top: 2px;
	}
	
	.service-features .feature-item .icon {
		width: 40px;
		height: 40px;
		margin-right: 12px;
		object-fit: contain;
	}
	
	/* 响应式设计 */
	@media (max-width: 768px) {
		.service-features .container {
			flex-direction: column;
			gap: 15px;
		}
		
		.service-features .feature-item {
			font-size: 14px;
		}
		
		.service-features .feature-item .icon {
			width: 35px;
			height: 35px;
			margin-right: 10px;
		}
	}