body
{

	font-family: PingFang SC, Helvetica, sans-serif, Droidsansfallback, "Droid Sans", "Microsoft Yahei", Arial;
	margin:0;
	padding:0;
	/*font-size: 0;*/
	/*line-height: 0;*/
}
body{
	--zts:#3A6051;/*定义主题色*/
}

video {
  -webkit-transform: translateZ(0); /* 触发GPU加速 */
  transform: translateZ(0);
}

video::-webkit-media-controls {
  object-fit: cover;  /* 填充容器，避免黑边 */
  position: static;   /* 避免脱离文档流 */
  z-index: 1;         /* 防止覆盖其他元素 */

}




.web-view{
  display: none;
}

.mob-view{


}


.body::-webkit-scrollbar {
                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: #FFFFFF;
            box-shadow: 0 4px 8px rgba(52, 66, 156, 0.2);
            transition: height 0.3s ease;
            overflow: hidden;
            z-index: 1000;
            min-width: 1200px;
            display: none;
        }

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

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

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

        /* 导航文字项 */
        .nav-item {
            
            font-weight: bold;
            font-size: 16px;
            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 8px 16px rgba(52, 66, 156, 0.1);
            text-align: center;
        }

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

        .submenu-video{
        	width: 192px;
        	height: 108px;
        	object-fit: cover; 
        	border-radius: 4px;
        	margin-top: 52px;
        }


        .submenu-text{
        	line-height: 20px;
        	margin-top: 12px;

        }

        /* 隐藏的复选框 */
        #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: #FCFCF8;
            box-shadow: 0 2px 4px rgba(28, 72, 192, 0.1);
            display: flex;
            align-items: center;
            padding: 0 16px;
            z-index: 1001;
        }

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

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

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

        /* 菜单触发按钮 */
        .mob-menu-trigger {
            width: 20px;
            height: 20px;
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
        }
        .mob-menu-trigger::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--zts);
            top: 1px;
            box-shadow: 0 8px 0 var(--zts), 0 16px 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: 22px;
            height: 22px;
            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: 40px;
        	padding-right:24px;

        }
        .mob-nav-item {
            display: block;
            padding: 16px 0;
            font-weight: bold;
            font-size: 14px;
            line-height: 18px;
            color: var(--zts);
            text-decoration: none;
            text-align: right;
            user-select: none;
  
        }

        /* 交互控制 */
        #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: 180px;
	background: url(/skin/images/home-intro-bg1.jpg);
	background-position: center;
	background-size: cover;
}

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

.home-intro-body{
	/*margin-top:-692px;*/
	text-align: center;
	padding: 50px 0;
}

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

.home-intro-text-2{
	position: relative;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	margin-top: 16px;
}

.home-intro-text-3{
	position: relative;
	color: #fff;
	font-size: 10px;
	line-height: 12px;
	font-weight: 400;
	margin-top: 8px;
	margin-bottom: 34px;
}

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


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

}


.home-intro-list-icon{
	width: 32px;
	height: 32px;
	text-align: center;
	margin-top: 24px;
	position: relative;

}

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

.home-intro-list-text{
	position: relative;
height: 72px;
font-weight: 400;
font-size: 12px;
line-height: 16px;
text-align: left;
color: #444;
margin-top: 4px;
padding: 0 12px;

}







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


.normal-subtitle{
		font-size: 14px;
	line-height: 18px;
	margin-top: 6px;
	display: block;
	text-align: center;
color: var(--zts);
font-weight: medium;
}


.normal-btn{

box-sizing: border-box;
width: 224px;
height: 40px;
border-radius: 4px;
display: inline-block;
margin-top:4px ;
font-style: normal;
font-weight: bold;
font-size: 13px;
line-height: 40px;
text-align: center;
color: #fff;
background-color: var(--zts);
}

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

.normal-text{
	width: 351px;
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
text-align: left;
color: #444;
margin: 0 auto;
margin-top: 12px;
}


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

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


.home-product-item{
width: 100%;
height: 250px;
display: block;
}

.home-product-video{

	width: 323px;
	height: 181px;
	border-radius: 4px;
	margin:  0 auto;
	position: static;


}

.home-product-text{
width: 240px;
font-weight: bold;
font-size: 14px;
line-height: 18px;
text-align: left;
color: #444;
margin-top:10px ;
margin-bottom: 12px;
display: inline-block;
vertical-align: middle;

}


.home-product-btn{
	width: 63px;
	font-weight: bold;
font-size: 12px;
line-height: 18px;
text-align: right;
color: var(--zts);
margin-top:10px ;
margin-bottom: 12px;
margin-left: 16px;
display: inline-block;
vertical-align: middle;


}


.home-partner{
	position: relative;
	width: 	100%;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #f7f7f7;
}

.home-partner-img{
	width: 354px;
	margin: 0 auto;
	margin-top:24px ;
}



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

.home-scenario-body{
	width: 375px;
	margin: 0 auto;
	margin-top: 12px;
}

.home-scenario-part{
	width: 170px;
	display: inline-block;
	margin-left: 5.5px;
	margin-right: 5.5px;
	margin-top: 16px;
}

.home-scenario-img{
	width: 170px;
	border-radius: 4px;
}


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

}


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



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

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

}


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

}

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

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

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


}

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

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

}


.bottom-slogan{
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	font-weight: 400;
	margin-top: 6px;
	display: block;

}


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

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

}

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

}

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

.bottom-wechat{
	display: block;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	font-weight: 400;
	margin: 0 auto;
	margin-top: 4px;
	text-align: center;

}

.bottom-rights{
	width: 351px;
	display: block;
	margin:0 auto;
	margin-top: 24px ;
	text-align: left;
}

.bottom-rights-text{
	display: inline-block;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	font-weight: 400;
	margin-right:20px;
	min-width: 140px;
	margin-top: 12px;

}



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

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

}

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

}


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

}


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

}


.mob-service-tech{
	width: 100%;
	background-color: #fff;
	padding-top:72px ;
	padding-bottom: 40px;

}

.mob-service-check{
	width: 100%;
	background-color: #f7f7f7;
	padding-top:40px ;
	padding-bottom: 40px;


}

.mob-service-improve{
	width: 100%;
	background-color: #fff;
	padding-top:40px ;
	padding-bottom: 40px;
}


.mob-service-repair{
	width: 100%;
	background-color: #f7f7f7;
	padding-top:40px ;
	padding-bottom: 40px;

}


.mob-service-spare{
	width: 100%;
	background-color: #fff;
	padding-top:40px ;
	padding-bottom: 48px;


}


.service-body{
	width: 100%;
	display: block;
	margin: 0 auto;
	margin-top: 24px;
}


.service-img{
	width: 351px;
	border-radius: 4px;
	display: block;
	margin: 0 auto;

}

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

}

.service-part{
	display: block;
	width: 351px;
	margin: 0 auto;
	margin-top: 24px;

}


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


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




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




.about-intro{
	position: relative;
	width: 100%;
	background-color: #fff;
	padding-top: 64px;
	padding-bottom: 24px;
}


.about-subtitle{

font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
text-align: center;
color: #444;
margin-top: 4px;

}


.about-intro-body{
	width: 100%;
	margin: 0 auto;
	margin-top: 18px;
	text-align: left;

}


.about-intro-img{
	width: 100%;
	display: block;

}

.about-intro-part{
	width: 351px;
	margin:0 auto;
	margin-top: 24px;
}

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

}



.about-team{
	width: 100%;
	background-color: #f7f7f7;
	height: 316px;
	padding-top: 32px;

}

.about-team-title{
	width: 100%;
	margin-bottom: 19px;
}


.about-team-part{
	display: inline-block;
	background-color: #fff;
	border-radius: 4px;
	width: 110px;
	height:72px ;
	margin: 5px;
}

.about-team-number{
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 24px;
text-align: center;
color: var(--zts);
margin-top: 12px;
}


.about-team-name{

font-style: normal;
font-weight: medium;
font-size: 12px;
line-height: 16px;
text-align: center;
text-transform: capitalize;
color: var(--zts);
margin-top: 4px;

}


.about-certs{
	width: 100%;
	height: 466px;
	background-color: #fff;
	padding-top: 32px;
}

.about-certs-body{
	width: 100%;
	margin: 0 auto;
	margin-top: 24px;
	text-align: center;

}




.about-certs-part{
	width: 351px;
	text-align: left;
margin: 0 auto;

}

.about-certs-text{
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
color: #444;
}


.about-certs-point{
	display: block;
	height: 24px;
	text-align: center;
}


.about-certs-point-img{
	width: 12px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;


}

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

}


.about-certs-img{
	width:435px ;
	border-radius: 4px;
	display: inline-block;
	vertical-align: text-top;
	display: none;
}

.mob-about-certs-img{
	width: 351px;
	margin: 0 auto;
	margin-top: 24px;
	margin-bottom: 16px;
	border-radius: 4px;

}

.about-patents{
	width: 100%;
	background-color: #f7f7f7;
	padding-top:32px ;
	padding-bottom: 32px;

}

.about-patents-body{
	width: 100%;
	margin: 0 auto;
	margin-top: 24px;
}

.about-patents-img{
	width: 108px;
	height: 152px;
	border-radius: 4px;
	margin: 6px;
	display: inline-block;
	vertical-align: middle;

}

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

.about-contact-body{
	width: 1040px;
	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;
    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: medium;

}

.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{
	width: 100%;
	height: 160px;
	padding-top: 32px;
}


.p-web{
display: none;
}

.p-mob{
	
}


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


.item-body{
	width: 100%;
	margin: 0 auto;
	margin-top: 16px;
	margin-bottom: 12px;
	text-align: left;
	vertical-align: middle;
	display: flex;flex-wrap: wrap;

}

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

}


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

}

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


}


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



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

}


.p-body{
	width: 351px;
	margin: 0 auto;
}

.p-img{
	width: 351px;
	margin: 0 auto;
}


.p-info1{

}


.p-info2{

}




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

}

.p-text{
	width: 351px;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	text-align: center;
	color: #444;
	margin-top:24px ;

}

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


.p-parameter-body{
	width: 351px;
	background-color: #fff;
	border-radius: 4px;
	margin: 0 auto;
	margin-top: 24px;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 4px;

}


.p-parameter-part{
	width: 100px;
	display: inline-block;
	margin: 8px 8px;
	text-align: center;

}

.p-parameter-title{
	font-size: 10px;
	line-height: 12px;
	font-weight: 400;
	color: #444;
	text-align: center;

}


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

}



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

}


.p-video{
	width: 351px;
	border-radius: 4px;
	margin-bottom: 40px;


}


.p-details-img{
	width: 351px;
	margin-top: 32px;
	margin-bottom: 32px;

}

.p-details-part{
	width: 351px ;
margin: 0 auto;

}


.p-details-title{
	width: 351px;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	color: var(--zts);
	text-align: center;
}

.p-details-text{
	width: 351px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	color: #444;
	text-align: center;
	margin-top: 24px;
}

.p-table{
	width: 351px;
	margin: 0 auto;
	padding-top: 16px;
	padding-bottom: 0px;
	border-radius: 4px;
	background-color: #f7f7f7;
	margin-bottom: 12px;
}

.p-table1 {
    border-collapse: collapse;
    overflow: hidden;
    margin: 0 auto;
}

.p-table1 th,
.p-table1 td {
    border: none;
    text-align: left;
    background-color: #f7f7f7;
    padding: 0;
    
}

.p-table1 th {
    color: #444;
    height: 16px;
    vertical-align: top;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;

}

.p-table1 td {
    color: var(--zts);
    font-size: 12px;
    line-height: 16px;
    height: 28px;
    vertical-align: top;
    font-weight: bold;

}

/* 列宽设置示例（替换为实际需要的宽度） */
.p-table1 th:nth-child(1),
.p-table1 td:nth-child(1) { width: 192px; }
.p-table1 th:nth-child(2),
.p-table1 td:nth-child(2) { width: 135px; }



.op-parameter{
	width: 351px;
	margin: 0 auto;
	margin-top: 0px;
	background-color: #f7f7f7;
	border-radius: 4px;
	text-align: left;
	padding-top: 4px;
	padding-bottom: 12px;
	margin-bottom: 20px;
}

.op-parameter1{
	width: 351px;
	margin: 0 auto;
	margin-top: -28px;
	background-color: #f7f7f7;
	border-radius: 4px;
	text-align: left;
	padding-top: 4px;
	padding-bottom: 12px;
	margin-bottom: 20px;
}


.op-parameter-part1{
	width:173px ;
	display: inline-block;
	vertical-align: middle;

}

.op-parameter-part2{
		width:173px ;

}



.op-parameter-title{
	font-size:10px ;
	line-height: 12px;
	text-align: left;
	color: #000;
	font-weight: 400;
	margin-top: 12px;
	margin-left: 12px;

}

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

}

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

}

.p-parameter-img1{
	width: 351px;
	margin: 0 auto;
	margin-bottom: 32px;

}

.p-parameter-img2{
	width: 351px;
	margin: 0 auto;
	margin-bottom: 32px;

}

.p-parameter-img3{
	width: 351px;
	margin: 0 auto;
	margin-bottom: 32px;

}

.op-parameter-highlight{
	margin-left: 12px;

}

.op-parameter-highlight1{
	margin-left: 12px;

}

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

}

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

}



.ndb{
	background-color: #1e201f;
}
.ndb *{
	color: #fff;font-size: 13px;line-height: 2;text-align: left;
}
.w1300{
	width: 1300px;margin: 0 auto;max-width: 95%;
}
.ndb>.w1300{
	padding: 20px 0;display: flex;
}
.ndb .ndbbq {
	text-align: center;background: #0d0f0e;
	padding: 15px 0;line-height: 1.4;
}
.ndb .ndbbq *{
	line-height: 1.4;
}

.ndbbq span{
	margin: 0 5px;display: inline-block;
}
.ndbit{
	
	padding: 0 10px;display: flex;justify-content: center;align-items: center;
}

.ndbit:last-child{
	border:0;margin-top: 10px;
}
.dewm{
	width: 100px;display: block;
	margin-bottom: 5px;
}
.dewmt{
	text-align: center;
}
.ndbit0{
	font-size: 15px;margin-bottom: 5px;
}
.ndb .ndbit1 a{
	color:rgb(204, 204, 204);
}
.ndb .ndbit1 a:hover{
	color: var(--zts);
}

.ndbit:nth-child(1),.ndbit:nth-child(2){
	display: none;
}


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

.InBl_tiBl {
    margin-top: 32px;
    font-size: 15px;
    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;
}
@media screen and (max-width: 1200px){
  .lxhz{
  flex-wrap: wrap;    padding-top: 30px;
}
.lxle{
    width: 100%;
}
.lxri{
  width: 100%;margin-top: 30px;
}
.lxt1{
    font-size: 22px;
}
.lxit{
    font-size: 14px;
}


}




/*新闻*/
.In_te {
    position: relative;
    margin: auto;
}
.news_content { position: relative; width: 100%; line-height: 2em;text-align: left;padding: 30px 0 30px}
.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: 16px; color: #333; letter-spacing: 1px; padding-top: 12px; font-weight: normal;}

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

.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: 80px; overflow: hidden; text-overflow: ellipsis; 
	display: -webkit-box; -webkit-line-clamp: 3; 
	-webkit-box-orient: vertical;
	font-size: 13px;
	line-height: 2;
	 }

.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);
}

.news_imgBl { width: 100%; height: 160px; }
.news_teBl { width: 100%; padding-right: 0px; }
.news_daBl { top: 88px; margin-top: 0px; font-size: 16px; width: 54px; height: 40px; background-size: 32px; }
.news_tiTi { line-height: 1.5em; padding-top: 15px; }
.news_da { line-height: 1.5em; }
a.news_liBl { }



/*新闻右侧*/
.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;

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

}
@media screen and (max-width: 970px){
.xwle{
    width: 100%
}
.rightnei {
    width: 100%;
    float: right;
    margin-bottom: 70px;
}
.rightnei li img{
    height: 200px;
}

}

.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;font-size: 13px;
}
.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 60px;
}
.neIn_content{
	padding-top: 60px;
}
.neIn_ti {
    font-size: 18px;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: 12px;color: #333;
}
.neIn_block{
	margin: 20px 0;line-height: 28px;
}
.xqrqhz{
	display: flex;justify-content: space-between;
}
.neIn_teBl{
	font-size: 14px;line-height: 2;min-height: 300px;
}

.mob-service-tech:nth-child(2n-1){background-color: #f7f7f7;}

.ejlm{
	position: relative;
}
.ejlm i{
	position: absolute;
	    right: -30px;
    top: 10px;
	background-image: url(../images/btmh.png);
	width: 30px;
	height: 30px;
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}
.sjlm a{
    display: block;
    font-size: 13px;
    color: #333;
    text-align: right;
    line-height: 2;
	    padding-right: 10px;
}
