.nshop-coupon-list {
  margin: 0.24rem;
}

.nshop-coupon-list li {
  background-color: #fff;
  border-top: .16rem solid #d0000e;
  border-radius: .12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.133333rem;
  margin-bottom: .32rem;
  position: relative;
}

.nshop-coupon-list li::after {
  border-radius: 50%;
  width: 100%;
  height: .186667rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -0.106667rem;
  content: '';
  background: url(../images/shop/point.png) repeat-x center;
  background-size: .186667rem auto;
}

.nshop-coupon-list li .price {
  font-size: 1.066667rem;
  font-weight: lighter;
  text-align: center;
  color: #d0000e;
  position: relative;
  display: inline-block;
  margin-left: .426667rem;
  padding-left: .32rem;
}

.nshop-coupon-list li .price::before {
  content: '￥';
  position: absolute;
  top: .32rem;
  left: 0;
  display: inline-block;
  font-size: .32rem;
}

.nshop-coupon-list li .info {
  margin-right: .32rem;
  text-align: right;
  display: flex;
  align-items: center;
}

.nshop-coupon-list li .info .box .name {
  font-size: .3rem;
  color: #6ccb78;
}

.nshop-coupon-list li .info .box .time {
  font-size: .32rem;
}

.nshop-coupon-list li .info .radio-box {
  margin-left: 10px;
  width: .48rem;
  height: .48rem;
  border: #95989a 1px solid;
  border-radius: 50%;
  position: relative;
}

.nshop-coupon-list li .info .radio-box.active {
  background-color: #d0000e;
  border: none;
}

.nshop-coupon-list li .info .radio-box.active::after {
  content: "";
  font-size: 0px;
  width: .106667rem;
  height: .266667rem;
  margin-top: -0.18rem;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.07rem;
  border-bottom: #fff 2px solid;
  border-right: #fff 2px solid;
  transform: rotate(45deg);
}

.nshop-coupon-list li.invalid {
  filter: grayscale(100%);
  opacity: 0.5;
}

.nshop-coupon-list li.invalid::before {
  content: '';
  width: 1.333333rem;
  height: 1.333333rem;
  position: absolute;
  top: 0;
  right: 50%;
  display: inline-block;
  background: url(../images/shop/invalid-icon.png) no-repeat;
  background-size: contain;
  transform: rotate(-10deg);
}
.nshop-coupon-list li.used {
  filter: grayscale(100%);
  opacity: 0.5;
}

.nshop-coupon-list li.used::before {
  content: '';
  width: 1.333333rem;
  height: 1.333333rem;
  position: absolute;
  top: 0;
  right: 50%;
  display: inline-block;
  background: url(../images/shop/bonus_used.png) no-repeat;
  background-size: contain;
  transform: rotate(-10deg);
}