/*亚马逊控件通用自定义样式*/

/*select通用样式  高度宽度可以根据实际需要在html行内样式添加*/
 .select_pub{
 	background-color: #fff;
    border: 1px solid #d0d0d0;
    border-top: 1px solid #bbb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 0 hsla(0,0%,100%,.5), 0 1px 0 rgba(0,0,0,.07) inset;
    -moz-box-shadow: 0 1px 0 hsla(0,0%,100%,.5),0 1px 0 rgba(0,0,0,.07) inset;
    box-shadow: 0 1px 0 hsla(0,0%,100%,.5), inset 0 1px 0 rgba(0,0,0,.07);
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    height: 24px;
    outline: 0;
    outline-width: 0;
    padding: 4px 5px 4px 7px;
    height: 31px;
 }
 
 
  .select_pub:focus,
  .select_pub:hover{
  	border-color: #e49747;
    -webkit-box-shadow: 0 0 3px rgba(228,121,17,.5), 0 1px 0 rgba(0,0,0,.07) inset;
    -moz-box-shadow: 0 0 3px rgba(228,121,17,.5),0 1px 0 rgba(0,0,0,.07) inset;
    box-shadow: 0 0 3px rgba(228,121,17,.5), inset 0 1px 0 rgba(0,0,0,.07);
  }
  
/*input 通用样式  高度宽度可以根据实际需要在html行内样式添加*/

.input_pub{
	border: 1px solid #a6a6a6 !important;
    border-top-color: #949494 !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 1px 0 rgba(0, 0, 0, .07) inset !important;
    outline: 0 !important;
    background-color: #fff !important;
    height: 31px !important;
    padding: 3px 7px !important;
    line-height: normal !important;
}


.input_pub:focus{
	border-color: #e77600 !important;
    box-shadow: 0 0 3px 2px rgba(228, 121, 17, .5) !important;
}


/*select和input禁用状态样式*/
.pub_disabled {
    border-color: rgba(186, 186, 186, .5);
    background-color: #f3f3f3;
    box-shadow: none;
    cursor: not-allowed;
}


