@charset "UTF-8";
.wrap, body {
  background: #F6F8FC;
}

.product_card {
  width: 100%;
  height: auto;
  margin-top: 36px;
}

.product_card .product_card_box {
  width: 100%;
  height: auto;
  padding: 52px 62px 62px;
  border-radius: 4px;
  background: #FFF;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.product_card .product_card_box .product_c_l {
  width: 435px;
  height: auto;
}

.product_card .product_card_box .product_c_l .product_l_top {
  width: 100%;
  height: 435px;
  border-radius: 4px;
  border: 1px solid #EFEFEF;
  overflow: hidden;
}

.product_card .product_card_box .product_c_l .product_l_top .top_item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product_card .product_card_box .product_c_l .product_l_top .top_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_card .product_card_box .product_c_l .product_l_top .video_item {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.product_card .product_card_box .product_c_l .product_l_top .video_item video {
  width: 100%;
  height: auto;
}

.product_card .product_card_box .product_c_l .product_l_top .video_item .video_bo {
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product_card .product_card_box .product_c_l .product_l_bot {
  margin-top: 20px;
  width: 100%;
  height: 60px;
}

.product_card .product_card_box .product_c_l .product_l_bot .bot_item {
  cursor: pointer;
  margin-right: 15px;
  width: 60px !important;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid transparent;
  position: relative;
}

.product_card .product_card_box .product_c_l .product_l_bot .bot_item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.product_card .product_card_box .product_c_l .product_l_bot .bot_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_card .product_card_box .product_c_l .product_l_bot .bot_item.active {
  border: 1px solid #0D6FD0;
  background: transparent;
}

.product_card .product_card_box .product_c_l .product_l_bot .bot_item.active::after {
  display: none;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.product_card .product_card_box .product_c_l .product_l_bot .video_item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.product_card .product_card_box .product_c_l .product_l_bot .video_item video {
  width: 100%;
  height: 100%;
}

.product_card .product_card_box .product_c_l .product_l_bot .video_item .video_bo {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product_card .product_card_box .product_c_r {
  width: 562px;
  height: auto;
}

.product_card .product_card_box .product_c_r h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 133.333% */
}

.product_card .product_card_box .product_c_r .product_cate {
  margin-top: 8px;
  color: #0D6FD0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product_card .product_card_box .product_c_r .product_detail {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 9px 0 20px;
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
}

.product_card .product_card_box .product_c_r .product_detail .detail_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product_card .product_card_box .product_c_r .product_detail .detail_item span {
  display: inline-block;
  width: 200px;
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 257.143% */
}

.product_card .product_card_box .product_c_r .product_detail .detail_item p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 257.143% */
}

.product_card .product_card_box .product_c_r .product_detail .detail_item .price {
  color: #0D6FD0;
}

.product_card .product_card_box .product_c_r .product_stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}

.product_card .product_card_box .product_c_r .product_stock .stock_title {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 257.143% */
}

.product_card .product_card_box .product_c_r .product_stock .stock_text {
  margin-left: 12px;
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product_card .product_card_box .product_c_r .product_payment {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box {
  width: 190px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #DFEAF5;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .minus {
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .minus:hover img:first-child {
  display: none;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .minus:hover img:last-child {
  display: block;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .minus img {
  width: 100%;
  height: 100%;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .minus img:first-child {
  display: block;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .minus img:last-child {
  display: none;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box input {
  text-align: center;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 102px;
  height: 100%;
  outline: none;
  border: none;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box input::placeholder {
  color: #999;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .plus {
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .plus:hover img:first-child {
  display: none;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .plus:hover img:last-child {
  display: block;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .plus img {
  width: 100%;
  height: 100%;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .plus img:first-child {
  display: block;
}

.product_card .product_card_box .product_c_r .product_payment .quantity_box .plus img:last-child {
  display: none;
}

.product_card .product_card_box .product_c_r .product_payment .pay_add {
  margin-left: 20px;
}

.product_card .product_card_box .product_c_r .product_payment .pay_add button {
  cursor: pointer;
  background: #0D6FD0;
  width: 190px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #0D6FD0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
}

.product_card .product_tab {
  width: 100%;
  height: 50px;
  margin-top: 55px;
  border-radius: 4px;
  background: #FFF;
  padding: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product_card .product_tab .tab_item {
  margin-right: 30px;
  cursor: pointer;
  width: auto;
  height: 100%;
  padding: 0 44px;
  border-radius: 4px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  /* 150% */
}

.product_card .product_tab .tab_item.active {
  color: #fff;
  background: #0D6FD0;
}

.product_card .product_content_box {
  width: 100%;
  height: auto;
  margin-top: 37px;
  margin-bottom: 110px;
}

.product_card .product_content_box .product_c_item {
  width: 100%;
  height: auto;
  margin-bottom: 55px;
}

.product_card .product_content_box .product_c_item .product_c_i_title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 100% */
}

.product_card .product_content_box .product_c_item .item_box {
  margin-top: 18px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #FFF;
  padding: 25px 40px;
}

.product_card .product_content_box .product_c_item .item_box p {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
}

.product_card .product_content_box .product_c_item .item_box p strong {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 133.333% */
}

.product_card .product_content_box .product_c_item .product_content {
  width: 100%;
  height: auto;
  margin-top: 28px;
  border-radius: 4px;
  border: 4px solid #FFF;
  padding: 20px 0px;
  background: #fff;
}

.product_card .product_content_box .product_c_item .product_content .product_c_top {
  padding: 0 25px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.product_card .product_content_box .product_c_item .product_content .product_c_top .product_c_title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 133.333% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_top .product_download {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product_card .product_content_box .product_c_item .product_content .product_c_top .product_download img {
  width: 20px;
  height: 20px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_top .product_download p {
  margin-left: 6px;
  color: #0D6FD0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 171.429% */
  text-decoration-line: underline;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box {
  margin-top: 22px;
  width: 100%;
  height: auto;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader {
  width: 100%;
  height: auto;
  padding: 0 25px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader .theader_box {
  padding: 0 26px;
  width: 100%;
  height: 44px;
  border-radius: 4px 4px 0px 0px;
  border-bottom: 1px solid #EFEFEF;
  background: #0D6FD0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader .theader_box .product_name {
  width: 550px;
  height: 100%;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  /* 171.429% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader .theader_box .au_box {
  width: 160px;
  height: 100%;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  /* 171.429% */
}
.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader .theader_box .num {
  text-align: center;
  width: 100px;
  height: 100%;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  /* 171.429% */
}
.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader .theader_box .quantity {
  text-align: center;
  width: 140px;
  height: 100%;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  /* 171.429% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_theader .theader_box .add_to_list {
  width: 90px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody {
  width: 100%;
  max-height: 600px;
  padding: 0 25px;
  overflow: hidden;
  overflow-y: auto;
  /* 整个滚动条区域 */
  /* 滚动条轨道（背景） */
  /* 滚动条滑块（可拖动部分） */
  /* 鼠标悬停在滑块上的样式 */
  /* 滚动条按钮（上下/左右的箭头按钮） */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody::-webkit-scrollbar {
  width: 5px;
  /* 垂直滚动条宽度 */
  height: 5px;
  /* 水平滚动条高度 */
  background-color: #fff;
  /* 滚动条背景色 */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 6px;
  /* 圆角 */
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
  /* 内阴影 */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #DFEAF5;
  border-radius: 6px;
  /* 圆角 */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody::-webkit-scrollbar-thumb:hover {
  background: #DFEAF5;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody::-webkit-scrollbar-button {
  display: none;
  /* 隐藏默认箭头按钮 */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box {
  width: 100%;
  height: auto;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item {
  width: 100%;
  height: auto;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item:nth-of-type(2n) .item_top {
  background: #F3F9FF;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item:hover {
  background: #FFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item:hover .item_top {
  background: #fff;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item:hover .item_top .product_name {
  text-decoration: underline;
  color: #0D6FD0;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item:hover .item_bot {
  display: flex;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top {
  padding: 0 26px;
  width: 100%;
  height: 54px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .product_name {
  width: 550px;
  height: 100%;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  /* 450% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .product_name .sale {
  margin-left: 20px;
  display: none;
  width: 42px;
  height: 24px;
  border-radius: 50px;
  background: #FF6A00;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 166.667% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .product_name .sale.is_sale {
  display: inline-block;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_price {
  width: 160px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_price .sale_price {
  color: #0D6FD0;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 54px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_price .sale_price.is_sale {
  color: #DA0000;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_price .origin_price {
  margin-left: 11px;
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 200% */
  text-decoration-line: line-through;
}
.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_num {
  text-align: center;
  width: 100px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  /* 450% */
}
.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity {
  width: 140px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box {
  width: 140px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #DFEAF5;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .minus {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .minus:hover img:first-child {
  display: none;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .minus:hover img:last-child {
  display: block;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .minus img {
  width: 100%;
  height: 100%;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .minus img:first-child {
  display: block;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .minus img:last-child {
  display: none;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box input {
  text-align: center;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 76px;
  height: 100%;
  outline: none;
  border: none;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box input::placeholder {
  color: #999;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .plus {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .plus:hover img:first-child {
  display: none;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .plus:hover img:last-child {
  display: block;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .plus img {
  width: 100%;
  height: 100%;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .plus img:first-child {
  display: block;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_quantity .quantity_box .plus img:last-child {
  display: none;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_add {
  width: 90px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_add button {
  cursor: pointer;
  background: transparent;
  width: 90px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #0D6FD0;
  color: #0D6FD0;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_top .item_add button:hover {
  background: #0D6FD0;
  color: #fff;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot {
  width: 100%;
  height: auto;
  padding: 30px 26px 30px;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  border: 1px solid #EFEFEF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_img img {
  max-width: 100%;
  max-height: 100%;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_info .info {
  min-width: 155px;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 0 11px;
  position: relative;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_info .info:last-child::after {
  display: none;
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_info .info::after {
  content: '';
  width: 1px;
  height: 35px;
  background: #E9E9E9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_info .info span:first-child {
  color: #000;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 246.154% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .item_info .info span:last-child {
  color: #666;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 266.667% */
}

.product_card .product_content_box .product_c_item .product_content .product_c_box .product_c_tbody .tbody_box .product_item .item_bot .view_more {
  color: #0D6FD0;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 200% */
  text-decoration-line: underline;
}
