@charset "UTF-8";
/* 参观导览页面样式 */

/* 楼层导航区域 */
.guide-floor {
    padding: 0.6rem 0;
  }
  
  .floor-container {
    display: flex;
    align-items: flex-start;
    gap: 2.3rem;
  }
  .guide-title{
    font-size: 0.48rem;
      font-weight: bold;
      color: #084ED0;
      margin-bottom: 0.6rem;
  }
  /* 左侧楼层Tab */
  .floor-tabs {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border: 1px solid rgba(8,78,208,0.4);
    border-radius: 0.12rem;
    overflow: hidden;
  }
  
  .floor-tab {
    width: 4.2rem;
    height: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid rgba(8,78,208,0.4);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.3) 100%);
  }
  .floor-tabs .floor-tab:last-child{
    border-bottom: 1px solid transparent;
  }
  .floor-tab .ch{
    font-size: 0.3rem;
    font-weight: bold;
    color: #084ED0;
  }
  .floor-tab .en{
    font-size: 0.16rem;
    color: #333;
  }
  .floor-tab:hover {
    background: linear-gradient(180deg, #1653C4 0%, #00B5FA 100%);
  }
  
  .floor-tab.active {
    background: linear-gradient(180deg, #1653C4 0%, #00B5FA 100%);
    border-bottom: 1px solid transparent;
    
  }
  .floor-tab:hover span,.floor-tab.active span{
    color: #fff;
  }
  
  /* 右侧楼层图片容器 */
  .floor-images {
    flex: 1;
    position: relative;
    margin-top: -0.6rem;
  }
  
  .floor-image {
    border-radius: 0.12rem;
    overflow: hidden;
    display: none;
    
  }
  
  .floor-image.active {
    display: flex;
  }
  
  .floor-image img {
    width: 7.1rem;
    display: block;
  }
  .floor-line{
    margin-top: 0.3rem;
  }
  .floor-line img{
    width: 100%;
  }
  
  /* 展项区域 */
  .guide-exhibit {
    padding: 0.2rem 0 0.8rem;
  }
  
  /* 展项Tab */
  .exhibit-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
    justify-content: space-between;
  }
  
  /* Tab分隔符 */
  .tab-divider {
    color: #E5E5E5;
    font-size: 0.16rem;
    user-select: none;
  }
  
  .exhibit-tab {
    font-size: 0.24rem;
    color: #666666;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
  }
  
  .exhibit-tab:hover {
    color: #084ED0;
  }
  
  .exhibit-tab.active {
    color: #084ED0;
    font-weight: 500;
  }
  
  /* 展项内容容器 */
  .exhibit-contents {
    position: relative;
  }
  
  /* 展项内容区域 */
  .exhibit-content {
    display: none;
    border-radius: 0.12rem;
  }
  
  .exhibit-content.active {
    display: block;
  }
  
  /* 标题样式 */
  .section-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #084ED0;
    margin-bottom: 0.4rem;
  }
  
  /* 展览介绍 */
  .exhibit-intro {
    margin-bottom: 0.6rem;
  }
  
  .exhibit-intro p {
    font-size: 0.24rem;
    color: #3D3D3D;
    line-height: 0.4rem;
    text-indent: 2em;
  }
  
  /* 相关展品 */
  
  
  .items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.24rem;
    margin-top: 0.2rem;
  }
  
  .item-card {
    
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .item-card:hover {
    transform: translateY(-0.08rem);
  }
  
  .item-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border-radius: 0.1rem;
  }
  
  .item-card p {
    font-size: 0.22rem;
    color: #000;
    text-align: center;
    padding: 0.2rem 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  @media screen and (max-width: 1199px) {
    .guide-title{
      font-size: 0.36rem;
    }
  }
  /* 响应式适配 - 平板 */
  @media screen and (max-width: 1024px) {
    .floor-container {
      flex-direction: column;
      gap: 0.2rem;
    }
  
    .floor-tabs {
      flex-direction: row;
      width: 100%;
      justify-content: center;
    }
  
    .floor-tab {
      width: 25%;
      padding: 0 0.3rem;
      border-bottom: 1px solid transparent;
    }
    .floor-images{
      margin-top: 0;
      width: 100%;
    }
    .floor-image {
      width: 100%;
      min-height: 3rem;
      justify-content: center
    }
    
  
    .items-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .tab-divider{
      margin: 0;
    }
  }
  @media screen and (max-width: 768px){
    .guide-title{
      font-size: 0.28rem;
      margin-bottom: 0.3rem;
    }
    .exhibit-tab{
      font-size: 0.2rem;
    }
  }
  /* 响应式适配 - 手机 */
  @media screen and (max-width: 640px) {
    .guide-floor {
      padding: 0.4rem 0;
    }
  
    .floor-tabs {
      gap: 0.1rem;
    }
  
    .floor-tab {
      font-size: 0.16rem;
      padding: 0 0.2rem;
    }
  
    .floor-image {
      min-height: 2.4rem;
    }
    .floor-image img{
      width: 96%;
    }
    .guide-exhibit {
      padding: 0;
    }
  
    .exhibit-tabs {
      justify-content: space-between;
      margin-bottom: 0.2rem;
    }
  
    .tab-divider {
      margin: 0 0.15rem;
    }
  
    .exhibit-tab {
      font-size: 0.14rem;
    }
    .section-title {
      font-size: 0.18rem;
      margin-bottom: 0.1rem;
    }
    .exhibit-intro{
      margin-bottom: 0.2rem;
    }
    .exhibit-intro p {
      font-size: 0.14rem;
    }
  
    .items-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.16rem;
    }
  
    .item-card p {
      font-size: 0.14rem;
      padding: 0.12rem 0.08rem;
    }
  }
  
  /* 响应式适配 - 小屏手机 */
  @media screen and (max-width: 480px) {
    .guide-title{
      font-size: 0.24rem;
    }
    .exhibit-tabs {
      justify-content: flex-start;
    }
    .floor-tab {
      font-size: 0.14rem;
      padding: 0.1rem;
      height: auto;
    }
  
    .tab-divider {
      margin: 0 0.1rem;
    }
  
    .exhibit-tab {
      font-size: 0.13rem;
    }
  
    .section-title {
      font-size: 0.16rem;
    }
  
  
    .item-card p {
      font-size: 0.13rem;
    }
    .floor-tab .ch{
      font-size: 0.2rem;
    }
    .floor-tab .en{
      font-size: 0.12rem;
    }
  }

@media screen and (max-width:1025px) {
  .exhibit-intro p{
    font-size: .18rem;
    line-height: 2;
    margin-bottom: .1rem;
  }
  .section-title{
    font-size: .24rem;
    line-height: 1.5;
    margin-bottom: .1rem;
  }
  .exhibit-tab{
    font-size: .18rem;
    line-height: 2;
    margin: 0;
  }
  .tab-divider{
    margin: 0;
  }
  .exhibit-tabs{
    gap: .1rem .2rem;
    justify-content: flex-start;
  }
  .floor-tab .ch{
    font-size: .2rem;
  }
  .floor-tab{
    height: 1rem;
  }
}
@media screen and (max-width:481px) {
  .floor-tab{
    width: 50%;
  }
  .floor-tabs{
    flex-wrap: wrap;
    gap: 0;
  }
}

.guide-exhibit .child{
  display: none;
}
.guide-exhibit .child.active{
  display: block;
}