 /* 全局样式 */
        body {
            background-color: #f5f5f5;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            max-width: 1200px;
            margin: 15px auto;
            padding: 0 20px;
            color: #999;
            font-size: 14px;
        }
        .breadcrumb a {
            color: #4CAF50;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #333;
        }
        
        /* 详情页主容器 */
        .notice-detail {
            max-width: 1200px;
            margin: 20px auto 40px;
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        /* 头部区域 */
        .notice-header {
            padding: 40px 50px 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
        }
        .notice-header h1 {
            font-size: 28px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .notice-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            font-size: 15px;
            opacity: 0.9;
        }
        .notice-meta-item {
            display: flex;
            align-items: center;
        }
        .notice-meta-item i {
            margin-right: 8px;
            font-style: normal;
            font-size: 18px;
        }
        
        /* 内容区域 */
        .notice-content-wrapper {
            padding: 40px 50px;
        }
        
        /* 摘要区域 */
        .notice-summary {
            background-color: #f8f9fa;
            border-left: 4px solid #4CAF50;
            padding: 20px 25px;
            margin-bottom: 30px;
            border-radius: 0 8px 8px 0;
            font-size: 15px;
            line-height: 1.8;
            color: #666;
        }
        .notice-summary strong {
            color: #333;
            font-size: 16px;
            display: block;
            margin-bottom: 10px;
        }
        
        /* 正文区域 */
        .notice-content {
            line-height: 1.9;
            font-size: 16px;
            color: #333;
            overflow-x: auto;
        }
        .notice-content h2, 
        .notice-content h3 {
            margin: 25px 0 15px;
            color: #222;
        }
        .notice-content p {
            margin-bottom: 15px;
        }
        .notice-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .notice-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border: 1px solid #e0e0e0;
        }
        .notice-content th {
            background-color: #f5f5f5;
            font-weight: 600;
            color: #333;
            border: 1px solid #ddd;
            padding: 12px;
            text-align: center;
        }
        .notice-content td {
            border: 1px solid #ddd;
            padding: 10px 12px;
        }
        .notice-content ul, 
        .notice-content ol {
            margin: 15px 0 15px 30px;
        }
        .notice-content li {
            margin-bottom: 8px;
        }
        
        /* 附件区域 */
        .notice-attachment {
            margin: 40px 0 20px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px dashed #4CAF50;
        }
        .notice-attachment h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .notice-attachment h3 i {
            font-size: 22px;
            margin-right: 10px;
            color: #4CAF50;
        }
        .attachment-list {
            list-style: none;
            padding: 0;
        }
        .attachment-list li {
            margin-bottom: 12px;
            padding: 10px 15px;
            background-color: #fff;
            border-radius: 6px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        .attachment-list li:hover {
            border-color: #4CAF50;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
            transform: translateX(5px);
        }
        .attachment-list a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .attachment-icon {
            font-size: 24px;
            color: #4CAF50;
        }
        .attachment-info {
            flex: 1;
        }
        .attachment-name {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        .attachment-meta {
            font-size: 12px;
            color: #999;
        }
        .download-icon {
            color: #4CAF50;
            font-size: 18px;
        }
        
        /* 上一篇/下一篇导航 */
        .notice-navigation {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .nav-item {
            flex: 1;
            max-width: 45%;
        }
        .nav-item a {
            display: block;
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }
        .nav-item a:hover {
            background-color: #4CAF50;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        .nav-label {
            font-size: 12px;
            opacity: 0.8;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .nav-title {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .nav-next {
            text-align: right;
        }
        .nav-next .nav-label {
            justify-content: flex-end;
        }
        
        /* 底部操作栏 */
        .notice-footer {
            padding: 30px 50px 40px;
            background-color: #fafafa;
            border-top: 1px solid #eee;
            text-align: center;
        }
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            gap: 8px;
        }
        .btn-primary {
            background-color: #4CAF50;
            color: #fff;
        }
        .btn-primary:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        .btn-outline {
            background-color: transparent;
            color: #4CAF50;
            border: 2px solid #4CAF50;
        }
        .btn-outline:hover {
            background-color: #4CAF50;
            color: #fff;
        }
        .btn-print {
            background-color: #6c757d;
            color: #fff;
        }
        .btn-print:hover {
            background-color: #5a6268;
        }
        .copyright-info {
            color: #999;
            font-size: 13px;
            margin-top: 20px;
        }
        
        /* 加载动画 */
        .loading {
            text-align: center;
            padding: 50px;
            color: #999;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .notice-header {
                padding: 30px 20px;
            }
            .notice-header h1 {
                font-size: 22px;
            }
            .notice-content-wrapper {
                padding: 20px;
            }
            .notice-meta {
                gap: 15px;
            }
            .notice-navigation {
                flex-direction: column;
            }
            .nav-item {
                max-width: 100%;
            }
            .action-buttons {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }