@charset "UTF-8";
/***********************************************************************/
.product_list {
  display: flex;
  margin-top: 90px;
  justify-content: space-between;
}
.product_list .title {
  font-size: 24px;
  line-height: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 30px;
  font-weight: 500;
}
.product_list .title a {
  padding: 0 5px;
}
.product_list .flag {
  position: relative;
  width: 12px;
}
.product_list .flag.plus {
  width: 12px;
  height: 12px;
}
.product_list .flag.plus::before, .product_list .flag.plus::after {
  content: "";
  position: absolute;
  background-color: #272636;
}
.product_list .flag.plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px; /* 横线的高度 */
  transform: translateY(-50%); /* 垂直居中 */
}
.product_list .flag.plus::after {
  top: 0;
  left: 50%;
  width: 2px; /* 竖线的宽度 */
  height: 100%;
  transform: translateX(-50%); /* 水平居中 */
}
.product_list .flag.minus {
  width: 12px; /* 减号的宽度 */
  height: 2px; /* 减号的高度 */
  background-color: #272636; /* 减号的颜色 */
}
.product_list .slide-bar {
  width: 30%;
}
.product_list .slide-bar .box li {
  position: relative;
  display: flex;
  padding-left: 15px;
  margin-top: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_list .slide-bar .box li.open .sub-box {
  max-height: 1000px;
  visibility: visible;
}
.product_list .slide-bar .box li .sub-box {
  width: 100%;
  max-height: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  transition: max-height 0.3s ease, visibility 0.1s ease;
}
.product_list .slide-bar .box li .sub-box .item {
  padding: 30px 0 0 30px;
}
.product_list .slide-bar .box li .sub-box .item:hover, .product_list .slide-bar .box li .sub-box .item.active {
  color: #0CA1FD;
}
.product_list .slide-bar .box li p {
  flex: 1;
}
.product_list .slide-bar .box li i {
  transition: all 0.3s;
}
.product_list .slide-bar .box li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000;
}
.product_list .list {
  width: 68%;
}
.product_list .list .select-product {
  display: none;
}
.product_list .list .box {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product_list .list .box .item {
  width: 32%;
  margin-bottom: 2%;
  margin-right: 2%;
}
.product_list .list .box .item:nth-child(3n) {
  margin-right: 0;
}
.product_list .list .box .item:hover .thumb::before {
  border-width: 5px;
}
.product_list .list .box .item:hover .info {
  color: #0CA1FD;
}
.product_list .list .box .item .thumb {
  position: relative;
}
.product_list .list .box .item .thumb img {
  border-radius: 10px;
  width: 100%;
}
.product_list .list .box .item .thumb::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-width: 0;
  border-style: solid;
  border-radius: 10px;
  border-color: #0CA1FD;
  transition: all 0.3s;
}
.product_list .list .box .item .info {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  transition: all 0.3s;
}

/***********************************************************************/
@media screen and (max-width: 900px) {
  .product_list {
    margin-top: 40px;
    flex-direction: column;
  }
  .product_list .slide-bar {
    display: none;
  }
  .product_list .list {
    width: 100%;
  }
  .product_list .list .title {
    background-color: #F6F6F6;
    border: 0;
    font-size: 12px;
    padding: 15px 0 15px 10px;
  }
  .product_list .list .select-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    margin-top: 15px;
    line-height: 38px;
    position: relative;
  }
  .product_list .list .select-product::before {
    position: absolute;
    content: "";
    width: calc(100% - 2px);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  .product_list .list .select-product p {
    padding-left: 10px;
  }
  .product_list .list .select-product svg {
    padding-right: 10px;
    width: 15px;
    height: 15px;
  }
  .product_list .list .select-product svg path {
    fill: #000;
  }
  .product_list .list .select-product.open svg path {
    transform: rotate(180deg);
    transform-origin: center center;
  }
  .product_list .list .select-product.open .options {
    display: block;
  }
  .product_list .list .select-product .options {
    display: none;
    position: absolute;
    left: 0;
    top: 42px;
    width: 100%;
    max-height: 208px;
    background-color: #fff;
    overflow-y: auto;
    margin: 0 auto;
    z-index: 2;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0 0 10px 10px;
  }
  .product_list .list .select-product .options::-webkit-scrollbar {
    width: 5px;
  }
  .product_list .list .select-product .options::-webkit-scrollbar-thumb {
    border-style: dashed;
    background-color: rgb(12, 161, 253);
    border-color: rgba(226, 36, 36, 0);
    border-width: 1.5px;
    border-radius: 10px;
  }
  .product_list .list .select-product .options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
  }
  .product_list .list .select-product .options li {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 14px;
  }
  .product_list .list .select-product .options li.show .sub-box {
    display: flex;
    max-height: 1000px;
  }
  .product_list .list .select-product .options li::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 19px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
  }
  .product_list .list .select-product .options li i {
    transition: all 0.3s;
  }
  .product_list .list .select-product .options li .sub-box {
    width: 100%;
    max-height: 0;
    padding-left: 20px;
    display: none;
    flex-direction: column;
    transition: max-height 0.3s ease, visibility 0.1s ease;
  }
  .product_list .list .box {
    min-height: 200px;
    padding: 15px 0;
    justify-content: space-between;
  }
  .product_list .list .box .item {
    width: 49%;
    margin-right: 0;
  }
  .product_list .list .box .item .info {
    font-size: 16px;
    margin-top: 10px;
  }
}
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/

/*# sourceMappingURL=list.css.map */
