.get-by-category-filter{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 1%;
    padding-left: 15%;
    padding-right: 5%;
}
.categories-title{
    font-size: 25px;
    font-weight: 500;
    font-family: "Calistoga", Sans-serif;
    color: #00612B;
    line-height: 30px;
    margin-top: 35px;
}
/* .categories-content{
    margin-left: 20px;
} */
.categories-content > .category{
    display: block;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", Sans-serif;
    line-height: 35px;
}
.categories-content > .active{
    color: #00612B;
}
.results-title{
    font-size: 35px;
    font-family: "Calistoga", Sans-serif;
    line-height: 45px;
    font-weight: 400;
    color: #00612B
}
.results-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5%;
    align-items: flex-start;
    justify-content: space-around;
    align-content: start;
    overflow-y: auto;
    width: 100%;
    /* height: calc(65vh); */
    min-height: 65vh;
    max-height: calc(80vh);
    /* 隐藏滚动条 */
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
}
.result{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.result-image{
    /* padding: 20px; */
    /* border: 3px solid #D5D5D5; */
    /* border-radius: 20px; */
    width: 85%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .result-image > img{
    border-radius: 17px !important;
} */
.result-title{
    margin: 10px 15%;
    font-size: 15px;
    font-weight: 500;
    font-family: "Open Sans", Sans-serif;
}

.result-detail{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1111;
    top: 0;
    left: 0;
}
.result-detail-bg-box{
    width: 100vw;
    height: 100vh;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
}
.result-detail-close{
    position: fixed;
    margin: 15px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1;
}


.detail-box{
    width: 65vw;
    background: #fff;
    padding: 3vh 3vw;
    height: 85vh;
    overflow: auto;
    border-radius: 20px;
    z-index: 1;
    /* 隐藏滚动条 */
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
}
/* .detail-box::-webkit-scrollbar {
    display: none;
} */


.display-none{
    display: none !important;
}

.overflow-hidden{
    overflow: hidden;
}


@media screen and (max-width: 1515px) and (min-width: 1025px){
    .get-by-category-filter{
        padding-left: 10%;
        padding-right: 5%;
    }
    .results-content{
        grid-gap: 5% 2%;
    }
    .result-image{
        width: 95%;
    }
    .result-title{
        margin: 10px 5%;
    }
}
@media screen and (max-width: 1200px) and (min-width: 1025px){
    .get-by-category-filter{
        padding-left: 5%;
        padding-right: 3%;
    }
    .results-content{
        grid-gap: 3% 1%;
    }
}
@media screen  and (max-width: 1025px){
    .get-by-category-filter{
        padding-left: 5%;
        padding-right: 5%;
        display: flex;
        flex-direction: column;
    }
    .results-content{
        grid-gap: 3% 1%;
    }
    .categories-content{
        display: flex;
        flex-wrap: wrap;
    }
    .categories-content > .category{
        padding: 10px 5%;
    }
    .result-image{
        width: 95%;
    }
    .result-title{
        margin: 10px 5%;
    }
    .categories-content > .active{
        background: #00612B;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        border-radius: 35px;
    }
}
@media screen and (max-width: 767px){ 
    .results-content{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 300px){ 
    .results-content{
        grid-template-columns: 1fr;
    }
}

/* 弹窗 */
@media screen and (max-width: 1800px) and (min-width: 1025px){ 
    .detail-box{
        width: 70vw;
        height: 67vh;
    }

}
@media screen and (max-width: 1576px) and (min-width: 1025px){ 
    .detail-box{
        width: 85vw;
        height: 71vh;
    }

}
@media screen and (max-width: 1276px) and (min-width: 1025px){ 
    .detail-box{
        width: 95vw;
        height: 65vh;
    }
}
@media screen and (max-width: 1024px) {
    .detail-box{
        width: 95vw;
        height: 85vh;
    }
}