/* hyzs.css - 会员展示专属样式 */

.hyzs-breadcrumb-nav {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hyzs-breadcrumb-nav a {
    color: #1C983E;
    text-decoration: none;
}

.hyzs-breadcrumb-nav a:hover {
    text-decoration: underline;
}

.hyzs-content-area {
    display: flex;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.hyzs-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;
}

.hyzs-nav-title {
    font-size: 16px;
    font-weight: bold;
    color: #1C983E;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1C983E;
    text-align: center;
}

.hyzs-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hyzs-nav-item {
    margin: 0;
}

.hyzs-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%;
}

.hyzs-nav-link.active {
    background-color: #1C983E;
    color: white;
    border-color: #1C983E;
    text-decoration: none !important;
}

.hyzs-nav-link:hover {
    background-color: #e9ecef;
    color: #1C983E;
    text-decoration: none !important;
}

.hyzs-content-panel {
    flex: 1;
    background-color: white;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.hyzs-content-title {
    font-size: 22px;
    font-weight: bold;
    color: #1C983E;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1C983E;
}

.hyzs-content-section {
    display: none;
}

.hyzs-content-section.active {
    display: block;
}

/* 单位列表 */
.hyzs-unit-list {
    margin-top: 15px;
}

.hyzs-unit-row {
    margin-bottom: 12px;
    clear: both;
}

.hyzs-unit-item {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hyzs-unit-item {
        width: 100% !important;
        padding-right: 0;
    }

    .hyzs-content-area {
        flex-direction: column;
    }

    .hyzs-sidebar {
        width: 100%;
    }

    .hyzs-content-panel {
        padding: 20px;
    }

    .hyzs-content-title {
        font-size: 18px;
    }
}