#recharge-form {
	max-width: 400px;
	/* Adjust the maximum width as needed */
	margin: 40px auto;
	padding: 20px;
	background-color: #f5f5f5;
	/* Set a background color */
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	/* Add a subtle box shadow */
}

h2 {
	font-weight: bold;
	/* Make the heading bold */
}

.denomination-btn {
	font-weight: bold;
	/* Make the buttons' text bold */
	padding: 10px;
	margin: 5px;
	border: 2px solid #4CAF50;
	/* Add a border */
	border-radius: 5px;
	background-color: #4CAF50;
	/* Set a background color */
	color: #fff;
	/* Set text color to white */
	cursor: pointer;
}

.denomination-btn:hover {
	background-color: #45a049;
	/* Change background color on hover */
}

#custom-amount {
	margin-top: 10px;
}

label {
	display: block;
	margin-bottom: 5px;
}

#customAmount {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
}

.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;
}

.main {
	height: 600px;
}


#qrcode_wx img {
	width: 85%;
	margin: 0 auto;
}

#amountDisplay {
    font-size: 27px;
    font-weight: bold;
    width: 100%;
    height: 36px;

}