/* 图片 */

.product_pic {
    position: relative;
    float: left;
    width: 100%;
    margin-top: 120px;
}

@media(max-width:767px) {
    .product_pic {
        margin-top: 110px !important;
    }
}

.product_panel {
    padding-bottom: 0.3rem;
    position: relative;
    float: left;
    width: 100%;
}

.product_row a {
    text-decoration: none;
    display: block;
}

.product_row .thumbnail {
    border-radius: 0;
    overflow: hidden;
}

.product_row a:hover .thumbnail {
    box-shadow: 0 0 8px #eeeeee;
}

.product_row .caption {
    border-top: #eeeeee 1px solid;
}

/* 图片变化 */

.product_row .thumbnail img {
    transition: all 0.6s;
    cursor: pointer;
}

.product_row a:hover .thumbnail img {
    transform: scale(1.1);
    z-index: 999
}

.product_row a h3 {
    font-size: 24px;
    text-align: center;
    color: #2b94dd;
}

@media(max-width:998px) and (min-width:767px) {
    .product_row a h3 {
        font-size: 16px !important;
        margin-top: 10px;
    }
}

@media(max-width:767px) {
    .product_row .caption {
        padding-bottom: 0 !important;
    }
    .product_row a h3 {
        font-size: 14px !important;
        margin-top: 5px;
        margin-bottom: 0;
    }
}