body {
	font-family:"Microsoft Yahei", PingFang SC, Helvetica, sans-serif, Droidsansfallback, "Droid Sans",  Arial;
	margin:0;
	padding:0;
	min-width: 1200px;
	text-align: center;
	background-color: #fff;
	/*font-size: 0;*/
	/*line-height: 0;*/
}
body{
	--zts:#3A6051;/*定义主题色*/
}



.web-view{

}

.mob-view{
  display: none;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
             -webkit-tap-highlight-color: transparent;
        }

        a{
        	text-decoration: none;
        	/*line-height: 0;*/
        }

        /* 导航栏容器 */
        .nav-bar {
            position: fixed;
            top: 0;
            width: 100%;
            height: 68px;
            background: #FCFCF8;
            box-shadow: 0 4px 8px rgba(52, 66, 156, 0.2);
            transition: height 0.3s ease;
            overflow: hidden;
            z-index: 1000;
            min-width: 1200px;
        }

        /* 主导航区域 */
        .nav-main {
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;max-width: 1300px;margin: 0 auto;
        }

        .logo {
            height: 68px;
            cursor: pointer;
            top: 14px;
        }

        /* 导航项容器 */
        .nav-items {
            display: flex;
            align-items: center;
            gap: 60px;
            vertical-align: middle;
        }

        /* 导航文字项 */
        .nav-item {
            font-weight: bold;
            font-size: 18px;
            color: var(--zts);
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            user-select: none;
        }

        /* 图片导航项 */
        .nav-images img {
            width: 32px;
            height: 24px;
            cursor: pointer;
            padding: 0;
            margin: 0;
            line-height: 0;
        }

        /* 子菜单容器 */
        .submenu {
            height: 280px;
            display: none;
            justify-content: flex-end;
            align-items: top;
            padding: 0 120px;
            gap: 40px;
            box-shadow: 0 4px 4px rgba(52, 66, 156, 0.1);
            text-align: center;
        }

        /* 子菜单项 */
        .submenu-item {
            width: 200px;
            font-weight: bold;
            color: var(--zts);
            text-align: center;
        }

        .submenu-video{
        	width: 192px;
        	height: 108px;
        	object-fit: cover; 
        	border-radius: 8px;
        	margin-top: 52px;
        		pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */
        }


        .submenu-text{
        	font-size: 16px;
        	line-height: 20px;
        	 color: var(--zts);
        	margin-top: 12px;
        	font-weight: bold;

        }

        /* 隐藏的复选框 */
        #menu-switch {
            display: none;
        }

        /* 菜单切换逻辑 */
        #menu-switch:checked ~ .nav-bar {
            height: 348px;
        }
        #menu-switch:checked ~ .nav-bar .submenu {
            display: flex;
        }

        /* 关闭按钮层 */
        .close-layer {
            position: fixed;
            top: 68px;
            left: 0;
            width: 100%;
            height: calc(100vh - 68px);
            display: none;
            z-index: 999;
        }

        #menu-switch:checked ~ .close-layer {
            display: block;
        }



 /* 移动端导航栏容器 */
        .mob-navbar {
            position: fixed;
            top: 0;
            width: 100%;
            height: 44px;
            background: #FFFFFF;
            box-shadow: 0 2px 4px rgba(28, 72, 192, 0.1);
            display: flex;
            align-items: center;
            padding: 0 16px;
            z-index: 1001;
            display: none;
        }

        /* 左侧图标容器 */
        .mob-left-icons {
            display: flex;
            gap: 12px;
            flex: 1;
        }

        /* 导航栏图标 */
        .mob-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        /* 中间LOGO */
        .mob-logo {
            height: 32px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 菜单触发按钮 */
        .mob-menu-trigger {
            width: 24px;
            height: 24px;
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
        }
        .mob-menu-trigger::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--zts);
            top: 6px;
            box-shadow: 0 6px 0 var(--zts), 0 12px 0 var(--zts);
        }

        /* 遮罩层 */
        .mob-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: none;
            z-index: 1002;
        }

        /* 侧边导航菜单 */
        .mob-side-nav {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100%;
            background: #FFFFFF;
            transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
            z-index: 1003;
            padding: 44px 20px 20px;
            overflow-y: auto;
        }

        /* 关闭按钮 */
        .mob-close-btn {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            z-index: 1004;
        }
        .mob-close-btn::before,
        .mob-close-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--zts);
            top: 50%;
            left: 0;
        }
        .mob-close-btn::before {
            transform: rotate(45deg);
        }
        .mob-close-btn::after {
            transform: rotate(-45deg);
        }

        /* 导航菜单项 */

        .mob-nav-body{
        	margin-top: 32px;

        }


        .mob-nav-item {
            display: block;
            padding: 18px 0;
            font-weight: bold;
            font-size: 16px;
            color: var(--zts);
            text-decoration: none;
            border-bottom: 1px solid rgba(238, 238, 238, 0.8);
        }

        /* 交互控制 */
        #mob-nav-switch:checked ~ .mob-overlay {
            display: block;
        }
        #mob-nav-switch:checked ~ .mob-side-nav {
            right: 0;
        }





        /* 正文部分 */

.main{
	width: 100%;	
	text-align: center;
}

.home-intro{
	width: 100%;	
	text-align: center;

}

.home-intro-bg1{
	position: relative;
	width: 100%;
	height: 548px;
	background: url(/skin/images/home-intro-bg1.jpg);
	background-position: center;
	background-size: cover;
}

.home-intro-bg2{
	position: relative;
	width: 100%;
	/*height: 640px;*/
	background: url(/skin/images/home-intro-bg2.jpg);
	background-position: center;
	background-size: cover;padding: 100px 0 100px;
}

.home-intro-body{
	/*margin-top: -1000px;*/
	text-align: center;
}

.home-intro-text-1{
	position: relative;
	color: #fff;
	font-size: 48px;
	line-height: 64px;
	font-weight: bold;
}

.home-intro-text-2{
	position: relative;
	color: #fff;
	font-size: 32px;
	line-height: 40px;
	font-weight: bold;
	margin-top: 32px;
}

.home-intro-text-3{
	position: relative;
	color: #fff;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	margin-top: 16px;
	margin-bottom: 104px;
}

.home-intro-list-body{
	position: relative;
	width: 1300px;max-width: 95%;
	text-align: center;
	display: inline-block;
}


.home-intro-list-bg{
	position: relative;
	display: inline-block;
	width: 28%;
	height: 296px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(16px);
	border-radius: 8px;
	margin: 8px;
	text-align: center;

}


.home-intro-list-icon{
	width: 64px;
	height: 64px;
	text-align: center;
	margin-top: 48px;
	position: relative;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */

}

.home-intro-list-title{
height: 24px;
font-weight: bold;
font-size: 20px;
line-height: 24px;
text-align: center;
color: var(--zts);
margin-top: 24px;
position: relative;
}

.home-intro-list-text{
	position: relative;
width: 336px;
height: 72px;
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #000000;
margin-top: 16px;
padding: 0 18px;

}




.home-product{
	width: 	100%;
	padding-top: 92px;
	padding-bottom: 96px;
	background-color: #fff;
	
}

.home-product-body{
	width: 1300px;max-width: 95%;
	margin-top: 28px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


.normal-title{
	position: relative;
font-weight: bold;
font-size: 36px;
line-height: 48px;
text-align: center;
color: var(--zts);
}

.normal-subtitle{
	font-size: 20px;
	line-height: 24px;
	margin-top: 8px;
	display: block;
	text-align: center;
color: var(--zts);
font-weight: bold;
}


.normal-btn{

box-sizing: border-box;
padding: 0 32px;
min-width: 360px;
height: 64px;
border: 2px solid var(--zts);
border-radius: 8px;
display: inline-block;
margin-top:64px ;
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 60px;
text-align: center;
color: var(--zts);

}

.normal-btn:hover{
	background-color: var(--zts);
	color: #fff;
}

.normal-text{
	width: 1300px;
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #000000;
margin: 0 auto;
margin-top: 32px;
}


.home-product-item{
width: 562px;
height:328px ;
display: inline-block;
margin-top:36px;
margin-left: 8px;
margin-right: 8px;
}

.home-product-video{

	width: 512px;
	height: 288px;
	border-radius: 8px;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */

}



.home-product-text{
font-weight: bold;
font-size: 20px;
line-height: 24px;
text-align: center;
color: var(--zts);
margin-top:16px ;

}


.home-partner{
	position: relative;
	width: 	100%;
	height: 912px;
	padding-top: 96px;

	background-color: #f7f7f7;
}

.home-partner-img{
	width: 1044px;
	height: 548px;
	margin: 0 auto;
	margin-top:48px ;
pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */
}



.home-scenario{
	width: 100%;
	background-color: #fff;
	padding-top: 96px;
	padding-bottom: 96px;
	text-align: center;
}



.home-scenario-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 24px;
}

.home-scenario-part{
	width: 28%;
	display: inline-block;
	margin-left: 8px;
	margin-right: 8px;
	margin-top: 24px;
}

.home-scenario-img{
	width: 336px;
	height: 192px;
	border-radius: 8px;
	opacity: 100%;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */
}


.home-scenario-title{
	font-weight: bold;
font-size: 20px;
line-height: 24px;
text-align: center;
color: var(--zts);
margin-top:16px ;

}


.bottom{
	width: 100%;
	height: 400px;
	background-color: var(--zts);
	padding-top: 72px;
}



.bottom-body{
	width: 1044px;
	text-align: center;
	margin: 0 auto;
	gap: 0;
}

.bottom-body1{
	width: 532px;
	display: inline-block;
	text-align: left;
	font-size: 0;
	line-height: 0;
	padding: 0;
	margin: 0;

}


.bottom-body2{
	width: 404px ;
	display: inline-block;
	text-align: left;
	font-size: 0;
	vertical-align: top;
	margin-top: 12px;

}

.bottom-body21{
display: inline-block;
width:48px ;
vertical-align: top;
}

.bottom-body22{
	display: inline-block;
	vertical-align: top;
}

.bottom-body3{
	width: 104px;
	display:inline-block;
	text-align: center;
	font-size: 0;
	vertical-align: top;


}

.bottom-logo{
	width: 160px;
	height: 32px;
	display: block;
	margin-left: 2px;
}

.bottom-corpname{
	font-size: 24px;
	line-height: 32px;
	color: #fff;
	font-weight: 400;
	margin-top: 12px;
	display: block;

}


.bottom-slogan{
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 400;
	margin-top: 4px;
	display: block;

}


.bottom-product-body{
	display: block;
	margin-top: 8px;
}

.bottom-product-text{
	width: 180px;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 400;
	margin-top: 12px;

}

.bottom-info{
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 400;
	margin-top: 8px;

}

.bottom-qrcode{
	width: 104px;
	height: 104px;
	margin-top: 12px;
}

.bottom-wechat{
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 400;
	margin-top: 8px;

}

.bottom-rights{
	width: 1300px;
	display: block;
	margin:0 auto;
	margin-top: 48px ;
}

.bottom-rights-text{
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-weight: 400;
	padding: 0 16px ;
}


.service-tech{
	width: 100%;
	/*height:864px ;*/
	background-color: #fff;
	padding-top:164px ;
}

.service-check{
	position: relative;
	width: 100%;
	height:796px ;
	padding-top:96px ;

}

.service-check::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/skin/images/service-2.jpg);
	background-size: cover;
	background-position: center;
	opacity: 0.08;
	filter: blur(8px);
	z-index: -1;

}

.service-improve{
	width: 100%;
	background-color: #fff;
	padding-top:96px ;

}


.service-repair{
	position: relative;
	width: 100%;
	padding-top:96px ;

}

.service-repair::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/skin/images/service-4.jpg);
	background-size: cover;
	background-position: center;
	opacity: 0.08;
	filter: blur(8px);
	z-index: -1;

}


.service-spare{
	width: 100%;
	background-color: #fff;
	padding-top:96px ;

}


.mob-service-tech{
	width: 100%;
	height:764px ;
	background-color: #fff;
	padding-top:164px ;
	display: none;
}

.mob-service-check{
	width: 100%;
	height:696px ;
	background-color: #f7f7f7;
	padding-top:96px ;
	display: none;

}

.mob-service-improve{
	width: 100%;
	height:696px ;
	background-color: #fff;
	padding-top:96px ;
	display: none;

}


.mob-service-repair{
	width: 100%;
	height:696px ;
	background-color: #f7f7f7;
	padding-top:96px ;
	display: none;

}


.mob-service-spare{
	width: 100%;
	height:696px ;
	background-color: #fff;
	padding-top:96px ;
	display: none;

}


.service-body{
	width: 1300px;

	height: auto;
	justify-content: space-between;align-items: center;
	display: flex;
	margin: 0 auto;
	margin-top: 64px;
	padding-bottom: 120px;
}


.service-img{
	width: 34%;
	height: auto;
	border-radius: 8px;
	display: inline-block;
	vertical-align: text-top;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */

}

.service-space{
	width: 60px;
	display: inline-block;
	height: 360px;
	vertical-align: text-top;

}

.service-part{
	display: inline-block;
	width: 59%;
	vertical-align: text-top;
	/*padding-top: 44px;*/

}


.service-text{
	font-size: 16px;
	line-height: 24px;
	color: #000;
	text-align: left;
}


.service-point{
margin: 52px 0;
}




.service-point-text{
	font-size: 16px;
	line-height: 24px;
	color: var(--zts);
	text-align: left;
	font-weight: bold;
	margin: 16px 0;
}



.about-intro{
	width: 100%;
	background-color: #fff;
	padding-top: 156px;
}


.about-subtitle{

font-style: normal;
font-weight: bold;
font-size: 32px;
line-height: 40px;
text-align: center;
color: #000000;
margin-top: 8px;

}


.about-intro-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 64px;
	text-align: left;
	padding-bottom: 120px;

}


.about-intro-img{
	width: 38.4%;
	height: auto;
	border-radius: 8px;
	display: inline-block;
	vertical-align: middle;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */

}

.about-intro-part{
	width: 57.3%;
	margin-left: 40px;
	display: inline-block;
	vertical-align: middle;
}

.about-intro-text{
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 2.5;
color: #000000;
margin: 36px 0;

}



.about-team{
	width: 100%;
	background-color: #f7f7f7;
	padding-top: 64px;
	padding-bottom: 60px;
}

.about-team-title{
  display: none;
}


.about-team-part{
	display: inline-block;
	width: 260px;
	height:88px ;
	margin: 0 16px;
}

.about-team-number{
font-style: normal;
font-weight: bold;
font-size: 36px;
line-height: 48px;
/* identical to box height, or 133% */
text-align: center;
color: var(--zts);
}


.about-team-name{

font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 24px;
/* identical to box height, or 150% */
text-align: center;
text-transform: capitalize;

color: var(--zts);

}


.about-certs{
	width: 100%;
	background-color: #fff;
	padding: 64px 0;

}

.about-certs-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 48px;

}




.about-certs-part{
	width: 54%;
	display: inline-block;
	vertical-align: text-top;
	text-align: left;
	margin-right: 40px;

}

.about-certs-text{
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #000000;
margin-bottom: 40px;
}


.about-certs-point{
	display: block;
	width: 564px;
	height: 56px;
}


.about-certs-point-img{
	width: 24px;
	height: 32px;
	display: inline-block;
	vertical-align: middle;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */

}

.about-cert-point-text{
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 32px;
text-align:left;
color: var(--zts);
margin-left: 16px;
display: inline-block;
vertical-align: middle;

}


.about-certs-img{
	width:41.8% ;
	border-radius: 8px;
	display: inline-block;
	vertical-align: text-top;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */
}

.mob-about-certs-img{
  display: none;
}

.about-patents{
	width: 100%;
	background-color: #f7f7f7;
	padding:80px 0;
}

.about-patents-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 40px;
}

.about-patents-img{
	width: 14.3%;
	height: auto;
	border-radius: 8px;
	margin: 0 1%;
	display: inline-block;
	vertical-align: middle;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */

}

.about-contact{
	width: 100%;
	height: 600px;
	background-color: #fff;
	padding-top: 80px;
}

.about-contact-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 56px;
	text-align: left;
}


#map-container{
	width: 520px;
	height: 312px;
	display: inline-block;
	border-radius: 8px;
	vertical-align: middle;
}

/* 标签容器 */
.custom-label {
    position: absolute;
    width: 320px;
    transform: translate(-50%, -200%);  /* 调整垂直偏移量 */
    z-index: 999;
    text-align: center;
}
/* 标签内容框 */
.label-box {
    display: inline-block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 6px 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* 公司名称样式 */
.company-name {
    font-size: 14px;
    font-weight: bold;
    color: var(--zts);
    line-height: 1.2;
    white-space: nowrap; /* 防止名称换行 */
}
/* 地址样式 */
.company-address {
    font-size: 12px;
    color: #000;
    line-height: 14px;
    margin-top: 4px;
}


.about-contact-part{
	display: inline-block;
	vertical-align: middle;
	margin-left: 80px ;
	text-align: left;
}

.about-contact-logo{
	width: 160px;
	height: 32px;
}

.about-contact-corpname{
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin-top: 12px;
	margin-bottom: 24px;
	font-weight: bold;

}

.about-contact-info1{
	width: 56px;
	display: inline-block;
	vertical-align: text-top;
}

.about-contact-info2{
	display: inline-block;
	vertical-align: text-top;
}



.about-contact-text{
	font-size: 16px;
	line-height: 24px;
	color: #000;
	font-weight: 400;
	margin: 8px 0;

}

.about-slogan{
  display: none;
}


.p-web{

}

.p-mob{
	display: none;
}


.item{
	background-color: #fff;
	min-height:116px ;
	padding-top: 132px;
	padding-bottom:40px ;
}


.item-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 32px;
	margin-bottom: 12px;
	text-align: left;
	display: flex;flex-wrap: wrap;

}

.item-body-center{
	width: 1300px;
	margin: 0 auto;
	margin-top: 32px;
	margin-bottom: 12px;
	text-align: center;

}



.item-label1{
	width: 25%;
	height: 36px;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
	color: var(--zts);
	display: inline-block;
	vertical-align: middle;

}

.item-label0{
	width: 25%;
		height: 36px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	text-align: center;
	color: #000;
	margin: 4px ,0;
	display: inline-block;
	vertical-align: middle;


}


.item-line{
	width: 1300px;
	height: 1px;
	background-color: #eee;
	margin: 0 auto;
	margin-top: 24px;
}



.p-bg{
	width: 100%;
	padding-top: 32px;
	padding-bottom: 48px;
	background: url(/skin/images/p-bg.jpg);
	background-size: cover;
	background-position: top;

}


.p-body{
	width: 1300px;
		min-height: 500px;
	margin: 0 auto;
}

.p-img{
	width: 1300px;
	margin: 0 auto;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */
}


.p-info1{
	margin-top: -400px;

}


.p-info2{
	margin-top: -184px;
	margin-left: 53.8%;

}


.p-title{
	width: 480px;
	font-size: 36px;
	line-height: 48px;
	font-weight: bold;
	text-align: left;
	color: var(--zts);

}

.p-text{
	width: 480px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	text-align: left;
	color: #000;
	margin-top:16px ;

}


.p-text-note{
	width: 351px;
	font-size: 10px;
	line-height: 24px;
	color: #777;
	margin: 0 auto;
	margin-top: 24px;
	text-align: center;
}


.p-parameter-body{
	width: 1300px;
	height: 232px;
	background-color: #fff;
	border-radius: 8px;
	margin: 0 auto;
	margin-top: 32px;
	text-align: center;
	padding-top: 30px;

}


.p-parameter-part{
	width: 23%;
	display: inline-block;
	margin: 12px 48px;
	text-align: center;

}

.p-parameter-title{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #000;
	text-align: center;

}


.p-parameter-text{
		font-size: 20px;
	line-height: 32px;
	font-weight: bold;
	color: var(--zts);
	text-align: center;
	margin-top:8px ;

}


.p-details{
	width: 100%;
	min-height: 144px;
	padding-top: 48px;
	padding-bottom: 96px;
	background-color: #fff;

}


.p-video{
	width: 1300px;
	border-radius: 8px;
		margin-bottom: 64px;

  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */


}




.p-details-img{
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	pointer-events: none;     /* 阻止鼠标事件 */
  -webkit-user-drag: none;   /* 禁止拖拽（WebKit内核浏览器） */
  user-select: none;         /* 禁止文本选择 */
}

.p-details-part{
	width: 40% ;
	margin-left: 80px;
	display: inline-block;
	vertical-align: middle;
	  margin-top: 64px;
}


.p-details-title{
	font-size: 36px;
	line-height: 48px;
	font-weight: bold;
	color: var(--zts);
	text-align: left;
}

.p-details-text{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #000;
	text-align: left;
	margin-top: 48px;
}



.p-table1 {
    width: 1300px;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 48px;
}


.p-table1 th,
.p-table1 td {
    border-left: none;
    border-right: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
}

.p-table1 th {
    height: 64px;
    background: var(--zts);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.p-table1 td {
    height: 48px;
    background: #f7f7f7;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/* 列宽设置示例（替换为实际需要的宽度） */
.p-table1 th:nth-child(1),
.p-table1 td:nth-child(1) { width: 256px; }
.p-table1 th:nth-child(2),
.p-table1 td:nth-child(2) { width: 108px; }
.p-table1 th:nth-child(3),
.p-table1 td:nth-child(3) { width: 108px; }
.p-table1 th:nth-child(4),
.p-table1 td:nth-child(4) { width: 108px; }
.p-table1 th:nth-child(5),
.p-table1 td:nth-child(5) { width: 108px; }
.p-table1 th:nth-child(6),
.p-table1 td:nth-child(6) { width: 108px; }
.p-table1 th:nth-child(7),
.p-table1 td:nth-child(7) { width: 108px; }
.p-table1 th:nth-child(8),
.p-table1 td:nth-child(8) { width: 136px; }


.p-table2 {
    width: 1300px;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 48px;
}



.p-table2 th,
.p-table2 td {
    border-left: none;
    border-right: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
}

.p-table2 th {
    height: 64px;
    background: var(--zts);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.p-table2 td {
    height: 48px;
    background: #f7f7f7;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/* 列宽设置示例（替换为实际需要的宽度） */
.p-table2 th:nth-child(1),
.p-table2 td:nth-child(1) { width: 264px; }
.p-table2 th:nth-child(2),
.p-table2 td:nth-child(2) { width: 86px; }
.p-table2 th:nth-child(3),
.p-table2 td:nth-child(3) { width: 86px; }
.p-table2 th:nth-child(4),
.p-table2 td:nth-child(4) { width: 86px; }
.p-table2 th:nth-child(5),
.p-table2 td:nth-child(5) { width: 86px; }
.p-table2 th:nth-child(6),
.p-table2 td:nth-child(6) { width: 86px; }
.p-table2 th:nth-child(7),
.p-table2 td:nth-child(7) { width: 114px; }
.p-table2 th:nth-child(8),
.p-table2 td:nth-child(8) { width: 86px; }
.p-table2 th:nth-child(9),
.p-table2 td:nth-child(9) { width: 146px; }


.op-parameter{
	width: 1300px;
	margin: 0 auto;
	background-color: #f7f7f7;
	border-radius: 8px;
	padding: 28px 0;
}


.op-parameter-part1{
	width:240px ;
	margin: 12px 8px;
	display: inline-block;
	vertical-align: middle;

}

.op-parameter-part2{
		width:240px ;
	margin: 12px 48px;
	display: inline-block;
	vertical-align: middle;

}



.op-parameter-title{
	font-size:16px ;
	line-height: 24px;
	text-align: center;
	color: #000;
	font-weight: 400;

}

.op-parameter-text{
	font-size: 20px;
	line-height: 32px;
	text-align: center;
	color: var(--zts);
	font-weight: bold;
	margin-top: 4px;

}

.op-parameter-body{
	width: 1300px;
	margin: 0 auto;
	margin-top: 48px;
	text-align: left;

}

.op-parameter-body1{
	width: 1300px;
	margin: 0 auto;
	margin-top: 0px;
	text-align: left;

}

.p-parameter-img1{
	width: 520px;
	display: inline-block;
	vertical-align: middle;
}

.p-parameter-img2{
	width: 640px;
	display: inline-block;
	vertical-align: middle;
}

.p-parameter-img3{
	width: 384px;
	display: inline-block;
	vertical-align: middle;
}


.op-parameter-highlight{
	display: inline-block;
	vertical-align: middle;
	margin-left: 80px;
}

.op-parameter-highlight1{
	display: inline-block;
	vertical-align: middle;
	margin-left: 16px;

}

.op-parameter-highlight2{
	display: inline-block;
	vertical-align: middle;
	margin-left: 0px;

}




.op-highlight-title{
		font-size:16px ;
	line-height: 24px;
	text-align: left;
	color: #000;
	font-weight: 400;

}

.op-highlight-text{
		font-size: 20px;
	line-height: 32px;
	text-align: left;
	color: var(--zts);
	font-weight: bold;
	margin-top: 4px;

}
/*底部*/
.ndb{
	background-color: #1e201f;
}
.ndb *{
	color: #fff;font-size: 14px;line-height: 2.3;text-align: left;
}
.w1300{
	width: 1300px;margin: 0 auto;max-width: 95%;
}
.ndb>.w1300{
	display: flex;justify-content: space-between;
	padding: 40px 0;
}
.ndbbq{
	text-align: center;line-height: 40px;background: #0d0f0e;
}
.ndbbq span{
	margin: 0 5px;display: inline-block;
}
.ndbit{
	border-right: 1px solid #616161;
	padding: 0 20px;display: flex;justify-content: center;
}
.fl1{
	flex: 1;
}
.fl2{
	flex: 2;
}
.ndbit:last-child{
	border:0;
}
.dewm{
	width: 134px;display: block;
}
.dewmt{
	text-align: center;
}
.ndbit0{
	font-size: 16px;margin-bottom: 5px;
}
.ndb .ndbit1 a{
	color:rgb(204, 204, 204);
}
.ndb .ndbit1 a:hover{
	color: var(--zts);
}

/*联系*/
.hft{
	height: 210px;
	background-color: var(--zts);
	width: 100%;padding-top: 64px;
}
.hft>.w1300{
	display: flex;align-items: center;height: 100%;
}
.hftwz{
	font-size: 30px;color: #fff;
}

.InBl_tiBl {
    margin-top: 62px;
    font-size: 18px;
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
    position: relative;
    color: #999;
    margin-bottom: 40px;
}
.InBl_ti {
    position: absolute;
    left: 50%;transform: translate(-50%, 0);
    width: 120px;height: 30px;top: 8px;
    margin: auto;
    background: #fff;
    z-index: 20;
    font-weight: 100;
    letter-spacing: 1px;
}
.InBl_wi {
    position: absolute;
    top: 17px;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.lxhz{
    display: flex;justify-content: space-between;align-items: center;
    padding: 60px 0 60px;
}
.lxle{
    width: 514px;
}
.lxri{
    width: calc(100% - 534px);
}
.lxt1{
    font-size: 36px;color: #000;margin-bottom: 0px;
}
.lxt2{
	margin-top: 20px;
    font-size: 14px;color: #595959;margin-bottom: 30px;line-height: 2;text-align: left;
}
.lxit img{
    height: 20px;margin-right: 8px;
}
.lxit{
    font-size: 16px;color: #000;line-height: 2;

}
.lxit div{
    display: flex;align-items: center; margin-bottom: 10px;
}

/*新闻*/
.In_te {
    position: relative;
    margin: auto;
}
.news_content { position: relative; width: 100%; line-height: 2em;text-align: left;padding: 50px 0 80px}
.news_content  *{
	/*box-sizing: content-box;*/
	    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.news_ulBl { position: relative; width: 100%; }

.news_liBl { position: relative; width: 100%; padding: 30px 0; border-bottom: 1px solid #e0e0e0; display: block; color: #666; }

.news_imgBl { float: left; height: 221px; width: 43%; position: relative; overflow: hidden; }

.news_img { position: relative; width: 100%; height: 100%; background-position: center; }

.news_teBl { position: relative; width: 53.5%; float: right; padding-right: 12%; }

.news_tiTi { font-size: 18px; color: #333; letter-spacing: 1px; padding-top: 12px; font-weight: normal;}

.news_da { padding: 10px 0; margin-bottom: 3px; text-align: justify;font-size: 14px}

.news_daBl { position: absolute; right: 0px; top: 50%; background: #434343 url(/skin/images/a3_2.png) no-repeat center; width: 66px; height: 50px; color: #fff; font-size: 20px; margin-top: -25px; }

.news_day { padding-left: 8px; position: relative; top: -3px; }

.news_mo { position: absolute; right: 8px; bottom: -4px; }

.news_tiTe { text-align: justify; position: relative; width: 100%; 
	height: 112px; overflow: hidden; text-overflow: ellipsis; 
	display: -webkit-box; -webkit-line-clamp: 4; 
	-webkit-box-orient: vertical;
	font-size: 14px;
	 }

.news_liBl:hover { background: #eeeeee; }
.xwcn:after,.news_liBl:after { content:""; display:block; height:0; visibility:hidden; clear:both; }
a.news_liBl:hover .news_daBl { right: 6%; margin-right: -33px; }
.cu3_li:hover .cu2_imIn, .du5_block:hover .du5_img, .du4_block:hover .du4_img, .news_liBl:hover .news_img, .neNa_aBl:hover .neNa_bg img, .vid_liIn.vid_button:hover .vid_bg, .bu59_img:hover img, .pro_liBl:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*新闻右侧*/
.rightnei {

    width: 230px;

    float: right;

}

.rightnei li {

    width: 84%;

    float: left;
    
    padding: 16px 0 16px 0;

    margin-left: 8%;list-style: none;

}
.rightnei h3{
    width: 84%;
    float: left;
    padding: 50px 0 30px 0;
    margin-left: 8%;
    border-bottom: 1px solid #ddd;
    font-size: 22px;
}
.rightnei h3 {

    border-bottom: none;

    padding-bottom: 15px;

}
.rightnei li a{
	color: #333;font-size: 14px;line-height: 1.6;text-align: left;
}
.rightnei li img {

    width: 100%;

    height: 120px;

    float: left;

    margin-bottom: 20px;

    border-radius: 5px;

}
body .xwle{
    width: calc(100% - 260px); float: left;

}


.pagelist{text-align: center;padding: 30px 0 ;}
.pagelist li{
  display: inline-block;vertical-align: middle;
}
.pagelist a{
  border: 1px solid #e6e6e6;font-size: 13px;
  padding: 5px 10px;
display: inline-block;
background: #fff;line-height: normal;
color: #666666;
cursor: pointer;
text-decoration: none;
}
.pagelist li:hover a{
  background: var(--zts);
  color: #fff;
}
.pagelist .active a{
background: var(--zts);
  color: #fff;
}
.pagelist .thisclass {
background: var(--zts);
  color: #fff;
}
.pagelist  select{
      width: 52px!important;
    height: 27px;
    display: block;
    text-align: center;
}

/*新闻详情*/
.neIn_ul {
    position: relative;
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 25px;
    margin-top: 40px;line-height: 2;color: #333;
}
.neIn_ul a{
	color: rgb(102, 102, 102)
}
.In_conBlock{
	text-align: left;
}
.InBl_content {
    position: relative;
    width: 100%;
    z-index: 50;
    padding: 0px 0 120px;
}
.neIn_content{
	padding-top: 80px;
}
.neIn_ti {
    font-size: 24px;color: rgb(85, 85, 85);font-weight: normal;
}
.neIn_leLi {
    float: left;
    margin-right: 30px;
    position: relative;
}
a.neIn_back {
    z-index: 20;
    padding-right: 21px;
    background: url(/skin/images/a6_4.png) no-repeat right 6px;
    letter-spacing: 2px;color: rgb(102, 102, 102);
    line-height: 28px;
}
.neIn_block *{
	font-size: 14px;color: #333;
}
.neIn_block{
	margin: 30px 0;line-height: 28px;
}
.xqrqhz{
	display: flex;justify-content: space-between;
}
.neIn_teBl{
	font-size: 16px;line-height: 2;min-height: 300px;
}


.service-tech{
	position: relative;
}
.service-tech .service-body{
	display: flex;justify-content: space-between;
}
.service-tech:nth-child(2n) .service-body{
	flex-direction:row-reverse;
}
.service-tech:nth-child(2n)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/service-4.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: blur(8px);
    z-index: 1;
}
    
