body{
    background-color: #f5f5f5;
}
.product-view{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.product-view .left{
    width: 100%;
    min-width: 240px;
}
.product-view .left .category-tip{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #276fe9;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.product-view .left .category-list{
    padding: 10px;
    background-color: #fff;
    font-size: 18px;
}
.product-view .left .category-info{
    padding: 10px;
    margin: 0 10px;
    border-bottom: 1px dashed #9a9696;
}
.product-view .left .category-info a:hover,.product-view .left .category-info a.active{
    margin-left: 5px;
    color: #276fe9;
}

.product-view .right{
    width: 100%;
    min-height: 500px;
    background-color: #fff;
    padding: 20px;
}

.product-list{
    display: flex;
    flex-wrap: wrap;
}

.product-info{
    width: 100%;
    min-height: 400px;
    text-align: center;
    padding: 20px;
    margin: 15px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 5px #dfd6d6;
}

.product-info img{
    width: 100%;
}

.product-info .title{
    margin: 10px;
    background-color: #af1b1b;
    border-radius: 30px;
    padding: 5px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.product-info .content{
    line-height: 35px;
}

