
        #code {}
    
    
        .submit_btn {
            outline: none;
            width: 100%;
            height: 50px;
            background: black;
            color: white;
            border: none;
            line-height: 50px;
            margin-top: 20px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            cursor: pointer;
            border-radius: 3px;
        }
    
        .fw-container {
            max-width: 580px;
            display: flex;
            margin: 0 auto 0;
            flex-direction: column;
            padding: 0 10px;
        }
    
        .query_btn_code {
            display: flex;
            margin-bottom: 3vw;
            flex-direction: column;
        }
    
        .queryBar {
            display: flex;
            width: 100%;
            margin: 0 auto;
            position: relative;
            height: 50px;
            flex-direction: column;
            border: 1px solid;
            border-radius: 3px;
            margin-bottom: 20px;
            box-sizing: border-box;
        }
    
        .result_content {
            min-height: 80px;
            background-color: #FAFAFA;
            width: 100%;
            margin-top: 20px;
            padding: 10px 10px 10px 10px;
            box-sizing: border-box;
            font-size: 14px;
            position: relative;
            display: flex;
        }
    
        #code::placeholder {
            font-size: 13px;
        }
    
        .tip {
            position: absolute;
            /* transform: translateY(100%); */
            transition: all 0.3s;
            height: max-content;
            padding-left: 12px;
            font-size: 15px;
            pointer-events: none;
            color: #777;
            max-height: max-content;
            bottom: 0;
            top: 0;
            margin: auto;
            line-height: initial;
            /* margin-bottom: 10px; */
        }
    
    
    
        body {
            font-family: Arial, sans-serif;
            user-select: none;
        }
    
        .entry-title {
            text-align: center;
            font-size: 30px;
        }
    
        @media screen and (max-width:768px) {
            .queryBar {
                /* padding: 4px 0; */
            }
        }
    
        @media screen and (min-width:960px) {
            .box {
                display: flex;
            }
    
            .submit_btn {
                margin: 0;
                width: 30%;
                margin-left: 10px;
            }
    
        }
    
    
        #error-icon,
        #repeat-icon,
        #success-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: none;
            flex-shrink: 0;
            margin-right: 15px;
        }
    
        #error-icon {
            background-color: red;
        }
    
        #repeat-icon {
            background-color: #FFAA00;
        }
    
        #success-icon {
            background-color: #18B84B;
        }
    
        h1 {
            text-align: center;
            margin-top: 90px;
        }
    
        .loadding {
            position: relative;
            display: none;
            justify-content: center;
            width: 30px;
            height: 30px;
            animation: demo 0.8s linear infinite;
        }
    
        @keyframes demo {
            to {
                transform: rotateZ(360deg);
    
            }
    
        }
    
        .loadding span {
            width: 2px;
            height: 9px;
            transform-origin: 50% 15px;
            position: absolute;
            background-color: white;
        }
    
        .close-icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #8A8A8A;
            position: absolute;
            right: 0;
            bottom: 0;
            margin: 5px;
            display: none;
        }
    
        .close-icon::before,
        .close-icon::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background: white;
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            bottom: 0;
        }
    
        .close-icon::after {
            transform: rotate(45deg);
        }
    
        .close-icon::before {
            transform: rotate(-45deg);
        }
    