/* 导航栏样式 */
        header {
            /*background-color: #22c55e;*/
            background-color: #1e3a8a;
            color: white;
            padding: 0rem 0;
            display: flex;
            align-items: center;

            /* height: 10px; */
            /* 添加以下样式将导航栏固定在顶部 */
                        position: fixed;
                        top: 0;
                        left: 0;
                        right: 0;
                        z-index: 10; /* 确保导航栏在其他内容之上 */
            /* 不知道为什么pdf_merger_tongYi的header部分高变大了，用这个定死 */
            height: 45px;
        }

        header h1 {
            font-size: 2.25rem;
            font-weight: bold;
            margin-left: 2rem;
            flex: 1;
			
        }

        header .nav-links {
            /* flex: 2; */
			flex: auto;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        header .nav-links a {
            font-size: 1.25rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            transition: background-color 0.3s ease;
        }

        header .nav-links a:hover {
            background-color: #16a34a;
        }
		
		/* 为 main 元素添加 margin-top 以避免内容被导航栏遮挡 */
        /*
        main{
            margin-top: 10px; */
            /* 根据导航栏的高度调整 */
        /*}*/
