.ipsz-header{
    width: 100%;
    height: 1.46rem;
    background-color: #fff;
    position: fixed;
    top:0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 0.58rem;
    z-index:99;
}
.ipsz-header-title{
    cursor: pointer;
    display: flex;
    width: 2.51rem;
    flex-shrink: 0;
    margin-right: 1.29rem;
}
.ipsz-header-img{
    width: 90%;
    object-fit: contain;
}
.ipsz-header-nav{
    display: flex;
    align-items: center;
}
.ipsz-header-nav-item{
    cursor: pointer;
    font-size: 0.42rem;
    color: #FA1294;
}
.ipsz-header-nav-item+.ipsz-header-nav-item{
    margin-left: 0.59rem;
}
.header-line-box{
    display: none;
    width: 0.34rem;
}
.header-line-item{
    display: block;
    width: 100%;
    height: 0.04rem;
    background-color: #FA1294;
    transition: all .3s ease-in;
}
.header-line-item+.header-line-item{
    margin-top: 0.08rem;
}
.header-line-box.active .header-line-item:nth-child(2){
    display: none;
}
.header-line-box.active .header-line-item:nth-child(1),
.header-line-box.active .header-line-item:nth-child(3){
    transform-origin: center center;
}
.header-line-box.active .header-line-item:nth-child(1){
    transform: translateY(0.06rem) rotate(45deg);
}
.header-line-box.active .header-line-item:nth-child(3){
    transform: translateY(-0.06rem) rotate(-45deg);
}


.ipsz-footer{
    width: 100%;
    height: 2.25rem;
    box-sizing: border-box;
    margin-top: 2rem;
    background-image: url(//www.amazingshenzhen.com.cn/2024/ipshenzhen/images/Home-img-footer.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 0.2rem;
    position: relative;
}
.footer-text{
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0.24rem;
    text-align: center;
    color: #fff;
}


@media screen and (max-width: 769px) {
    .ipsz-header{
        height: 1.4rem;
        padding: 0 0.35rem;
        justify-content: space-between;
    }
    .ipsz-header-title{
        width: 2.34rem;
        margin-right: 0;
        bottom: 0.34rem;
    }
    .ipsz-header-nav{
        position: fixed;
        left: 0;
        top:1.4rem;
        width: 100vw;
        height: calc(100vh - 1.4rem);
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        padding: 0 0.35rem;
        border-top: 0.03rem solid #FA1294;
        display: none;
    }
    .ipsz-header-nav-item{
        display: block;
        margin-top: 0.35rem;
        margin-left: 0!important;
    }
    .header-line-box{
        display: inline-block;
    }
             


    .ipsz-footer{
        height: 2.4rem;
        background-image: url(//www.amazingshenzhen.com.cn/2024/ipshenzhen/images/Home-img-footer.png);
    }

}


/* 加载中 */
.loading-container{
    width: 100%;
    /* height: 100%; */
    height: 5rem;
    position: relative;
    top:0;
    left: 0;
    z-index:10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}
.loading-container .loading-img1{
    width: 0.73rem;
    object-fit: contain;
    animation: circle 3s linear infinite;
  }
  .loading-container .loading-bottom{
    margin-top: 0.21rem;
    display: flex;
  }
  .loading-container .loading-bottom .loading-img2{
    width: 1.67rem;
    height: 0.27rem;
    object-fit: contain;
  }
  @keyframes circle {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }