* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
       
        
        /* 页面路径导航 */
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 15px 0;
            margin-bottom: 30px;
        }
        
        .breadcrumb-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            color: #666;
            font-size: 0.95rem;
        }
        
        .breadcrumb-links a {
            color: #2c5aa0;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .breadcrumb-links a:hover {
            opacity: 0.8;
        }
        
        .breadcrumb-links i {
            font-size: 0.8rem;
            margin: 0 5px;
        }
        
        /* 项目标题区 */
        .project-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #3a7bd5 100%);
            color: white;
            padding: 40px 0;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
			padding-left: 12px;/* CG完善的样式 */
        }
        
        .project-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .project-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .project-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 15px;
            border-radius: 30px;
        }
        
        /* 主内容区 */
        .project-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        /* 左侧内容 */
        .project-main {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #2c5aa0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeff5;
        }
        
        .project-description {
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        /* 图片展示 */
        .project-gallery {
            margin-bottom: 30px;
        }
        
        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .image-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .thumbnail {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s, opacity 0.3s;
        }
        
        .thumbnail:hover {
            transform: scale(1.05);
            opacity: 0.9;
        }
        
        /* 项目特色 */
        .project-features {
            margin-bottom: 30px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background-color: #f8fafc;
            border-radius: 8px;
            border-left: 4px solid #2c5aa0;
        }
        
        .feature-item i {
            color: #2c5aa0;
            font-size: 1.2rem;
        }
        
        /* 右侧边栏 */
        .project-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .project-info ul {
            list-style: none;
        }
        
        .project-info li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .project-info li:last-child {
            border-bottom: none;
        }
        
        .info-label {
            font-weight: 600;
            color: #555;
        }
        
        .info-value {
            color: #2c5aa0;
            font-weight: 500;
        }
        
        /* 材料清单 */
        .materials-list {
            list-style: none;
        }
        
        .material-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .material-item:last-child {
            border-bottom: none;
        }
        
        .material-category {
            font-size: 0.9rem;
            color: #777;
            margin-top: 3px;
        }
        
        /* 相关案例 */
        .related-projects {
            margin-bottom: 50px;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .project-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .project-card-content {
            padding: 20px;
        }
        
        .project-card-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #2c5aa0;
        }
        
        .project-card-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .project-card-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.85rem;
        }
        
        /* 页脚 */
       
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .project-content {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .project-title {
                font-size: 2rem;
            }
            
            .image-thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .project-header {
                padding: 30px 0;
            }
            
            .project-meta {
                flex-direction: column;
                align-items: flex-start;
            }
        }