
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
        }
        /* 添加包裹容器，设置左右边距 */
        .container {
            max-width: 100%;
            margin-left: 60px; /* 左侧间距 */
            margin-right: 60px; /* 右侧间距 */
            box-sizing: border-box;
            background-color: white;
        }
        #nppworld {
            display: flex;
            align-items: center;
            padding: 20px; /* 适当增加上下间距，但比原来小 */
            background-color: #fff;
            min-height: auto; /* 取消最小高度限制 */
        }
        #nppworld-left {
            flex: 1;
            padding-right: 20px; /* 略微减少右侧间距 */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .nppworld-headline h3 {
            margin: 0;
            font-size: 180px; /* 标题字体大小调大 */
            color: lightgray;
            opacity: 0.3;
            line-height: 1;
        }
        #nppworld-left ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px; /* 减少列表下方间距 */
            flex-wrap: wrap; /* 允许列表项换行 */
        }
        #nppworld-left ul li {
            text-align: center;
            margin-bottom: 10px;
            padding: 10px; /* 增加列表项内边距 */
            flex: 1; /* 使列表项等宽 */
            min-width: 150px; /* 设置最小宽度 */
        }
        #nppworld-left ul li h4 {
            margin: 0;
            font-size: 48px; /* 增加数字字体大小 */
            color: red;
        }
        #nppworld-left ul li p {
            margin: 0;
            color:  #888; /* 数字下面的字体颜色与标题一致 */
            font-size: 28px; /* 增加描述字体大小 */
            opacity: 0.3;
        }
        #nppworld-left p {
            font-size: 18px; /* 增加段落字体大小 */
            line-height: 1.6;
            margin-top: 15px; /* 减少段落上方间距 */
            color: #888; /* 正文改为灰色 */
        }
        #nppworld-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #projectsvg {
            width: 100%;
            height: auto; /* 高度自适应 */
            max-width: 100%;
            vertical-align: middle;
            overflow: hidden;
        }
        #projectsvg svg {
            display: block;
            width: 100%;
            height: auto; /* SVG高度自适应 */
        }
        #projectsvg image {
            width: 100%;
            height: auto; /* 图片高度自适应 */
            object-fit: contain;
        }

        /* 响应式设计 - 移动端适配 */
        @media (max-width: 1200px) {
            .nppworld-headline h3 {
                font-size: 140px;
            }
        }
        
        @media (max-width: 992px) {
            .nppworld-headline h3 {
                font-size: 100px;
            }
            
            #nppworld-left ul li h4 {
                font-size: 36px;
            }
            
            #nppworld-left ul li p {
                font-size: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                margin-left: 20px;
                margin-right: 20px;
            }
            
            #nppworld {
                flex-direction: column;
                padding: 15px;
            }
            
            #nppworld-left {
                padding-right: 0;
                padding-bottom: 30px;
                width: 100%;
            }
            
            .nppworld-headline h3 {
                font-size: 80px;
                text-align: center;
            }
            
            #nppworld-left ul li {
                min-width: 100px;
            }
            
            #nppworld-left ul li h4 {
                font-size: 32px;
            }
            
            #nppworld-left ul li p {
                font-size: 16px;
            }
            
            #nppworld-left p {
                font-size: 16px;
                text-align: center;
            }
            
            #nppworld-right {
                width: 100%;
                padding-top: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .nppworld-headline h3 {
                font-size: 60px;
            }
            
            #nppworld-left ul {
                flex-direction: column;
            }
            
            #nppworld-left ul li {
                margin-bottom: 20px;
            }
        }
    