/* 银河证券弹窗样式 */
.luodiye {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 400px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	display: none;
	z-index: 1000;
}

.luodiye-header {
	background-color: #0066cc;
	color: white;
	padding: 12px 15px;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close-btn {
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	opacity: 0.8;
}

.close-btn:hover {
	opacity: 1;
}

.luodiye-content {
	display: flex;
	padding: 20px;
}

.luodiye-left {
	flex: 1;
	padding-right: 15px;
	position: relative;
}

.luodiye-right {
	width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.form-group {
	margin-bottom: 10px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}

.form-group input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.submit-btn {
	background-color: #ff3b30;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	width: 100%;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background-color: #e63428;
}

.qrcode {
	width: 100px;
	height: 100px;
	background-color: #f0f0f0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 8px;
	font-size: 12px;
	color: #999;
}

.qrcode-text {
	font-size: 12px;
	text-align: center;
}