@charset "utf-8";
/* TODO 初始化标签样式*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
}

html, frameset, frame, ul, li, p, h1, h2, h3, h4, h5, h6, dl, dt, dd, body, td, input {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

input, textarea, button, select {
  outline: 0;
  border: 0;
  border-radius: 2px;
}

a, button {
  cursor: pointer;
}

textarea {
  resize: none;
}

/* TODO 按钮  */
.btn {
  padding: 7px 15px;
  background: #63A9D0;
  color: #fff;
  border-radius: 4px;
  transition: color .5s ease;
  cursor: pointer;
}

.btn:hover {
  background: #3A80A7;
  color: #fff;
  transition: all .5s ease;
}

.btn-warn {
  background: #BA061A;
}

.btn-warn:hover {
  background: #960919;
}

.btn-close {
  line-height: 0.7;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: color .3s ease;
  margin-right: -12px;
}

.btn-close:hover {
  color: #ddd;
}

.btn-box {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* TODO 表单  */
.f-group {
  margin-top: 15px;
}

.f-group-row {
  display: inline-block;
  padding-right: 15px;
  margin-top: 15px;
}

/* label */

.f-group label.control-label {
  display: inline-block;
  width: 120px;
  margin-right: 10px;
  text-align: right;
  font-weight: 500;
  cursor: pointer;
}

/* label */
label.checkbox-inline,
label.radio-inline {
  position: relative;
  text-align: left;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

/*checkbox  */
.f-chk {
  position: relative;
  top: 2px;
}

/*input 输入框*/
.f-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 35px;
  width: 250px;
  padding: 0 8px;
}

.f-controlL {
  width: 200px;
  height: 30px;
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

input[type="number"] {
  text-align: center;
  width: 80px;
}

.f-sm {
  width: 70px;
  display: inline-block;
}

textarea.f-controlL {
  height: auto;
}

textarea.f-control {
  height: auto;
  margin-left: 5px;
  padding: 5px;
}

/*表单验证  */
.help-block {
  margin-top: 5px;
}

.checkbox {
  width: 200px;
  text-align: left;
}
.checkbox input {
  position: relative;
  top: 1px;
}