.search {
    position: relative;
    width: 755px;
    height: 53px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    border-radius: 27px;
    box-sizing: border-box;
    padding: 0 2px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-input {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #111;
    line-height: 20px;
}

.search:hover .search-content {
    display: block;
}

.search-content-place{
    position: absolute;
    top: -20px;
    left: 0;
    height: 20px;
    width: 100%;
}

.search:focus-within {
    border: 1px solid #FD7D03;
}

.search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 49px;
    background: linear-gradient(270deg, #FEA805 0%, #FC6F02 100%);
    border-radius: 100px;
    cursor: pointer;
}

.search-btn img {
    height: 24px;
    object-fit: cover;
}
.search-content {
    display: none;
    box-sizing: border-box;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    padding: 22px 19px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    z-index: 10;
    border:2px solid #FC7503;
}

.search-content-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-content-item-header-title {
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 600;
    color: #111111;
    line-height: 22px;
}

.search-content-item-header-btn {
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 17px;
    cursor: pointer;
}

.search-menu-item {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4px 8px;
    margin-top: 10px;
    cursor: pointer;
    margin-right: 10px;
    background: #F5F5F5;
    border-radius: 4px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #111111;
    line-height: 17px;
}

.search-menu-item-img {
    margin-right: 6px;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    object-fit: cover;
}