.product-content{
    width: calc(100% - 284px);
    height: 100%;
    display: none;
    gap: 20px;
    margin-left: 264px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.product-card{
    padding: 20px;
    width: calc(100%/3 - 20px);
    background-color: #FFFFFF99;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    display: flex;
    cursor: pointer;
}

.product-card:hover{
    box-shadow: 0 8px 20px 0 #0000001a;
}



.product-icon{
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.product-icon>img{
    width: 100%;
    height: 100%;
}

.product-info{
    width: calc(100% - 140px);
}

.product-info-title{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.product-card:hover .product-info-title{
    color: #0363E9;
}

.product-info-description{
    color: #4e5969;
    font-family: "OPPOSans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 20px;
}
