html {
    background: #f5f5f5;
}

.banner-wrap .hover {
    background: unset;
}


.container.input-wrap {
    width: 60%;
    margin: 61px auto 404px;
    border-radius: 27px;
    position: relative;
    height: 56px;
}
.container.input-wrap .search-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 177px;
    height: 54px;
    background: var(--main-color);
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .3s ease;
}
.container.input-wrap .search-button:hover {
    background: var(--hover-color);
}
@media screen and (max-width: 750px) {
    .container.input-wrap {
        width: 90%;
        margin: 61px auto 404px;
        border-radius: 27px;
        position: relative;
        height: 48px;
    }
    .container.input-wrap input {
        width: 80%;
        font-size: 14px;
    }
    .container.input-wrap .search-button {
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 46px;
        background: var(--main-color);
        border-radius: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-family: Microsoft YaHei;
        font-weight: 400;
        color: #FFFFFF;
        cursor: pointer;
        transition: all .3s ease;
    }
}
