.tabs-wrapper {
    display: flex;
}

.match-tab {
    flex-grow: 1;
    height: 50px;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.match-tab-active {
    background: var(--theme-color-dynamic);
    color: #ffffff;
}

.grids {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -15px 0;
}

.grid {
    width: 380px;
    margin: 15px;
    background: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    position: relative;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s ease 0s;

}

.grids .grid:hover {
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.grids .grid .grid-cover{
    cursor: pointer;
}

.grids .grid .grid-cover img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: all .3s ease-out 0s;
    object-fit: cover;
    background: #fff;
    display: block;
    font-size: 0;
}

.grids .grid .grid-cover img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .3s ease-out 0s;
}

.grids .grid .grid-cover {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    position: relative;
    height: 240px;
    border-bottom: 1px dashed #d8d8d8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-category {
    padding: 10px 0 0;
}

.grid-category__name {
    margin-left: 5px;
}

.grids .grid h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px 10px;
}

.grids .grid h3 a {
    line-height: 26px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.grids .grid .grid-meta {
    color: #777;
    padding: 0 10px 10px 10px;
    font-size: 14px;
    overflow: hidden;
}

.page {
    display: flex !important;
    justify-content: center !important;
    padding: 40px 0 !important;
}

.el-empty {
    width: 100%;
}

/* 媒体查询适配 */
@media (max-width:1535px){

}

@media (max-width:1230px){
    .grids .grid {width: 310px;}
    .grids .grid .grid-cover {
        height: 190px;
    }
}

@media (max-width:1024px){
    .grids .grid {width: 278px;}
    .grids .grid .grid-cover {
        height: 170px;
    }
}

@media (max-width:925px){
    .match-tab {font-size: 20px;}
    .grids .grid {width: 353px;}
    .grids .grid .grid-cover {
        height: 220px;
    }
}

@media (max-width:768px){
    .match-tab {font-size: 16px;}
    .grids .grid {width: calc(50% - 30px);}
    .grids .grid .grid-cover {
        height: 190px;
    }
}
@media (max-width: 620px){
    .match-tab {font-size: 14px;}
    .grids .grid {width: calc(50% - 30px);}
    .grids .grid .grid-cover {
        height: 150px;
    }

    .grids .grid .grid-meta {
        flex-direction: column;
    }
    .grids .grid h3 {font-size: 14px;}
}

@media (max-width: 480px){
    .match-tab {font-size: 12px;}
    .grids {margin: 0 -10px 0;}
    .grids .grid {width: calc(50% - 20px); margin: 10px;}
    .grids .grid .grid-cover {
        height: 120px;
    }
}
/* 媒体查询适配 */