.search-box {
    min-height: 694px;
    padding-top: 135px;
}
/* content-center */
.content-box {
    width: 1080px;
    margin: 0 auto;
}
.search-box .search {
    width: 591.91px;
    height: 63.91px;
    background: #F6F6F6;
    border-radius: 34.0764px;
    margin: 0 auto 24px;
    position: relative;
}

.search-box .search-img{
    position: absolute;
    top: 17px;
    right: 37px;
    cursor: pointer;
}

.search-box .search-input {
    width: 80%;
    height: 100%;
    border-radius: 34.0764px;
    background: #F6F6F6;
    margin-left: 20px;
    font-size: 22px;
}

.option {
    text-align: center;

}

.option-top {
    font-size: 17px;
    line-height: 199.4%;
    color: rgba(255, 121, 59, 1);
}

.option-list {
    display: flex;
    justify-content: center;
    margin-left: 57px;
    margin-top: 8px;
}

.option-list .item {
    font-size: 17px;
    margin-right: 25px;
    color: #6A6A6A;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.option-list .item:hover {
    color: #008E93;
}
.option-list .item::after {
    content: '';
    display: inline-block;
    width: 13.1px;
    height: 1px;
    background-color: #D5D5D5;
    transform: rotate(90deg);
    margin-left: 21px;
    margin-top: 3px;
}
@media (max-width: 770px) {
    .content-box {
        width: 345px;
    }
    .search-box .search {
        width: 329px;
    }
    .search-box .search-input {
       width: 70%;
    }
    .option-list {
        flex-wrap: wrap;
        margin-left: 0;
    }
    .option-top {
        font-size: 16px;
        line-height: 199.4%;
    }
    .option-list .item {
        font-size: 14px;
        margin-right: 10px;
        margin-bottom: 6.5px;
        line-height: 199.4%;
    }

    .option-list .item:nth-child(3)::after {
    display: none;
    }
    .option-list .item::after {
        margin-left: 10px;
    } 

}