body {
  /*font-size: 14px;*/
}
@media (max-width: 959.99px) {
  body {
    padding: 0 15px;
    /* min-width: 800px; */
  }
}

/* 主题色 */
.color-primary {
  color: #558ED5;
}
.bg-primary {
  background-color: #558ED5;
}

/* 使 iview radio 组件拥有 checkbox 的样式 */
.style-checkbox .ivu-radio-inner {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  top: 0;
  left: 0;
  border: 1px solid #dcdee2;
  border-radius: 2px;
  background-color: #fff;
  transition: border-color .2s ease-in-out, background-color .2s ease-in-out, box-shadow .2s ease-in-out
}
.style-checkbox .ivu-radio-inner:after {
  content: "";
  display: table;
  width: 4px;
  height: 8px;
  position: absolute;
  top: 1px;
  left: 4px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0);
  transition: all .2s ease-in-out;

  border-radius: 0;
}
.style-checkbox .ivu-radio-checked:hover .ivu-radio-inner {
  border-color: #2d8cf0
}
.style-checkbox .ivu-radio-checked .ivu-radio-inner {
  border-color: #2d8cf0;
  background-color: #2d8cf0
}
.style-checkbox .ivu-radio-checked .ivu-radio-inner:after {
  content: "";
  display: table;
  width: 4px;
  height: 8px;
  position: absolute;
  top: 1px;
  left: 4px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1);
  transition: all .2s ease-in-out
}

/* 统一按钮颜色 */
body a {
  color: #558ED5;
}

/* 统一 iview page 按钮水平居中，并有下边距 */
.ivu-page {
  text-align: center;
}

/* 统一面包屑导航样式 */
.ivu-breadcrumb > span:first-child a {
  color: #558ED5;
  font-weight: bold;
}
.ivu-breadcrumb * {
  font-size: 13px;
}
span.ivu-breadcrumb-item-link {
  font-weight: bold;
}
.ivu-breadcrumb > span:last-child {
  font-weight: normal;
}
.ivu-breadcrumb-item-separator {
  color: inherit !important;
  margin: 0 3px !important;
}
/* 非 vue 渲染的页面通用的面包屑导航样式 */
.breadcrumb {
  overflow: hidden;
}
.breadcrumb * {
  font-size: 13px;
}
.breadcrumb span {
  float: left;
  font-weight: bold;
}
.breadcrumb span:not(:last-child):after {
  content: ">";
  margin: 0 8px;
  color: #b4b4b4;
}
.breadcrumb a {
  color: inherit;
}
.breadcrumb > span:first-child a {
  color: #558ED5;
}

/* 统一智能设置面包屑导航的下边距 */
#app > [class*="nav"] + [class*="breadcrumb"] .ivu-breadcrumb,
#bodyContent #app .ivu-breadcrumb {
  margin-bottom: 15px;
}

/* 修复原始英文页面，内容区域底部横向滚动条 */
#content_wrapper {
  overflow: hidden;
}

/* 修复原始英文页面 header 部分，引入 iview 后样式异常的情况 */
#body-wrapper #header {
  font-size: 12px;
}
#body-wrapper #header * {
  box-sizing: content-box;
}

/* 给原始英文页面的 footer（备案部分）增加上边距 */
#content_wrapper #footer {
  margin-top: 30px;
}

/* 修复 iview radio 组件原点和文字不垂直居中的问题 */
.search-info .ivu-radio-wrapper {
  display: inline-flex;
  align-items: center;
}