#products {
    padding: 40px 0px;
}
.goods-image {
    margin: 40px 0 0;
}
.goods-image .card {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
    margin-bottom: 20px;
    border: none;
}
.goods-image .card:nth-child(3n) {
    margin-right: 0;

}
.goods-image-box {
    border: 1px solid #e8e8e8;
    width: 100%;
    padding :50% 0;
    position: relative;
    overflow: hidden;
}
.goods-image-box img{
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all ease-in .6s;
}
.goods-image-box img:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.card-body {
    padding: 0;
}
#test2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.goods-image .card .title {
    line-height: 26px;
    font-size: 18px;
    text-align: center;
    color: #000;
    margin: 10px 0 0;
}
.products-info {
    background-color: #f8f9fa;
}
.products-info .content>a{
    padding: 10px 30px;
    margin: 0 5px;
    display: block;
    border: 1px solid #2f333a;
    color: #2f333a;
}
.products-info .content>a:first-child {
    background-color: #2f333a;
    color: #fff;
   
}
.products-comment .content {
    margin: 20px 0 40px;
}
.products-comment .content .item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.products-comment .content .item:nth-child(3n) {
    margin-right: 0px;
}
.products-comment .content .item .comment {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    color: #a9a9a9;
    border: 1px solid #e8e8e8;
}
.products-comment .item >._row {
    padding: 14px;
    background-color: #f2f6f9;
}
.products-comment .item .left {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
    border: none;
}
.products-comment .item .left img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: none;
}
.products-comment .item .right {
    flex: 1;
    width: calc(100% - 52px);
}
.products-comment .item .right .name {
    font-size: 16px;
    font-weight: 600;
}
.products-comment .item .right .text {
    font-size: 14px;
    margin-top: 4px;
}
.info_box {
    width: 930px;
    margin: 0 auto;

 }
.info_box .left{
    width: 118px;
    height: 118px;
    overflow: hidden;
    border-radius: 50%;
}
.info_box .left>img{
    width: 100%;
    height:100%;
    border-radius: 50%;
    object-fit: cover;
}
.info_box .right {
    width: calc(100% - 158px);
    margin-left: 40px;
}
.info_box .right .image-box {
    width: 70px;
    height: 70px;
    margin-left: 30px;
    overflow: hidden;
} 
.info_box .right .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info_box .right .text-box {
    width: calc(100% - 100px);
    font-size: 18px;
}
.info_box .right .text-box>div{
    margin-bottom: 10px;
    color: #756c6c;
}
.info_box .right .text-box >.title {
    color: #222;
}
@media (max-width:991px){
    .goods-image .card {
        width: 100%;
        margin-right: 0px;
    }
    .products-comment .content .item {
        width: 100%;
        margin-right: 0;
    }
        .info_box .right .image-box {
            display: none;
        }
    
        .info_box .right .text-box {
            width: 100%;
        }
}