        /* Resetting some default styles */
       
        @font-face{
            font-family: 'font'; 
            src: url('../font/easebook.ttf');	
        }
        

        .centered-text {
            font-family: "font" ;
        }

       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            height: 100%;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #E8F5E9;
            color: #424242;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        h1 {
            font-size: 2rem;
            color: #26A69A;
            margin-bottom: 20px;
        }

        form {
            background-color: #FFFFFF;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        form label {
            font-size: 1rem;
            color: #757575;
            margin-bottom: 10px;
            display: block;
        }

        form input {
            flex: 1;
            padding: 10px;
            border: 1px solid #BDBDBD;
            border-radius: 5px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            margin-right: 20px;
        }

        form input:focus {
            border-color: #26A69A;
        }

        form button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            color: #FFFFFF;
            font-size: 1.1rem;
            cursor: pointer;
            background-color: #26A69A;
            transition: background-color 0.3s;
            min-width: 80px;
            flex-shrink: 0;
            white-space: nowrap;
     
        }

        form button:hover {
            background-color: #1B877F;
        }

        #queueInfoContainer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        #queueInfo,
        #queueInfos,
        #queueInf,
        #results {
            font-size: 1rem;
            color: #757575;
        }

        #queueInfo,
        #queueInfos {
            text-align: center;
        }

        #queueInf {
            margin-top: 20px;
            text-align: center;
            color: #FF9800;
            margin-left: 10px;
            margin-right: 10px;
        }

        #results {
            text-align: center;
            margin-left: 10px;
            margin-right: 10px;

        }

        #result {
            text-align: center;
            margin-top: 20px;
        }

        #result img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .box4he1 {
            background: #B3E5FC;
            width: 768px;
            height: 100vh;
            border-radius: 8px;
        }

        .box4he1s {
            display: flex;
            align-items: center;
        }



        .centered-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            color: rgba(76, 175, 80, 0.3);
            /* 调整文字颜色的不透明度使其类似背景 */
            z-index: 1;
            pointer-events: none;
            /* 确保文字不干扰页面交互 */
        }

        #resultst {
            /* display: block; */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none
        }

        /* 旋转动画 */
        #resultst svg {
            animation: rotate 2s linear infinite;
            /* 动画名称、时长、速度、无限循环 */
        }

        #timer-display {
            display: none;
        }

        /* 定义旋转动画 */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
                /* 从0度开始 */
            }

            100% {
                transform: rotate(360deg);
                /* 旋转到360度 */
            }
        }

        #timer-display {
            text-align: center;
            color: #757575;
        }
        
        


        @media (max-width: 768px) {
            .box4he1 {
                width: 100%;
            }
            .box4he1s {
                display: flex !important;
                flex-direction: row !important;
                align-items: center;
                width: 100%;
            }
            form input {
                flex: 1 1 auto !important;
                min-width: 0 !important;
                margin-right: 10px !important;
                width: auto !important;
            }
            form button {
                flex: 0 0 auto !important;
                min-width: 90px !important;
                white-space: nowrap !important;
                width: auto !important;
                margin-top: 0 !important;
            }
}
        }

      