 /* 全局重置和基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0d47a1;
            --secondary-color: #1976d2;
            --accent-color: #ff6b35;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #fff;
            --border-color: #e0e0e0;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: #f5f7fa;
        }

        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: color 0.3s;
        }

        a:hover {
            color: var(--primary-color);
        }

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

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--light-text);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: var(--secondary-color);
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            color: var(--primary-color);
        }

        /* 头部样式 */
        header {
            background-color: var(--light-text);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 8px 0;
            font-size: 14px;
            display: none; /* 默认隐藏顶部联系栏，桌面端再显示 */
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }

        .language-switcher a {
            color: var(--light-text);
            margin-left: 10px;
        }

        .language-switcher a:hover {
            text-decoration: underline;
        }

        .main-header {
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .tagline {
            font-size: 14px;
            color: var(--secondary-color);
            margin-top: 5px;
        }

        /* 导航菜单 */
        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin: 0 10px;
        }

        nav a {
            color: var(--dark-text);
            font-weight: 600;
            padding: 10px 15px;
            display: block;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        nav a:hover,
        nav a.active {
            background-color: var(--light-bg);
            color: var(--primary-color);
        }

        /* 移动菜单按钮 */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* 首页横幅 */
        .hero-banner {
            background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.9));
            color: var(--light-text);
            padding: 60px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        /* 主要内容区域 */
        main {
            padding: 30px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        /* 资讯板块 */
        .news-section {
            margin-bottom: 30px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .news-card {
            background: var(--light-text);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-content {
            padding: 20px;
        }

        .news-date {
            color: var(--accent-color);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .news-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .news-excerpt {
            color: #666;
            margin-bottom: 15px;
        }

        /* 律师介绍 */
        .lawyer-profile {
            background: var(--light-text);
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .lawyer-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .lawyer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #999;
            font-size: 12px;
        }

        .lawyer-info h2 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .lawyer-title {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .contact-methods {
            display: flex;
            margin-top: 15px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            margin-right: 20px;
            color: var(--dark-text);
        }

        .contact-method i {
            margin-right: 8px;
            color: var(--primary-color);
        }

        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-widget {
            background: var(--light-text);
            padding: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .widget-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
        }

        .quick-links ul,
        .hot-news-list ul {
            list-style: none;
        }

        .quick-links li,
        .hot-news-list li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }

        .quick-links li:before,
        .hot-news-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        .hot-news-list a {
            color: var(--dark-text);
        }

        .hot-news-list a:hover {
            color: var(--primary-color);
        }

        /* 页脚 */
        footer {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 30px 0 15px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 20px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-column h3:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--light-text);
            opacity: 0.9;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-color);
        }

        .contact-details p {
            display: flex;
            margin-bottom: 8px;
            align-items: flex-start;
        }

        .contact-details i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
            opacity: 0.8;
        }

        /* 响应式设计 */
        @media (min-width: 992px) {
            .top-bar {
                display: block;
            }
        }

        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .sidebar-widget {
                flex: 1 1 45%;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--light-text);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }

            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            nav ul {
                flex-direction: column;
            }

            nav li {
                margin: 0;
            }

            nav a {
                padding: 12px 20px;
                border-bottom: 1px solid var(--border-color);
            }

            .hero-title {
                font-size: 26px;
            }

            .sidebar-widget {
                flex: 1 1 100%;
            }

            /* 移动端隐藏非核心模块 */
            .quick-links,
            .hot-news-list {
                display: none;
            }

            .widget-title:after {
                content: "（移动端已隐藏）";
                font-size: 12px;
                color: #999;
                display: block;
                margin-top: 5px;
            }
        }

        @media (max-width: 576px) {
            .top-bar-content {
                flex-direction: column;
                text-align: center;
            }

            .contact-info {
                margin-bottom: 8px;
            }

            .contact-info span {
                margin: 0 8px;
            }

            .hero-title {
                font-size: 22px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .lawyer-header {
                flex-direction: column;
                text-align: center;
            }

            .lawyer-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .contact-methods {
                justify-content: center;
                flex-wrap: wrap;
            }

            .contact-method {
                margin: 5px 10px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 20px;
            }
        }