@charset "utf-8";

    
 .test01{
  position: relative;
  float: right;
  width: 11%;
  border-right: 0px solid #eee;
  font: 16px Arial; 
  color: black;
  cursor: pointer;
  text-align: center;
  height: 86px;
  line-height: 86px;   
}

 .test02{
 position: relative;
  float: right;
  width: 11%;
  border-right: 0px solid #eee;
  font: 16px Arial; 
  color: black;
  cursor: pointer;
  text-align: center;
  height: 86px;
  line-height: 86px;
}

 .test03{
 position: relative;
  float: right;
 width: 11%;
  border-right: 0px solid #eee;
  font: 16px Arial; 
  color: black;
  cursor: pointer;
  text-align: center;
  height: 86px;
  line-height: 86px;
}

 .test04{
 position: relative;
  float: right;
  width: 11%;
  border-right: 0px solid #eee;
  font: 16px Arial; 
  color: black;
  cursor: pointer;
  text-align: center;
  height: 86px;
  line-height: 86px;
}

 .test05{
 position: relative;
  float: right;
  width: 11%;
  border-right: 0px solid #eee;
  font: 16px Arial; 
  color: black;
  cursor: pointer;
  text-align: center;
  height: 86px;
  line-height: 86px;
}

 .test06{
 position: relative;
  float: right;
  width: 11%;
  border-right: 0px solid #eee;
  font: 16px Arial; 
  color: black;
  cursor: pointer;
  text-align: center;
  height: 86px;
  line-height: 86px;
}

.nav01{
  display: none;
  position: absolute;
  /* 关键：相对于.test01定位 */
  right: 0px;         /* 与.test01左侧对齐 */
  top: 100%;       /* 位于.test01底部正下方 */
  width: 100%;     /* 宽度与.test01保持一致（可选） */
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box; /* 确保padding不会增加总宽度 */
   overflow-y: auto; /* 内容超出时显示纵向滚动条 */
}

.nav02{
  display: none;
  position: absolute;
  right: 0px;        
  top: 100%;       
  width: 100%;     
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box; 
   overflow-y: auto; 
}

.nav03{
  display: none;
  position: absolute;
  right: 0px;        
  top: 100%;       
  width: 100%;     
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box; 
   overflow-y: auto; 
}

.nav04{
  display: none;
  position: absolute;
  right: 0px;        
  top: 100%;       
  width: 100%;     
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box; 
    overflow-y: auto; 
}

.nav05{
  display: none;
  position: absolute;
  right: 0px;        
  top: 100%;       
  width: 100%;     
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box; 
  overflow-y: auto; 
}

.nav06{
  display: none;
  position: absolute;
  right: 0px;        
  top: 100%;       
  width: 100%;     
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box; 
    overflow-y: auto; 
}

nav div a{
      display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 30px;
  color: #666;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}



.pc-only {
  display: block; /* 无 !important，优先级交给 @media 控制 */
}
.mobile-only {
  display: none; /* 无 !important，优先级交给 @media 控制 */
}

/* 移动端响应式（屏幕 ≤768px） */
@media (max-width: 1024px) {
  .pc-only {
    display: none; /* 隐藏 PC 端 Header */
  }
  .mobile-only {
    display: flex; /* 显示移动端 Header，用 flex 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 元素两端分布 */
    padding: 0 0px; /* 增加内边距，避免贴边 */
  }
  /* 移动端其他适配（如缩小 logo、调整搜索框） */
  .logo {
    height: 40px;
  }
  .searchbtn {
   
    width: 15%;
    right: 0%;
  }

  .menubtn{
    position: absolute;
    right: 50px;
}
}






