.main-box {
  display: flex;
  background: #fff;
  flex-direction: column;
  width: calc(100% - 200px);
  margin: 0 100px;
}
.main-box .shop-box {
  display: flex;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 100px;
  margin: 20px;
  align-items: center;
}
.main-box .shop-box .shop-img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  object-fit: cover;
}
.main-box .shop-box .shop-info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1;
  height: 80px;
  margin: 0 30px;
}
.main-box .shop-box .shop-info .name {
  font-size: 20px;
  font-weight: bold;
}
.main-box .other-box {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--lightGray);
}


.main-box .shop-banner {
  width: 100%;
  max-height: 300px;
}
.main-box .shop-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.main-box .other-box .tab-box {
  display: flex;
}
.main-box .other-box .tab-box .tab {
  font-size: 18px;
  padding: 20px 0;
  margin-left: 20px;
}
.main-box .other-box .tab-box .active {
  border-bottom: 2px solid var(--mainColor);
}
.main-box .other-box .shop-banner {
  width: 100%;
  max-height: 300px;
}
.main-box .other-box .shop-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.main-box .other-box .desc-box {
  padding: 20px;
  width:100%;
}
.main-box .other-box img {

  width:auto;
}
.main-box .type-box {
  padding: 20px;
}
.main-box .type-box .box {
  display: flex;
}
.main-box .type-box .box .title {
  width: 120px;
}
.main-box .type-box .box .type_list {
  display: flex;
  flex-wrap: wrap;
}
.main-box .type-box .box .type_list .name {
  width: 120px;
  padding: 0 10px 20px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.main-box .type-box .box .type_list .active {
  color: var(--mainColor);
}
.main-box .type-box .box .sort_list {
  display: flex;
}
.main-box .type-box .box .sort_list .name {
  display: flex;
  width: 120px;
  padding: 0 10px 20px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  cursor: pointer;
}
.main-box .type-box .box .sort_list .name .iconfont {
  margin-left: 5px;
}
.main-box .type-box .box .sort_list .active {
  color: var(--mainColor);
}
.main-box .goods-box {
  display: flex;
  flex-wrap: wrap;
}
.main-box .goods-box .goods {
  display: flex;
  flex-direction: column;
  width: calc((100% - 200px) / 5);
  min-width: calc((100% - 200px) / 5);
  max-width: calc((100% - 200px) / 5);
  margin: 10px calc((100% - ((100% - 200px) / 5) * 5) / 10);
  cursor: pointer;
}
.main-box .goods-box .goods img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.main-box .goods-box .goods .title {
  margin: 10px 0;
}
.main-box .goods-box .goods .sales-price {
  font-size: 18px;
  font-weight: bold;
}
.main-box .goods-box .goods .price {
  color: #afacac;
  text-decoration: line-through;
}
/*# sourceMappingURL=shop_detail.css.map */