.integral {
  width: 100%;
  height: 400px;
  background-image: url('/public/images/pics/huiyuanzhongxin.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40px;
}

.vinfo {
  width: 322px;
  height: 353px;
  background: #FAFCFF;
  border-radius: 0px 30px 0px 0px;
  border: 1px solid rgba(44, 121, 232, 0.2);
  /* margin-left: 192px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 20px;
}

.avatarBox {
  margin-top: 30px;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border: 4px solid #2C79E8;
  text-align: center;
  border-radius: 50%;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.textBox {
  display: flex;
  align-items: center;
  justify-content: space-around;

}

.text {
  width: 140px;
  text-align: center;
  font-size: 16px;
  color: var(--text-color2);
}

.text:first-child {
  border-right: 1px solid var(--text-color2);
}

.num {
  font-size: 20px;
  color: var(--blue-deep);
  margin-top: 10px;
}

.voucherBox {
  width: 1300px;
  margin: 0 auto;
}

.voucher {
  display: flex;
  align-items: center;
  color: var(--white);
  border-bottom: 4px solid var(--blue-deep);
  margin: 24px 0 10px;
}

.blueBox {
  padding: 0 14px;
  height: 46px;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  font-size: 20px;
}

.more {
  color: var(--text-color2);
  font-size: 14px;
}

.threeBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  /* 行/列间距（可调） */
}

.voucherBg {
  height: 120px;
  background-image: url('/public/images/pics/youhuiquan.png');
  background-size: 100% 100%;
  /* 拉伸图片填满容器，可能变形 */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-color2);


}

.voucherBg-left {
  margin-left: 24px;
}

.voucherBg-right {
  padding:20px  28px;
  color: var(--white);
  cursor: pointer;
  
}

.p1 {
  color: #2C79E8;
  letter-spacing: -1px;
}

.p2 {
  margin: 3px 0;
}

.s1 {
  font-size: 36px;
  font-family: Consolas;
}

.shop-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 20px;
}

.hot {
  display: flex;
  align-items: center;

}

.loginBtn {
  width: 73px;
  height: 25px;
  line-height: 0px;
  background: #E72A19;
  border-radius: 20px 20px 20px 20px;
  color: white;
  border: none;
  outline: none;
  margin-right: 20px;
}

.registerBtn {
  width: 73px;
  height: 25px;
  line-height: 0px;
  background: #2C79E8;
  border-radius: 20px 20px 20px 20px;
  color: white;
  border: none;
  outline: none;
}

.FiveBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.product-card {
  background: #fff;
  border: 1px solid #e8eaec;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 320px;
  position: relative;
  padding: 15px;
  min-width: 218px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 14px;
}

.product-title {
  margin-top: 10px;
  color: var(--text-color3);
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-image::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(62, 160, 221, 0.1);
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gift {
  width: 14px;
  height: 14px;
  position: relative;
  top: -2px;
}

.product-integral {
  color: var(--blue-deep);
  font-size: 16px;

}

.exchangeNum {
  color: var(--text-color5);
  font-size: 14px;
}

.exchangeBtn {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(135deg, #2C79E8 0%, #2C79E8 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.noData {
  width: 100%;
  min-height: 60vh;
  text-align: center;
}

.noDataText {
  margin-top: 1vw;
  text-align: center;
  color: rgba(0, 0, 0, 0.89);
  font-size: 18px;
}

.noDataBtn {
  display: inline-block;
  width: 35%;
  border-radius: 45px;
  margin-top: 1vw;
  padding: .5vw 0px;
  font-size: 16px;
  background-color: var(--blue-deep);
  color: #fff !important;
}