/*[2025/07/09 15:03:05] This file is generated by code, DO NOT edit this file! */
nav#top {
  background-color: #1b90ff;
}
html {
    font-size: 14px;
}

body {
    font-size: 1rem; /* 继承html的字体设置 */
}

nav#top .list-inline > li:hover > a {
	color: #0AFF5E !important;
}

/*修改顶部字体颜色*/
nav#top {
  color: #fff;
}

/* 字体尺寸归零实现隐藏电话图标 */
.list-inline-item > .iconfont {
    font-size: 0 !important;
    line-height: 0 !important;
}
/*商品选项卡有问题先尝试删除或注释下方代码--------*/
/* 覆盖原有行样式 */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 使子元素居中 */
    margin: 0 -10px; /* 抵消商品内边距 */
}

/* 调整商品项样式 */
.product-layout {
    flex: 0 0 auto; /* 取消Bootstrap的flex-grow */
    padding: 0 10px;
    margin-bottom: 20px;
}

/* 保持原有响应式布局 */
@media (min-width: 768px) {
    .product-layout {
        width: 25%; /* 保持每行4个商品 */
    }
}

@media (max-width: 767px) {
    .product-layout {
        width: 50%; /* 保持每行2个商品 */
    }
}
/*----------------------------------------------*/