/* about下面的所有2级菜单 单独处理, 设计不要每个tab项自适应大小不一, 要求中间固定在90px 的空白, 文字两边固定各加30px */
/* 而中间划过有些空白时会出现跳动的效果, 为了不让其跳动, 此处加了padding, padding能让其显得更顺滑 */
/* 但会出现, 划到空白处时会有选中的情况 */
/* begin */
.sub-menu .sub-menu-item:first-of-type {
  width: 210px;
}
.sub-menu .sub-menu-item:first-of-type > :nth-child(n+1) {
  width: 210px;
}
.sub-menu .sub-menu-item:nth-of-type(2) {
  width: 190px;
}
.sub-menu .sub-menu-item:nth-of-type(2) > :nth-child(n+1) {
  width: 150px;
}
.sub-menu .sub-menu-item:nth-of-type(3) {
  width: 214px;
}
.sub-menu .sub-menu-item:nth-of-type(3) > :nth-child(n+1) {
  width: 174px;
}
.sub-menu .sub-menu-item:last-of-type {
  width: 180px;
}
.sub-menu .sub-menu-item:last-of-type > :nth-child(n+1) {
  width: 140px;
}
.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;
  align-items: center;
  padding: 70px 0 0 0;
  position: relative;
}
.content .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  width: 1400px;
  border-bottom: 1px solid #eee;
  color: #B68D4E;
  font-size: 48px;
}
.content .title .active {
  width: 60px;
  height: 4px;
  background: rgba(182, 141, 78, 1);
  border-radius: 2px;
  margin: 40px 0 0 0;
}
.content .top-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  position: relative;
  width: 1400px;
  border-bottom: 1px solid #eee;
}
.content .top-box .partial-list {
  position: absolute;
  bottom: 30px;
  right: 0;
  font-size: 14px;
  font-weight: 400;
  color: #888;
}
.content .top-box .active {
  width: 60px;
  height: 4px;
  background: rgba(182, 141, 78, 1);
  border-radius: 2px;
  margin: 20px 0 0 0;
}
.content .top-box .inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 770px;
  height: 136px;
  background: url(/en/images/about/nf-honor/title-bg.png) center no-repeat;
  margin: auto;
}
.content .top-box .inner-content .name {
  font-size: 28px;
  font-weight: bold;
  color: #B68D4E;
}
.content .top-box .desc {
  font-size: 18px;
  font-weight: 400;
  color: #222;
}
.content .top-box .name-count {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  margin: 4px auto;
  line-height: 26px;
}
.content .top-box .name-count .count {
  font-size: 24px;
  font-weight: Bold;
  color: rgba(182, 141, 78, 1);
  margin: 0 6px;
}

.list-box {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto 120px auto;
  width: 1400px;
}
.list-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 446px;
  height: 136px;
  background: linear-gradient(180deg, #FAF1E4 0%, #FEF9F0 100%);
  border-radius: 12px;
  padding: 0 20px 0 30px;
  margin: 0 30px 30px 0;
}
.list-box .item:nth-child(3n) {
  margin: 0 0 30px 0;
}
.list-box .item .desc {
  font-size: 18px;
  font-weight: 400;
  color: #222;
  line-height: 28px;
  margin: auto auto auto 30px;
}
.other-list-box {
  display: flex;
  width: 1400px;
  height: 160px;
  background: linear-gradient(180deg, #FAF1E4 0%, #FEF9F0 100%);
  border-radius: 12px;
  margin: 0 auto 30px auto;
}
.other-list-box .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 330px;
  height: 90px;
  background: url(/en/images/about/nf-honor/other-bg.png) center no-repeat;
  margin: 35px 74px 35px 54px;
  font-size: 24px;
  font-weight: 500;
  color: #B68D4E;
  line-height: 36px;
}
.other-list-box .desc {
  width: 834px;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  line-height: 30px;
  margin: 35px 0 0 0;
}
.tips {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 0 0 150px 0;
  width: 1400px;
}
