:root {
  --pcWith: 1200px;
  --font10: 10px;
  --font11: 11px;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font19: 19px;
  --font20: 20px;
  --font21: 21px;
  --font22: 22px;
  --font23: 23px;
  --font24: 24px;
  --font25: 25px;
  --font28: 28px;
  --font29: 29px;
  --font30: 30px;
  --font31: 31px;
  --font34: 34px;
  --font50: 50px;
  --font60: 60px;
  --font67: 67px;
  --font70: 70px;
}
@media screen and (max-width: 48rem) {
  :root {
    --pcWith: 7.5rem;
    --font10: 0.18rem;
    --font11: 0.19rem;
    --font12: 0.2rem;
    --font13: 0.21rem;
    --font14: 0.22rem;
    --font15: 0.23rem;
    --font16: 0.24rem;
    --font17: 0.25rem;
    --font18: 0.26rem;
    --font19: 0.27rem;
    --font20: 0.28rem;
    --font21: 0.29rem;
    --font22: 0.3rem;
    --font23: 0.31rem;
    --font24: 0.32rem;
    --font25: 0.33rem;
    --font28: 0.36rem;
    --font29: 0.37rem;
    --font30: 0.38rem;
    --font31: 0.39rem;
    --font34: 0.42rem;
    --font50: 0.5rem;
    --font60: 0.6rem;
    --font67: 0.67rem;
    --font70: 0.7rem;
  }
}
/* 子元素-平均分栏 */
.flex1 {
  /* #ifndef APP-PLUS */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  /* #endif */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex2 {
  /* #ifndef APP-PLUS */
  -webkit-box-flex: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 2;
  /* OLD - Firefox 19- */
  -webkit-flex: 2;
  /* Chrome */
  -ms-flex: 2;
  /* IE 10 */
  /* #endif */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  flex: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  /* #endif */
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  /* #ifndef APP-PLUS */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  /* #endif */
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  /* #endif */
  justify-content: center;
  /* 其它取值如下：：
      align-items     主轴原点偏向对齐
      flex-end        主轴延伸偏向对齐
      space-between   等间距排列，，首尾不留白
      space-around    等间距排列，，首尾留白
     */
}
.flex-end {
  justify-content: flex-end;
}
.flex-sa {
  /* #ifndef APP-PLUS */
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  /* #endif */
  justify-content: space-around;
}
.flex-sb {
  /* #ifndef APP-PLUS */
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  /* #endif */
  justify-content: space-between;
}
.flex-aic {
  /* #ifndef APP-PLUS */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  /* #endif */
  align-items: center;
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  /* #endif */
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* #ifndef APP-PLUS */
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  /* #endif */
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  /* #endif */
  align-items: center;
}
.flex-grow-1 {
  flex-grow: 1;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，，用于改变源文档顺序显示 */
.flex-1 {
  /* #ifndef APP-PLUS */
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  /* #endif */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，，用于改变源文档顺序显示 */
.flex-2 {
  /* #ifndef APP-PLUS */
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  /* #endif */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
* {
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /*margin: 100/100rem auto;*/
  width: 1rem;
  height: 1.2rem;
  text-align: center;
  font-size: 0.1rem;
}
.spinner > div {
  background-color: gold;
  height: 100%;
  width: 0.08rem;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
ul li {
  list-style-type: none;
}
@font-face {
  font-family: sy;
  src: url('/css/tp/tp/SourceHanSansCN-Light.otf');
}
body,
html {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden;
  font-size: var(--font20);
  color: white;
  font-family: "sy", "Microsoft YaHei", "PingFang SC", "宋体", "Arial", "黑体", "sans-serif";
}
.bar-view {
  text-align: center;
}
.bar-view .ch {
  font-size: var(--font25);
  color: #333333;
  font-weight: bold;
}
.bar-view .en {
  font-size: var(--font15);
  color: #999999;
}
.bar-view .icon {
  line-height: 0.3rem;
}
.btn-default1 {
  font-size: var(--font14);
  padding: 0.12rem 0.35rem;
  background-color: #cfab58;
  display: inline-block;
}
.hide {
  display: none;
}
.flax {
  display: flex;
}
.point-none {
  pointer-events: none;
}
.op {
  opacity: 0;
}
.rel {
  position: relative;
}
.h100 {
  height: 100%;
}
.w100 {
  width: 100%;
}
.hw100 {
  width: 100%;
  height: 100%;
}
.abs {
  position: absolute;
}
.abs.center {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.abs.top {
  top: 0;
}
.abs.bottom {
  bottom: 0;
}
.abs.left {
  left: 0;
}
.abs.right {
  right: 0;
}
img {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  flex-shrink: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
.loadings {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3000;
  display: none;
}
.loadings div {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.9rem 0 0 -0.9rem;
  background: url("/css/img/loading.png") no-repeat center center;
  background-size: contain;
  -webkit-animation: rotate 2s linear 0s infinite;
}
.pnone {
  pointer-events: none;
}
.hint,
.alert-view {
  position: fixed;
  width: 7.4rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  display: none;
  z-index: 1;
}
.hint .clickall,
.alert-view .clickall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hint > div:not(.clickall),
.alert-view > div:not(.clickall) {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.hint .alert,
.alert-view .alert {
  width: 70%;
  height: 3rem;
  border-radius: 0.2rem;
  background: white;
}
.hint .alert .txt,
.alert-view .alert .txt {
  color: black;
  font-size: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 100%;
  overflow: hidden;
}
.hint .alert .sure,
.alert-view .alert .sure {
  padding: 0.3rem 0;
  color: black;
  font-size: 0.3rem;
  position: absolute;
  bottom: 0;
  border-top: 0.02rem solid #dcdcdc;
  width: 100%;
}
.hint .btnAgain,
.alert-view .btnAgain,
.hint .btnNext,
.alert-view .btnNext,
.hint .btnRightNext,
.alert-view .btnRightNext,
.hint .btnRun,
.alert-view .btnRun {
  bottom: 0.5rem;
}
.xy50 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
i,
em {
  font-style: normal;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.container {
  position: relative;
  min-width: var(--pcWith);
  overflow-y: auto;
  height: 100%;
}
.header-box {
  height: 1.04rem;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(70, 106, 166, 0.5);
  z-index: 2;
}
.header-box .header {
  width: var(--pcWith);
  margin: 0 auto;
  color: white;
  font-size: var(--font13);
}
.header-box .header .header-logo {
  margin-right: 1rem;
}
.header-box .header .mobile-nav-btn {
  display: none;
  width: 0.4rem;
  height: 0.2rem;
  position: relative;
  margin-top: -0.05rem;
}
.header-box .header .mobile-nav-btn .line {
  width: 100%;
  height: 0.05rem;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 62%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-box .header .mobile-nav-btn.open:before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-box .header .mobile-nav-btn.open:after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-box .header .mobile-nav-btn.open .line {
  opacity: 0;
}
.header-box .header .mobile-nav-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.05rem;
  background: #FFFF;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-box .header .mobile-nav-btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.05rem;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-box .header .nav-item {
  flex-grow: 1;
  text-align: center;
  height: 1.04rem;
}
.header-box .header .nav-item.selected,
.header-box .header .nav-item:hover {
  background-image: linear-gradient(to bottom, #637792, #b59e66);
}
.header-box .header a:not(.logo) {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-align-items: center;
  color: white;
  font-size: var(--font16);
}
.header-box .header .nav-box {
  flex-grow: 1;
}
.header-box .header .lang {
  border-left: 0.01rem solid white;
  padding-left: 0.3rem;
  height: 0.58rem;
  position: relative;
}
.header-box .mobile-nav-group {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 1.01rem;
  background: rgba(0, 0, 0, 0.7);
  -webkit-animation: fadeIn 0.3s linear 0s both;
  z-index: 1000;
}
.header-box .mobile-nav-group .mobile-nav-box {
  width: 3rem;
  height: 100vh;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 10px 1px rgba(7, 17, 27, 0.1);
  padding-top: 0.3rem;
  -webkit-animation: slideInRight 0.3s linear 0s both;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item {
  margin: 0.5rem 0;
  font-size: 0.32rem;
  color: #808080;
  line-height: 0.2rem;
  padding-bottom: 0.08rem;
  text-align: center;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item a {
  color: #808080;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item.selected {
  color: #ff6600;
  position: relative;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item.selected:after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.02rem;
  background: #ff6600;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.footer {
  position: relative;
  z-index: 1;
  background-color: #232323;
  padding: 0.5rem 0;
  color: #b3b3b3;
}
.footer a {
  color: #b3b3b3;
}
.footer .mid {
  width: var(--pcWith);
  margin: 0 auto;
}
.footer .mid .nav-view {
  padding-bottom: 0.4rem;
  border-bottom: 0.01rem dotted #b3b3b3;
}
.footer .mid .nav-box {
  flex-grow: 1;
  margin-left: 1.6rem;
}
.footer .mid .nav-item {
  font-size: var(--font13);
}
.footer .mid .company-view {
  padding: 0.3rem 0;
  border-bottom: 0.01rem dotted #b3b3b3;
}
.footer .mid .company-view li:not(:last-child) {
  margin-bottom: 0.3rem;
}
.footer .mid .company-view li .icon {
  margin-right: 0.2rem;
}
.footer .mid .company-view li .title {
  font-size: var(--font15);
}
.footer .mid .company-view li .detail {
  margin-top: 0.05rem;
  font-size: var(--font13);
}
.footer .mid .company-view .about-us {
  cursor: pointer;
  font-size: var(--font13);
  padding: 0.05rem 0.3rem;
  border: 0.01rem solid #b3b3b3;
}
.footer .mid .company-view .tel-txt {
  font-size: var(--font15);
}
.footer .mid .company-view .tel {
  font-size: var(--font18);
}
.footer .mid .copy-right {
  font-size: var(--font12);
  margin-top: 0.3rem;
}
.footer .mid .copy-right > div:first-child {
  margin-right: 0.3rem;
}
@media screen and (max-width: 48rem) {
  .header-logo {
    margin-right: 1.5rem !important;
    width: 3rem;
  }
  .mobile-lang {
    display: block;
    font-size: 0.35rem;
  }
  .container {
    overflow-x: hidden;
  }
  .nav-box {
    display: none;
  }
  .header-box {
    box-sizing: border-box;
    padding: 0 0.2rem;
  }
  .header-box .header a {
    font-size: 0.25rem;
  }
  .mobile-nav-btn {
    display: block !important;
  }
  .footer .mid {
    width: 100%;
    padding: 0 0.2rem;
    box-sizing: border-box;
  }
  .footer .copy-right {
    display: block;
  }
  .footer .about-us {
    width: 2rem;
    text-align: center;
    padding: 0.1rem 0 !important;
    margin-left: 0.3rem;
    display: inline-block;
  }
}
.honor-banner-view {
  position: relative;
  color: white;
  overflow: hidden;
}
.honor-banner-view .banner-view {
  top: 1.04rem;
  box-sizing: border-box;
  height: calc(100% - 1.04rem);
}
.honor-banner-view .banner-view .title {
  font-size: var(--font50);
  letter-spacing: 0.1rem;
}
.bar-view {
  margin: 0.5rem auto;
}
.about-view {
  font-size: var(--font16);
  color: #313131;
  padding-bottom: 0.8rem;
}
.about-view.mid {
  width: var(--pcWith);
  margin: 0 auto;
}
.honor-view {
  width: 100%;
  background-color: #e3e8f1;
}
.honor-view .mid-view {
  width: var(--pcWith);
  margin: 0 auto;
}
.honor-view .bar-view {
  margin: 0.3rem 0 0 0;
}
.honor-view .nav-view {
  font-size: var(--font15);
  color: #333333;
  cursor: pointer;
}
.honor-view .nav-view li {
  position: relative;
  text-align: center;
  padding: 0.05rem 0.15rem;
  color: #999999;
  background-color: white;
}
.honor-view .nav-view li:not(:last-child) {
  margin-right: 0.1rem;
}
.honor-view .nav-view li.selected {
  background-color: #4163a4;
  color: white;
}
.honor-num {
  margin: 0.3rem 0;
}
.honor-num li {
  text-align: center;
  line-height: 0.3rem;
  color: #000000;
  font-weight: bold;
  padding: 0 0.4rem;
  font-size: var(--font50);
}
.honor-num li:not(:last-child) {
  border-right: 0.02rem solid #d2d4d9;
}
.honor-num li:first-child {
  padding: 0 0.4rem 0 0;
}
.honor-num li span {
  font-size: var(--font31);
  font-weight: normal;
}
.honor-num li .txt {
  font-size: var(--font14);
  color: #6a6b6d;
}
.list-group .list li {
  background-color: white;
  text-align: center;
  padding: 0.05rem;
  margin-bottom: 0.18rem;
}
.list-group .list li:not(:nth-child(5n)) {
  margin-right: 0.18rem;
}
.list-group .list .pic,
.list-group .list .title {
  width: 2.15rem;
}
.list-group .list .pic {
  height: 1.61rem;
  overflow: hidden;
}
.list-group .list .title {
  font-size: var(--font13);
  color: #3d3d3d;
  margin: 0.1rem 0;
}
.list-group .swiper-button-prev,
.list-group .swiper-button-next {
  width: 0.35rem;
  height: 0.29rem;
  border: 0.02rem solid #d3dbea;
  color: #d3dbea;
  margin-top: 0;
}
.list-group .swiper-button-prev:after,
.list-group .swiper-button-next:after {
  font-size: var(--font20);
}
.list-group .swiper-button-prev,
.list-group .swiper-button-next,
.list-group .swiper-pagination {
  position: relative;
}
.list-group .swiper-pagination {
  display: inline-block;
  width: auto !important;
  bottom: 0 !important;
  margin: 0 0.3rem;
}
.list-group .swiper-pagination .swiper-pagination-bullet {
  background-color: #d3dbea;
  opacity: 1;
}
.list-group .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4163a4;
  width: 0.31rem;
  border-radius: 0.1rem;
}
@media screen and (max-width: 48rem) {
  .about-view.mid {
    width: 100%;
    padding: 0 0.2rem 0.5rem;
    box-sizing: border-box;
  }
  .honor-view .mid .mid-view {
    padding: 0.2rem 0.2rem;
    box-sizing: border-box;
    width: 100%;
  }
  .honor-view .mid .mid-view > div:first-child {
    display: block;
  }
  .honor-view .mid .nav-view {
    margin-top: 0.3rem;
  }
  .honor-view .mid .nav-view ul li {
    display: flex;
    align-items: center;
    height: 0.7rem;
    padding: 0.05rem 0.3rem;
    justify-content: center;
  }
  .honor-view .list-group .list li:not(:nth-child(5n)) {
    margin-right: 0;
  }
  .honor-view .list-group .list li:not(:nth-child(3n)) {
    margin-right: 0.1rem;
  }
}
/*# sourceMappingURL=honor.css.map */<!--耗时1765945073.8172秒-->