/* 快捷方式模板整体居中样式 */
.index_product_content {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
    width: 100%;
}

.index_product_content .span3 {
    float: none !important;
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 20px 15px;
}

/* 响应式调整 */
@media screen and (max-width: 1199px) {
    .index_product_content {
        text-align: center;
    }
    
    .index_product_content .span3 {
        margin: 0 10px 20px 10px;
    }
}

@media screen and (max-width: 767px) {
    .index_product_content .span3 {
        margin: 0 5px 15px 5px;
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 479px) {
    .index_product_content .span3 {
        margin: 0 0 15px 0;
    }
}
