<input id="Name" name="Name" type="text" data-bind="value: Name" class="title width-7" />Razor engine converts underscores in html attribute names into hyphens, so the below razor statement will help you to render the textbox with class
@Html.TextBoxFor(m => m.Name, new { data_bind="value: Name", @class = "title width-7" })