.s1{
    /* padding:.7rem 0 1rem; */
    padding:.7rem 0 0 0;
    background-color: #f7f7f7;
}
.s1-title{
    text-align: center;
    margin-bottom: 0.22rem;
}
.s1-desc{
    text-align: center;
    color: #666;
    margin-bottom: 0.27rem;
}
.s1 .w1400:nth-child(2){}
.s1 .s1-container2{
    position: sticky;
    top: .8rem;
    background-color: #F7F7F7;
    z-index: 10;
    padding: .2rem 0;
    margin-bottom: 0.74rem;

}
.com-footer{
    margin-top: .7rem;
}
.s1-tag-list{
    display: flex;
    justify-content: center;
    gap: 0.36rem;
    /* margin-bottom: 0.74rem; */
}
.s1-tag-item{
    background-color: transparent;
    color:#666;
    border: 1px solid var(--theme-color);
}
.s1-tag-item::after{
    filter: brightness(0) saturate(100%);
}
.s1-tag-item:hover{
    background-color: var(--theme-color);
    color: #fff;
}
.s1-tag-item:hover::after{
    filter: none;
}
.s1-tag-item.active{
    color: #fff;
    background-color: var(--theme-color);
}
.s1-tag-item.active::after{
    filter: none;
}

.s1-item-top{
    display: flex;
    justify-content: space-between;
    gap: 0.1rem;
    align-items: center;
    margin-bottom: 0.4rem;
}
.s1-content-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0.4rem;

}
.s1-item{
    padding: 0.3rem 0.2rem 0.26rem;
    border-bottom: 4px solid transparent;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 0.64rem;
    box-sizing: border-box;
}
.s1-item-layout{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    top: 0.4rem;
    transition: 1s;
}
.s1-item-img{
    display: flex;
    justify-content: center;
    align-items: center;

}
.s1-item-text{
    padding: 0.4rem 0.2rem 0;
    text-align: center;
}
.s1-item-name{
    font-size: var(--font-size-18);
    color: #222;
    font-family: var(--font-medium);
    margin-bottom: 0.14rem;
}
.s1-item-desc{
    font-size: 14px;
    color: #666;
    
    

}
.s1-item-tag{
    margin-top: 0.3rem;
    font-size:14px;
    position: relative;
    visibility: hidden;
}
.s1-item-tag::after{
    content: "";
    position: absolute;
}
.s1-item:hover .s1-item-layout{
    top: 0;
}
.s1-item:hover{
    border-bottom-color: var(--theme-color);
}
.s1-item:hover .s1-item-tag{
    visibility:visible;
    
}
.s1-item-series{
    font-size: 14px;
    color: #666;
    margin-bottom: 0.2rem;
    font-family: var(--font-medium);
}
@media (max-width: 768px) {
    .s1-content-list{
        grid-template-columns: repeat(2,1fr);
    }
    .s1-item-layout {
        top: 0;
    }
    .s1-item-tag{
        visibility: visible;
    }
    .s1-item{
        border-color: var(--theme-color);
    }
    .s1-tag-list{
        flex-wrap: wrap;
        gap: 0.3rem;
        padding: 0.5rem;
    }
    .s1-tag-item {
        width: 100%;
        display: flex;
        justify-content: space-between;
       
        box-sizing: border-box;
    }
}
@media (max-width: 450px) {
    .s1-content-list{
        grid-template-columns: repeat(1,1fr);
    }
}


.pagation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.4rem;
}

.sty {
    border-radius: 20px;
    border: solid 1px #ffc335;
    padding: 0.13rem 0.44rem;
    box-sizing: border-box;
    border: 1px solid var(--theme-color);
}

.pagation-link {
    border-radius: 50%;
    width: calc(20px + 0.18rem);
    height: calc(20px + 0.18rem);
    min-width: calc(20px + 0.18rem);
    /* background-color: var(--theme-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid var(--theme-color);
    color: #222;
}
.pagation-link.active {
    background-color: var(--theme-color);
    color: #fff;
}