.search {
    background-image: url(../img/search-bg.webp);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% top;
}

.search form {
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.search form h1 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.search form input {
    width: 80%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 25px;
    padding: 0px 20px;
    font-size: 18px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.search form button {
    font-size: 18px;
    position: relative;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    margin: 0 5px;
}

.search form button:hover {
    background-color: rgb(45, 57, 83);
    color: #fff;
    font-size: 22px;
}

.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0;
}

#warning {
    width: 50%;
    height: auto;
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    margin: 10px auto;
}

#warning p {
    padding: 5px 0;
}

#warning i {
    margin: 0 5px;
}

.hotList {
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
    padding: 50px 0;
}

.hotList h2 {
    font-size: 40px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    text-align: center;
    background-image: linear-gradient(to right, #f9d523 0%, #ff3033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.1em;
}

.hotList ul {
    font-size: 20px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hotList ul li {
    margin: 0 0;
}

.hotList ul li::after {
    clear: both;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 18px 0;
    background-color: rgb(245, 245, 245);
}

.hotList ul li:last-child::after {
    display: none;
}

.hotList ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.hotList ul li a:hover {
    color: rgb(45, 57, 83);
}

.view {
    color: grey;
    margin: 0 20px;
    font-size: 18px;
}

.recommend::after {
    font-size: 15px;
    content: '荐';
    color: #fff;
    background-color: #3072ff;
    border-radius: 5px;
    padding: 3px 5px;
    margin: 0 5px;
}

.Boom::after {
    font-size: 15px;
    content: '爆';
    color: #fff;
    background-color: #970808;
    border-radius: 5px;
    padding: 3px 5px;
    margin: 0 5px;
}

.hot::after {
    font-size: 15px;
    content: '热';
    color: #fff;
    background-color: #ff4545;
    border-radius: 5px;
    padding: 3px 5px;
    margin: 0 5px;
}

.new::after {
    font-size: 15px;
    content: '新';
    color: #fff;
    background-color: #21c560;
    border-radius: 5px;
    padding: 3px 5px;
    margin: 0 5px;
}

#num {
    font-weight: bold;
    margin: 0 20px 0 0;
    background-image: linear-gradient(to right, #f9d523 0%, #ff3033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}