
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: url('../../sucai/Image/feiji.jpg') no-repeat center center fixed;
            background-size: cover;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            flex-direction: column;
            position: relative;
        }

        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        .search-container {
            text-align: center;
            max-width: 600px;
            width: 90%;
            padding: 30px;
            border-radius: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .search-container h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .search-box {
            flex: 1;
            padding: 15px;
            font-size: 1.2em;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 25px 0 0 25px;
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .search-box::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-box:focus {
            border-color: rgba(255, 255, 255, 1);
            background-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        #searchButton {
            padding: 15px 25px;
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-left: none;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-size: 1em;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        #searchButton:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .search-wrapper {
            display: flex;
            width: 100%;
        }

        .suggestions {
            margin-top: 20px;
            text-align: left;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow-y: auto;
            display: none;
            width: 100%;
        }

        .suggestions div {
            padding: 12px 15px;
            cursor: pointer;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition:  0.2s ease;
        }

        .suggestions div:hover {
            background: rgba(76, 175, 80, 0.1);
        }

        .suggestions div:last-child {
            border-bottom: none;
        }
        
        nav {
            margin-bottom: 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .qinquan p{
             color: #ffffff;
             text-align: center;
        }
        .qinquan a {
              color: red;
        }
