/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 全局样式 */
html,
body {
    margin: 0;
    padding: 0;
    color: #1D2129;
    background-color: #ffffff;
    overflow-x: hidden;
}

.flex{
    display: flex;
    align-items: center;
}

/* 导航栏样式 */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 15px 16px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(124deg, #0B1319 0%, #262C31 56%, #101B24 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar .menu-icon {
    width: 15px;
    height: 13px;
    position: relative;
    cursor: pointer;
}

#navbar .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease;
}

#navbar .bar1 {
    top: 0;
}

#navbar .bar2 {
    top: 50%;
    transform: translateY(-50%);
}

#navbar .bar3 {
    bottom: 0;
}

/* 点击后变成X的样式 */
#navbar .menu-icon.active .bar1 {
    transform: rotate(45deg) translate(5px, 5px);
    top: 0px;
}

#navbar .menu-icon.active .bar2 {
    opacity: 0;
}

#navbar .menu-icon.active .bar3 {
    transform: rotate(-45deg) translate(7px, -7px);
    bottom: -6px;
}




.logo img {
    height: 17px;
    width: auto !important;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 1;
    height: 217px;
    padding: 5px 0;
    background: linear-gradient(124deg, #0B1319 0%, #262C31 56%, #101B24 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: height .8s, opacity .8s;
    overflow: hidden;
}

.nav-links-hide {
    height: 0px;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}

.nav-links a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.nav-links li {
    list-style-type: none;
    padding: 8px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links li img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}


/* 页脚 */
footer {
    background-color: #111111;
    color: white;
    padding: 23px 16px;
    padding-bottom: 60px;
}

.footer-grid-moblie .head {
    display: flex;
    gap: 40px;
    padding-bottom: 11px;
    border-bottom: solid 1px rgba(231, 224, 224, .5);
}

.footer-grid-moblie .footer-title {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}

.footer-grid-moblie .footer-title img {
    width: 14px;
}

.footer-grid-moblie .footer-title>div {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-grid-moblie .footer-title>p {
    font-weight: 400;
    font-size: 11px;
    color: #FFFFFF;
    line-height: 15px;
    margin-top: 10px;
    margin-bottom: 37px;
}

.footer-grid-moblie .content {
    padding: 15px 0 10px 0;
}


.footer-logo {
    margin-bottom: 10px;
}

.footer-social {
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 5px;
    line-height: 17px;
    text-align: center;
}

.footer-filing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    margin-top: 18px;
}

.footer-links {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links li {
    margin-top: 8px;

    flex: 25%;
    min-width: 25%;
}

.footer-links li>a {
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 17px;
    text-decoration: none;
}


.footer-grid {
    display: none;
}

.footer-bottom {
    display: none;
}












/* 动画关键帧定义 */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale3d(0.8, 0.8, 0.8);
    }
  
    to {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
  }
  
  /* 动画基础类 */
  .animate-on-scroll {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* 动画延迟类 */
  .delay-100 {
    animation-delay: 0.1s;
  }
  
  .delay-200 {
    animation-delay: 0.2s;
  }
  
  .delay-300 {
    animation-delay: 0.3s;
  }
  
  .delay-400 {
    animation-delay: 0.4s;
  }
  
  .delay-500 {
    animation-delay: 0.5s;
  }
  
  /* 动画类型类 */
  .fade-in-up {
    animation-name: fadeInUp;
  }
  
  .fade-in-left {
    animation-name: fadeInLeft;
  }
  
  .fade-in-right {
    animation-name: fadeInRight;
  }
  
  .fade-in {
    animation-name: fadeIn;
  }
  
  .zoom-in {
    animation-name: zoomIn;
  }
  
  /* 激活动画的类 */
  .animate-active {
    opacity: 1;
  }

    /* 去除新闻条目中a标签下划线 */
.news-list a,
.news-grid a {
  text-decoration: none;
}