.banner {
  min-height: 280px;
  position: relative;
}

.banner .img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  min-height: 280px;
}

.banner .text {
  font-family: Arial-BoldMT;
  font-size: 60px;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.crumbs {
  display: flex;
  padding-left: 24px;
  background-image: url(../images/address.png);
  background-repeat: no-repeat;
  background-size: 12px 15px;
  background-position: left center;
  margin-top: 30px;
  font-family: ArialMT;
  font-size: 14px;
  color: #878787;
  align-items: center;
  line-height: 1;
}

.crumbs .item {
  margin-right: 4px;
}

.crumbs .line {
  margin-right: 4px;
}

.goodsContent {
  padding-top: 44px;
  display: flex;
  justify-content: space-between;
}

.goodsContent .left {
  width: 21.428%;
}

.goodsContent .left .flag {
  display: none;
}

.goodsContent .left .title {
  background-color: #53c1bc;
  color: #FFF;
  font-family: Arial-BoldMT;
  font-size: 36px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  padding: 32px 0 25px;
  padding-left: 42px;
}

.goodsContent .left .box {
  display: flex;
  flex-direction: column;
  border: 1px solid #eeeeee;
  border-top: 0;
  padding-top: 21px;
  font-family: Arial-Mdm;
  font-size: 16px;
}

.goodsContent .left .box .item {
  padding: 18px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}

.goodsContent .left .box .item .icon {
  font-family: Manrope-Regular;
  font-size: 18px;
  color: #c1c1c1;
  margin-left: 43px;
  margin-right: 16px;
  transition: all 0.3s;
}

.goodsContent .left .box .item .text {
  color: #010101;
  transition: all 0.3s;
  margin-right: 4px;
}

.goodsContent .left .box .item .num {
  color: var(--theme-color);
  transition: all 0.3s;
}

.goodsContent .left .box .item:hover {
  background-color: var(--theme-color);
}

.goodsContent .left .box .item:hover .icon {
  color: #FFF;
}

.goodsContent .left .box .item:hover .text {
  color: #FFF;
}

.goodsContent .left .box .item:hover .num {
  color: #FFF;
}

.goodsContent .left .box .active {
  background-color: var(--theme-color);
}

.goodsContent .left .box .active .icon {
  color: #FFF;
}

.goodsContent .left .box .active .text {
  color: #FFF;
}

.goodsContent .left .box .active .num {
  color: #FFF;
}

.goodsContent .right {
  margin-left: 22px;
  flex: 1;
}

.goodsContent .right .box {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  align-items: stretch;
  align-items: center;
}

.goodsContent .right .box .item {
  width: 32.06%;
  margin-bottom: 20px;
  margin-right: 1.2%;
}

.goodsContent .right .box .item:nth-child(3n) {
  margin-right: 0;
}

.goodsContent .right .box .item .img {
  width: 100%;
  aspect-ratio: 350 / 465;
  background-size: cover;
  background-repeat: no-repeat;
}

.goodsContent .right .box .item .describe {
  background: #FFF;
  padding: 26px 30px 29px;
  width: 100%;
  box-sizing: border-box;
  border: solid 1px #eeeeee;
  border-top: 0;
}

.goodsContent .right .box .item .describe .title {
  font-family: ArialMT;
  font-size: 18px;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 10px;
  padding-bottom: 20px;
  height: 50px;
  box-sizing: content-box;
}

.goodsContent .right .box .item .describe .priceAndAddCart {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  padding: 24px 4px 0 9px;
}

.goodsContent .right .box .item .describe .priceAndAddCart .price {
  font-family: ArialMT;
  font-size: 18px;
  color: var(--theme-color);
}

.goodsContent .right .box .item .describe .priceAndAddCart .addCart {
  display: flex;
  align-items: center;
}

.goodsContent .right .box .item .describe .priceAndAddCart .addCart .icon {
  width: 16px;
  height: 17px;
  margin-right: 8px;
}

.goodsContent .right .box .item .describe .priceAndAddCart .addCart .text {
  font-family: ArialMT;
  font-size: 14px;
}

.pageChange {
  margin-top: 0;
  padding-top: 25px;
}

@media (max-width: 1024px) {
  .list .item {
    width: 48.5%;
  }

  .goodsContent .left {
    min-width: 215px;
  }

  .goodsContent .left .title {
    font-size: 24px;
    padding: 20px 0;
    padding-left: 25px;
  }

  .goodsContent .left .box .item {
    padding: 15px 0;
    font-size: 14px;
  }

  .goodsContent .left .box .item .icon {
    font-size: 14px;
    margin-left: 25px;
    margin-right: 8px;
  }

  .goodsContent .right .box .item {
    width: 48.5%;
  }

  .goodsContent .right .box .item .describe {
    padding: 15px;
    height: fit-content;
  }

  .goodsContent .right .box .item:nth-child(3n) {
    margin-right: 1.2%;
  }

  .goodsContent .right .box .item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .banner .text {
    font-size: 32px;
  }

  .goodsContent {
    position: relative;
    overflow: hidden;
  }

  .goodsContent .left {
    position: fixed;
    height: 100vh;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    z-index: 99;
    background: #FFF;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }

  .goodsContent .left .box {
    overflow-y: scroll;
    flex: 1;
  }

  .goodsContent .left .box::-webkit-scrollbar {
    display: none;
  }

  .goodsContent .left .flag {
    display: block;
    position: absolute;
    left: calc(100% + 30px);
    top: 90%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme-color);
    background-image: url(../images/category.svg);
    background-repeat: no-repeat;
    background-position: center center;
  }

  .goodsContent .right {
    margin-left: 0;
  }

  .goodsContent .right .box {
    align-items: stretch;
  }

  .goodsContent .right .box .item {
    display: flex;
    flex-direction: column;
  }

  .goodsContent .right .box .item .describe {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .goodsContent .right .box .item .describe .title {
    flex: 1;
    font-size: 12px;
    height: fit-content;
    padding-bottom: 15px;
  }

  .goodsContent .right .box .item .describe .priceAndAddCart .price {
    font-size: 12px;
  }

  .goodsContent .right .box .item .describe .priceAndAddCart .addCart .text {
    display: none;
  }

  .goodsContent .right .box .item:nth-child(2n) {
    margin-left: 10px;
  }

  .goodsContent .right .box .item:nth-child(3n) {
    margin-right: 0;
  }

  .goodsContent .right .box .item {
    margin-right: 0;
  }

  /* .goodsContent .active {
    transform: translate(0%, -50%);
  } */
}