 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #777777; /* 将文字颜色（原蓝色）改为 80%灰色 */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }
        a {
            text-decoration: none;
        }
        .qg {
            text-decoration: none;
            border: 1px solid #000;
            padding: 5px 10px;
            display: inline-block;
        }

        /* 鼠标悬停时的样式 */
        .qg:hover {
            background-color: #f5f5f5;
        }
        
         .qgbutton {
            padding: 10px 20px;
            background-color: #9e9e9e; /* 将按钮背景颜色（原蓝色）改为 80%灰色 */
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            /*width: 100%;*/
            max-width: 200px;
            margin-bottom: 10px;
            margin-top: 10px;
        }

        .qgbutton:hover {
            background-color: #666666; /* 将按钮悬停时背景颜色（原蓝色加深）改为 80%灰色加深 */
        }

        h1 {
            text-shadow: 0 0 10px #777777; /* 将文字阴影颜色（原蓝色）改为 80%灰色 */
            margin-bottom: 10px;
            margin-top: 10px;
        }

        .input-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        input[type="number"] {
            padding: 10px;
            border: 2px solid #777777; /* 将输入框边框颜色（原蓝色）改为 80%灰色 */
            background-color: #fff;
            color: #777777; /* 将输入框文字颜色（原蓝色）改为 80%灰色 */
            border-radius: 5px;
            width: 100%;
            max-width: 200px;
            box-sizing: border-box;
        }

        button {
            padding: 10px 20px;
            background-color: #777777; /* 将按钮背景颜色（原蓝色）改为 80%灰色 */
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
            max-width: 200px;
        }

        button:hover {
            background-color: #666666; /* 将按钮悬停时背景颜色（原蓝色加深）改为 80%灰色加深 */
        }

        .coin-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;
            width: 100%;
        }

        .coin {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            animation: spin 1s, bounce 1s;
        }

        @keyframes spin {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

        .result {
            margin-top: 20px;
            font-size: 20px;
            text-shadow: 0 0 10px #777777; /* 将结果区域文字阴影颜色（原蓝色）改为 80%灰色 */
            /* cdisplay: none;*/
        }

        .all-results {
            margin-top: 20px;
            font-size: 16px;
            text-shadow: 0 0 10px #777777; /* 将所有结果区域文字阴影颜色（原蓝色）改为 80%灰色 */
            white-space: pre-wrap;
        }

        .footer {
            margin-top: 40px;
            font-size: 14px;
            text-align: center;
        }

        .footer a {
            color: #777777; /* 将页脚链接颜色（原蓝色）改为 80%灰色 */
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .miaoshu {
            width: 80%;
            padding-top: 15px;
        }