@CHARSET "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
	display: flex;
	height: 100vh;
	background-color: #f5f9ff;
}

/* 左侧菜单栏 */
#sidebar {
	width: 80px;
	background-color: #1a73e8;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#logo {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.menu-item {
	width: 100%;
	padding: 15px 0;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s;
	margin-bottom: 5px;
}

.menu-item:hover {
	background-color: #0d5bba;
}

.menu-item.active {
	background-color: #0d5bba;
}

.menu-item i {
	font-size: 20px;
	display: block;
	margin-bottom: 5px;
}

.menu-item span {
	font-size: 12px;
	display: block;
}

/* 右侧主内容区 */
#main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* 顶部栏 */
#top-bar {
	height: 60px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 36px;
	margin-right: 10px;
}

.logo h1 {
	font-size: 18px;
	color: #1a73e8;
	font-weight: 600;
}

/* 基础样式 */
.user-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
 
/* 鼠标悬停整体效果 */
.user-info:hover {
    background: #f5f7fa;
}
 
/* 头像样式 */
.user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}
 
/* 用户中心文字样式 */
.user-info .user-text {
    font-size: 14px;
    color: #333;
    margin-right: 5px;
    white-space: nowrap;
}
 
/* 下拉箭头图标 */
.user-info .dropdown-arrow {
    color: #999;
    font-size: 12px;
    transition: transform 0.3s ease;
}
 
/* 下拉菜单容器 - 默认隐藏 */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 10px;
}
 
/* 鼠标悬停时显示下拉菜单 */
.user-info:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
 
.user-info:hover .dropdown-arrow {
    transform: rotate(180deg);
}
 
/* 下拉菜单项样式 */
.user-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}
 
/* 菜单项图标 */
.user-dropdown a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #666;
}
 
/* 菜单项悬停效果 */
.user-dropdown a:hover {
    background: #f5f7fa;
    color: #4a8bfc;
}
 
.user-dropdown a:hover i {
    color: inherit;
}
 
/* 分割线 */
.user-dropdown a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.scan_login.nav-item {
	list-style: none; /* 移除li的默认样式 */
	margin: 0;
	padding: 0;
}

.c_login {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #292626 !important;
	font-size: 14px;
	letter-spacing: 2px;
	padding: 5px 10px;
	transition: all 0.3s ease;
}

.c_login:hover {
	opacity: 0.8;
}

.j-nav-myimg {
	border-radius: 15px;
	vertical-align: middle;
	object-fit: cover;
}

/* 标签栏 */
#tabs-container {
	height: 40px;
	background-color: #f1f5fe;
	display: flex;
	align-items: center;
	padding: 0 10px;
	border-bottom: 1px solid #e0e0e0;
}

.tab {
	height: 30px;
	min-width: 120px;
	background-color: white;
	border-radius: 4px 4px 0 0;
	margin-right: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	font-size: 13px;
	color: #555;
	cursor: pointer;
	border: 1px solid #e0e0e0;
	border-bottom: none;
}

.tab.active {
	background-color: #1a73e8;
	color: white;
	border-color: #1a73e8;
}

.tab-close {
	margin-left: 8px;
	font-size: 12px;
	opacity: 0.7;
}

.tab-close:hover {
	opacity: 1;
}

.add-tab {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a73e8;
	cursor: pointer;
	font-size: 18px;
}

/* 内容区 */
#content-area {
	flex: 1;
	background-color: white;
	position: relative;
	overflow: hidden;
}

.iframe-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.iframe-container.active {
	display: block;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* 基础样式 */
.popup-basic {
	position: relative;
	background: #FFF;
	width: auto;
	max-width: 450px;
	margin: 40px auto;
}

/* 容器样式 */
.login-popup-container {
	padding: 20px;
}

/* 标题样式 */
.login-title {
	margin: 20px 0 30px;
	text-align: center;
	font-size: 24px;
	color: #333;
}

.login-title span {
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.login-title span:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #d77f13;
}

/* 内容区域布局 */
.login-content {
	display: flex;
	gap: 30px;
	align-items: center;
}

/* 二维码区域 */
.qrcode-section {
	flex: 1;
	text-align: center;
	padding: 0 20px;
}

.qrcode-image {
	width: 183px;
	height: 183px;
	margin: 0 auto;
	display: block;
	border: 1px solid #eee;
	border-radius: 8px;
}

.qrcode-tip {
	color: #d77f13;
	margin-top: 15px;
	line-height: 1.6;
	font-size: 16px;
}

/* 右侧插图区域 */
.login-illustration {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-illustration img {
	max-height: 300px;
	width: auto;
	border-radius: 8px;
}


/* ====== 3d unfold ====== */
.mfp-flipInX .mfp-content {
	perspective: 2000px;
}

.mfp-flipInX .mfp-with-anim {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transform-style: preserve-3d;
	transform: rotateX(-60deg);
}

.mfp-flipInX.mfp-bg {
	opacity: 0;
	transition: all 0.5s;
}

.mfp-flipInX.mfp-ready .mfp-with-anim {
	opacity: 1;
	transform: rotateX(0deg);
}

.mfp-flipInX.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-flipInX.mfp-removing .mfp-with-anim {
	transform: rotateX(60deg);
	opacity: 0;
}

.mfp-flipInX.mfp-removing.mfp-bg {
	opacity: 0;
}


        .slogan-banner {
            position: relative;
            margin-left: 20px;
            padding: 8px 20px;
            background: linear-gradient(90deg, #1a73e8, #4285f4, #1a73e8);
            color: white;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
            animation: shine 3s infinite;
        }
        
        .slogan-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent 
            );
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            100% {
                left: 100%;
            }
        }
        
        @keyframes shine {
            0% {
                box-shadow: 0 0 10px rgba(26, 115, 232, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(26, 115, 232, 0.6);
            }
            100% {
                box-shadow: 0 0 10px rgba(26, 115, 232, 0.3);
            }
        }
        