.tabs{
    height: 1.16rem;
    width: 100%;
    position:sticky;
    overflow: scroll;
    background-color: white;
}
.tabs-box{
    display: flex;
    flex-direction: row;
    overflow: scroll;
    height: calc(100% - 2px);
    width: auto;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    position: relative;
    scrollbar-width: none;
}
.tabs-box::-webkit-scrollbar{
    display: none;
}
.tabs-box div {
    height: 100%;
    text-align: center;
    margin-right: 0.8rem;
    flex-shrink: 0;
    opacity: 1;
    font-size: 0.42666rem;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    color: #999999;
    line-height: 1.16rem;
}
.tabs-box .selectd {
   color: #111111;
   font-family: PingFangSC, PingFangSC-Medium;
   font-weight: 500;
}

.tabs-box :last-child{
    margin-right: 0;
}
.tabs-line{
    width: 1.6rem;
    height: 4px !important;
    opacity: 1;
    background: #111111;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 15px;
    transition: all 0.3s;
}
.tabs-line1{
    height: 2px;
    border-radius: 1px;
    background-color: #e9e9e9;
    margin-right: 0.4rem;
    margin-left: 0.4rem;
    width: calc(100% - 0.8rem);
}