 
        
        /* 页面标题区域 - 屏风艺术主题 */
        .page-hero {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.85), rgba(146, 64, 14, 0.8)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%);
            background-size: 80px 80px;
        }
        
        @media (max-width: 992px) {
            .page-hero {
                padding: 60px 0;
            }
        }
        
        .page-hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .page-hero-title {
                font-size: 2.2rem;
            }
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            position: relative;
            z-index: 1;
        }
        
        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }
        
        /* 屏风隔断特色介绍部分 */
        .screen-intro {
            padding: 5rem 0;
            background-color: #F9FAFB;
            position: relative;
        }
        
        .screen-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--artistic-pink), transparent);
        }
        
        .screen-card {
            border-radius: 12px;
            border: 1px solid rgba(236, 72, 153, 0.1);
            padding: 2rem;
            height: 100%;
            background: white;
            box-shadow: 0 8px 25px rgba(236, 72, 153, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .screen-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(236, 72, 153, 0.12);
        }
        
        .screen-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(146, 64, 14, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--artistic-pink);
            font-size: 2rem;
            border: 1px solid rgba(236, 72, 153, 0.2);
        }
        
        /* 屏风类型展示 */
        .screen-type-section {
            padding: 5rem 0;
        }
        
        .screen-type-card {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            height: 350px;
            margin-bottom: 2rem;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .screen-type-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .screen-type-card:hover .screen-type-img {
            transform: scale(1.05);
        }
        
        .screen-type-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 1.5rem;
        }
        
        .screen-type-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--artistic-pink);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* 设计风格 */
        .design-styles {
            background-color: white;
            padding: 5rem 0;
        }
        
        .style-card {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            height: 300px;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .style-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .style-card:hover .style-img {
            transform: scale(1.05);
        }
        
        .style-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 1.5rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s;
        }
        
        .style-card:hover .style-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* 定制流程 */
        .customization-process {
            padding: 5rem 0;
            background-color: #F9FAFB;
        }
        
        .process-step {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 2.5rem;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--artistic-pink);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        /* 材料选择 */
        .material-choices {
            padding: 5rem 0;
        }
        
        .material-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border-left: 4px solid var(--cultural-brown);
            transition: transform 0.3s;
        }
        
        .material-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .material-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: rgba(146, 64, 14, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: var(--cultural-brown);
            font-size: 1.5rem;
        }
        
        /* 常见问题 */
        .faq-section {
            padding: 5rem 0;
        }
        
        .faq-item {
            border-bottom: 1px solid #E5E7EB;
            padding: 1.5rem 0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            font-weight: 600;
            color: #1E3A8A;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            margin-top: 1rem;
            color: var(--dark-gray);
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-question .bi-chevron-down {
            transform: rotate(180deg);
        }
        
        /* 服务咨询CTA */
        .service-cta {
            background: linear-gradient(135deg, var(--artistic-pink), var(--cultural-brown));
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .service-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-40px, -40px) rotate(360deg); }
        }
        
        .service-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        /* 按钮样式 */
        .btn-primary {
            background-color: var(--artistic-pink);
            border-color: var(--artistic-pink);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
        }
        
        .btn-primary:hover {
            background-color: #db2777;
            border-color: #db2777;
        }
        
        .btn-outline-light {
            border-radius: 8px;
            padding: 0.75rem 2rem;
            font-weight: 500;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        .btn-outline-light:hover {
            border-color: white;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 艺术效果按钮 */
        .btn-artistic {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-artistic:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        

       
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }
        
        /* SEO优化样式 - 隐藏但屏幕阅读器可访问 */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* 艺术标签 */
        .artistic-badge {
            background: linear-gradient(45deg, var(--artistic-pink), #F472B6);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-left: 0.5rem;
        }