        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .ip-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px;
        }

        .ip-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 20px;
            backdrop-filter: blur(12px);
        }

        .ip-header h1 {
            font-size: 2rem;
            margin: 15px 0 20px;
            background:#000000;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.8px;
            font-weight: 400;
            position: relative;
        }

        .ip-header h1::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #a1887f, transparent);
        }

        .ip-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 40px auto 0;
            line-height: 1.7;
            color: #6c757d;
            font-weight: 300;
            padding: 0 20px;
        }

        .ip-main-content {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
        }

        .ip-section {
            flex: 1;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 20px;
            padding: 20px 35px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .ip-section:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .ip-section-header {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 40px;
            position: relative;
            padding-left: 80px;
        }

        .ip-section-icon {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #d7ccc8 0%, #efebe9 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(161, 136, 127, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .ip-section-icon i {
            font-size: 2rem;
            color: #8d6e63;
        }

        .ip-section-title {
            font-size: 1.5rem;
            font-weight: 400;
            color: #5d4037;
            letter-spacing: 0.8px;
            position: relative;
            padding-bottom: 15px;
            margin-left: -90px;
        }

        .ip-section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #a1887f, #d7ccc8);
            border-radius: 3px;
        }

        .ip-section-desc {
            color: #8d6e63;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-top: 15px;
            max-width: 80%;
        }

        .ip-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            grid-auto-rows: 220px;
            grid-auto-flow: dense;
            gap: 20px;
        }

        .ip-gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 14px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .ip-gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .ip-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: brightness(0.96);
        }

        .ip-gallery-item:hover img {
            filter: brightness(1.05);
            transform: scale(1.08);
        }

        .ip-gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .ip-gallery-item.tall {
            grid-row: span 2;
        }

        .ip-gallery-item.wide {
            grid-column: span 2;
        }

        .ip-item-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(93, 64, 55, 0.85), transparent);
            padding: 25px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(4px);
            border-radius: 0 0 14px 14px;
        }

        .ip-gallery-item:hover .ip-item-info {
            transform: translateY(0);
        }

        .ip-item-title {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .ip-item-desc {
            color: #e0e0e0;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 12px;
            max-width: 95%;
        }

        .ip-item-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ip-watermark {
            text-align: center;
            margin-top: 60px;
            font-size: 1.05rem;
            color: #8d6e63;
            padding: 25px;
            letter-spacing: 0.5px;
            position: relative;
        }

        .ip-watermark::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #a1887f, transparent);
        }

        .ip-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .ip-contact a {
            color: #a1887f;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .ip-contact a:hover {
            color: #8d6e63;
        }

        /* 装饰元素 */
        .ip-floating-element {
            position: absolute;
            z-index: -1;
            opacity: 0.6;
        }

        .ip-circle-1 {
            top: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(161, 136, 127, 0.1) 0%, transparent 70%);
        }
        .ip-circle-2 {
            bottom: 15%;
            right: 8%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(183, 157, 148, 0.08) 0%, transparent 70%);
        }

        .ip-dots {
            top: 25%;
            right: 12%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(161, 136, 127, 0.15) 10%, transparent 11%);
            background-size: 25px 25px;
        }

        /* 响应式调整 */
        @media (max-width: 1400px) {
            .ip-gallery {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                grid-auto-rows: 140px;
                gap: 15px;
            }
        }

        @media (max-width: 1200px) {
            .ip-section-title {
                font-size: 2rem;
            }
            
            .ip-section-icon {
                width: 60px;
                height: 60px;
            }
            
            .ip-gallery {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
                grid-auto-rows: 130px;
            }
        }

        @media (max-width: 992px) {
            .ip-main-content {
                flex-direction: column;
            }
            
            .ip-header h1 {
                font-size: 2.8rem;
            }
            
            .ip-section-title {
                font-size: 2.2rem;
            }
            
            .ip-gallery {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                grid-auto-rows: 150px;
            }
            
            .ip-stats {
                gap: 30px;
            }
            
            .ip-stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .ip-header {
                padding: 30px 20px;
            }
            
            .ip-header h1 {
                font-size: 2.2rem;
                margin-top: 30px;
            }
            
            .ip-logo {
                position: static;
                justify-content: center;
                margin-bottom: 15px;
            }
            
            .ip-section-title {
                font-size: 1.8rem;
            }
            
            .ip-section-icon {
                width: 50px;
                height: 50px;
            }
            
            .ip-section-icon i {
                font-size: 1.5rem;
            }
            
            .ip-gallery {
                grid-auto-rows: 130px;
            }
            
            .ip-stats {
                flex-wrap: wrap;
                gap: 25px;
            }
            
            .ip-stat-item {
                flex: 1;
                min-width: 100px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 15px 10px;
            }
            
            .ip-header h1 {
                font-size: 1.8rem;
            }
            
            .ip-header p {
                font-size: 1.1rem;
            }
            
            .ip-section-title {
                font-size: 1.5rem;
                padding-bottom: 10px;
            }
            
            .ip-section-title::after {
                width: 40px;
                height: 2px;
            }
            
            .ip-gallery {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: 120px;
            }
            
            .ip-gallery-item.large,
            .ip-gallery-item.tall,
            .ip-gallery-item.wide {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .ip-item-title {
                font-size: 1.1rem;
            }
            
            .ip-item-desc {
                font-size: 0.8rem;
            }
        }