body{
    background: rgb(250, 250, 250);
    color: #262626;
}
.category-box{
    background: white;
    padding: 16px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px auto!important;
}
.category-item{
    background: white;
    padding: 8px 16px;
    font-size: 16px;
    margin-left: 6px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all .3s;
    cursor: pointer;
}
.category-item-active{
    background: #0a5cff;
    color: white;
    border: 1px solid #0a5cff;
}
.category-item:hover{
    opacity: .8;
}
.category-search{
    border: 1px solid #e5e5e5;
    height: -webkit-fill-available;
    text-indent: 16px;
}
.category-search-btn{
    background: #0a5cff;
    color: white;
    padding: 8px 16px;
    margin-right: 20px;
    cursor: pointer;
}
.search-num{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px!important;
}
.search-num span{
    color: #0a5cff;
}
.plugin-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.plugin-item{
    width: 24%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s;
    margin-bottom: 20px;
    position: relative;
    display: block;
}
.plugin-item:hover{
    transform: translateY(-12px)
}
.plugin-item-font{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background: #0a5cff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 50px;
}
.plugin-item-placeholder{
    width: 24%;
    height: 1px;
}
.plugin-item img{
    height: 160px;
    width: 100%;
}
.plugin-item-main{
    padding: 16px;
}
.plugin-item-title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}
.plugin-item-auth{
    font-size: 12px;
    color: #737373;
    display: flex;
    align-items: center;
}
.plugin-item-auth div{
    color: #1e40af;
    background: #DBEAFE;
    font-size: 12px;
    padding: 2px 4px;
    margin-left: 4px;
    border-radius: 4px;
}
.plugin-item-line{
    margin: 12px 0;
    height: 1px;
    background: #e5e5e5;
}
.plugin-item-price{
    color: #3E82F6;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}
.plugin-item-price div:nth-child(1){
    color: #737373;
    font-weight: normal;
    font-size: 14px;
}
.plugin-item-price span{
    font-size: 14px;
    color: #A3A3A3;
    font-weight: normal;
}
.plugin-item-btn{
    display: block;
    background: #0a5cff;
    color: white;
    font-size: 13px;
    text-align: center;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
    transition: all .3s;
}
.plugin-item-btn:hover{
    opacity: .8;
}

@media (max-width: 1024px) {
	.plugin-item{
		width: 49%;
	}
}

@media (max-width: 500px) {
	.plugin-item{
		width: 100%;
	}
}