        :root {
            --primary-dark: #0f3057;
            --primary-main: #00587a;
            --primary-light: #008891;
            --accent: #00bcd4;
            --accent-light: #26c6da;
            --neutral-dark: #1a237e;
            --neutral-main: #283593;
            --neutral-light: #5c6bc0;
            --text-primary: #212121;
            --text-secondary: #757575;
            --text-light: #ffffff;
            --background: #f8f9fa;
            --surface: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background-color: var(--background);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 12px;
        }
        
        nav ul li a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
            color: var(--text-primary);
            text-decoration: none;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            transition: var(--transition);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--primary-main);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-dark);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(90deg, rgba(15, 48, 87, 0.85) 0%, rgba(0, 88, 122, 0.75) 100%), url('/template/jia/images/bangongshi.jpg') center/cover no-repeat;
            padding: 150px 0 100px;
            color: var(--text-light);
            text-align: center;
            margin-top: 60px;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .breadcrumb a {
            color: var(--text-light);
            opacity: 0.8;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .breadcrumb span {
            margin: 0 10px;
            opacity: 0.8;
        }
        
        /* Article Meta */
        .article-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 8px;
        }
        
        /* Article Content */
        .article-content-section {
            padding: 80px 0;
        }
        
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        
        .main-article {
            background: var(--surface);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .article-tag {
            padding: 5px 12px;
            background: rgba(0, 188, 212, 0.1);
            color: var(--accent);
            border-radius: 20px;
            font-size: 12px;
            text-decoration: none;
        }
        
        .article-tag:hover {
            background: var(--accent);
            color: white;
        }
        
        .article-body {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-primary);
        }
        
        .article-body h2 {
            font-size: 24px;
            margin: 40px 0 20px;
            color: var(--primary-dark);
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .article-body h3 {
            font-size: 20px;
            margin: 30px 0 15px;
            color: var(--primary-main);
        }
        
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-body blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: var(--text-secondary);
        }
        
        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-body li {
            margin-bottom: 10px;
        }
        
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .article-body th, .article-body td {
            padding: 12px 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .article-body th {
            background: rgba(0, 136, 145, 0.05);
            font-weight: 600;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: var(--shadow-md);
        }
        
        /* Article Navigation */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .nav-btn {
            display: flex;
            align-items: center;

            padding: 10px 20px;
            background: var(--surface);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-primary);
            transition: var(--transition);
        }
        
        .nav-btn:hover {
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow-md);
        }
        
        .nav-btn i {
            margin: 0 10px;
        }
        
        /* Author Info */
        .author-info {
            display: flex;
            align-items: center;
            margin: 40px 0;
            padding: 25px;
            background: rgba(0, 136, 145, 0.05);
            border-radius: 12px;
        }
        
        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 20px;
            background: linear-gradient(to right, var(--primary-main), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
        }
        
        .author-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }
        
        .author-details p {
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .author-social {
            display: flex;
            gap: 10px;
        }
        
        .author-social a {
            color: var(--accent);
            text-decoration: none;
            font-size: 14px;
        }
        
        /* Related Articles */
        .related-articles {
            margin: 60px 0;
        }
        
        .section-title {
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .article-image {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
		        .article-image img{
				width: 100%;
            height: 100%;
 
        }
        
        .article-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-content h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary-dark);
            line-height: 1.4;
        }
        
        .article-content p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .article-meta-small {
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
            font-size: 12px;
        }
        
        .article-meta-small span {
            display: flex;
            align-items: center;
        }
        
        .article-meta-small i {
            margin-right: 5px;
        }
        
        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        
        .sidebar-widget {
            background: var(--surface);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
        }
        
        .sidebar-widget h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 10px;
        }
        
        .sidebar-widget h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .popular-articles {
            list-style: none;
        }
        
        .popular-articles li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .popular-articles li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-articles a {
            display: block;
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            line-height: 1.5;
            font-size: 14px;
        }
        
        .popular-articles a:hover {
            color: var(--accent);
        }
        
        .popular-articles span {
            display: block;
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 5px;
        }
        
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            padding: 5px 12px;
            background: rgba(0, 188, 212, 0.1);
            color: var(--accent);
            border-radius: 20px;
            font-size: 12px;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .tag:hover {
            background: var(--accent);
            color: white;
        }
        
        /* Table of Contents */
        .toc {
            position: sticky;
            top: 100px;
        }
        
        .toc ul {
            list-style: none;
        }
        
        .toc li {
            margin-bottom: 10px;
        }
        
        .toc a {
            display: block;
            padding: 8px 15px;
            color: var(--text-primary);
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: var(--transition);
            font-size: 14px;
        }
        
        .toc a:hover, .toc a.active {
            border-left-color: var(--accent);
            background: rgba(0, 188, 212, 0.05);
            color: var(--accent);
        }
        
        /* Share Buttons */
        .share-buttons {
            display: flex;
            gap: 10px;
            margin: 30px 0;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
        }
        
        .share-wechat {
            background: #2aae67;
        }
        
        .share-weibo {
            background: #e71f19;
        }
        
        .share-qq {
            background: #2b85e4;
        }
        
        .share-link {
            background: var(--text-secondary);
        }
        
        /* Comment Section */
        .comment-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .comment-form {
            background: var(--surface);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 40px;
        }
        
        .comment-form h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-primary);
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 6px;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to bottom, var(--primary-dark), var(--neutral-dark));
            color: var(--text-light);
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/bangongshi9.jpg') center/cover no-repeat;
            opacity: 0.05;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--text-light);
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            transition: var(--transition);
            opacity: 0.8;
            color: var(--text-light);
            text-decoration: none;
        }
        
        .footer-column ul li a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-column p {
            opacity: 0.8;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: var(--text-light);
        }
        
        .footer-column i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .qrcode {
            margin-top: 20px;
            text-align: center;
        }
        
        .qrcode img {
            width: 150px;
            height: 150px;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
        }
        
        .qrcode p {
            margin-top: 10px;
            font-size: 14px;
        }
        
        .friend-links {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }
        
        .friend-links a {
            margin: 0 10px;
            opacity: 0.7;
            transition: var(--transition);
            color: var(--text-light);
            text-decoration: none;
        }
        
        .friend-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 14px;
            position: relative;
            z-index: 1;
            color: var(--text-light);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .article-container {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            
            .article-body {
                font-size: 15px;
            }
            
            .article-body h2 {
                font-size: 22px;
            }
            
            .article-body h3 {
                font-size: 18px;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .author-info {
                flex-direction: column;
                text-align: center;
            }
            
            .author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .main-article {
                padding: 25px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .share-buttons {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
        }