.e-textarea{
  overflow: hidden;
  position: relative;
  display: inline-block;
  font-size: 0;
  &.e-textarea--disabled{
    opacity: .5;
    filter:alpha(opacity=50);
  }
  .e-textarea__box{
    position: relative;
    z-index: 1;
    textarea{
      width: 340px;
      height: 50px;
      border-radius: 2px;
      border:1px solid #d7d9db;
      padding: 6px 10px 22px 8px;
      font-size: 12px;
      line-height: 18px;
      margin: 0;
      resize: none;
      outline:none;
      &:focus{
        border-color: #ccc;
        box-shadow: none;
      }
    }
  }
  .e-textarea__text{
    width: 100%;
    height: 22px;
    line-height: 22px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    text-align: right;
    span{
      margin-right: 1px;
      padding: 0 20px 0 0;
      color: #999;
      font-size: 12px;
      .e-textarea__text--num{
        &.e-textarea__text--red{
          color: #f00;
        }
      }
    }
  }
}
