﻿.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-middle::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.float-left {
  float: left !important;
}
wf-tab-body .overflow-hidden .float-left {
  background: #f6f6f6;
}
.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.m-auto {
  margin: 0 auto !important;
}

.w-full {
  width: 100% !important;
}

.no-border {
  border-width: 0 !important;
}

.border-none {
  border-style: none !important;
}

.no-shadow,
.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.shadow-1 {
  -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1) !important;
}

.shadow-2 {
  -webkit-box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.1) !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-white {
  background-color: #fff !important;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #2d353c !important;
}

.text-gray {
  color: #999 !important;
}

.text-gray-light {
  color: #bfbfbf !important;
}

.text-gray-lighter {
  color: #d9d9d9 !important;
}

.text-gray-lightest {
  color: #f2f2f2 !important;
}

.text-gray-dark {
  color: #737373 !important;
}

.text-gray-darker {
  color: #595959 !important;
}

.text-gray-darkest {
  color: #404040 !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.d-none {
  display: none !important;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.check_color{
  color: #1a4882
}
.pdf_down{
  text-align: right;
  padding: 10px;
}
.pdf_down a{
  display: inline-block;
  padding: 5px 16px;
  border-radius: 5px;
  border: 1px solid #417dc9;
}
.pdf_down a i{
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
  background: url("../images/downloadbefore.png") center center no-repeat;
}
.pdf_down a:hover {
  color: #fff;
  background: #417dc9;
}
.pdf_down a:hover i {
  background: url("../images/downloadafter.png") center center no-repeat;
}

label.label-checkAll{
  color: black;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

/* -----田永新helper-----开始----- */
.m-10-0 {
  margin: 10px 0 !important;
}
.m-t-04{
  margin-top: -4px !important;
}
.m-t-4{
  margin-top: 4px !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-b-20 {
  margin-bottom: 20px !important;
}
.m-b-40 {
  margin-bottom: 40px !important;
}
.m-l-0 {
  margin-left: 0px !important;
}
.m-l-5 {
  margin-left: 5px !important;
}
.m-l-6{
  margin-left: 6px !important;
}
.m-l-20 {
  margin-left: 28px !important;
}
.m-l-38 {
  margin-left: 38px !important;
}
.m-l-40 {
  margin-left: 40px !important;
}
.m-l-60 {
  margin-left: 60px !important;
}
.m-r-0 {
  margin-right: 0px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-0{
    padding: 0 !important;
}
.p-0-20 {
  padding: 0 20px !important;
}
.p-20-40 {
  padding: 20px 40px !important;
}
.p-5-15 {
  padding: 5px 15px !important;
}
.p-0-10 {
  padding: 0 10px !important;
}
.p-t-0 {
  padding-top: 0px !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-r-0 {
  padding-right: 0px !important;
}
.p-r-10 {
  padding-right: 10px !important;
}
.p-r-20 {
  padding-right: 20px !important;
}
.p-b-0 {
  padding-bottom: 0px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.p-l-0 {
  padding-left: 0px !important;
}
.p-l-10 {
  padding-left: 10px !important;
}
.p-l-20 {
  padding-left: 20px !important;
}
.lh-1x {
  line-height: 1 !important;
}
.lh-1x875 {
  line-height: 1.875 !important;
}
.lh-20 {
  line-height: 20px !important;
}
.lh-26 {
  line-height: 26px !important;
}
.lh-30 {
  line-height: 30px !important;
}
.lh-36 {
  line-height: 36px !important;
}
.lh-44 {
  line-height: 44px !important;
}
.lh-30-inline {
  line-height: 30px !important;
  display: inline-block;
}
.border-b-1-dfdfdf{
  border-bottom: 1px solid #dfdfdf !important;
}
.border-1-417dc9 {
  border: 1px solid #417dc9 !important;
}
.border-1-dfdfdf {
  border: 1px solid #dfdfdf !important;
}
.border-none {
  border: none !important;
}
.border-t-0 {
  border-top-width: 0 !important;
}
.border-r-0 {
  border-right-width: 0 !important;
}
.border-b-0 {
  border-bottom-width: 0 !important;
}
.border-l-0 {
  border-left-width: 0 !important;
}
.border-r-1 {
  border-right: 1px solid #cfcfcf !important;
}
.border-b-1 {
  border-bottom: 1px solid #cfcfcf !important;
}
.border-l-1 {
  border-left: 1px solid #cfcfcf !important;
}
.border-b-1-dddddd {
  border-bottom: 1px solid #ddd !important;
}
.border-l-2 {
  border-left: 2px solid #cfcfcf !important;
}
.w-auto {
  width: auto !important;
}
.w-100 {
  width: 100px !important;
}
.w-160 {
  width: 160px !important;
}
.w-135 {
  width: 135px !important;
}
.w-200 {
  width: 200px !important;
}
.w-300{
  width: 300px !important;
}
.w-330{
  width: 440px !important;
}
.w-420 {
  width: 80% !important;
}
.w-920 {
  width: 920px !important;
}
.right-20 {
  right: 20px !important;
}
.top-5 {
  top: 5px !important;
}
.h-auto {
  height: auto !important;
}
.h-full {
  height: 100% !important;
}
.min-h-560{
  min-height: 560px !important;
}
.min-h-880{
    min-height: 880px !important;
  }
.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-24 {
  font-size: 24px !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.text-f05000 {
  color: #f05000 !important;
}
.text-417dc9 {
  color: #417dc9;
}
.text-8e8e8e {
  color: #8e8e8e !important;
}
.text-aaaaaa {
  color: #aaaaaa !important;
}
.bg-ffffff {
  background-color: #ffffff !important;
}
.bg-417dc9 {
  background-color: #417dc9 !important;
}
.bg-f3f3f3 {
  background-color: #f3f3f3 !important;
}
/* .bg-f6f6f6 {
  background-color: #f6f6f6 !important;
} */
.bg-eeeeee {
  background-color: #eeeeee !important;
}
.radius-0 {
  border-radius: 0 !important;
}
.radius-half {
  border-radius: 50% !important;
}
.radius-2 {
  border-radius: 2px !important;
}
.radius-4 {
  border-radius: 4px !important;
}
.c-pointer {
  cursor: pointer !important;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
/* -----田永新helper-----结束----- */