@import 'font/style.css';
html,
body {
  height: 100%;
  width: 100%;
  color: #333;
  font: 14px/1.5 'Microsoft YaHei', 'arial', 'sans-serif';
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background-color: #F7F7FB;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
a {
  text-decoration: none;
  color: #333;
}
a:active,
a:visited {
  color: #333;
}
ul {
  list-style: none;
}
button,
input,
optgroup,
select,
textarea {
  border: 0;
  outline: 0;
  font: inherit;
  color: inherit;
}
img {
  border: 0;
  vertical-align: middle;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #333;
  /*输入框提示语的字体样式*/
  font-size: 14px;
}
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  font-family: inherit;
  font-size: 100%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
  display: none;
}
.vd-alert-wrap {
  position: fixed;
  width: 100%;
  top: 20%;
  text-align: center;
  display: none;
  z-index: 9999;
}
.vd-alert-wrap .vd-alert-cnt {
  line-height: 45px;
  max-height: 410px;
  padding: 0 20px 0 15px;
  font-size: 14px;
  border-radius: 5px;
  display: inline-block;
  overflow: hidden;
  max-width: 500px;
}
.vd-alert-wrap .vd-alert-cnt .alert-icon {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: -3px;
}
.vd-alert-wrap .vd-alert-cnt .alert-icon.icon-yes2 {
  color: #13BF13;
}
.vd-alert-wrap .vd-alert-cnt .alert-icon.icon-error2 {
  color: #E64545;
}
.vd-alert-wrap .vd-alert-cnt .alert-icon.icon-caution2 {
  color: #f60;
}
.vd-alert-wrap .vd-alert-cnt.alert-succ {
  background: #E3F7E3;
}
.vd-alert-wrap .vd-alert-cnt.alert-warn {
  background: #FFEDE0;
}
.vd-alert-wrap .vd-alert-cnt.alert-err {
  background: #FCE9E9;
}
.hidden {
  display: none;
}
.tips-wrap {
  padding: 10px 15px;
  margin-bottom: 18px;
}
.tips-wrap .bd-icon {
  font-size: 16px;
  margin-right: 10px;
  vertical-align: -2px;
}
.tips-wrap.tips-info {
  background-color: #E6F7FF;
}
.tips-wrap.tips-info .icon-info2 {
  color: #0066cc;
}
.tips-wrap.tips-warn {
  background-color: #FFEDE0;
}
.tips-wrap.tips-warn .icon-caution2 {
  color: #FF6600;
}
.global__loading__wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.global__loading__wrap .icon-loading {
  font-size: 64px;
  color: #fff;
  animation: loading 2s linear infinite;
  z-index: 9999;
}
.ui-tab-wrap {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #EBEFF2;
}
.ui-tab-wrap .ui-tab-item {
  padding: 15px 0;
  margin: 0 20px;
  cursor: pointer;
}
.ui-tab-wrap .ui-tab-item.active {
  color: #0066CC;
  font-weight: 700;
  position: relative;
}
.ui-tab-wrap .ui-tab-item.active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #06c;
  bottom: 0;
  left: 0;
}
.ui-tab-wrap .ui-tab-item:hover {
  color: #06c;
}
.ui-timeline-wrap .ui-timeline-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #999;
}
.ui-timeline-wrap .ui-timeline-item::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 7px;
  background: #ccc;
  position: absolute;
  top: 4px;
  left: 2px;
}
.ui-timeline-wrap .ui-timeline-item::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 18px;
  left: 8px;
  background: #ebeff2;
}
.ui-timeline-wrap .ui-timeline-item:last-child {
  margin-bottom: 0;
}
.ui-timeline-wrap .ui-timeline-item:last-child::after {
  display: none;
}
.ui-timeline-wrap .ui-timeline-item.active {
  color: #333;
}
.ui-timeline-wrap .ui-timeline-item.active::before {
  background: #06c;
}
