:root{
	/*宽度*/
	--mh_width:min(1280px,90%); /*首页宽度,当宽度大于1720时，得改成95%*/
	--mn_width:min(1200px,90%); /*内页宽度*/

	/*颜色*/
	--mm_color:#000; /*主要颜色*/
	--mc_color:#eee; /*次要颜色*/
	--mo1_color:#ccc; /*其他颜色*/

	/*其他*/
	--bs_1:0 0 10px rgba(0,0,0,0.1);  /*阴影*/
	--bs_3:0 0 10px rgba(0,0,0,0.3);  /*阴影*/
	--tr3:.3s ease; /*过渡*/
	--tr6:.6s ease; /*过渡*/

	/*字体大小(超过36px)*/
	--fs-72: 72px;
	--fs-60: 60px;
	--fs-58: 58px;
	--fs-56: 56px;
	--fs-54: 54px;
	--fs-52: 52px;
	--fs-50: 50px;
	--fs-48: 48px;
	--fs-46: 46px;
	--fs-44: 44px;
	--fs-42: 42px;
	--fs-40: 40px;
	--fs-38: 38px;
	--fs-36: 36px;
	--fs-34: 34px;
	--fs-32: 32px;
	--fs-30: 30px;
  
  	/*导航高度*/
  	--nav-hg:160px;
  
  	/*底部导航效果变量*/
  	--sc-ch:1;
  	--left:50%;
  	--right:50%;
  
  	/*产品列表分类标题h1的高度*/
    --bt:73px;
}

/*滚动条设置*/
html::-webkit-scrollbar {
    width: 10px;
}
html::-webkit-scrollbar-thumb {
    background: #c1c1c1;

}
html::-webkit-scrollbar-track {
    background: #E6E6E6;

}

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: 'iconfont';  /* Project id 4163342 */
  src: url('//at.alicdn.com/t/c/font_4163342_4wtbnsdaa0q.woff2?t=1689734730469') format('woff2'),
       url('//at.alicdn.com/t/c/font_4163342_4wtbnsdaa0q.woff?t=1689734730469') format('woff'),
       url('//at.alicdn.com/t/c/font_4163342_4wtbnsdaa0q.ttf?t=1689734730469') format('truetype');
}

/*锚点点击缓动*/
html{
	scroll-behavior: smooth;
}
html{
	scroll-padding-top:130px; /*当导航栏固定在顶部时，设置这个属性能让锚点点击以后不被导航栏遮挡住*/
}

/*公共样式类名自定义*/
/*宽度*/
.mhw{ /*首页宽度*/
	max-width: var(--mh_width);
	margin: 0 auto;
}
.mnw{ /*内页宽度*/
	max-width: var(--mn_width);
	margin: 0 auto;
}

/*视差滚动*/
.main .parallax-container{
	transform: unset!important;
}

/*其他*/
/*阴影效果*/
.bs1{
	box-shadow: var(--bs_1);
}
.bs3{
	box-shadow: var(--bs_3);
}
/*阴影移入效果*/
.bs1h:hover{
	box-shadow: var(--bs_1);
}
.bs3h:hover{
	box-shadow: var(--bs_3);
}

/*过渡效果*/
.tr3{
	transition: var(--tr3);
}
.tr6{
	transition: var(--tr6);
}

/*文字移入效果*/
/*单个文字*/
.txh{
	transition:color var(--tr3);
}
.txh:hover{
	color: var(--mm_color)!important;
}
/*移入容器内文字效果*/
.ctx{
	transition:color var(--tr3);
}
.ctxh:hover .ctx{
	color: var(--mm_color)!important;
}

/*图片移入效果*/
/*单个图片移入效果*/
.imh img{
	transition: transform var(--tr6);
}
.imh:hover img{
	transform: scale(1.05);
}
/*移入容器内图片效果*/
.cim img{
	transition: transform var(--tr6);
}
.cimh:hover .cim img{
	transform: scale(1.05);
}

/*文本换行*/
.no_blak{
	white-space: pre-line;
}

/*rem响应式*/
/*注意前后顺序，同时存在min或者max时，后面的会覆盖前面的*/
@media (min-width:1000px) {
	:root {
		--fs-72: 68px;
		--fs-60: 54px;
		--fs-58: 54px;
		--fs-56: 52px;
		--fs-54: 50px;
		--fs-52: 48px;
		--fs-50: 46px;
		--fs-48: 44px;
		--fs-46: 42px;
		--fs-44: 40px;
		--fs-42: 38px;
		--fs-40: 36px;
		--fs-38: 34px;
		--fs-36: 32px;
		--fs-34: 30px;
		--fs-32: 28px;
		--fs-30: 26px;
	}
}

@media (min-width:1600px) {
	:root {
		--fs-72: 72px;
		--fs-60: 60px;
		--fs-58: 58px;
		--fs-56: 56px;
		--fs-54: 54px;
		--fs-52: 52px;
		--fs-50: 50px;
		--fs-48: 48px;
		--fs-46: 46px;
		--fs-44: 44px;
		--fs-42: 42px;
		--fs-40: 40px;
		--fs-38: 38px;
		--fs-36: 36px;
		--fs-34: 34px;
		--fs-32: 32px;
		--fs-30: 30px;
	}
}

@media (max-width: 769px) {
	:root {
		--fs-72: 62px;
		--fs-60: 50px;
		--fs-58: 48px;
		--fs-56: 46px;
		--fs-54: 44px;
		--fs-52: 42px;
		--fs-50: 30px;
		--fs-48: 38px;
		--fs-46: 36px;
		--fs-44: 34px;
		--fs-42: 32px;
		--fs-40: 30px;
		--fs-38: 24px;
		--fs-36: 26px;
		--fs-34: 24px;
		--fs-32: 22px;
		--fs-30: 20px;
	}
	.mhw{ /*首页宽度*/
		max-width:100%;
	}
	.mnw{ /*内页宽度*/
		max-width:100%;
	}

	/*移动端padding调整*/
	.mbp{
		padding: 1rem 10px!important;
	}
  	
  	/*产品列表的手机端*/
	div[id^=c_] #top_con{
    	flex-direction: column-reverse;
   		gap: 20px;
    }
    div[id^=c_] #top_con .p_item{
        padding: 0;
    }
   	div[id^=c_] #top_con .p_item h1{
        font-size: 22px;
        padding-bottom: 20px;    
    }
  	div[id^=c_] #top_con .p_item > div[class^="e_cont"]{
  		padding-bottom: 20px;
  	}
  	
  	/*产品列表的筛选*/
  	div[id^=c_] #top_filt .p_moSwitch{
  		background:#333;
  	}
  	div[id^=c_] #top_filt .p_moContainer{
  		background:#fff;
  	}
  	div[id^=c_] #top_filt .p_screenLine .p_valBox{
  		height: auto;
  	}
  	div[id^=c_] #top_filt .p_valItem{
  		border: 1px solid #333;
  	}
  	div[id^=c_] #top_filt .p_single{
  		font-size:16px;
  	}
  	div[id^=c_] #top_filt .p_rBox{
  		height: auto;
  	}
  	
  	/*产品列表*/
  	div[id^=c_] #pr_list div[class^=e_preView]{
  		max-width: unset;	
  	}
}

/*em响应式*/
/*页面宽度是1600px*/
@media (min-width:1600px){
	body{
		font-size: 16px;
	}
}

@media (max-width:1600px) and (min-width:1200px){
	body{
		font-size: 14px;
	}
}

@media (max-width: 769px) {
	body {
		font-size: 14px;
	}
}