 


.search_form{
    width: 833px;
    height: 56px;
    /* box-shadow: 0 0 20px 0 #00000005; */
    border: 1px solid #FF6600;
    border-radius: 68px;
    padding-left: 26px;
    padding-right: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    /* margin: auto; */
    margin-left: 60px;
    margin-top: 31px;
    margin-bottom: 36px;
}

.search_form img{
    width: 20px;
    height: 20px;
    margin-right: 16px;
}
.search_form input{
    outline: none;
    border: none;
    flex: 1; 
    height: 50px;
    font-size: 16px;
    color: #333;
}
.search_form input::placeholder{
    color: #999;
}
.search_form .btn{
    border:none;
    color: white;
    width: 126px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 36px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 12px;
    background:  linear-gradient(139deg, #FF8A00 14.72%, #F60 76.61%);
}
.top_search{
    margin: auto;
    width: 1200px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(169deg, #fff0e8 20px, #fff 50%);
    display: flex;
    margin-top: 24px;
    margin-bottom: 24px;
}

.search_near {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 600; 
    overflow: hidden;
    position: relative;
    padding-left: 121px;
}
.search_near img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px; 
}


.main_part{
    flex: 1; 
    /* background-color: rgb(255, 220, 220); */
    margin: auto; 
    margin-bottom: 40px;
    width: 1200px;
    display: flex;
    justify-content: space-between;
}
.main_left{
    width: 873px;
    /* background-color: rgb(215, 247, 194); */
}
.main_right{
    width: 303px;
    /* background-color: rgb(195, 226, 255);  */
}

.outer_wrap{
    border-radius: 12px;
    background-color: #fff;
    padding: 24px 30px;
    margin-bottom: 20px;

}
.outer_wrap .title{
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.outer_wrap .title img{
    margin-right: 10px;
    width: 22px;
    height: 22px;
}

.list_outer{
    display: flex;
    flex-wrap: wrap;
}
.list_outer a{
    display: block;
    margin-right: 46px;
    width: 240px;
    margin-bottom: 20px;
    background-color: #f7f7f7;
    min-height:48px;
    padding: 8px 16px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}
.list_outer a:hover{
    color: #f60;
    background-color: #fff2ea;
}
.list_outer a:nth-child(3n){
    margin-right: 0;
}


 
 