* {
	margin: 0;
	padding: 0;
}
ul, ol, dl {
  list-style: none;
}
a{
  color: #020202;
  text-decoration: none;
}
.shop_index {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop_index .good_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 1200px;
  margin: 20px auto;
}
.shop_index .good_list .good_card {
  width: calc(20% - 10px);
  min-height: 318px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  color: #333;
  box-sizing: border-box;
}
.shop_index .good_list .change {
  padding: 2px;
  border: 1px solid #e8e8e8;
}
.shop_index .good_list .change:hover {
  padding: 1px;
  border: 2px solid #ef6c00;
}
.shop_index .good_list .good_card .main_img img{
  height: 224px;
  cursor: pointer;
}
.shop_index .good_list .good_card .good_info {
  border-top: 1px solid #f5f5f5;
  padding: 0 6px;
}
.shop_index .good_list .good_card .good_info .show-name {
  height: 29px;
  line-height: 29px;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.shop_index .good_list .good_card .good_info .show-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 25px;
}
.shop_index .good_list .good_card .good_info .show-price span:nth-child(1) {
  font-size: 14px;
  color: #ef6c00;
  margin: 4px 0;
  font-weight: 700;
}
.shop_index .good_list .good_card .good_info .show-price span:nth-child(2) {
  font-size: 12px;
}
.shop_index .good_list .good_card .good_info .watch {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  height: 24px;
}
.shop_index .good_list .good_card .good_info .watch .watch_num a {
  color: #ef6c00;
}
.shop_index .good_list .good_card .good_info .watch .category_label {
  padding: 2px 4px;
  border: 1px solid #2d8cf0;
  border-radius: 3px;
  color: #2d8cf0;
  margin-right: 8px;
  cursor: pointer;
}
.shop_index .more {
  width: 264px;
  height: 37px;
  line-height: 37px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: #ef6c00;
  cursor: pointer;
}