
.container {
    margin: auto;
    padding: 72px;
    max-width: 1440px;
}

        .header {
            margin-bottom: 20px;
        }

        .header h1 {
            color: #333;
        }

        .commands {
            text-align: left;
        }

        .commands h2 {
            color: #333;
            margin-top: 30px;
            margin-bottom: 10px;
        }

        .code-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .code {
            font-family: 'Courier New', monospace;
            background-color: #f0f0f0;
            padding: 10px;
            border-radius: 5px;
            line-height: 1.5;
            flex: 1;
            margin-right: 10px;
        }

        .copy-button {
            background-color: #1e88e5;
            color: white;
            border: none;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
        }

        .copy-button:hover {
            background-color: #0d47a1;
            transform: translateY(-3px);
        }

        .copy-button:active {
            transform: translateY(1px);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        }

        .footer {
            margin-top: 20px;
            color: #888;
            font-size: 0.8em;
        }

        .function-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            grid-gap: 10px;
            text-align: left;
            margin-top: 20px;
            padding: 0;
            list-style-type: none;
        }

        .function-list li {
            background-color: #f0f0f0;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        .firework {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            pointer-events: none;
            animation: explode 1s ease-out;
        }

        @keyframes explode {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(20);
                opacity: 0;
            }
        }

        .beian-container {
            text-align: center;
            margin-top: 20px;
            font-family: Arial, sans-serif;
            color: #333;
        }

        .beian-link {
            color: #555;
            text-decoration: none;
            display: inline-block;
            margin: 5px 0;
        }

        .beian-link:hover {
            color: #000;
            text-decoration: underline;
        }

        .beian-link img {
            vertical-align: middle;
            margin-right: 5px;
        }

        @media (max-width: 768px) {
            body {
                font-size: 14px;
            }

            .container {
                padding: 15px;
            }

            .code-container {
                flex-direction: column;
            }

            .code {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            .container {
                margin: 10px;
            }
        }

        .toast {
            visibility: hidden;
            /* 初始时不显示 */
            min-width: 200px;
            /* 通知的最小宽度 */
            margin-left:-115px;
            /* 偏移量，使得通知居中显示 */
            background-color: #333;
            /* 背景颜色 */
            color: #fff;
            /* 文字颜色 */
            text-align: center;
            /* 文字居中 */
            border-radius: 2px;
            /* 边框圆角 */
            padding: 14px;
            /* 内边距 */
            position: fixed;
            /* 固定定位 */
            z-index: 1;
            /* 确保通知显示在页面最上层 */
            left: 50%;
            /* 从左边开始，水平居中 */
            bottom: 30px;
            /* 从底部开始，距离底部30px */
            font-size: 16px;
            /* 字体大小 */
        }
        h1 {
            color: #007bff;
        }
        
        .sponsor {
            background-color: #f8f9fa;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .sponsor-logo {
            width: 200px;
            height: auto;
        }
        
        .sponsor-name {
            font-size: 24px;
            font-weight: bold;
            margin-top: 10px;
        }
        
        .sponsor-description {
            margin-top: 10px;
        }
        .navs {
            position: fixed;
            top: 125px;
            right: 5px;
            width: 100px;
            border-radius:50% ;
        }
        .navs2 {
            position: fixed;
            top: 160px;
            right: 5px;
            width: 100px;
            font-size: 20px;
            font-weight: bold;
        }
        .boxs {
        }