/* 公共样式 */
/* 全屏遮罩层登录弹窗样式 */
.iframe-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 确保在最顶层 */
}
.iframe-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 720px;
	height: 450px;
}
.iframe {
	width: 100%;
	height: 100%;
	border: none;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 登录iframe关闭按钮样式 */
.iframe-close-btn {
    position: fixed;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
}

.iframe-close-btn:hover {
	color: red;
}