/* business-introduction下面的所有2级菜单 单独处理, 设计不要每个tab项自适应大小不一, 要求中间固定在90px 的空白, 文字两边固定各加30px */
/* 而中间划过有些空白时会出现跳动的效果, 为了不让其跳动, 此处加了padding, padding能让其显得更顺滑 */
/* 但会出现, 划到空白处时会有选中的情况 */
/* begin */
.sub-menu .sub-menu-item:first-of-type {
  width: 132px;
}
.sub-menu .sub-menu-item:first-of-type > :nth-child(n+1) {
  width: 132px;
}
.sub-menu .sub-menu-item:nth-of-type(2) {
  width: 260px;
}
.sub-menu .sub-menu-item:nth-of-type(2) > :nth-child(n+1) {
  width: 220px;
}
.sub-menu .sub-menu-item:last-of-type {
  width: 142px;
}
.sub-menu .sub-menu-item:last-of-type > :nth-child(n+1) {
  width: 122px;
}
.sub-menu .sub-menu-item:nth-child(n+1) {
  padding: 0 30px;
}
.sub-menu .sub-menu-item:first-of-type {
  padding: 0;
}
.sub-menu .sub-menu-item:not(:first-of-type) > a {
  left: 30px;
}
/* end */
.content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.business-introduction-content {
  display: flex;
  flex-direction: column;
  width: 1400px;
  margin: auto;
  min-height: 1200px;
}
.content .title {
  font-size: 30px;
  margin: 60px 0 0 0;
  font-weight: bold;
}
.mutual-funds-btns {
  display: flex;
  margin: 34px 0 30px 0;
}
.mutual-funds-btns .btn.btn-default {
  margin: 0 15px 0 0;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #eee;
  color: #222;
}
.mutual-funds-btns .btn.btn-default:hover, .mutual-funds-btns .btn.btn-default:focus, .mutual-funds-btns .btn.btn-default.active {
  border: 1px solid rgba(0, 64, 152, 1);
  color: #fff;
  background: rgba(0, 64, 152, 1);
}
.show-more {
  display: flex;
  justify-content: center;
  margin: 0 auto 150px auto;
}
.show-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #004098;
  font-size: 16px;
  font-weight: 500;
  color: #004098;
}
.arrow-more {
  width: 16px;
  height: 16px;
  margin: 2px 0 0 10px;
  background: url(/main/nffund/images/icons/arrow-more.png) no-repeat;
  background-size: 100% 100%;
}

.arrow-more.arrow-down {
  transform: rotate(180deg);
}

.bootstrap-table .fixed-table-container.fixed-height:not(.has-footer) {
  border-bottom: none;
}
.bootstrap-table .fixed-table-container.fixed-height .table thead th, .bootstrap-table .fixed-table-container.fixed-height .table  tbody tr td {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}
.bootstrap-table .fixed-table-container.fixed-height .table thead th:first-of-type, .bootstrap-table .fixed-table-container.fixed-height .table  tbody tr td:first-of-type {
  width: 500px;
  min-width: 500px;
  max-width: 500px;
}
