
* {
    margin: 0;
    padding: 0;
}

[v-cloak] {
    display: none;
}

:root {
    --primary-blue: #2A5CAA;
    --accent-orange: #FF6B35;
    --text-dark: #1A2937;
    --text-medium: #4A5568;
    --text-light: #718096;
}

.container {
    display: flex;
    margin-top: 30px;
}

.header{
    width: 100%;
    height: 30px;
    font-size: 18px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: gray;
}
.header>i{
    margin-left: 6px;
    cursor: pointer;
}

.header>.el-icon-sunrise-1{
    color: #edb40c;
}
.header>.el-icon-sunny{
    color: #ff7800;
}
.header>.el-icon-moon{
    color: #5f5f5f;
}
.header>.el-icon-moon-night{
    color: #000;
}

.header .el-icon-star-off,.header .el-icon-service{
    font-size: 18px;
    margin-top: 2px;
}
.header .el-icon-star-off:hover{
    color: #eb9a00;
}

.header>span{
    font-size: 12px;
    margin-left: 4px;
}

.devCollaborate{
    font-size: 14px;
    color: var(--text-medium);
    margin-left: 6px;
}
.devCollaborate:hover{
    font-weight: 600;
}

/* 左侧功能区 */
.left-column {
    display: flex;
    transition: all 0.3s linear;
}

.column_left{
    width: 180px;
    min-width: 180px;
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 20px;
    height: calc(100vh - 30px);
}

.backHome{
    font-size: 14px;
    color: var(--text-light);
}
.backHome:hover{
    color: var(--primary-blue);
}

.brand-area {
    margin: 30px 0;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    margin-bottom: 15px;
}

.system-status {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.system-status h3{
    font-size: 14px;
    color: #5f5f5f;
}

.el-progress--circle{
    margin-top: 10px;
}

.nav-menu {
    list-style: none;
}

.nav-item {
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-medium);
    cursor: pointer;
    margin-top: 6px;
}

.nav-item:hover {
    background: #f1f5f9;
    color: var(--primary-blue);
}

.navItemCur{
    background: #f1f5f9;
    color: var(--primary-blue);
}

/* 左侧功能细分区 */
.column_right{
    flex: 1;
    background-color: #ffffff8c;
    box-shadow: 5px 0 6px 0 #f3f3f3;
    padding: 20px;
}
.column_right>a{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #5d5d5d;
    white-space: nowrap;
}
.column_right>a:hover{
    color: var(--primary-blue);
}


/* 右侧工作区 */
.right-column {
    flex: 1;
    height: calc(100vh - 30px);
    min-width: 400px;
    overflow: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
}


.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.tool-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tool-card:hover {
    transform: translateY(-3px);
}

.tool-preview {
    width: 100%;
    height: 160px;
    background: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tool-title {
    color: var(--text-dark);
    /*margin-bottom: 10px;*/
    font-size: 16px;
}

.tool-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: var(--text-light);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #48bb78;
}

.launch-button {
    background: linear-gradient(135deg, var(--primary-blue), #1d4a8a);
    color: white;
    border: none;
    padding: 10px 25px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.launch-button:hover {
    opacity: 0.85;
}



















