:root{
  /*宽度*/
  --mh_width:min(1400px,90%);
  /*首页宽度,当宽度大于1720时，得改成95%*/
  --mn_width:min(1200px,90%);
  /*内页宽度*/
  /*颜色*/
  --mm_color:#116EB3;
  /*主要颜色*/
  --mc_color:#eee;
  /*次要颜色*/
  --mo1_color:#ccc;
  /*产品框颜色*/
  --cp_color:linear-gradient(120deg, #0E74B9, #25438F);
  /*其他尺寸*/
  --min-width:160px;
  /*产品标题*/
  --cpbt:22px;
  /*产品边框间距*/
  --padd:10px 5px;
  /*参数文字*/
  --wz-left:center;
    /*最小高度*/
  --mi-height:400px;
  /*其他颜色*/
  /*其他*/
  --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;
  
  /*导航高度*/
  --nv_h:85px;
  
  --mg_lf:255px;
      /*内页BN高*/
  --ny_height:350px;
}
/*滚动条设置*/
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;
  /*当导航栏固定在顶部时，设置这个属性能让锚点点击以后不被导航栏遮挡住*/
}
/* CDN 服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */

@font-face {
  font-family: 'iconfont_hj';  /* Project id 4058458 */
  src: url('//at.alicdn.com/t/c/font_4058458_tm1emhmwu.woff2?t=1683712306897') format('woff2'),
       url('//at.alicdn.com/t/c/font_4058458_tm1emhmwu.woff?t=1683712306897') format('woff'),
       url('//at.alicdn.com/t/c/font_4058458_tm1emhmwu.ttf?t=1683712306897') format('truetype');
}
/*公共样式类名自定义*/
/*宽度*/
.mhw{
  /*首页宽度*/
  max-width: var(--mh_width);
  margin: 0 auto;
}
.mnw{
  /*内页宽度*/
  max-width: var(--mn_width);
  margin: 0 auto;
}
/*首页中英文标题*/
.hm_zh{
  font-size: max(22px,calc((48*100vw) / 1920));
  font-weight: bold;
  line-height: 1;
  color: #3e3e40;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.hm_hr{
  width: 60px;
  height: 4px;
  margin: 20px auto 0;
  background: #09308F;
  position: relative;
  z-index: 1;
}
.hm_en{
  font-size: max(30px,calc((80*100vw) / 1920));
  line-height: 1;
  color: #eff2f4;
  font-family: "294bb8fb-4484-4c8d-a0fe-25534cca1dd3";
  text-align: center;
  margin-top: -30px;
  text-transform:uppercase;
  position: relative;
  z-index: 0;
}
/*视差滚动*/
.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;
  --ny_height:150px;
  }
  .mhw{
    /*首页宽度*/
    max-width:100%;
  }
  .mnw{
    /*内页宽度*/
    max-width:100%;
  }
  /*移动端padding调整*/
  .mbp{
    padding: 1rem 10px!important;
  }
}
/*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;
  }
}
