/***********************************************************************/
.index_product {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_product .item {
  width: 49%;
  background: #F6F6F6;
  box-sizing: border-box;
  position: relative;
  padding: 40px;
  margin-bottom: 2%;
}
.index_product .item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 0;
  border-style: solid;
  border-color: #0CA1FD;
  transition: all 0.3s ease;
  pointer-events: none;
}
.index_product .item .title {
  font-size: 24px;
  font-weight: 500;
}
.index_product .item .params-thumb {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 50px 0;
}
.index_product .item .params-thumb .params li {
  font-size: 18px;
  font-weight: 350;
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}
.index_product .item .params-thumb .params li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #000;
  left: 0;
  top: 50%;
  transform: rotateY(-50%);
}
.index_product .item .params-thumb .thumb {
  transition: all 0.3s;
}
.index_product .item .line {
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.index_product .item .tags {
  margin: 40px 0 0;
  display: flex;
  justify-content: space-between;
}
.index_product .item .tags .tag {
  width: 31%;
  border: 1px solid rgba(0, 0, 0, 0.6);
  min-height: 40px;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_product .item:hover::after {
  border-width: 10px;
}
.index_product .item:hover .params-thumb .thumb {
  transform: scale(1.1);
}

/***********************************************************************/
/***********************************************************************/
@media screen and (max-width: 900px) {
  .index_product {
    margin-top: 40px;
    flex-direction: column;
  }
  .index_product .item {
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
  }
  .index_product .item:hover::after {
    border-width: 5px;
  }
  .index_product .item .title {
    font-size: 16px;
  }
  .index_product .item .params-thumb {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }
  .index_product .item .params-thumb .params {
    width: 100%;
  }
  .index_product .item .params-thumb .params li {
    font-size: 14px;
  }
  .index_product .item .params-thumb .thumb {
    margin-top: 40px;
  }
  .index_product .item .params-thumb .thumb img {
    transform: scale(0.8);
  }
  .index_product .item .tags {
    flex-wrap: wrap;
  }
  .index_product .item .tags .tag {
    font-size: 12px;
  }
  .index_product .item .tags .tag.num_1 {
    width: 52%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
  .index_product .item .tags .tag.num_2 {
    width: 52%;
    padding: 0 5px;
    order: 2;
  }
  .index_product .item .tags .tag.num_3 {
    width: 38%;
    margin-bottom: 10px;
  }
  .index_product .item:first-child .tags .tag.num_2 {
    width: 38%;
    order: 1;
    height: 100%;
    padding: 0;
  }
  .index_product .item:first-child .tags .tag.num_3 {
    width: 55%;
    order: 2;
    margin-bottom: 10px;
  }
}
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/

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