.coupon-page {
  min-height: 100vh;
  background: #fff;
  padding-bottom: 1rem;
}
.coupon-page .tabs-page {
  display: flex;
  align-items: center;
  height: 4rem;
  padding-bottom: 1rem;
  position: sticky;
  background: #fff;
  top: 0;
  z-index: 9;
}
.coupon-page .tabs-page .tabs-item {
  font-size: 1rem;
  font-weight: 400;
  margin-right: 2rem;
  color: #1f1f1f;
  height: 1.5rem;
  position: relative;
}
.coupon-page .tabs-page .tabs-item:nth-last-of-type(1) {
  margin-right: 0;
}
.coupon-page .tabs-page .tabs-item:hover {
  cursor: pointer;
}
.coupon-page .tabs-page .tabs-item .tabs-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.75rem;
  height: 2px;
  background: #ff468c;
}
.coupon-page .tabs-page .tabs-actived {
  font-weight: 700 !important;
  color: #ff468c !important;
}
.coupon-page .list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .coupon-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .coupon-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1200px) {
  .coupon-page .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .coupon-page .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.coupon-page .list .item-bg-0 {
  background: #fff0f5;
}
.coupon-page .list .item-bg-1 {
  background: #f7f7f7;
}
.coupon-page .list .item-bg-2 {
  background: #f7f7f7;
}
.coupon-page .list .item-price-0 {
  color: #ff468c;
}
.coupon-page .list .item-price-1 {
  color: #7a7a7a;
}
.coupon-page .list .item-price-2 {
  color: #7a7a7a;
}
.coupon-page .list .item-limit-0 {
  color: rgba(0, 0, 0, 0.52);
}
.coupon-page .list .item-limit-1 {
  color: #7a7a7a;
}
.coupon-page .list .item-limit-2 {
  color: #7a7a7a;
}
.coupon-page .list .item-btn-0 {
  background: #ff468c;
  color: #fff;
  cursor: pointer;
}
.coupon-page .list .item-btn-1,
.coupon-page .list .item-btn-2 {
  background: #ccc;
  color: #fff;
}
.coupon-page .list .coupon-item {
  display: flex;
  align-items: center;
  border-radius: 1rem;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0.625rem;
  gap: 0 0.625rem;
}
.coupon-page .list .coupon-item__left {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coupon-page .list .coupon-item__left__price {
  display: flex;
  align-items: flex-end;
}
.coupon-page .list .coupon-item__left__price__s {
  font-size: 20px;
  line-height: 22px;
}
.coupon-page .list .coupon-item__left__price__v {
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
}
.coupon-page .list .coupon-item__left__tip {
  font-size: 0.875rem;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 4px;
}
.coupon-page .list .coupon-item__center {
  flex: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
.coupon-page .list .coupon-item__center__origin {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  height: 24px;
  line-height: 24px;
}
.coupon-page .list .coupon-item__center__time {
  font-size: 14px;
  height: 22px;
  line-height: 22px;
  width: 100%;
}
.coupon-page .list .coupon-item__center__limit {
  font-size: 14px;
  height: 22px;
  line-height: 22px;
  width: 100%;
}
.coupon-page .list .coupon-item__right {
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  line-height: 32px;
  margin-right: 6px;
  width: 60px;
}
.coupon-page .success-pop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.52);
}
.coupon-page .success-pop .popup-box {
  position: relative;
  width: 375px;
}
.coupon-page .success-pop .popup-box .popup-bg-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 30px;
}
.coupon-page .success-pop .popup-box .img-title {
  position: absolute;
  top: 60px;
  left: 50%;
  height: 25px;
  transform: translate(-50%, 0);
}
.coupon-page .success-pop .popup-box .img-content-bg {
  position: absolute;
  top: 100px;
  left: 50%;
  height: 125px;
  transform: translate(-50%, 0);
}
.coupon-page .success-pop .popup-box .icon-reeor {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #f5f5f5;
  font-size: 34px;
  cursor: pointer;
}
.coupon-page .success-pop .popup-box .popup-content {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translate(-50%, 0);
}
.coupon-page .success-pop .popup-box .popup-content .price-box {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 10px;
}
.coupon-page .success-pop .popup-box .popup-content .price-box .price {
  font-size: 20px;
}
.coupon-page .success-pop .popup-box .popup-content .price-box .min-price {
  font-size: 12px;
}
.coupon-page .success-pop .popup-box .popup-content .bt {
  width: 210px;
  line-height: 30px;
  background: #fff;
  border-radius: 5px;
  color: red;
  text-align: center;
  cursor: pointer;
}/*# sourceMappingURL=coupon-mine.css.map */