@CHARSET "UTF-8";
.tab-content {
	flex: 1;
	background-color: white;
	position: relative;
	overflow: hidden;
}

.iframe-container.active {
	display: block;
}

.iframe-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
}


.tab-container {
    height: 40px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 0 10px;
    overflow-x: auto;
    white-space: nowrap;
}

.tab {
    height: 30px;
    padding: 0 15px;
    margin-right: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
}

.tab.active {
    background-color: #3498db;
    color: #fff;
    border-color: #3498db;
}

.tab.fixed {
	background-color: #e1f5fe;
	border-color: #81d4fa;
}

.tab.fixed.active {
	background-color: #1976D2;
	border-color: #1976D2;
}

.tab .close {
	margin-left: 8px;
	font-size: 12px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.tab:hover .close {
	opacity: 1;
}

.tab .close:hover {
	color: #ff5722;
}

/* 右键菜单 */
.context-menu {
	position: absolute;
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	min-width: 150px;
	display: none;
}

.context-menu ul {
	list-style: none;
}

.context-menu li {
	padding: 8px 15px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.context-menu li:hover {
	background-color: #f5f5f5;
}

.context-menu li i {
	margin-right: 8px;
	font-size: 14px;
}

/* 滚动条样式 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}
