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

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

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

	/*字体大小(超过36px)*/
	--fs-72: 72px;
	--fs-60: 60px;
	--fs-54: 54px;
	--fs-48: 48px;
	--fs-44: 44px;
	--fs-42: 42px;
	--fs-38: 38px;
	--fs-36: 36px;
  
  	/*左右对齐*/
  	--mg:105px;
  
  	/*满屏时设置最大高度*/
  	--max-hg:960px;
}

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

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

}

/*锚点点击缓动*/
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;
}

/*文字两端对齐*/
.teju{
  	text-align: justify;
	position:relative;
  	height: 16px;
}
.teju::after{
	content: '';
    display: inline-block;
    width: 100%;
}
/*发展历程*/
.his-year{
	font-size: 100px;
	color: #fff;
	line-height: 1;
	font-family: "997e6c5a-9256-44ec-9983-382ecbac2cb7";
  	margin-top: -10px;
}
.his-tlt{
	font-size: 24px;
	color: #353537;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 50px;
}
.his-summery{
	font-size: 16px;
	color: #353537;
	line-height: 2;
}

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

/*过渡效果*/
.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;
}



/*阿里图标库引用*/
@font-face {
  font-family: 'iconfont_hj';  /* Project id 4013409 */
  src: url('http://at.alicdn.com/t/c/font_4013409_ridsxotqmmj.woff2?t=1683514168251') format('woff2'),
       url('http://at.alicdn.com/t/c/font_4013409_ridsxotqmmj.woff?t=1683514168251') format('woff'),
       url('http://at.alicdn.com/t/c/font_4013409_ridsxotqmmj.ttf?t=1683514168251') format('truetype');
}
.iconfont_hj{
    font-family:"iconfont_hj"!important;
  	font-style:normal;
}

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

@media (min-width:1700px) {
	html {
		font-size: 100px;
	}
	:root {
		--fs-72: 72px;
		--fs-60: 60px;
		--fs-54: 54px;
		--fs-48: 48px;
		--fs-44: 44px;
		--fs-42: 42px;
		--fs-38: 38px;
		--fs-36: 36px;
	}
}

@media screen and (max-width: 1920px){
	.mhw{ /*首页宽度*/
		max-width: var(--mh_width);
		margin: 0 auto;
	}
  	.mnw{ /*内页宽度*/
		max-width:var(--mn_width);
	}
  
  	/*满屏时设置最大高度*/
  	:root{
  		--max-hg:960px;
  	}
}


@media (max-width: 769px) {
	html {
		font-size: calc(100vw/7.5);
	}
	:root {
		--fs-72: 64px;
		--fs-60: 52px;
		--fs-54: 46px;
		--fs-48: 40px;
		--fs-44: 36px;
		--fs-42: 34px;
		--fs-38: 30px;
		--fs-36: 28px;
	}
	.mhw{ /*首页宽度*/
		max-width:100%;
	}
	.mnw{ /*内页宽度*/
		max-width:100%;
	}

	/*移动端padding调整*/
	.mbp{
		padding: 1rem 10px!important;
	}
}

@media screen and (min-width: 1920px){
	.mhw{ /*首页宽度*/
		max-width:90%;
	}
  	
  	.mnw{ /*内页宽度*/
		max-width:90%;
	}
  
  	/*满屏时设置最大高度*/
  	:root{
  		--max-hg:unset;
      	--mh_width:90%;
  	}
}


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

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

@media (max-width: 769px) {
	body {
		font-size: 14px;
	}
  
  	/*发展历程*/
.his-year{
	font-size: 56px;
}
.his-tlt{
	font-size: 22px;
  	margin-bottom: 25px;
}
.his-summery{
	font-size: 14px;
}
}