body {
	font-family: PingFang SC, Helvetica, sans-serif, Droidsansfallback, "Droid Sans", "Microsoft Yahei", Arial;
	margin:0;
	padding:0;
	min-width: 1200px;
	text-align: center;
	background-color: #fff;
	font-size: 0;
	line-height: 0;
}




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

        /* 主导航区域 */
        .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 4px 4px rgba(52, 66, 156, 0.1);
            text-align: center;
        }

        /* 子菜单项 */
        .submenu-item {
            width: 200px;
            font-weight: bold;
            color: #34429C;
            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: #34429C;
        	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: #34429C;
            top: 6px;
            box-shadow: 0 6px 0 #34429C, 0 12px 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: 20px;
            height: 20px;
            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: 32px;

        }


        .mob-nav-item {
            display: block;
            padding: 18px 0;
            font-weight: bold;
            font-size: 16px;
            color: #34429C;
            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(../img/home-intro-bg1.jpg);
	background-position: center;
	background-size: cover;
}

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

.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: 1200px;
	text-align: center;
	display: inline-block;
}


.home-intro-list-bg{
	position: relative;
	display: inline-block;
	width: 336px;
	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: #34429C;
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: 192px;
	padding-bottom: 96px;
	background-color: #fff;
	
}

.home-product-body{
	width: 1200px;
	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: #34429C;
}

.normal-subtitle{
	font-size: 20px;
	line-height: 24px;
	margin-top: 8px;
	display: block;
	text-align: center;
color: #34429C;
font-weight: bold;
}


.normal-btn{

box-sizing: border-box;
padding: 0 32px;
min-width: 360px;
height: 64px;
border: 2px solid #34429C;
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: #34429C;

}

.normal-btn:hover{
	background-color: #34429C;
	color: #fff;
}

.normal-text{
	width: 1040px;
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: 512px;
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: #34429C;
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: 1200px;
	margin: 0 auto;
	margin-top: 24px;
}

.home-scenario-part{
	width: 336px;
	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: #34429C;
margin-top:16px ;

}


.bottom{
	width: 100%;
	height: 400px;
	background-color: #34429C;
	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: 1040px;
	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:764px ;
	background-color: #fff;
	padding-top:164px ;
}

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

}

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

}

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

}


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

}

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

}


.service-spare{
	width: 100%;
	height:696px ;
	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: 1040px;

	height: 360px;
	display: block;
	margin: 0 auto;
	margin-top: 64px;
}


.service-img{
	width: 360px;
	height: 360px;
	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: 618px;
	vertical-align: text-top;
	padding-top: 24px;

}


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


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




.service-point-text{
	font-size: 16px;
	line-height: 24px;
	color: #34429C;
	text-align: left;
	font-weight: bold;
	margin: 16px 0;
}



.about-intro{
	width: 100%;
	background-color: #fff;
	height: 662px;
	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: 1040px;
	margin: 0 auto;
	margin-top: 64px;
	text-align: left;

}


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

}

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

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

}



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

}

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


.about-team-part{
	display: inline-block;
	width: 180px;
	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: #34429C;
}


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

}


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

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

}




.about-certs-part{
	width: 564px;
	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: #34429C;
margin-left: 16px;
display: inline-block;
vertical-align: middle;

}


.about-certs-img{
	width:435px ;
	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-top:80px ;
	height: 568px;
}

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

.about-patents-img{
	width: 160px;
	height: 224px;
	border-radius: 8px;
	margin: 0 8px;
	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: 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;
    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: #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: 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: 1040px;
	margin: 0 auto;
	margin-top: 32px;
	margin-bottom: 12px;
	text-align: left;

}

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

}



.item-label1{
	width: 260px;
	height: 36px;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
	color: #34429C;
	display: inline-block;
	vertical-align: middle;

}

.item-label0{
	width: 260px;
		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: 1040px;
	height: 1px;
	background-color: #eee;
	margin: 0 auto;
	margin-top: 24px;
}



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

}


.p-body{
	width: 1040px;
		min-height: 400px;
	margin: 0 auto;
}

.p-img{
	width: 1040px;
	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: 560px;

}


.p-title{
	width: 480px;
	font-size: 36px;
	line-height: 48px;
	font-weight: bold;
	text-align: left;
	color: #34429C;

}

.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: 1040px;
	height: 232px;
	background-color: #fff;
	border-radius: 8px;
	margin: 0 auto;
	margin-top: 32px;
	text-align: center;
	padding-top: 30px;

}


.p-parameter-part{
	width: 240px;
	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: #34429C;
	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: 1040px;
	border-radius: 8px;
		margin-bottom: 64px;

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


}




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

.p-details-part{
	width: 416px ;
	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: #34429C;
	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: 1040px;
    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: #34429C;
    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: 1040px;
    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: #34429C;
    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: 1040px;
	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: #34429c;
	font-weight: bold;
	margin-top: 4px;

}

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

}

.op-parameter-body1{
	width: 1040px;
	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: #34429c;
	font-weight: bold;
	margin-top: 4px;

}