.Product-Content {
	margin: 30px;
}

.Product-Title {
	height: 40px;
	font-size: 32px;
}

.Product-Title p {
	font-size: 16px;
	float: right;
	margin-top: -27px;
	cursor: pointer;
}

.Product-Title p  {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(1, 154, 1, 0.6); /* 背景透明度 */
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.Product-Title p:hover {
  background-color: rgba(1, 154, 1, 0.9); /* 悬停时略微加深透明度 */
}
.Divider {
	height: 1px;
	background-color: #ddd;
	/* 分割线的颜色 */
	margin: 10px 0;
	/* 设置分割线上下的间距 */
}

/* 分页容器样式 */
#Pagination,#TempsPagination {
	margin-top: 20px;
	text-align: center;

}

/* 页码信息样式 */
#Pagination div,#TempsPagination  div {
	display: inline-block;
	margin-right: 10px;
	font-size: 14px;

}

/* 上一页和下一页按钮样式 */
#Pagination button ,#TempsPagination  button{
	padding: 5px 10px;
	font-size: 14px;
	cursor: pointer;
	background-color: #4aa1fb;
	color: white;
	border: none;
	border-radius: 3px;
}

/* 上一页和下一页按钮激活状态样式 */
#Pagination button:hover,#TempsPagination  button:hover{
	background-color: #4aa1fb;
}

/* 当前页码样式 */
#Pagination .current-page ,#TempsPagination .current-page{
	font-weight: bold;
	color: #4aa1fb;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#downloadModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 130px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 2;
}

.close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
}

.modal-content {
  text-align: center;
}

.form-check {
    margin-bottom: 15px;
    float: left;
    width: 150px;
	margin-top: 20px;
}

.form-check label {
  margin-right: 10px;
}

button {
  cursor: pointer;
  padding: 10px 20px;
  background-color: rgba(1, 154, 1, 0.6); /* 背景透明度 */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
  margin-top: 15px;
}

button:hover {
 background-color: rgba(1, 154, 1, 0.9); /* 背景透明度 */
}

.balance-info {
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 14px;
}






.submitRecharge {
	padding: 12px;
	background-color: rgba(0, 123, 255, 0.6);
	/* 背景透明度 */
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: block;
	margin: 3px auto;
	font-weight: 700;
	/* Center the button */
}

.submitRecharge:hover {
	background-color: rgba(0, 123, 255, 0.9);
	/* 背景透明度 */
}

.selected-denomination {
	background-color: #c80000;
	border: 2px solid #c80000;
}

.selected-denomination:hover {
	background-color: #980000;
}

.ReChargeContent {
	width: 1100px;
	min-height: 300px;
	background-color: #fff;
	margin-top: 50px;
}

#qrCodeModal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 330px;
	height: 400px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	text-align: center;
}

.Code_Type {
	display: flex;
	margin-bottom: 20px;
	float: left;
	width: 100%;
	top: 6px;
	height: 43px;
	position: relative;
}

.Code_WeChat,
.Code_AliPay {
	cursor: pointer;
	padding: 10px;
	flex-grow: 1;
	text-align: center;
	font-size: 16px;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-right: 10px;
	transition: background-color 0.3s;

}

.Code_WeChat.selected,
.Code_AliPay.selected {
	background-color: #00aaff;
	color: #fff;
}

#Content_WeChat,
#Content_AliPay {
	display: none;
}

#Content_WeChat.show,
#Content_AliPay.show {
	display: block;
	width: 235px;
	height: 235px;
	margin: 0 auto;
	position: relative;
	top: 50px;
}

.closeQrCodeModal {
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 123, 255, 0.6);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
    margin: 0px auto;
    color: #fff;
    font-weight: 700;
    position: relative;
    top: 50px;
}

.closeQrCodeModal:hover {
	background-color: rgba(0, 123, 255, 0.9);
	/* 背景透明度 */
}

button:hover {
	background-color: #00aaff;
}

iframe {
	width: 200px;
	height: 200px;
}

canvas {
	width: 200px;
	height: 200px;
}




#qrcode_wx img {
	width: 85%;
	margin: 0 auto;
}

#amountDisplay {
    font-size: 27px;
    font-weight: bold;
    width: 100%;
    height: 36px;

}
