.sbgx_search{
    display: flex;
    height: 160px;
    padding: 20px;
}
.searchbox{
    background: #fff;
    flex: 1;
    padding: 40px 50px 20px;
    flex-direction: column;
}
.search{
    display: flex;

}
.search input{
    flex: 1;
    height: 48px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #e2e1f1;
    font-size: 18px;
    padding-left:20px;
    box-sizing:border-box;
}
.search div{
    flex:0 0 120px;
    height: 48px;
    background: #1540B8;
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 4px 4px 0;
    cursor:pointer;
}
.search div:hover{
	background:#3363e8;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.searchbox .text{
    padding-top: 20px;
    font-size: 16px;
    color: #666;
    font-weight: bolder;
}
.searchbox .text span{
    font-weight: normal;
    padding: 0 10px;
}
