        :root {
            --primary-color: #c12c1f;
            --primary-dark: #9e2318;
            --primary-light: #e84c3d;
            --secondary-color: #f5f5f5;
            --text-color: #333;
            --light-text: #777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "SimHei", sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }
        
        nav ul li a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .law-detail-container {
            display: flex;
            gap: 30px;
            margin: 2rem 0;
        }
        
        .law-main-content {
            flex: 3;
            background-color: white;
            border-radius: 6px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .law-sidebar {
            flex: 1;
        }
        
        .law-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .law-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .meta-item i {
            color: var(--primary-color);
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .law-content-nav {
            margin-bottom: 2rem;
            background-color: #f5f5f5;
            padding: 15px;
            border-radius: 4px;
        }
        
        .law-content-nav h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .law-content-nav ul {
            list-style: none;
        }
        
        .law-content-nav li {
            padding: 5px 0;
        }
        
        .law-content-nav a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .law-content-nav a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .law-article {
            margin-bottom: 3rem;
        }
        
        .article-title {
            font-size: 1.3rem;
            margin: 1.5rem 0;
            color: var(--primary-dark);
        }
        
        .article-content {
            line-height: 1.8;
        }
        
        .article-content p {
            margin-bottom: 1rem;
            text-indent: 2em;
        }
        
        .sidebar-card {
            background-color: white;
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .sidebar-title {
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .related-laws li {
            list-style: none;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .related-laws li:last-child {
            border-bottom: none;
        }
        
        .related-laws a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .related-laws a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .download-btn {
            display: block;
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 4px;
            text-decoration: none;
            margin-top: 15px;
            transition: background-color 0.3s;
        }
        
        .download-btn:hover {
            background-color: var(--primary-dark);
        }
        
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .law-detail-container {
                flex-direction: column;
            }
        }