.big-search-container {
    /* background-color: #0a1929; */
    /* background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-RkAc7zDmFnTjotaUybHM5saxRJyQnN.png'); */
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    top: 200px;
}


.search-container {
    width: 100%;
    max-width: 900px; /* 设置宽度为900px */
    display: flex;
    margin-bottom: 15px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: white;
    color: #666;
}

.search-button {
    padding: 15px 30px;
    background-color: #8bc34a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.scrolling-container {
    width: 100%;
    max-width: 900px; /* 设置宽度为900px */
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
}

.hot-label {
    color: #8bc34a;
    font-weight: bold;
    padding: 5px 15px;
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

.rows-container {
    height: 60px; /* 设置自动播放区域高度为60px */
    overflow: hidden;
}

.scrolling-content {
    animation: scrollVertical 15s linear infinite;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 30px; /* 每行高度调整为30px，两行正好60px */
}

.part-item {
    color: #ccc;
    font-size: 16px;
    width: 18%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-910px); 
    }
}