.category-banner{
    width: 1920px;
    height: 400px;
    margin: 0 auto;
}
.category-banner img{
    width: 100%;
    height: 100%;
}
.layui-breadcrumb{
    margin-top: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}
.layui-breadcrumb a{
    color: #84868C;
}
.layui-breadcrumb a:hover{
    color: #151B26!important;
}
.layui-breadcrumb a.active{
    color: #151B26!important;
}
.category-search{
    height: 50px;
    display: flex;
    align-items: center;
    background-color: blue;
    margin-top: 25px;
    background: #F7F7F7;
    border-radius: 12px;
}
.search-icon{
    width: 24px;
    height: 24px;
    margin-left: 20px;
}
.search-ipt{
    flex: 1;
    height: 100%;
    text-indent: 15px;
    border: none;
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}
.search-ipt::placeholder{
    font-weight: 400;
    font-size: 16px;
    color: #84868C;
    line-height: 24px;
}
.search-btn{
    background: transparent;
    border: none;
    margin-right: 20px;
    cursor: pointer;
}
.category-main{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}
.category-item{
    height: 196px;
    margin-top: 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.category-item a{
    width: 100%;
    height: 196px;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;

}
.category-item img{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    object-fit: cover;
}
.category-item span{
    background:rgba(0,0, 0,0.4);
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 35px;
    z-index: 99;
    transition: all 0.5s ease;
    text-align: center;
}
.category-item:hover span{
    bottom: 0px;
}
.category-item:hover img{
    transform: scale(1.2);
}
