header {
    width: 100%;
    height: 0.48rem;
}

header .wraper {
    width: 100%;
    height: 0.48rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.12rem;
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(20, 21, 25);
    z-index: 5;
}

header .wraper .left img {
    height: 0.24rem;
}

header .wraper .center {
    font-size: 0.16rem;
    color: #fff;
}

.filter {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.04rem 0;
}

.filter ul {
    padding-left: 0.12rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: 0.28rem;
    overflow-x: auto;
    margin: 0.04rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter ul li {
    padding: 0 0.12rem;
    margin-right: 0.08rem;
    flex-shrink: 0;
    font-size: 0.12rem;
    color: rgba(255, 255, 255, 0.7);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.04rem;
}

.filter ul li.active {
    background: rgb(20, 21, 25);
    color: rgb(255, 205, 132);
}







main {
    width: 100%;
    padding: 0 0.12rem 0.2rem;
}

main nav {
    width: 100%;
    height: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

main nav ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.08rem;
    align-content: start;
    /* position: fixed;
    top: 0.48rem;
    left: 0;
    height: 0.4rem;
    z-index: 10; */
    background: rgb(20, 21, 25);
}

main nav ul li {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.12rem;
    color: rgba(255, 255, 255, 0.7);
}


main nav ul li.active {
    color: rgb(255, 205, 132);
}

main nav ul li.active:after {
    position: absolute;
    left: 50%;
    bottom: -0.08rem;
    transform: translateX(-50%);
    width: 0.12rem;
    height: 0.04rem;
    background: rgb(255, 205, 132);
    border-radius: 0.02rem;
    content: "";
}

main .block {
    margin-top: 0.12rem;
}

main .block ul {
    width: 100%;
    display: grid;
    gap: 0.12rem 0.08rem;
    width: 100%;
    align-content: start;
}

main .block ul li {
    width: 100%;
}