/* base variables */
/* text-color */
/* pin */
/* 字体大小 */
/* tab-bar */
/* 提示颜色 */
/* fee type color 引用自主版本 */
/* table相关 */
/* mix-in class */
#mixin-ios-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
#mixin-pick-bar {
  display: flex;
  background: #fff;
  font-weight: normal;
  font-size: 16px;
}
#mixin-pick-bar > div {
  flex: 1;
  text-align: center;
  color: #3296FA;
  line-height: 50px;
}
#mktable-filter-dropdown {
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
.error-bar {
  display: flex;
  position: relative;
  border-radius: 0 0 0 3px;
  font-size: 12px;
  padding: 5px 16px;
  line-height: 16px;
  background-color: #fffcd7;
  color: #5a5715;
  align-items: center;
}
.error-bar .icon {
  display: inline-block;
  margin-right: 5px;
  color: #f7b52c;
}
.error-bar.danger {
  background-color: #fff4f4;
  color: #91200e;
}
.error-bar.danger .icon {
  color: #f53214;
}
.error-bar.info {
  background-color: #f0faff;
  color: #3296FA;
}
.error-bar.info .icon {
  color: #3296FA;
}
.error-bar.success {
  background-color: #E0F5DC;
}
.error-bar.success .icon {
  color: #00B600;
}
