/* 主内容区域 */
        .main {
            width: 100%;
            max-width: 1200px;
            margin: 120px auto 20px;
            padding: 0 15px;
        }
        
        /* 服务卡片样式 */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1a4b8c;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        
        .service-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        
        .service-date {
            font-size: 14px;
            color: #999;
            display: block;
            margin-bottom: 15px;
        }
        
        .service-link {
            display: inline-block;
            padding: 8px 15px;
            background-color: #1a4b8c;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }
        
        .service-link:hover {
            background-color: #0f3a75;
        }
        
        /* 详情 */
        .services-detail {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .detail-header {
            margin-bottom: 30px;
        }
        
        .detail-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1a4b8c;
        }
        
        .detail-meta {
            display: flex;
            color: #888;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .detail-meta span {
            margin-right: 20px;
        }
        
        .detail-summary {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 30px;
            font-size: 15px;
            line-height: 1.7;
        }
        
        .detail-content {
            line-height: 1.8;
            font-size: 16px;
        }
        
        .detail-content p {
            margin-bottom: 20px;
        }
        
        .detail-content h3 {
            margin: 30px 0 15px;
            color: #1a4b8c;
        }
        
        .detail-content img {
            max-width: 100%;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .detail-content ul, .detail-content ol {
            padding-left: 25px;
            margin-bottom: 20px;
        }
        
        .detail-content li {
            margin-bottom: 10px;
        }
        
        .file-attachments {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .attachment-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
        }
        
        .attachment-item i {
            color: #1a4b8c;
            margin-right: 10px;
        }
        
        .attachment-name {
            flex-grow: 1;
            font-size: 14px;
        }
        
        .attachment-size {
            color: #888;
            font-size: 14px;
            margin-right: 10px;
        }
        
        .btn {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: #1a4b8c;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #153a6d;
        }
        
        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }
        .btn-secondary i {
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #5a6268;
        }

        .services-header {
            margin-bottom: 20px;
        }

        .services-title {
            font-size: 24px;
            font-weight: bold;
            color: #1a4b8c;
            margin-bottom: 15px;
        }

        .services-meta {
            display: flex;
            flex-wrap: wrap;
            font-size: 14px;
            color: #888;
            margin-bottom: 10px;
        }

        .services-meta span {
            margin-right: 15px;
        }

        .services-content {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
        }

        .services-content p {
            margin-bottom: 15px;
        }

        .services-content img {
            max-width: 100%;
            border-radius: 4px;
            margin: 15px 0;
        }
        
        .related-services {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .related-services h2 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #1a4b8c;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .related-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .related-service {
            display: flex;
            background-color: #f9f9f9;
            border-radius: 6px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .related-service:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .related-service-image {
            flex: 0 0 100px;
        }
        
        .related-service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-service-content {
            flex: 1;
            padding: 15px;
        }
        
        .related-service-content h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #1a4b8c;
        }
        
        .related-service-content p {
            font-size: 13px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .related-service-link {
            display: inline-block;
            padding: 5px 10px;
            background-color: #1a4b8c;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 12px;
            transition: background-color 0.3s ease;
        }
        
        .related-service-link:hover {
            background-color: #0f3a75;
        }