/* jnrd.css - 技能认定专属样式 */

/* 面包屑样式 */
.jnrd-breadcrumb-nav {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.jnrd-breadcrumb-nav a {
    color: #1C983E;
    text-decoration: none;
}

.jnrd-breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* 主体布局 */
.jnrd-content-area {
    display: flex;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

/* 左侧侧边栏 */
.jnrd-sidebar {
    width: 200px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.jnrd-nav-title {
    font-size: 16px;
    font-weight: bold;
    color: #1C983E;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1C983E;
    text-align: center;
}

.jnrd-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jnrd-nav-item {
    margin: 0;
}

.jnrd-nav-link {
    display: block;
    padding: 12px 15px;
    text-decoration: none !important;
    color: #333;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
    width: 100%;
}

.jnrd-nav-link.active {
    background-color: #1C983E;
    color: white;
    border-color: #1C983E;
}

.jnrd-nav-link:hover {
    background-color: #e9ecef;
    color: #1C983E;
}

/* 右侧内容面板 */
.jnrd-content-panel {
    flex: 1;
    background-color: white;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.jnrd-content-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* 右侧认定依据样式 */
.jnrd-occupation-basis {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.jnrd-occupation-basis p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 工种列表样式 */
.jnrd-work-type-list {
    margin-top: 15px;
}

.jnrd-work-type-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #fdfdfd;
}

.jnrd-work-type-item p {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.jnrd-work-type-item a {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 12px;
    background-color: #1C983E;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

.jnrd-work-type-item a:hover {
    background-color: #157a30;
}

/* 响应式适配 - 移动端 */
@media (max-width: 768px) {
    .jnrd-content-area {
        flex-direction: column;
    }

    .jnrd-sidebar {
        width: 100%;
    }

    .jnrd-content-panel {
        padding: 20px;
    }

    .jnrd-content-title {
        font-size: 18px;
    }

    .jnrd-work-type-item {
        padding: 12px;
    }

    .jnrd-work-type-item a {
        margin-bottom: 8px;
    }
}