@charset "utf-8";
@font-face {
    font-family: 'HelveticaNeue';
    src: url(./font/Inter-Regular-9.otf);
}
@font-face {
    font-family: 'Inter';
    src: url(./font/Inter-VariableFont_opsz\,wght.ttf);
}
@font-face {
    font-family: 'poppins';
    src: url(./font/Poppins-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.header {
    position: relative;
    z-index: 1000;
    
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0 auto;
    padding: 0.4rem 3.6rem;
}

.header .logo  img{
width: 1.7rem;
height: 0.4rem;
    display: block;
}
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-weight: 600;
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #FF6B00;
    text-decoration: none;
}

.nav-item.active {
    color: #FF6B00;
}


.dog{
    margin: 1.4rem auto 0;
    width: 2.12rem;
    height: 1.80rem;
    position: absolute;
    left: 24%;
    transform: translateX(-50%);
}
/* Footer Styles */
 /* 原有的 footer 样式  */
 footer{
    background: #01ffff2d;
    margin-top: 2.98rem;
    
  }
  .footer-left .footer-logo{
    width: 2.28rem;
    height: 1.07rem;
    line-height: 0;
  }
  .footer-email{
    font-family: Inter ,poppins,HelveticaNeue,Pingfang , Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #191B22;
    line-height: 27px;
    text-align: left;
  }
  .footer-email img{
    width:20px;
    height: 20px;
  }
  .footer-wrapper{
      font-family: Inter ,poppins,HelveticaNeue,Pingfang , Arial, sans-serif;
    padding: 0.83rem 3.7rem 0.89rem 3.8rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .footer-wrapper .logo img{
    width: 120px;
    display: block; 
  }

  .footer-left{
    width: 4.6rem;
    margin-right: 2.4rem;
    font-size: 0.18rem;
    line-height: 0.27rem;
  }
  .footer-left .btn{
    margin-bottom: 0.22rem;
  }
  .footer-left .btn img{
    width: 2rem;

  } 
  .footer-left .logo{
    width: 2.68rem;
    margin-bottom: 0.37rem;
    line-height: 0;
  }
  .footer-right{
    flex:1;
    font-size: 0.14rem;
    line-height: 0.16rem;
    text-align: right;
  }
  .footer-right p{
    margin-bottom: 0.26rem;
  }
  .footer-right a{
    color: #000;
    text-decoration: underline;
  }
  .footer-right a:not(:last-child){
    margin-right: 0.43rem;
  }
  .footer-right a:hover{
    text-decoration: none;
  }

  @media screen and (max-width: 1440px) {
    .header-inner{
           padding: 0.4rem 2rem;
    }
 
  }