/* ========================================
   页面布局与容器 (来自 eyou.css)
   ======================================== */
.shop .bg_body {
  background: #f6f6f6;
  padding: 15px 0;
}
.shop .bg_body_inner {
  /* 补充：HTML 使用了但原 CSS 未定义，按常见设计添加 */
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
.shop .width {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   面包屑 (来自 eyou.css)
   ======================================== */
.shop .bread {
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
}
.shop .bread ul {
  padding: 0;
  margin: 0;
}
.shop .bread ul li {
  list-style: none;
  display: inline;
}

/* ========================================
   工具类 (来自 style.css)
   ======================================== */
.shop .mt-15 { margin-top: .75rem; }
.shop .mt-30 { margin-top: 1.5rem; }
.shop .mb-30 { margin-bottom: 1.5rem; }
.shop .text-hide {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ========================================
   布局系统 (来自 style.css)
   ======================================== */
.shop .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.shop .col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
  padding-left: 10px;
  padding-right: 10px;
}
.shop .col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
  padding-left: 10px;
  padding-right: 10px;
}

/* ========================================
   筛选栏 (组合样式)
   ======================================== */
/* 注意：原 CSS 无 .filter 专用样式，以下为合理补充 */
.shop .filter {
  background: #fafafa;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.shop .filter-left {
  text-align: right;
  padding-right: 10px;
  line-height: 30px;
  color: #666;
  font-weight: normal;
}
.shop .filter-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.shop .filter-right a {
  display: inline-block;
  padding: 4px 12px;
  margin: 0 10px 10px 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
}
.shop .filter-right a:hover,
.shop .filter-right a.active {
  border-color: #1890ff;
  color: #1890ff;
  background: #e6f7ff;
}
/* 补充：filter-right-image（用于图片/颜色筛选） */
.shop .filter-right-image a {
  padding: 4px;
  border: 1px solid transparent;
}
.shop .filter-right-image a img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 2px;
}
.shop .filter-right-image a.active img {
  border: 2px solid #1890ff;
}

/* ========================================
   排序栏 (来自 style.css)
   ======================================== */
.shop .orderby ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.shop .orderby ul li {
  margin: 0;
}
.shop .orderby ul li a {
  border-right: 1px solid #e0e0e0;
  padding: .5rem 1rem;
  color: #666;
  display: block;
  text-decoration: none;
  font-size: 14px;
}
.shop .orderby ul li a:hover,
.shop .orderby ul li a.active {
  color: #e2231a;
}
.shop .orderby ul li:last-child a {
  border-right: none;
}

/* ========================================
   商品列表 (来自 style.css)
   ======================================== */
.shop .piclist {
  height: auto;
  margin: 0 -7px;
  padding: 0;
  list-style: none;
}
.shop .piclist:after {
  content: " ";
  clear: both;
  display: table;
}
.shop .piclist-item {
  position: relative;
  float: left;
  width: 234px;
  margin: 0 7px 14px;
  background: #fff;
  transition: box-shadow .3s;
  border-radius: 4px;
  overflow: hidden;
}
.shop .piclist-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.shop .piclist-col-5 .piclist-item {
  width: calc(20% - 14px);
  margin: 0 7px 14px;
}
@media (max-width: 1200px) {
  .shop .piclist-col-5 .piclist-item { width: calc(25% - 14px); }
}
@media (max-width: 992px) {
  .shop .piclist-col-5 .piclist-item { width: calc(33.333% - 14px); }
}
@media (max-width: 768px) {
  .shop .piclist-col-5 .piclist-item { width: calc(50% - 14px); }
}
@media (max-width: 480px) {
  .shop .piclist-col-5 .piclist-item { width: 100%; margin: 0 0 14px; }
}
.shop .piclist-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 比例 */
  overflow: hidden;
}
.shop .piclist-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop .piclist-body {
  padding: 10px;
}
.shop .piclist-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
}
.shop .piclist-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop .piclist-price .desc {
  margin: 0 0 6px;
  font-size: 12px;
  color: #999;
}
.shop .piclist-price .price {
  margin: 0;
  color: #e2231a;
  font-size: 16px;
  font-weight: bold;
}
.shop .piclist-price .price .num {
  font-size: 18px;
}

/* ========================================
   分页 (来自 style.css)
   ======================================== */
.shop .page ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.shop .page ul li {
  list-style: none;
  display: inline-block;
  border: 1px solid #d9d9d9;
  margin: 0 2px;
}
.shop .page ul li a {
  display: block;
  padding: 0 .65rem;
  line-height: 1.75rem;
  color: #444;
  text-decoration: none;
  font-size: 14px;
}
.shop .page ul li:hover a,
.shop .page ul li.active a {
  color: #fff;
}
.shop .page ul li.active {
  border-color: #e2231a;
  background: #e2231a;
}
.shop .page-mid ul li {
  border-radius: 4px;
}
.shop .page-center ul {
  justify-content: center;
}

/* ========================================
   全局重置与链接 (来自 style.css)
   ======================================== */
.shop ul,
.shop ol {
  padding: 0;
  list-style: none;
}
.shop a {
  color: #333;
  text-decoration: none;
}
.shop a:hover {
  color: #f30;
}
.shop img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ========================================
   容器类 (无样式，仅占位)
   ======================================== */
.shop .goodlist,
.shop .buyaction {
  /* HTML 使用但无需特殊样式 */
}