body
{

	font-family: PingFang SC, Helvetica, sans-serif, Droidsansfallback, "Droid Sans", "Microsoft Yahei", Arial;
	margin:0;
	padding:0;
	font-size: 0;
	line-height: 0;
}

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: #34429C;
            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: #34429C;
            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: #FFFFFF;
            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: 16px;
            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: #34429C;
            top: 1px;
            box-shadow: 0 8px 0 #34429C, 0 16px 0 #34429C;
        }

        /* 遮罩层 */
        .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: #34429C;
            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: #34429C;
            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(../img/home-intro-bg1.jpg);
	background-position: center;
	background-size: cover;
}

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

.home-intro-body{
	margin-top:-692px;
	text-align: center;
}

.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: #34429C;
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: #34429C;
}


.normal-subtitle{
		font-size: 14px;
	line-height: 18px;
	margin-top: 6px;
	display: block;
	text-align: center;
color: #34429C;
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: #34429C;
}

.normal-btn:hover{
	background-color: #34429C;
	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: #34429C;
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: #34429C;
margin-top:10px ;

}


.bottom{
	width: 100%;
	height: 624px;
	background-color: #34429C;
	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: #34429C;
	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: #34429C;
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: #34429C;
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: #34429C;
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: #34429C;
    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;

}

.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: #34429C;
	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(../img/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: #34429C;

}

.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: #34429C;
	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: #34429C;
	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: #34429C;
    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: #34429c;
	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: #34429c;
	font-weight: bold;
	margin-top: 4px;

}


