 /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            
            color: #333;
            background-color: #ffffff;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 理念模块样式 */
        .philosophy {
            padding: 20px 0;
            background-color: #ffffff;
            position: relative;
        }
        
        .philosophy-title {
            font-size: 2.2rem;
            color: #bd3827;
            margin-bottom: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            position: relative;
            display: block;
            text-align: center;
            line-height: 1.3;
        }
        
        .philosophy-title span {
            display: block;
        }
        
        .philosophy-divider {
            width: 50px;
            height: 2px;
            background-color: #c9a66b;
            margin: 15px auto 25px;
        }
        
        .philosophy-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .philosophy-text {
            font-size: 1.8rem;
            color: #000;
            line-height: 1.8;
            letter-spacing: 0.5px;
            padding: 0 20px;
            font-weight: 600;
        }
        
        /* 装饰符号样式 */
        .decor-mark {
            color: #d1d1d1;
            font-size: 4rem;
            opacity: 0.8;
            line-height: 1;
            margin: 0 25px;
            font-weight: normal;
        }
        
        /* 图片展示模块样式 */
        .image-gallery {
            padding: 40px 0 50px;
            background-color: #ffffff;
        }
        
        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
        }
        
        .gallery-item {
            flex: 1;
            min-width: 200px;
            max-width: 260px;
            text-align: center;
            padding: 10px;
            position: relative;
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-8px);
        }
        
        .gallery-img-container {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 25px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            border: 5px solid #f9f6f2;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.08);
        }
        
        .gallery-text {
            padding: 0 5px;
        }
        
        .gallery-text h3 {
            font-family: "SimHei", "黑体", sans-serif;
            font-size: 1.2rem;
            color: #bd3827;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .gallery-text .main-desc {
            font-size: 0.8rem;
            color: #3a322d;
            font-weight: 500;
            margin-bottom: 6px;
            line-height: 1.5;
        }
        
        .gallery-text .sub-desc {
            font-size: 0.85rem;
            color: #7a726b;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.5;
            font-family: 'Segoe UI', sans-serif;
        }
        
        .decor-element {
            width: 25px;
            height: 1px;
            background-color: #c9a66b;
            margin: 15px auto 0;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .philosophy {
                padding: 40px 0;
            }
            
            .philosophy-title {
                font-size: 1.9rem;
            }
            
            .decor-mark {
                font-size: 1.8rem;
                margin: 10px 15px;
            }
            
            .philosophy-text {
                font-size: 1.1rem;
            }
            
            .image-gallery {
                padding: 30px 0 40px;
            }
            
            .gallery-container {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .philosophy-title {
                font-size: 1.6rem;
            }
            
            .philosophy-content {
                flex-direction: column;
            }
            
            .decor-mark {
                font-size: 1.5rem;
                margin: 5px 0;
            }
            
            .gallery-img-container {
                width: 180px;
                height: 180px;
            }
        }