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: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 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: 72px;
    cursor: pointer;
    top: 8px;
}

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

/* 导航文字项 */
.nav-item {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    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: 200px;
    display: none;
    justify-content: flex-end;
    align-items: top;
    padding: 0 80px;
    gap: 24px;
    box-shadow: 0 4px 4px rgba(52, 66, 156, 0.1);
    text-align: center;
}

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

.submenu-container{
	width: 192px;
	height: 108px;
	object-fit: cover; 
	margin-top: 36px;
	overflow: hidden;
}

.submenu-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;

}

.submenu-img:hover{
	transform: scale(1.2);

}


.submenu-text{
	font-size: 16px;
	line-height: 20px;
	 color: #fff;
	margin-top: 12px;
	font-weight: bold;

}

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

/* 菜单切换逻辑 */
#menu-switch:checked ~ .nav-bar {
    height: 300px;
}
#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;
}


.bottom{
	width: 100%;
	height: 400px;
	background-color: #009999;
	padding-top: 72px;
}



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

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

}


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

}

.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{
	height: 32px;
	display: block;
	margin-left: 2px;
}

.bottom-corpname{
	font-size: 24px;
	line-height: 32px;
	color: #fff;
	font-weight: bold;
	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: 10px;
}

.bottom-product-text{
	width: 200px;
	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: 10px;

}

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



h1{
	color: #009999;
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	text-align: center;

}

h2{
	color: #009999;
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	text-align: left;



}

h3{
	color: #009999;
	font-size: 20px;
	line-height: 32px;
	font-weight: bold;
	margin-top: 0;
	text-align: center;

}

h4{
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 32px;
	text-align: left;
}

h5{
	color: #009999;
	font-size: 16px;
	font-weight: bold;
	line-height: 32px;
	text-align: left;
	margin-top: 32px;
	display: block;

}

h51{
	color: #009999;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	text-align: left;
	margin-top: 16px;
	display: block;

}

h6{
	color: #009999;
	font-size: 16px;
	font-weight: bold;
	line-height: 32px;
	text-align: left;
	margin-top: 32px;

}


.container{
	width: 1080px;
	margin: 0 auto;
}

.home-banner{
	width: 100%;
	margin-top: 64px;
}

.home-banner-img{
	width: 100%;

}

.home-points{
	width: 100%;
	padding-top: 60px;
	padding-block: 60px;
	background-color: #f6f6f6;
	text-align: center;
	align-items: center;
}

.home-points-bg{
	width: 320px;
	height: 336px;
	background-color: #fff;
	margin: 0 30px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}

.home-points-icon{
	width: 96px;
	height: 96px;
	margin-top: 32px;
}

.home-points-text{
	color: #000;
	font-size: 14px ;
	line-height: 20px;
	margin: 0 auto;
	margin-top: 16px;
	width: 256px;

}

.home-intro{
	width: 100%;
	background-color: #fff;
	padding: 50px 0;
}


.home-intro-left{
	width: 520px;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

.home-intro-right{
	width: 560;
	display: inline-block;
	vertical-align: middle;
}

.home-intro-box{
	width: 144px;
	height: 144px;
	margin: 10px;
	margin-left: 0;
	margin-right: 20px;
	display: inline-block;
	vertical-align: middle;
	background-color: #009999;
	text-align: center;
}

.home-intro-number{
	font-size: 36px;
	line-height: 48px;
	font-weight: bold;
	color: #fff;
	margin-top: 32px;
}

.home-intro-text{
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	margin-top: 8px;
}

.home-intro-dscp{
	font-size: 14px;
	line-height: 20px;
	color: #000;
	margin-top: 24px;
	width: 560px;
	text-align: left;
}

.home-partner{
	width: 100%;
	background-color: #f6f6f6;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

.home-partner-img{
	width: 1080px;
	margin: 0 auto;
	margin-top: 32px;
}

.home-partner-img-mob{
	display: none;
}


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

.home-case-body{
	width: 1104px;
	margin: 0 auto;
}

.home-case-container{
	width: 252px;
	height: 160px;
	object-fit: cover; 
	overflow: hidden;
	margin: 12px;
	margin-top: 24px;
	margin-bottom: 0;
	display: inline-block;
	vertical-align: middle;

}

.home-case-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;

}

.home-case-img:hover{
	transform: scale(1.0);

}



.p-info{
	position: relative;
	width: 100%;
	padding-top: 64px;
	padding-bottom: 60px;
	text-align: center;
	margin-top: 64px;
}

.p-info-img{
	width: 600px;
	height: 400px;
	margin: 0 auto;
	margin-top: 24px;

}

.p-info-text{
	font-size: 16px;
	line-height: 24px;
	color: #000;
	
	width: 1080px;
	text-align: center;
	margin: 0 auto;

}

.p-benifits{
	width: 100%;
	padding: 60px 0;
	background-color: #009999;
	text-align: center;
}

.p-benifits-text1{
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	width: 1080px;
	text-align: left;
	margin: 0 auto;
	margin-bottom: 8px;
}

.p-benifits-list1{
	width: 480px;
	display: inline-block;
	vertical-align: text-top;
	margin-top: 16px;
}

.p-benifits-list2{
	width: 480px;
	margin-left: 120px;
	display: inline-block;
	vertical-align: text-top;
	margin-top: 16px;
}

.p-benifits-text2{
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	width: 1080px;
	text-align: left;
	margin-top: 0;
}


.p-list{
	width: 100%;
	background-color: #f6f6f6;
	padding-top: 28px;
	padding-bottom: 60px;
}

.p-list-bg{
	width: 1080px;
	padding-bottom: 40px;
	margin: 0 auto;
	margin-top: 32px;
	background-color: #fff;

}

.p-list-left{
	width: 328px;
	height: 416px;
	margin-top: 40px;
	margin-left: 32px;
	display: inline-block;
	vertical-align: text-top;
}


.p-list-left1{
	width: 328px;
	height: 416px;
	margin-top: 60px;
	margin-left: 32px;
	display: inline-block;
	vertical-align: text-top;
}

.p-list-img{
	width: 320px;
	height: 208px;
}

.p-list-right{
	width: 680px;
	display: inline-block;
	vertical-align: text-top;
	margin-top: 60px;
	margin-left: 40px;
	margin-bottom: 20px;
	text-align: left;

}

.p-list-text{
	width: 224px;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	text-align: left;
	margin-top: 16px;
	display: inline-block;
	vertical-align: middle;
}

.p-list-text1{
	width: 224px;
	font-size: 14px;
	line-height: 16px;
	color: #000;
	text-align: left;
	margin-top: 8px;
	display: inline-block;
	vertical-align: middle;

}

.p-list-text2{
	width: 320px;
	font-size: 14px;
	line-height: 16px;
	color: #000;
	text-align: left;
	margin-top: 8px;
	display: inline-block;
	vertical-align: middle;

}


.btn{
	box-sizing: border-box;
	padding: 0 32px;
	min-width: 360px;
	height: 64px;
	border: 2px solid #009999;
	display: inline-block;
	margin-top:64px ;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 60px;
	text-align: center;
	color: #009999;
}

.btn:hover{
	background-color: #009999;
	color: #fff;
}

