/*表单样式*/
* {
  box-sizing: border-box;
}

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}

input:hover,
input:focus,
select:hover,
textarea:hover,
textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.sheetBox input[type="file"],
.sheetBox input[type="image"],
.sheetBox input[type="submit"],
.sheetBox input[type="reset"],
.sheetBox input[type="button"],
.sheetBox input[type="radio"],
.sheetBox input[type="checkbox"] {
  width: auto;
}

.sheetBox input[type="radio"],
.sheetBox input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  cursor: pointer;
}

.sheetBox .table-bordered {
  border: 1px solid #ddd;
  border-collapse: collapse;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
}

.sheetBox {
  max-width: 900px;
  margin: 30px 0 0 0;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.sheetBox .table-bordered th, .sheetBox .table-bordered td {
  border-left: 1px solid #ddd;
}

.sheetBox  .table thead th {
  vertical-align: bottom;
  font-weight: bold;
}

.sheetBox>.table-bordered>tbody>tr>td:first-child {
  min-width: 30px;
  text-align: center;
}

.sheetBox .table th,.sheetBox .table td {
  padding: 8px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.sheetBox h3 input {
  height: 20px;
}

.sheetBox .btn-success {
  float: right;
}

.sheetBox .table td p span {
  text-align: left;
  display: inline-block;
  width: 40px;
}

.sheetBox .table td .template td {
  border-top: none;
}
