@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: 12px;
  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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
  font-weight: normal;
}

hr {
  margin: 0;
}

a, a:hover {
  text-decoration: none;
}

input, textarea, button, select {
  outline: 0;
  border: 0;
  border-radius: 2px;
  font-family: inherit;
}

a, button {
  cursor: pointer;
}
a.active {
  color: red;
}
a:hover {
  color: #3A80A7;
}

textarea {
  resize: none;
}

input[type=text] {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* TODO 常用功能*/
/*注释片段*/
.annotation {
  margin-left: 130px;
  color: #777;
}

.pointer {
  cursor: pointer;
}

.lf {
  float: left;
}

.lf::after {
  content: '';
  display: block;
  clear: both;
}

.lbk {
  display: inline-block;
}

.rt {
  float: right;
}

.rt::after {
  content: '';
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.hidden {
  overflow: hidden;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.rel {
  position: relative;
}

.mid-position {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

/*底部警告信息*/
.btm-warning {
  color: #e4093c;
  margin: 10px auto;
  padding-left: 5px;
}

/* TODO 图标*/
.icon {
  display: inline-block;
}

/*小三角  */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid;
  cursor: pointer;
}

.caret-dark {
  /* border-color: #2C3B41; */
}

/*TODO 网格布局*/
.col-md-1 {
  width: 8%;
}

.col-md-2 {
  width: 17%;
}

.col-md-3 {
  width: 25%;
}

.col-md-4 {
  width: 33%;
}

.col-md-5 {
  width: 42%;
}

.col-md-6 {
  width: 50%;
}

.col-md-7 {
  width: 58%;
}

.col-md-8 {
  width: 67%;
}

.col-md-9 {
  width: 75%;
}

.col-md-10 {
  width: 83%;
}

.col-md-11 {
  width: 92%;
}

.col-md-12 {
  width: 100%;
}

/*left模块菜单*/
li.liSelect {
  width: 80%;
  height: 30px;
  line-height: 30px;
  padding: 0 10% 0 5%;
  text-align: left;
  margin-top: 5px;
  color: #3A80A7;
  cursor: pointer;
  border-radius: 4px;
  background: linear-gradient(#ddd, #eee);
}

li.liSelect:hover,
li.liSelect:focus,
li.liSelect.active {
  color: #fff;
  background: linear-gradient(#63A9D0, #63A9D0);
}



/* 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;
}


input[type=submit].btn-light {
  background: #fff;
  color: #3A80A7;
}
input[type=submit].btn-light:hover {
  background: #ccc;
  color: #3A80A7;
}
.btn-default {
  background: #ddd;
  color: #000;
}
.btn-default:hover {
  background: #cacaca;
  color: #000;
}
.btn-warn {
  background: #BA061A;
}

.btn-warn:hover {
  background: #960919;
}

.btn-org {
  background: orange;
}

.btn-org:hover {
  background: darkorange;
}

.btn-print {
  background: #6FB96F;
}

.btn-print:hover {
  background: #558155;
}

.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: 14px;
}

.f-group-row {
  display: inline-block;
  padding-right: 15px;
  margin-top: 15px;
}

/* label */

.f-group label.control-label,
.f-group-row 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: 3px;
  height: 30px;

  padding: 0 5px;
}

.f-controlL {
  width: 200px;
  height: 30px;
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

input[type="number"] {
  text-align: center;
  width: 80px;
}
input[type="date"] {
  height: 30px;
  width: 130px;
}

.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;
}

/* *号  */
.icon-required {
  width: 10px;
  height: 10px;
  background: url(/lz/assets/images/home/required.png) no-repeat;
}

.f-sm {
  width: 70px;
  display: inline-block;
}

/*TODO 文本样式*/
.t-ct {
  text-align: center;
}

.t-mid {
  vertical-align: middle
}

.t-muted {
  color: #777;
}

.t-elps {
  text-overflow: ellipsis;
}

.t-lg {
  font-size: 1.4rem;
}

.t-warn {
  color: #BA061A;
}

.t-sm {
  color: #fff;
  font-size: 12px;
}

/*TODO 面板  */
.panel-title {
  /* margin: 10px; */
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  color: #3A80A7;
  background: linear-gradient(#ddd, #eee);
}

.panel-content {
  margin-left: 10px;
}

/*table样式*/
.panel-content .datalist {
  margin: 10px;
  min-width: 500px;
}

.panel-content .datalist th,
.panel-content .datalist td {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid #ddd;
}

.panel-content .datalist th {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(#eee, #ddd);
}

.panel-content .datalist td input {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100px;
}

/*函数生成input,select框的样式*/
.li_select input,
.li_select select,
.li_select textarea {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.li_select_group input,
.li_select_group select,
.li_select_group textarea {
  margin: 10px 20px 0 10px;
}

.li_select input,
.li_select select {
  height: 30px;
}

.li_select input:hover,
.li_select input:focus,
.li_select select:hover,
.li_select textarea:hover,
.li_select 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);
}

.group {
  margin: 10px 0;
}

.main_pane_list .group {
  margin: 10px;
  border: 1px solid #999;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 6px;
  -moz-box-shadow: 2px 2px 5px #ccc;
  -webkit-box-shadow: 2px 2px 5px #ccc;
  box-shadow: 3px 3px 10px #ddd;
  padding: 10px;
}

/*TODO 表格*/
.table-box {
  margin: 10px;
}

.tbl-box {
  margin: 10px;
  background: #fff;
}

.tbl {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.tbl-hov > tbody > tr:hover {
  background-color: #eee;
}

/*瘦小的table样式*/
.tbl-sm tr {
  border-top: thin solid #ddd;
}

.tbl-sm td {
  height: 28px;
  padding-left: 8px;
  border-radius: 2px;
  font-size: 12px;
  border-right: thin solid #ddd;
}

.tbl-sm tr td:last-child {
  border-right: 0 solid #ddd;
}


/*tab  */
.tabs {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.tabs li {
  float: left;
}
.tabs input[type="radio"] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.tabs > li > label {
  position: relative;
  display: block;
  padding: 14px 21px;
  border-radius: 2px 2px 0 0;
  font-size: 18px;
  text-transform: uppercase;	
  top: 1px;
  cursor: pointer;		
  transition: all 0.2s ease-in-out;
}
.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 17px;
  line-height: 25px;
  padding: 25px;
  position: absolute;
  top: 53px;
  left: 0;
}
.tabs [id^="tab"]:checked + label {
  border: 1px solid #ddd;
  border-bottom: 0;
  background: #fff;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

/*tubiao*/
.chart .chartBox div {
  margin: 0 auto;
}