﻿.input_text{  
    border:1px solid #0099CC;  
    border:1px solid #0099CC \9;/*IE*/  
    width:200px;  
    height:23px;/*非IE高度*/  
    height:23px \9;/*IE高度*/  
    padding-left:5px; /*all*/  
    line-height:23px \9;/*IE*/  
    -moz-border-radius:3px;/*Firefox*/  
    -webkit-border-radius:3px;/*Safari和Chrome*/  
    border-radius:3px;/*IE9+*/  
    background-color:white;  
    outline:none;  

}  
.input_text:hover{
    border:1px solid #FF3366;  
    border:1px solid #FF3366 \9;/*IE*/  
}
.input_text:focus{/*IE8+*/  
     transition:border linear .2s,box-shadow linear .5s;
     -moz-transition:border linear .2s,-moz-box-shadow linear .5s;
     -webkit-transition:border linear .2s,-webkit-box-shadow linear .5s;
     outline:none;border-color:rgba(0,153,204,.75);
     box-shadow:0 0 8px rgba(0,153,204,.5);
     -moz-box-shadow:0 0 8px rgba(0,153,204,.5);
     -webkit-box-shadow:0 0 8px rgba(0,153,204,3);
     background-color:white;
}
.input_button {
    background: #0065BF;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    width: 230px;
    height: 36px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    margin-top: 5px;
    margin-bottom: 8px;
    cursor: pointer;
}
.input_button:hover
{
    -webkit-transform:scale(1.05);
    -moz-transform:scale(1.05);
    -ms-transform:scale(1.05);
    -o-transform:scale(1.05);
    transform:scale(1.05);
}
.input_button_disable {
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    width: 230px;
    height: 36px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    margin-top: 5px;
    margin-bottom: 8px;
    cursor: pointer;
}