/* 新增修改 */
.select_son>li{
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;

  font-weight: 100 !important; /* 设置字体为最细 */
  line-height: 0.8 !important; /* 调整行高为字体大小的0.8倍 */
  transform: scaleY(1.05) !important; /* 纵向拉伸字体 */
}

@font-face {

  font-family: Gilroy-Bold;

  src: url(/font/gilroy-bold-4.otf);

}

@font-face {

  font-family: Gilroy-Medium;

  src: url(/font/Gilroy-Medium-2.otf);

}

@font-face {

  font-family: Gilroy-Regular;

  src: url(/font/gilroy-regular-3.otf);

}

:root{

  --border-radius:6rem

}

.kv_header{

  height: 3rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 3rem;

}

.kv_header .logo img{

  /* width: 12rem;

  height: 1.2rem; */

  width: 13.5rem; /* 或者设置为具体像素值，如 200px */
  height: auto;

}

.kv_header .nav {

  font-family: Gilroy-Bold;

	font-size: 0.7rem;

	font-weight: normal;

	font-stretch: normal;

	line-height: 1.2rem;

	letter-spacing: 0.05rem;

  margin-right: 8rem;

}

.kv_header .nav a:hover,

.kv_header .nav a:focus,

.kv_header .nav a{

  color: #313131;

  border-radius: unset;

  background-color: unset;

  /* font-size: 0.8vw !important; */

}

.kv_header .nav>li{

  margin: 0 .4rem;

  font-size: 0.7rem !important;

  margin-left: 1rem;
  margin-right: 1rem;

  border-bottom: 0.2rem solid white;

}

.kv_header .nav>li:hover{
  border-bottom: 0.2rem solid #f94d1c;
}

.kv_header .nav>li>a:hover,

.kv_header .nav>.active>a:hover,

.kv_header .nav>.active>a:focus,

.kv_header .nav>.active>a{

  color: #313131;

  /* border-bottom: 0.2rem solid #f94d1c; */

  background-color: unset;

}

.kv_header .dropdown-menu {

  font-family: Gilroy-Medium;

	font-size: 0.9rem;

	font-weight: normal;

	color: #7d7d7d;

	line-height: 2rem;

}



.kv_header .dropdown-menu a:hover,

.kv_header .dropdown-menu .active a:hover,

.kv_header .dropdown-menu .active a{

  font-family: Gilroy-Bold;

	color: #1b1b1b;

  background-color: unset;

}

.kv_header .lan{

  border: unset;

  outline: unset;

  font-family: Gilroy-Bold;

	font-size: 0.8rem;

	color: #1b1b1b;

}



.kv_footer{

	background-color: #f4f5f6;

  border-top-left-radius: var(--border-radius);

  border-top-right-radius: var(--border-radius);

  padding: 0 10rem;

} 

.kv_footer .logo{

  /* height: 1.2rem; */

  /* width: 12rem;

  height: 1.2rem; */

  width: 13.5rem;
  

}

.kv_footer .links{

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-bottom: 2.4rem;

  padding-top: 4rem;

  border-bottom: 1px solid  #313131;

}

.kv_footer .links .link{

  display: flex;

  align-items: center;

  gap: 2rem;

}

.kv_footer .links .link a{

  font-family: Gilroy-Medium;

	/* font-size: 0.7rem; */

	font-weight: normal;

	font-stretch: normal;

	line-height: 1.2rem;

	letter-spacing: 0rem;

	color: #313131;

}

.kv_footer .copyRight{

    font-family: Gilroy-Medium;

    /* font-size: 0.7rem; */

    font-weight: normal;

    font-stretch: normal;

    line-height: 4.5rem;

    letter-spacing: 0rem;

    color: #313131;

    text-align: center;

}

.kv_header .mobile_button{

  display: none;

}

@media (min-width: 960px) {

  .kv_footer .links .link a{
  
    font-size: 0.75rem;
  
  }

  .kv_footer .copyRight{

    font-size: 0.75rem;
  }

  .kv_header .nav a{
  
    font-size: 0.8vw !important;
  
  }
}

@media (max-width: 960px){

  .kv_header .nav a{
  
    font-size: 4vw !important;
  
  }

  .kv_footer .links .link a{
  
    font-size: 1rem;

    margin-left: -5px;

    margin-right: -5px;

  }

  .kv_footer .links .link a:nth-child(2){
  
    font-size: 1rem;

    width: 4.9rem;

  }

  .kv_footer .links .link a:nth-child(6){
  
    font-size: 1rem;



    width: 7rem;

  }
  
  .kv_footer .copyRight{

    font-size: 1rem;
  }

  :root{

    --border-radius:3rem

  }

  html{

    font-size: 10px !important;

  }

  .kv_header{

    padding: 0 1rem;

  }

  .kv_header .lan{

    font-size: 1.4rem;

  }

 .kv_header .mobile_button{

    display: block;

  }

  .kv_header .nav{

    display: none;

    height: 100vh;

    width: 0;

    flex-direction: column;

    position: fixed;

    top: 0;

    left: 0;

    z-index: 99;

    background-color: #fff;

    box-sizing: border-box;

    padding: 5rem 1rem;

    transition: all 0.3s linear ;

    font-size: 1.4rem;

  }

  .kv_header .nav.open{

    display: flex;

    width: 100vw;

  }

  .kv_header .nav>li>a:hover,

  .kv_header .nav>.active>a:hover,

  .kv_header .nav>.active>a:focus,

  .kv_header .nav>.active>a{

    color: #f94d1c;

    background-color: unset;

    border-bottom: unset;

  }

  .kv_header .dropdown-menu{

    position: unset;

    border: unset;

    box-shadow: unset;

    margin: 0;

    padding: 0;

    font-size: 1.4rem;

  }

  

  .kv_header  .dropdown-backdrop{

    display: none;

  }

  .kv_header .right_btn{

    display: flex;

    align-items: center;

    gap: 2rem;

  }

  .kv_header .logo{

    position: relative;

    z-index: 100;

  }

  .kv_header .mobile_button{

    position: relative;

    z-index: 100;

    display: block;

    height: 2rem;

    width: 2.8rem;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

  }

  .kv_header .mobile_button div{

    width: 100%;

    height: 2px;

    background-color: #00314f;

    transition: all 0.3s linear;

  }

  .kv_header .mobile_button.open div:nth-child(2){

    background-color: #00314f00;

  }

  

  .kv_header .mobile_button.open div:nth-child(1){

    transform: rotate(37deg);

    transform-origin: left;

  }

  

  .kv_header .mobile_button.open div:nth-child(3){

    transform: rotate(-37deg);

    transform-origin: left;

  }

  .kv_footer{

    padding: 0 2rem;

  }

  .kv_footer .links{

    flex-direction: column;

    gap: 2rem;

  }

}

/* @media (max-width: 400px) {

  .kv_footer .links .link a{
  
    font-size: 1.5rem;

  }

  .kv_footer .copyRight{

    font-size: 1rem;
  }
} */

.select_son>li:last-child{
  margin-bottom: 0.4rem !important;
}

.Founded p{
  letter-spacing: 0.08rem !important;
}

h2{
  letter-spacing: 0.08rem !important;
}

h4{
  letter-spacing: 0.08rem !important;
}

p{
  letter-spacing: 0.08rem !important;
}

a{
  letter-spacing: 0.08rem !important;
}