*{
    margin: 0;
    padding: 0;
    line-height: 1;
}
body{
    background: #F1F1F1;
    font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Source Han Sans", "Noto Sans CJK Sc", "Microsoft YaHei", "Microsoft Jhenghei", sans-serif;
}
a {
    text-decoration: none;
}
.header-box{
    width: 100vw;
    height: 27.733vw;
    background-image: url(/statics/images/mobile/headerBg.png);
    background-size: 100%;

}
.header{
    display: flex;
    align-items: center;
    margin: 0 3.467vw;
    padding-top: 6.133vw;
}
.header-logo{
    width: 31.2vw;
    height: 10.4vw;
}
.header-line{
    width: 0.267vw;
    height: 6.667vw;
    background: #9E9E9E;
    margin: 0 2.4vw;
}
.city-img{
    width: 3.2vw;
    height: 4vw;
}
.city-text{
    width: 7.4vw;
    height: 3.2vw;
    font-size: 3.2vw;
    color: #333333;
    margin-left: 1.333vw;
}
.search{
    display: flex;
    align-items: center;
    width: 44vw;
    height: 8.533vw;
    border-radius: 4.267vw;
    margin-left: 2.4vw;
    background: #FFFFFF;
}
.search-img{
    width: 3.467vw;
    height: 3.467vw;
    margin-left: 2.933vw;
}
.search input{
    border: 0;
    outline: none;
    height: 3.467vw;
    font-size: 3.2vw;
    width: 34vw;
}
.nav{
    display: flex;
    margin: 0 3.467vw;
    padding-top: 4vw;
    justify-content: space-between;
    align-items: center;
    overflow: hidden; /* 隐藏超出的内容 */
}
.nav-list{
    width: 79.733vw;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    white-space: nowrap; /* 防止内容换行 */
    overflow-x: auto; /* 允许水平滚动 */
    -webkit-overflow-scrolling: touch; /* 平滑滚动效果，仅在 iOS 上有效 */
}
.nav-list a{
    font-size: 4vw;
    color: #333333;
}
.nav-item{
    font-size: 4vw;
    color: #F00000 !important;
    padding-bottom: 2.4vw;
    border-bottom: 0.8vw solid #F00000;
}
.nav-menu{
    width: 5.333vw;
    height: 4.267vw;
    
}
.footerDiv{
    width: 100vw;
    height: 20vw;
}
.footer{
    width: 100vw;
    height: 16vw;
    display: flex;
    background: #FFFFFF;
    position: fixed;
    left: 0;
    bottom: 0;
}
.footerItem{
    width: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footerItem img{
    width: 5.067vw;
    height: 5.067vw;
    margin-bottom: 1.6vw;
}
.footerItem div{
    font-size: 3.2vw;
    color: #333333;
    text-align: center;
}


/* 单选框 */

.cbx {
    -webkit-perspective: 20;
    perspective: 20;
    transform: translate3d(0, 0, 0);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cbx:hover {
    /* border-color: #0b76ef; */
  }
  
  .flip {
    display: block;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    width: 13px;
    height: 13px;
  }
  
  #cbx {
    display: none;
  }
  
  #cbx:checked + .cbx {
    border-color: #0b76ef;
  }
  
  #cbx:checked + .flip {
    transform: rotateY(180deg);
  }
  
  .front,
  .back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 2px;
  }
  
  .front {
    background: white;
    z-index: 1;
    border: #C6C6C6 solid 1px;
    box-sizing: border-box;
  }
  
  .back {
    transform: rotateY(180deg);
    background: #1D83FD;
    text-align: center;
    /* color: #3fe858; */
    line-height: 13px;
    /* box-shadow: 0 0 0 1px #c909b3; */
  }
  
  .back svg {
    margin-top: 0px;
    fill: none;
  }
  
  .back svg path {
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  
  
  
/* 单选框end */