
        /* 服务介绍区域 */
        .hero-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px 20px 20px;
        }

        .overlay-text {
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .service-highlight-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .service-title {
            margin-bottom: 25px;
            color: var(--primary-color, #0d6efd);
            font-weight: 600;
        }

        .service-points {
            display: grid;
            gap: 15px;
        }

        .service-point {
            display: flex;
            align-items: center;
        }

        .service-point i {
            color: var(--primary-color, #0d6efd);
            font-size: 1.2rem;
            margin-right: 15px;
        }

        .service-point span {
            font-size: 1.1rem;
        }

        /* 技艺分类 */
        .crafts-diagram {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .craft-category-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .craft-category-row:last-child {
            margin-bottom: 0;
        }

        .craft-category {
            flex: 0 0 30%;
            text-align: center;
        }

        .craft-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 4px solid var(--primary-color, #0d6efd);
        }

        .craft-category h4 {
            margin-bottom: 15px;
            color: var(--primary-color, #0d6efd);
        }

        .craft-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .craft-list li {
            margin-bottom: 8px;
        }

        /* 技艺传承流程图 */
        .craft-process {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

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

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
        }

        .process-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color, #0d6efd);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .process-step h5 {
            margin-bottom: 8px;
            color: var(--primary-color, #0d6efd);
        }

        .process-step p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .process-arrow {
            font-size: 1.5rem;
            color: var(--primary-color, #0d6efd);
        }

        /* 技艺传承成果 */
        .chart-container {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }

        .achievement-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            height: 100%;
        }

        .stat-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color, #0d6efd);
            margin-bottom: 10px;
        }

        .stat-title {
            font-size: 1rem;
        }

        /* 案例展示 */
        .case-study-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }

        .case-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .case-study-card h4 {
            padding: 15px 15px 10px;
            margin: 0;
            color: var(--primary-color, #0d6efd);
        }

        .case-location {
            padding: 0 15px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: #666;
        }

        .case-location i {
            margin-right: 5px;
        }

        .case-tag-container {
            padding: 0 15px 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .case-tag {
            padding: 5px 10px;
            background-color: rgba(var(--primary-rgb, 13, 110, 253), 0.1);
            color: var(--primary-color, #0d6efd);
            border-radius: 4px;
            font-size: 0.8rem;
        }

        /* 相关服务 */
        .related-service-card {
            display: block;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

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

        .related-service-img {
            overflow: hidden;
            height: 180px;
        }

        .related-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .related-service-card:hover .related-service-img img {
            transform: scale(1.05);
        }

        .related-service-content {
            padding: 20px;
        }

        .related-service-content h4 {
            margin-bottom: 10px;
            color: var(--primary-color, #0d6efd);
        }

        .related-service-content p {
            margin-bottom: 15px;
            color: #666;
        }

        .read-more {
            display: flex;
            align-items: center;
            color: var(--primary-color, #0d6efd);
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .related-service-card:hover .read-more i {
            transform: translateX(5px);
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .process-flow {
                flex-direction: column;
                align-items: flex-start;
            }

            .process-step {
                flex-direction: row;
                text-align: left;
                margin-bottom: 20px;
                width: 100%;
            }

            .process-icon {
                margin-right: 15px;
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .process-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
                align-self: center;
            }

            .achievement-stats {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .craft-category-row {
                flex-direction: column;
                align-items: center;
            }

            .craft-category {
                margin-bottom: 30px;
                width: 100%;
                max-width: 300px;
            }

            .craft-category-row:last-child .craft-category:last-child {
                margin-bottom: 0;
            }

            .achievement-stats {
                grid-template-columns: 1fr;
            }
        }
    

