
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
        }
        
        :root {
            --primary: #0a3d62;
            --secondary: #1e5799;
            --accent: #3498db;
            --light: #60a3bc;
            --text: #333;
            --light-text: #f0f8ff;
            --gray: #f5f5f5;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --error: #e74c3c;
            --success: #2ecc71;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.6;
        }
        
        /* 导航栏样式 */
        .header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: var(--white);
            font-size: 30px;
			font-weight: 700;
			letter-spacing: 2px;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            position: relative;
            padding: 10px 15px;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            box-shadow: var(--shadow);
            border-radius: 4px;
            min-width: 180px;
            display: none;
            z-index: 1;
        }
        
        .dropdown li {
            padding: 0;
        }
        
        .dropdown a {
            color: var(--text);
            display: block;
            padding: 10px 20px;
        }
        
        .dropdown a:hover {
            background-color: var(--gray);
            color: var(--accent);
        }
        
        .nav-links li:hover .dropdown {
            display: block;
        }
        
        .btn {
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background-color: var(--white);
            padding: 15px 0;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        
        .breadcrumb-content {
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-item {
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb-item a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .breadcrumb-item::after {
            content: '>';
            margin: 0 10px;
            color: #999;
        }
        
        .breadcrumb-item:last-child::after {
            content: none;
        }
        
        /* 主体内容区域 */
        .content-section {
            padding: 50px 0;
        }
        
        .content-wrapper {
            display: flex;
            gap: 30px;
        }
        
        /* 左侧菜单 */
        .sidebar {
            flex: 0 0 250px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            /*padding: 20px 0;*/
        }
        
        .sidebar-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            padding: 10px 20px;
            border-bottom: 2px solid var(--accent);
            /*margin-bottom: 15px;*/
        }
        
        .sidebar-menu {
            list-style: none;
        }
        
        .sidebar-menu li {
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-menu li:last-child {
            border-bottom: none;
        }
        
        .sidebar-menu a {
            display: block;
            padding: 12px 20px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .sidebar-menu a:hover {
            color: var(--accent);
            background-color: rgba(52, 152, 219, 0.05);
        }
        
        .sidebar-menu a.active {
            color: var(--accent);
            font-weight: 600;
            background-color: rgba(52, 152, 219, 0.1);
        }
        
        .sidebar-menu a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--accent);
        }
        
        /* 列表页样式 */
        .list-container {
            flex: 1;
        }

	.list-container .pagination_box {
 		 width: 100%;
  		text-align: center;
		margin-top: 5px;
	}
	.list-container .pagination_box ul {
  		display: inline-block;
	}
	.list-container .pagination_box ul li {
  		display: inline-block;
  		font-size: 14px;
  		color: #000 !important;
  		margin-right: 5px;
  		margin-bottom: 5px;
	}
	.list-container .pagination_box ul li a {
  		display: inline-block;
  		height: 40px;
  		line-height: 40px;
  		padding: 0 15px;
  		border: solid 1px #e2e2e2;
  		color: #000 !important;
	}
	.list-container .pagination_box ul li a:hover {
  		border: solid 1px #226ebc;
  		background-color: #226ebc;
  		color: #fff !important;
	}
	.list-container .pagination_box ul li span {
  		position: relative;
  		padding: 0 15px;
	}
	.list-container .pagination_box ul li span:nth-child(1)::after {
  		content: '';
  		width: 1px;
  		height: 16px;
  		background-color: #e2e2e2;
  		position: absolute;
  		top: 50%;
  		-webkit-transform: translateY(-50%);
  		-ms-transform: translateY(-50%);
  		transform: translateY(-50%);
  		right: 0;
	}
	.list-container .pagination_box ul li input {
  		position: relative;
  		top: -2px;
  		width: 38px;
  		height: 38px;
  		border: solid 1px #d6d8da;
  		text-align: center;
	}
	.list-container .pagination_box ul li #toPageBtn {
  		padding: 0 10px;
	}
	.list-container .pagination_box ul li .disabled {
  		cursor: not-allowed;
	}
	.list-container .pagination_box ul li .current {
  		border: solid 1px #226ebc;
  		background-color: #226ebc;
  		color: #fff !important;
  		cursor: default;
	}
        
        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .section-title {
            color: var(--primary);
            font-size: 18px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .list-controls {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box input {
            padding: 8px 15px 8px 35px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 200px;
        }
        
        .search-box i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

	/*search*/
	.search-list a{color:#0063cf;text-decoration: none;}
	.search-list li{display: block;padding: 15px 0;border-bottom: 1px solid #eee;overflow: hidden;}
	.search-list .s-text{color:#333;line-height: 20px;}
	.search_title{margin-left:0; color:#000;}
	.search_title ins{padding-left:20px; text-decoration:none;}
	.c03{color: #C03;}
	.search-list .loading a{color:#999;}
	.search-list .loading a:hover{color:#0063cf;}
        .time {display: block;color: #ccc;}
	/*search page*/
	/*分页代码*/


.kkpager{
	display: flex;
	text-align: center;
	clear:both;
	height:30px;
	line-height:30px;
	margin-top:20px;
	color:#999999;
	font-size:14px;
	margin-left:-3px;
	padding-bottom:2px;

}
.kkpager a{
	padding:4px 8px;
	margin:10px 3px;
	font-size:12px;
	border:1px solid #DFDFDF;
	background-color:#FFF;
	color:#9d9d9d;
	text-decoration:none;
}
.kkpager span{
	font-size:14px;
}
.kkpager span.disabled{
	padding:4px 8px;
	margin:10px 3px;
	font-size:12px;
	border:1px solid #DFDFDF;
	background-color:#FFF;
	color:#DFDFDF;
}
.kkpager span.curr{
	padding:4px 8px;
	margin:10px 3px;
	font-size:12px;
	border:1px solid #66a1e2;
	background-color:#0063cf;
	color:#FFF;
}
.kkpager a:hover{
	background-color:#e5effa;
	border:1px solid #66a1e2;
}
.kkpager span.normalsize{
	font-size:12px;
}
#kkpager_gopage_wrap{
	display:inline-block;
	width:44px;
	height:18px;
	border:1px solid #DFDFDF;
	margin:0px 1px;
	padding:0px;
	position:relative;
	left:0px;
	top:5px;
}
#kkpager_btn_go {
	width:44px;
	height:20px;
	line-height:20px;
	padding:0px;
	font-family:arial,宋体,sans-serif;
	text-align:center;
	border:0px;
	background-color:#0063DC;
	color:#FFF;
	position:absolute;
	left:0px;
	top:-1px;
	display:none;
}
#kkpager_btn_go_input{
	width:42px;
	height:16px;
	text-align:center;
	border:0px;
	position:absolute;
	left:0px;
	top:0px;
	outline:none;
}

        .news-title{line-height:25px;color:#999;margin-left:-5px;border-bottom:1px solid #eee;padding-bottom:5px;}
	.news-title a{padding:0 8px 0 5px;}
	.news-title b{color:#0063cf;} 
        .news-list {
            list-style: none;
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .news-item {
            display: flex;
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item:hover {
            background-color: #f9f9f9;
        }
        
        .news-date {
            flex: 0 0 120px;
            color: var(--accent);
            font-weight: 600;
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-title {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary);
            text-decoration: none;
            display: block;
        }
        
        .news-title:hover {
            color: var(--accent);
        }
        
        .news-excerpt {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .news-meta {
            display: flex;
            gap: 15px;
            color: #999;
            font-size: 13px;
        }
        
        .news-meta i {
            margin-right: 5px;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 5px;
        }
        
        .page-item {
            display: inline-block;
        }
        
        .page-link {
            display: block;
            padding: 8px 15px;
            border: 1px solid #ddd;
            text-decoration: none;
            color: #666;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .page-link:hover, .page-link.active {
            background-color: var(--accent);
            color: var(--white);
            border-color: var(--accent);
        }
        
        /* 内容页样式 */
        .article-container {
            flex: 1;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 30px;
        }
        
        .article-header {
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .article-title {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .article-meta {
            display: flex;
            gap: 20px;
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .article-meta i {
            margin-right: 5px;
            color: var(--accent);
        }
        
        .article-content {
            line-height: 1.8;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .article-content h2, .article-content h3 {
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .article-content blockquote {
            background-color: #f9f9f9;
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            color: #555;
        }
        
        .article-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .tags {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .tag {
            background-color: rgba(52, 152, 219, 0.1);
            color: var(--accent);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            text-decoration: none;
        }
        
        .tag:hover {
            background-color: var(--accent);
            color: white;
        }
        
        .navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text);
            padding: 10px 15px;
            border: 1px solid #eee;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            border-color: var(--accent);
            background-color: rgba(52, 152, 219, 0.05);
        }
        
        .nav-link i {
            margin: 0 5px;
        }
        
        /* 页脚 */
        .footer {
            background-color: #082032;
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 20px;
            position: relative;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                flex: 0 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .list-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .news-item {
                flex-direction: column;
                gap: 10px;
            }
            
            .news-date {
                flex: 0 0 auto;
            }
            
            .navigation {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 24px;
            }
            
            .article-title {
                font-size: 24px;
            }
        }
