/***********************
模块名：input
作者：Luke.Deng（邓旭辉）
************************/

/* input输入框 */
.ipt{display:inline-block;width:260px;height:24px;padding:3px 9px;font-size:13px;color:#333;
    white-space:nowrap;text-overflow:ellipsis;overflow:hidden;
    border:1px solid rgba(0,0,0,0.3);border-radius:2px;background:rgba(255,255,255,0.2);}

/*Placehold样式*/
.ipt::-webkit-input-placeholder,.textarea::-webkit-input-placeholder, 
.tui-select.placehold .dropdown-toggle
{
  color: rgba(0,0,0,0.4);
}
input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus {}
/*输入框-长度定制*/
.ipt-l{width:400px;}
.ipt-m{width:200px;}
.ipt-s{width:100px;}
.ipt-xl{width:270px;}
.ipt-full{width:100%;}

/* 文本输入域 */
.textarea{width: 100%;line-height: 1.5;overflow-y: scroll;padding: 3px 8px;
    border:1px solid rgba(0,0,0,0.1);border-radius:2px;font-size:13px;color:#333;background:rgba(255,255,255,0.2);}

/*获得焦点状态*/
.ipt:focus,.ipt.focus,.textarea:focus,.textarea.focus{outline:0;border-color: rgba(0,0,0,0.8);background:rgba(255,255,255,0.6);}

/*禁用状态*/
.ipt.disabled,.ipt.disabled:focus,.textarea:disabled,.textarea.disabled{border-color: rgba(0,0,0,0.1);background-color: rgba(0,0,0,0.04);color:#adadad;}

/*出错状态*/
.ipt.error,.ipt.error:focus,.textarea.error,.textarea.error:focus{border-color: #f64949;background:#fff5f5;color:#333;}
