.product-list {
  display: flex;
  flex-wrap: wrap;
}

.product-item {
  width: 100%;
  padding: .625rem .5rem;
  background: #fff;
  border: 1px solid rgba(199, 199, 199, 0.5);
  transition-property: all;
  margin-top: .875rem;
  position: relative;
  display: flex;
}

.product-item:nth-child(1) {
  margin-top: 0;
}

.product-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: .6875rem;
  height: .6875rem;
  background: url("../../img/products/p.png") no-repeat;
  background-size: cover;
}

.product-item:hover {
  box-shadow: 0 0.05rem 0.1rem 0 rgba(61, 173, 207, 0.25);
  border: 1px solid;
  border-image: linear-gradient(90deg, rgba(2, 104, 176, 0.2) 0%, rgba(54, 190, 228, 0.2) 100%) 1;
}

.product-item:hover .info .btn {
  background: linear-gradient(90deg, #0268B0 0%, #36BEE4 100%);
}

.product-item:hover .info .btn .btnT {
  color: #fff;
}

.product-item:hover .info .btn .btnI.blue {
  display: none;
}

.product-item:hover .info .btn .btnI.white {
  display: block;
}

.product-item:hover .imgMain::before {
  background: linear-gradient(90deg, #0268B0 0%, #36BEE4 100%);
}

.product-item .info {
  flex: 1;
}

.product-item .info .nameMain {
  position: relative;
  padding-bottom: .2875rem;
  margin-bottom: .2625rem;
}

.product-item .info .nameMain::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: .875rem;
  height: .0375rem;
  background: #0268B0;
}

.product-item .info .nameMain .name {
  font-weight: 500;
  font-size: .3rem;
  color: #0268B0;
  line-height: .4375rem;
  margin-bottom: .05rem;
}

.product-item .info .nameMain .nameE {
  font-weight: 500;
  font-size: .175rem;
  color: rgba(2, 104, 176, 0.5);
  line-height: .25rem;
}

.product-item .info .detail {
  height: 1.5rem;
  font-weight: 400;
  font-size: .2rem;
  color: #333333;
  line-height: .375rem;
  text-align: justify;
  margin-bottom: .3625rem;
}

.product-item .info .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: .6rem;
  border: 2px solid;
  border-image: linear-gradient(90deg, #0268B0 0%, #36BEE4 100%) 1;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.product-item .info .btn .btnT {
  font-weight: 400;
  font-size: .2375rem;
  color: #0268B0;
  line-height: .35rem;
  margin-right: .25rem;
}

.product-item .info .btn .btnI {
  width: .275rem;
  height: .275rem;
}

.product-item .info .btn .btnI.blue {
  display: block;
}

.product-item .info .btn .btnI.white {
  display: none;
}

.product-item .imgMain {
  width: 7.75rem;
  height: 3.75rem;
  margin-left: .75rem;
  flex-shrink: 0;
  position: relative;
}

.product-item .imgMain::before {
  transition: 0.3s;
  content: "";
  position: absolute;
  left: -0.125rem;
  bottom: -0.125rem;
  width: 7.75rem;
  height: 3.75rem;
  background: linear-gradient(90deg, rgba(2, 104, 176, 0.3) 0%, rgba(54, 190, 228, 0.3) 100%);
}

.product-item .imgMain::after {
  content: "";
  position: absolute;
  top: -0.125rem;
  right: -0.125rem;
  width: .875rem;
  height: .875rem;
  background: linear-gradient(90deg, #0268B0 0%, #36BEE4 100%);
}

.product-item .imgMain .img {
  position: relative;
  background: #fff;
  border: 1px solid rgba(4, 106, 178, 0.1);
  z-index: 1;
}

.product-item .imgMain .img img {
  height: 3.75rem;
}

.product-detail {
  padding: .875rem 3rem;
}

.product-detail .detail-title {
  position: relative;
  text-align: center;
  padding-bottom: .625rem;
  border-bottom: 1px dashed #D8D8D8;
}

.product-detail .detail-title .title {
  margin-bottom: .275rem;
  color: #333;
  font-size: .3rem;
  font-weight: bold;
}

.product-detail .detail-title .info {
  color: #333;
  font-size: .2rem;
}

.product-detail .detail-title .info span + span {
  margin-left: 2em;
}

.product-detail .detail-content {
  padding: 0.1rem 1.5rem 0.75rem;
  border-bottom: 1px dashed #D8D8D8;
  font-size: 0.225rem;
  line-height: 0.375rem;
  text-align: justify;
  text-indent: 2em;
}

.product-detail .detail-content img {
  width: calc(100% - 8rem);
  display: block;
  margin: 0 auto;
}

.product-detail .detail-content p {
  margin: 1em 0;
}

.product-detail .detail-pager {
  padding: 1rem 0 0;
}

.product-detail .detail-pager .pagerMain {
  display: flex;
  justify-content: space-between;
}

.product-detail .detail-pager .pagerMain .pager {
  color: #333;
  font-size: 0.2rem;
  line-height: 0.325rem;
  width: 3.75rem;
}

.product-detail .detail-pager .pagerMain .link {
  display: block;
  min-width: 3rem;
  width: fit-content;
  max-width: 3.75rem;
  height: .675rem;
  padding: 0 .05rem;
  border: 2px solid;
  border-image: linear-gradient(90deg, #0268b0 0%, #36bee4 100%) 1;
  font-weight: 400;
  font-size: .2375rem;
  color: #0268B0;
  line-height: .625rem;
  text-align: center;
  transition: 0.3s;
}

.product-detail .detail-pager .pagerMain .link:hover {
  background: linear-gradient(90deg, #0268B0 0%, #36BEE4 100%);
  color: #fff;
}

.product-detail .detail-pager .pagerMain .value {
  min-width: 3rem;
  width: fit-content;
  max-width: 3.75rem;
  height: .675rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-weight: 400;
  font-size: .2375rem;
  color: rgba(0, 0, 0, 0.3);
  line-height: .625rem;
  text-align: center;
}

.product-detail .detail-pager .pagerBack {
  min-width: 2.25rem;
  height: .675rem;
  font-weight: 400;
  font-size: .2375rem;
  background: linear-gradient(90deg, #0268B0 0%, #36BEE4 100%);
  line-height: .35rem;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
}
