.search_form{
    width:402px;
    height:42px;


}

/*左边输入框设置样式*/
.input_text{
    width:200px;
    height: 35px;

    /*自己删除*/
    /*border:1px solid green;*/


    /*自己开始*/
    border: none;
    background-color: #fff;
    /*自己结束*/

    /*清除掉默认的padding*/
    padding:0px;

    /*提示字首行缩进*/
    text-indent: 10px;

    /*去掉蓝色高亮框*/
    outline: none;

    /*用浮动解决内联元素错位及小间距的问题*/
    float:left;
    /*border-top-left-radius:2em;*/
    /*border-bottom-left-radius:2em;*/
    color:#fff;

}

.input_sub{
    width:60px;
    height: 35px;

    /*自己删除*/
    /*background-color: green;*/


    background: url("img/fang.png") left center;

    /*去掉submit按钮默认边框*/
    border:0px;
    /*改成右浮动也是可以的*/
    float:left;
    color:white;/*搜索的字体颜色为白色*/
    cursor:pointer;/*鼠标变为小手*/
    /*border-top-right-radius:2em;*/
    /*border-bottom-right-radius: 2em;*/
}