@charset "utf-8";

/* 下面为搜索样式 */
.search_box {
    width: 100%;
    max-width: 680px;
    margin: 10px auto;
}

.search_inner {
    height: 40px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 0 8px 0 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    border: 1px solid #eee;
    transition: all .3s;
}

.search_inner:hover,
.search_inner:focus-within {
    border-color: #99cc56;
    box-shadow: 0 8px 25px rgba(22, 119, 255, .15);
}

.search_icon {
    width: 25px;
    height: 25px;
    margin-right: 12px;
}

.search_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search_input {
    flex: 1;
    height: 45px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: none;
}

.search_input::placeholder {
    color: #aaa;
}

.search_btn {

    width: 90px;
    height: 30px;
    border: none;
    border-radius: 15px;

    background: linear-gradient(135deg,
            #99cc56,
            #99cc56);

    color: #fff;
    font-size: 15px;
    cursor: pointer;

    transition: .3s;

}

.search_btn:hover {

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px #aec98b(22, 119, 255, .35);

}