        .cardContent{margin-top:80px;}
        h2 {
            color: #333;
			font-size:20px;
        }
        .section {
            margin-bottom: 20px;
            padding: 15px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .section h3 {
            margin-top: 0;
            color: #0056b3;
			font-size:14px;
			border:1px solid #eee;
			padding:10px;
        }
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
			font-size:14px;
        }
        .form-group {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group label {
            min-width: 80px;
        }
        .form-group input, .form-group select {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .form-group input:focus, .form-group select:focus {
            border-color: #007bff;
            outline: none;
        }
		
		.blue-dashed-line {
			border: 0; /* 移除默认边框 */
			height: 1px; /* 设置线条高度 */
			background: repeating-linear-gradient(
				90deg, /* 水平方向 */
				#aaa, /* 线条颜色 */
				#aaa 5px, /* 实线部分长度 */
				transparent 5px, /* 透明部分开始 */
				transparent 10px /* 透明部分结束 */
			);
		}

		
       .segment-container .form-group {
			margin-bottom:10px;
			font-size:14px;
        }
		
.segment-container .form-row .form-group{
    margin-bottom: 0px;
}
		
.segment-container {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
}

.segment-content {
    display: flex;
    gap: 20px;
}

.segment-left {
    flex: 1;
}

.segment-right {
    flex: 1;
    background-color: #f0f0f0;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
	padding:10px;
}

.segment-right img {
    max-width: 100%;
    max-height: 300px;
}

.segment-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.segment-actions button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.segment-actions button:hover {
    background-color: #0056b3;
}

.segment-actions button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
        .segment-header {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .controls {
            margin-bottom: 20px;
            position: fixed;
            width:96%;
            background: #e4f4ff;
            top:0px;
            padding: 10px;
        }
        .controls button {
            padding: 8px 15px;
            margin: 0 5px;
            font-size: 13px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: #007bff;
            color: white;
            transition: background-color 0.3s ease;
        }
        .controls button:hover {
            background-color: #0056b3;
        }
        .left{float:left}
        .right{float:right}
/* 任务库样式 */
.task-item {
    padding: 10px;
    margin: 5px 0;
    background: #2c3e50;
    border-radius: 3px;
    cursor: pointer;
}

.task-item:hover {
    background: #34495e;
}

.task-item strong {
    color: #3498db;
}
.cardContent,.content-area{
    display: none;
}

       .active {
            display: block;
        }

        
        .toolbar {
            margin-top:60px ;
            width: 60px;
            padding: 5px 10px;
            float: left;
        }
        .tool-btn {
            width: 64px;
            height: 64px;
            border: 1px solid #dee2e6;
            border-radius: 16px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
            background: white;
            margin-bottom: 15px;
        }
        .tool-btn.active {
            border-color: var(--primary-color);
            box-shadow: 0 6px 20px rgba(64,158,255,0.15);
        }
        .fly-btn {
            width: 70px;
            height: 43px;
            border: 1px solid #dee2e6;
            border-radius: 16px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
            background: white;
            margin-bottom: 15px;
        }
        .fly-btn.active {
            border-color: var(--primary-color);
            box-shadow: 0 6px 20px rgba(64,158,255,0.15);
        }
        
        .point-menu {
            position: absolute;
            background: white;
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
            display: none;
            z-index: 1000;
        }
        .point-menu button {
            display: block;
            width: 100%;
            padding: 5px 10px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
        }
        .point-menu button:hover {
            background-color: #f0f0f0;
        }
.tab-buttons {
    display: inline-flex;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
    border:1px solid #1890ff;
}

.tab-button {
    padding: 8px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    outline: none;
}

.tab-button.active {
    background: #1890ff;
    color: white;
    font-weight: bold;
}

.tab-button:not(.active):hover {
    background: #e0e0e0;
}

        /* 航段连线样式 */
        .segment-line {
            stroke-color: #1976D2;
            stroke-weight: 3;
            stroke-opacity: 0.8;
            cursor: pointer;
        }
        /* 航段信息标签样式 */
        .segment-label {
            color: white;
            background-color: rgba(25, 118, 210, 0.8);
            padding: 2px 5px;
            border-radius: 3px;
            font-size: 12px;
            white-space: pre;
            cursor: pointer;
            line-height: 1.4;
            transform: translateY(-50%);
        }
        /* 编辑对话框样式 */
        .edit-dialog {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0,0,0,0.2);
            z-index: 999999999;
            width: 300px;
        }
        .edit-dialog h3 {
            margin-top: 0;
            color: #1976D2;
        }
        .edit-dialog label {
            display: block;
            margin: 10px 0 5px;
        }
        .edit-dialog input {
            width: 92%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }
        .dialog-buttons {
            margin-top: 15px;
            text-align: right;
        }
        .dialog-buttons button {
            padding: 5px 10px;
            margin-left: 5px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
        .save-btn {
            background: #1976D2;
            color: white;
        }
        .cancel-btn {
            background: #f0f0f0;
        }
    /* 更新信息窗口样式 */
    .info-window {
        padding: 0px;
        font-size: 12px;
    width: 50px;
    height: 75px;
        border-radius: 0px;
        color: 000;
        width: 50px;
        text-align: left;
    }

.info-title {
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 3px;
}

/* 红色文本 */
.red {
    color: #e74c3c;
}
/* 屋顶三角形 */
.info-row.sanjiao {
    position: relative;
    width: 35px;
    transform: rotate(45deg);
    height: 36px;
    top: 19px;
    left: 7px;
    border-bottom: 0px;
    border-right: 0px;
}


.info-row {
    margin: 0px 0;
    border:1px blue solid ;
    position: relative;
    z-index: 99999;
    text-align: center;
    height: 20px;
    line-height:20px;
    background: rgba(255,255,255,0.5);
}

/* 屋顶三角形 */
.info-row.sanjiao span {

    display: block;
    transform: rotate(-45deg);
    position: relative;
    z-index: 9998;
    left: -6px;
    font-weight: bold;
}

.info-click {
    margin-top: 15px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #1890ff;
    padding: 5px;
    border-radius: 4px;
}

/* 更新对话框样式 */
.edit-dialog {
    width: 400px;
    max-width: 90%;
}

.edit-dialog .form-row {
    margin-bottom: 10px;
}

.edit-dialog .form-group {
    margin-bottom: 0;
}
/* 添加标记标签样式 */
.tmap-label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-shadow: 0 0 3px #000;
    user-select: none;
    pointer-events: none;
}

/* 右键菜单样式 */
.tmap-context-menu {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 999;
    min-width: 120px;
    text-align: center;
}

.tmap-context-menu .menu-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.tmap-context-menu .menu-item:hover {
}

.tmap-context-menu .delete-point {
    color: #ff4d4f;
}