  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* 页面淡入动画 */
  body {
    opacity: 0.1;
    transition: opacity 1s ease-in-out;
  }

  body.loaded {
    opacity: 1;
  }

  .header {
    width: 100%;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 11vw 0 13vw;
    box-sizing: border-box;
    background: rgba(0, 121, 254, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .logo {
    height: 2.5vw;
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 100%;
    width: auto;
  }

  .nav-menu {
    display: flex;
    gap: 2.5vw;
    align-items: center;
    height: 100%;
  }

  .nav-item {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }

  .nav-item:hover,
  .nav-item.active {
    color: #fff;
    font-weight: bold;
  }

  .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25vw;
    /* background-color: #fff; */
    background-color: #55D0FE;
    border-radius: 0.125vw 0.125vw 0 0;
  }

  .cooperation-btn{
    display: flex;
    align-items: center;
    justify-content: center;
  }

   .cooperation-btn img{
    width: 8vw;
   }

  /* Footer */
  .footer{
    width: 100%;
    background-color: #1a1a1a;
    padding: 5vw 8.3vw 1.5vw 8.3vw;
    box-sizing: border-box;
  }

  .footer .footer-main{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2vw;
    border-bottom: 0.1vw solid rgba(255,255,255,0.1);
  }

  .footer .footer-main .footer-brand{
    width: 12vw;
    flex-shrink: 0;
  }

  .footer .footer-main .footer-brand .footer-logo{
    height: 2.5vw;
    margin-bottom: 1.5vw;
  }

  .footer .footer-main .footer-brand .footer-logo img{
    height: 100%;
    width: auto;
  }

  .footer .footer-main .footer-brand .footer-info{
    margin-bottom: 0.5vw;
  }

  .footer .footer-main .footer-brand .footer-info .info-item{
    margin-bottom: 0.5vw;
  }

  .footer .footer-main .footer-brand .footer-info .info-item .label{
    display: block;
    font-size: 0.7vw;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.1vw;
  }

  .footer .footer-main .footer-brand .footer-info .info-item .value{
    font-size: 0.7vw;
    color: rgba(255,255,255,0.8);
  }

  .footer .footer-main .footer-brand .footer-info .info-item .value.phone{
    font-size: 1vw;
    font-weight: bold;
    color: #fff;
  }

  .footer .footer-main .footer-brand .footer-qrcode{
    width: 4vw;
    height: 4vw;
    background-color: #fff;
    padding: 0.2vw;
    box-sizing: border-box;
    border-radius: 0.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .footer-main .footer-brand .footer-qrcode .qrcode-placeholder{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer .footer-main .footer-links{
    display: flex;
    gap: 3vw;
    flex: 1;
    justify-content: center;
  }

  .footer .footer-main .footer-links .link-column{
    min-width: 5vw;
  }

  .footer .footer-main .footer-links .link-column .column-title{
    font-size: 0.8vw;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.8vw;
  }

  .footer .footer-main .footer-links .link-column ul{
    padding: 0;
    color: #0079fe;
  }

  .footer .footer-main .footer-links .link-column ul li{
    font-size: 0.7vw;
    line-height: 2;
    cursor: pointer;
    transition: color 0.3s;
    /* li 加上小圆点 */
    list-style-type: disc;

    padding-left: 0.1vw; 
    list-style-position: inside;
  }

  .footer .footer-main .footer-links .link-column ul li a{
    color: rgba(255,255,255,0.5);
    text-decoration: none;
  }

  .footer .footer-main .footer-links .link-column ul li:hover{
    color: rgba(255,255,255,0.8);
  }

  .footer .footer-main .footer-social{
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    flex-shrink: 0;
  }

  .footer .footer-main .footer-social .social-icon{
    width: 2vw;
    height: 2vw;
    border-radius: 0.3vw;
    cursor: pointer;
    transition: opacity 0.3s;
    background-color: #4a7dff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
  }

  .footer .footer-main .footer-social .social-icon img{
    width: 60%;
    height: 60%;
    object-fit: contain;
  }

  .footer .footer-main .footer-social .social-icon .icon-default,
  .footer .footer-main .footer-social .social-icon .icon-hover{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .footer .footer-main .footer-social .social-icon .icon-default{
    display: block;
  }

  .footer .footer-main .footer-social .social-icon .icon-hover{
    display: none;
  }

  .footer .footer-main .footer-social .social-icon:hover .icon-default{
    display: none;
  }

  .footer .footer-main .footer-social .social-icon:hover .icon-hover{
    display: block;
  }

  .footer .footer-main .footer-social .social-icon .social-qrcode{
    position: absolute;
    right: 2.5vw;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 12vw;
    height: auto;
    background: #fff;
    border-radius: 0.3vw;
    padding: 0.5vw;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0.2vw 0.5vw rgba(0,0,0,0.15);
    z-index: 100;
  }

  .footer .footer-main .footer-social .social-icon:hover .social-qrcode{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
  }

  .footer .footer-bottom{
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
    padding-top: 1.5vw;
  }

  .footer .footer-bottom .copyright{
    display: inline-block;
    font-size: 0.7vw;
    color: rgba(255,255,255,0.4);
    /* margin-right: auto; */
  }

  .footer .footer-bottom .icp{
    display: flex;
    align-items: center;
    display: inline-block;
    gap: 0.3vw;
    font-size: 0.7vw;
    margin-left: 10vw;
    color: rgba(255,255,255,0.4);
  }

  .footer .footer-bottom .icp .icp-icon{
    width: 0.7vw;
    /* height: 0.7vw; */
  }

  /* 通用悬停放大动画 - 按钮类图片 */
  .hover-scale{
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .hover-scale:hover{
    transform: scale(1.08);
  }

  /* 通用悬停上浮动画 - 卡片类 */
  .hover-lift{
    transition: all 0.3s ease;
  }
  .hover-lift:hover{
    transform: translateY(-0.5vw);
    /* box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.12); */
  }

  /* 通用图片悬停放大（容器需要 overflow:hidden） */
  .img-zoom{
    overflow: hidden;
  }
  .img-zoom img{
    transition: transform 0.4s ease;
  }
  .img-zoom:hover img{
    transform: scale(1.06);
  }

  /* 联系按钮 */
  .contact{
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 99999;
  }

  .contact img{
    width: 3vw;
    display: block;
    position: relative;
    z-index: 5;
  }

  .contact .contact-popup{
    position: absolute;
    right: 0.2vw;
    top: 50%;
    /* transform: translateY(-50%) scale(0.8); */
    width: 15vw;
    height: 15vw;
    background: #fff;
    border-radius: 1.5vw;
    padding: 0.8vw;
    padding-left: 1.2vw;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0.2vw 0.5vw rgba(0,0,0,0.15);
    z-index: 1;
  }

  .contact:hover .contact-popup{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .contact .contact-popup .popup-qrcode{
    width: 50%;
    height: auto;
    display: block;
    margin-bottom: 0.5vw;
  }

  .contact .contact-popup .popup-text{
    font-size: 0.8vw;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5vw;
  }

  .contact .contact-popup .popup-phone-label{
    font-size: 0.7vw;
    color: #666;
    margin-bottom: 0.1vw;
  }

  .contact .contact-popup .popup-phone-num{
    font-size: 1.2vw;
    font-weight: bold;
    color: #333;
  }
