        :root {
            --theme-color: #00BEBD; 
            --text-dark: #1f2937;
            --text-light: #4b5563;
            --bg-color: #f3f4f6;
            --border-color: #e5e7eb;
            --container-width: 1184px; 
            --secondary-color: #dc2626; /* 红色用于强调警示与效率 */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-color);
            overflow-x: hidden; 
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 15px;
        }

         /* 顶部导航 Header */
        .header {
            background-color: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            padding: 10px 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary-color);
            margin-left: 5px;
        }

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; }
#nav-menu ul { display: flex; list-style: none; }
#nav-menu ul li a { padding: 0 15px; text-decoration: none; color: #333; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

        .contact-btn {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px 24px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 18px;
        }
        /* 内页 Banner */
        .inner-banner {
            background: linear-gradient(rgba(31, 41, 55, 0.85), rgba(31, 41, 55, 0.85)), url('https://dummyimage.com/1920x300/1f2937/fff&text=Legal+Knowledge') center/cover;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .inner-banner h1 { font-size: 36px; margin-bottom: 10px; }
        .inner-banner p { font-size: 16px; color: #d1d5db; }

        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            font-size: 14px;
            color: #6b7280;
        }
        .breadcrumb a { transition: color 0.2s; }
        .breadcrumb a:hover { color: var(--theme-color); }
        .breadcrumb span { margin: 0 8px; color: #9ca3af; }

        /* 主体布局：左侧文章列表 + 右侧侧边栏 */
        .page-layout {
            display: flex;
            gap: 30px;
            padding-bottom: 60px;
            align-items: flex-start;
        }

        .main-content {
            flex: 1;
            background: #ffffff;
            padding: 30px;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            min-width: 0; 
        }

        .sidebar {
            width: 320px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* 文章列表样式 */
        .article-list { display: flex; flex-direction: column; }

        .article-item {
            display: flex;
            gap: 20px;
            padding: 25px 0;
            border-bottom: 1px dashed var(--border-color);
            transition: all 0.3s;
        }
        .article-item:first-child { padding-top: 0; }
        .article-item:last-child { border-bottom: none; padding-bottom: 0; }

        .article-thumb {
            width: 220px;
            height: 140px;
            background-color: var(--bg-color);
            border-radius: 4px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            overflow: hidden;
            position: relative;
        }
        .article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .article-item:hover .article-thumb img { transform: scale(1.05); }

        .article-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0; 
        }

        .article-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s;
        }
        .article-title:hover { color: var(--theme-color); }

        .article-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 13px;
            color: #9ca3af;
        }
        .article-meta span { display: flex; align-items: center; gap: 5px; }

        /* 分页器 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid var(--border-color);
            background: #fff;
            color: var(--text-dark);
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.2s;
        }
        .pagination a:hover { border-color: var(--theme-color); color: var(--theme-color); }
        .pagination .current { background-color: var(--theme-color); color: #fff; border-color: var(--theme-color); }

        /* 侧边栏 */
        .widget {
            background: #ffffff;
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border-top: 3px solid var(--theme-color);
        }
        .widget-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .hot-list li { margin-bottom: 12px; }
        .hot-list li:last-child { margin-bottom: 0; }
        .hot-list a {
            font-size: 14px;
            color: var(--text-dark);
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .hot-list a:hover { color: var(--theme-color); }
        .hot-list a::before { content: "■"; color: var(--theme-color); margin-right: 8px; font-size: 10px; vertical-align: middle; }
        
        .contact-box { text-align: center; padding: 10px 0; }
        .contact-box .tel { font-size: 24px; font-weight: bold; color: var(--theme-color); margin: 10px 0; }

        /* 页脚 Footer */
        .footer {
            background-color: #1f2937;
            color: #9ca3af;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-title { color: white; font-size: 18px; margin-bottom: 20px; }
        .footer-info p { margin-bottom: 10px; }
        .copyright {
            text-align: center;
            border-top: 1px solid #374151;
            padding-top: 20px;
            font-size: 14px;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .page-layout { flex-direction: column; }
            .sidebar { width: 100%; }
        }

        @media (max-width: 768px) {
            .inner-banner { padding: 40px 0; }
            .inner-banner h1 { font-size: 28px; }
            
            .article-item { flex-direction: column; gap: 15px; padding: 20px 0; }
            /* 移动端文章缩略图放大至全宽或隐藏，这里选择全宽适应 */
            .article-thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
            .article-title { font-size: 16px; }
            .article-meta { flex-wrap: wrap; gap: 15px; }
            
            
        .contact-btn {display:none;}

    .menu-toggle { display: block; }
    #nav-menu { display: none; position: absolute; top: 60px; left: 0; width: 100%; background: #fff; border-bottom: 2px solid #00BEBD; }
    #nav-menu.active { display: block; }
    #nav-menu ul { flex-direction: column; padding: 0; }
    #nav-menu ul li { border-bottom: 1px solid #eee; padding: 15px; text-align: center; }
        
    
            
            
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        }
        
.side-float-nav { position: fixed; right: 10px; bottom: 20%; z-index: 999; }
.float-item { display: block; width: 50px; height: 50px; background: #00BEBD; color: #fff; text-align: center; line-height: 50px; margin-bottom: 10px; border-radius: 50%; text-decoration: none; font-size: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }