.sub-container {
  display: flex;
  padding: 5rem 0 0;
}

.side-nav {
  margin-right: 5rem;
  width: 26rem;
  flex-shrink: 0;
  height: max-content;
}

.side-nav .side-nav-title {
  font-weight: bold;
  padding: 3rem 5.8rem;
  color: #fff;
  text-align: center;
  border-radius: 5rem 0 5rem 0;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fdd803, #2d8d2c);
}

.side-nav .side-nav-list {
  padding: 5rem 0rem 5rem 0;
  border-radius: 0 5rem 0 5rem;
  background: linear-gradient(to bottom, #fff2c8, #aaead1);
}

.side-nav .side-nav-list li {
  margin-bottom: 3rem;
}

.side-nav .side-nav-list li:last-child {
  margin-bottom: 0;
}

.side-nav .side-nav-list li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3rem;
  padding-right: 2rem;
}

.side-nav .side-nav-list li>a::before {
  content: '';
  display: none;
  width: 8px;
  height: 8px;
  order: 2;
  border-left: 1px solid #006a2d;
  border-top: 1px solid #006a2d;
  transform: rotate(135deg);
}

.side-nav .side-nav-list li>a::after {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 4px;
  background: #006a2d;
}

.side-nav .side-nav-list li.active>a,
.side-nav .side-nav-list li:hover>a {
  font-weight: bold;
  color: #006a2d;
  padding-right: 2rem;
}

.side-nav .side-nav-list li.active>a::after,
.side-nav .side-nav-list li:hover>a::after,
.side-nav .side-nav-list li:hover>a::before,
.side-nav .side-nav-list li.active>a::before {
  display: block;
}

.side-nav .side-nav-list li.more>a::before {
  display: none !important;
}

.side-nav .side-secondary dd {
  padding-left: 3rem;
}

.side-nav .side-secondary dd a {
  display: block;
  padding: 1rem 0;
  padding-right: 2rem;
  color: #666;
}

.side-nav .side-secondary dd a::after {
  content: '';
  display: none;
  width: 8px;
  height: 8px;
  border-left: 1px solid #006a2d;
  border-top: 1px solid #006a2d;
  transform: rotate(135deg);
}

.side-nav .side-secondary dd a:hover,
.side-nav .side-secondary dd a.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #006a2d;
}

.side-nav .side-secondary dd a:hover::after,
.side-nav .side-secondary dd a.active::after {
  display: block;
}

.mobile-side-nav {
  display: none;
  background: linear-gradient(to bottom, #fff2c8, #aaead1);
  margin-bottom: 4rem;
  border-radius: 2rem;
}

.mobile-side-nav-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  border-radius: 2rem;
  background: linear-gradient(to right, #cdc70a, #348f2a);
}

.mobile-side-nav-title>span {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.mobile-side-nav.on .mobile-side-nav-title {
  border-radius: 2rem 2rem 0 0;
}

/* 标题箭头旋转 */
.mobile-side-nav-title .cicon-you {
  transition: transform 0.3s ease;
  color: #fff;
}

.mobile-side-nav.on .mobile-side-nav-title .cicon-you {
  transform: rotate(90deg);
}

/* 菜单列表默认隐藏 */
.mobile-side-nav-list {
  display: none;
  padding: 0 3rem;
  /* margin-top: 2rem; */
}

.mobile-side-nav.on .mobile-side-nav-list {
  display: block;
}

.mobile-side-nav-list>li {}

.mobile-side-nav-list>li:last-child {
  margin-bottom: 0;
}

.mobile-side-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-side-nav-list>li:last-child a {
  border-bottom: none;
}

.mobile-side-nav-list a span {
  display: block;
  width: 100%;
  text-align: center;
}

/* 二级菜单箭头旋转 */
.mobile-side-nav-list>li>a .cicon-you {
  transition: transform 0.3s ease;
}

.mobile-side-nav-list>li.open>a .cicon-you {
  transform: rotate(90deg);
}

.mobile-side-nav-list>li.active>a {
  color: #006a2d;
}

/* 二级菜单默认隐藏 */
.mobile-side-secondary {
  display: none;
  /* padding-left: 3rem; */
  /* margin-top: 3rem; */
}

.mobile-side-nav-list>li.open>.mobile-side-secondary {
  display: block;
}

.mobile-side-nav-list dd {
  /* margin-bottom: 2rem; */
}

.mobile-side-nav-list dd:last-child {
  margin-bottom: 0;
}

.mobile-side-nav-list dd a {
  display: block;
  color: #666;
  text-align: center;
}

.mobile-side-nav-list dd a:hover,
.mobile-side-nav-list dd a.active {
  color: #006a2d;
}

/* 二级菜单默认隐藏 */
.side-nav .side-secondary {
  display: none;
  margin-top: 1rem;
  padding: 1rem 0;
  border-left: 1px solid #006a2d;
  background-color: rgba(255, 255, 255, 0.6);
}

/* open 状态的二级菜单展开 */
.side-nav .side-nav-list li.open>.side-secondary {
  display: block;
}

/* 箭头旋转 */
.side-nav .side-nav-list li>a .cicon-you {
  transition: transform 0.3s ease;
  color: #006a2d;
}

.side-nav .side-nav-list li.open>a .cicon-you {
  transform: rotate(90deg);
}

.breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 5rem;
}

.breadcrumb .left {
  font-weight: bold;
  padding-left: 1.4rem;
  border-left: 4px solid #006a2d;
}

.breadcrumb .right {
  display: flex;
  align-items: center;
  margin-left: auto;
  color: #80a690;
}

.breadcrumb .right a {
  color: #80a690;
}

.breadcrumb .right a:hover {
  color: #006a2d;
}

.breadcrumb .right .line {
  display: block;
  margin: 0 0.5rem;
}

.breadcrumb .right .icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: url('../images/home_icon.png') no-repeat center/100% 100%;
  margin-right: 1rem;
}

.breadcrumb::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #006a2d, #fdd803);
}

@media screen and (max-width: 996px) {
  .side-nav {
    display: none;
  }

  .mobile-side-nav {
    display: block;
  }

  .breadcrumb {
    flex-wrap: wrap;
    /* padding-bottom: 0; */
  }

  /* .breadcrumb .left {
    font-weight: bold;
    color: #006A2D;
    padding-left: 0;
    border-left: none;
  }

  .breadcrumb .left span {
    position: relative;
    display: block;
    padding: 0 5rem;
    padding-bottom: 3rem;
  }

  .breadcrumb .left span::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    border-radius: 5rem 0 5rem 0;
    background: linear-gradient(to right, #FDD803, #2D8D2C);
  } */
}

@media screen and (max-width: 480px) {
  /* .breadcrumb .left span {
    position: relative;
    display: block;
    padding: 0 2rem;
    padding-bottom: 1rem;
  }

  .breadcrumb {
    padding-bottom: 1rem;
  }

  .breadcrumb .left {
    margin-bottom: 1rem;
  } */
}

.breadcrumb2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.breadcrumb2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #006a2d, #fdd803);
}

.breadcrumb2 .left {
  font-weight: bold;
  color: #006a2d;
}

.breadcrumb2 .left span {
  position: relative;
  display: block;
  padding: 0 5rem;
  padding-bottom: 3rem;
}

.breadcrumb2 .left span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-radius: 5rem 0 5rem 0;
  background: linear-gradient(to right, #fdd803, #2d8d2c);
}

.breadcrumb2 .right {
  display: flex;
  align-items: center;
  color: #80a690;
  margin-left: auto;
}

.breadcrumb2 .right a {
  color: #80a690;
}

.breadcrumb2 .right a:hover {
  color: #006a2d;
}

.breadcrumb2 .right .line {
  display: block;
  margin: 0 0.5rem;
}

.breadcrumb2 .right .icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: url('../images/home_icon.png') no-repeat center/100% 100%;
  margin-right: 1rem;
}

@media screen and (max-width: 480px) {
  .breadcrumb2 .left span {
    position: relative;
    display: block;
    padding: 0 2rem;
    padding-bottom: 1rem;
  }

  .breadcrumb2 {
    padding-bottom: 1rem;
  }

  .breadcrumb2 .left {
    margin-bottom: 1rem;
  }
}

/* 有侧边栏主体宽度减去侧边栏宽度 */
.main-container {
  width: calc(100% - 31rem);
  padding-bottom: 5rem;
  position: relative;
}

/* 无侧边栏主体宽度 100% */
.full-container {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.full-container .main-container {
  width: 100%;
}

@media screen and (max-width: 996px) {
  .main-container {
    width: 100%;
  }
}

.share-article-box {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
}

.share-article-box>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  font-size: 2.5rem;
  border-radius: 50%;
  color: #fff;
}

.share-article-box>a.bds_weixin {
  margin-bottom: 3rem;
  background: rgba(40, 196, 69, 1);
}

.share-article-box>a.bds_weibo {
  background: rgba(234, 93, 92, 1);
}

.weChatBox {
  width: 26rem;
  background-color: #fff;
  border: solid 0.1rem #d8d8d8;
  padding: 1rem;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -13rem 0 0 -14rem;
  z-index: 9998;
  display: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

.weChatBox .w-title {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 0 1rem 0;
}

.w-close {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 2rem;
  position: absolute;
  right: 0;
  top: 0;
  color: #333;
  cursor: pointer;
}

.qrcode {
  width: 20rem;
  height: 20rem;
  margin: 1.5rem auto;
  background: #ccc;
}

.w-footer {
  font-size: 12px;
  line-height: 1.5;
  color: #757575;
}

#qrodeText {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  visibility: hidden;
}

/* 侧栏简介页 */
/* .cljjy-container {
  padding-bottom: 10rem;
} */

/* .cljjy-container .breadcrumb {
  margin-bottom: 3.6rem;
} */

.article-mode {
  line-height: 1.5;
}

.article-mode .article-img {
  margin: 2rem 0;
  text-align: center;
}

/* 领导页 */
/* .xrld-container {
  padding-bottom: 5rem;
}

.xrld-container .breadcrumb {
  margin-bottom: 3rem;
} */

.ld-list li {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.ld-list li .img {
  width: 13.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.ld-list li .img .gp-img {
  padding-bottom: 133.33%;
  border-radius: 2rem;
}

.ld-list li .info {
  border-radius: 2rem;
  flex: 1;
  background-color: #ebf2f5;
}

.ld-list li .info .title {
  padding: 2rem 3rem;
  border-radius: 2rem 2rem 0 0;
  background: linear-gradient(to right,
      rgba(0, 106, 45, 0.06),
      rgba(0, 106, 45, 0));
}

.ld-list li .info .title .name {
  font-weight: bold;
  display: inline-block;
  margin-right: 3rem;
}

.ld-list li .info .title .zw {
  color: #6c997f;
}

.ld-list li .info .content {
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  line-height: 1.5;
}

.ld-list li .info .content .text {
  padding-right: 3rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

/* IE 兼容 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ld-list li .info .content .text {
    display: block;
    max-height: 4.5em;
    line-height: 1.5;
    overflow: hidden;
    word-break: break-all;
  }
}

.ld-list li .info .content .more {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  flex-shrink: 0;
  color: #006a2d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ld-list li .info .content .more:hover {
  transform: translateX(1rem);
}

.ld-list li .info .content .more .ciconfont {
  margin-left: 1rem;
}

@media screen and (max-width: 480px) {
  .ld-list li {
    flex-direction: column;
  }

  .ld-list li .img {
    width: 50%;
    margin-right: 0rem;
    margin-bottom: 1rem;
  }

  .ld-list li .info .content {
    flex-direction: column;
  }

  .ld-list li .info .content .text {
    padding-right: 0;
    border-right: none;
  }

  .ld-list li .info .content .more {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* 组织架构 */
/* .zzjg-container .breadcrumb {
  margin-bottom: 3rem;
} */

.zzjg-box .bottom-img {
  width: 70%;
  margin: 0 auto;
  margin-top: 8rem;
}

.zzjg-box .bottom-img .gp-img {
  padding-bottom: 76%;
}

.zzjg-box .top-img .gp-img {
  padding-bottom: 42.18%;
}

/* 历史沿革 */
/* .lsyg-container {
  padding-bottom: 12.5rem;
} */

/* .lsyg-container .breadcrumb {
  margin-bottom: 3rem;
} */

.lsyg-box {
  position: relative;
  min-height: 36rem;
}

.lsyg-box .arrow-img {
  position: absolute;
  left: 0;
  top: 13.7rem;
  width: 100%;
  z-index: -1;
  height: 32.2rem;
  background: url('../images/lsyg_arrow_bg.png') no-repeat center/100% auto;
}

.lsyg-box .lsyg-content {
  margin-bottom: 3rem;
}

.lsyg-box .lsyg-content .item {
  position: relative;
  opacity: 0;
}

.lsyg-box .lsyg-content .item.swiper-slide-prev {
  /* display: none; */
  opacity: 0;
}

.lsyg-box .lsyg-content .item .line {
  position: absolute;
  left: -1rem;
  top: 0;
  width: 1px;
  height: 100%;
  margin-right: 2rem;
  background-color: #be6332;
}

.lsyg-box .lsyg-content .item.item1 .line .top-circle,
.lsyg-box .lsyg-content .item.item3 .line .top-circle,
.lsyg-box .lsyg-content .item.item5 .line .top-circle,
.lsyg-box .lsyg-content .item.item7 .line .top-circle,
.lsyg-box .lsyg-content .item.item9 .line .top-circle {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #be6332;
}

.lsyg-box .lsyg-content .item.item1 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item3 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item5 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item7 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item9 .line .bottom-circle {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #be6332;
}

.lsyg-box .lsyg-content .item.item2 .line .top-circle,
.lsyg-box .lsyg-content .item.item4 .line .top-circle,
.lsyg-box .lsyg-content .item.item6 .line .top-circle,
.lsyg-box .lsyg-content .item.item8 .line .top-circle {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #be6332;
}

.lsyg-box .lsyg-content .item.item2 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item4 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item6 .line .bottom-circle,
.lsyg-box .lsyg-content .item.item8 .line .bottom-circle {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #be6332;
}

.lsyg-box .lsyg-content .item.item1 .line .bottom-circle::after,
.lsyg-box .lsyg-content .item.item3 .line .bottom-circle::after,
.lsyg-box .lsyg-content .item.item5 .line .bottom-circle::after,
.lsyg-box .lsyg-content .item.item7 .line .bottom-circle::after,
.lsyg-box .lsyg-content .item.item9 .line .bottom-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #be6332;
}

.lsyg-box .lsyg-content .item.item2 .line .top-circle::after,
.lsyg-box .lsyg-content .item.item4 .line .top-circle::after,
.lsyg-box .lsyg-content .item.item6 .line .top-circle::after,
.lsyg-box .lsyg-content .item.item8 .line .top-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #be6332;
}

.lsyg-box .lsyg-content .item .text {
  line-height: 1.5;
  width: 180%;
  height: 29rem;
  overflow: auto;
  /* margin-left: 2rem; */
}

.lsyg-box .lsyg-content .item .text .year {
  font-weight: bold;
  color: #be6332;
  margin-bottom: 1rem;
}

.lsyg-box .lsyg-content .item .text span {
  display: block;
  margin-bottom: 2rem;
}

.lsyg-box .lsyg-content .item .text span.dot {
  position: relative;
  padding-left: 1.6rem;
}

.lsyg-box .lsyg-content .item .text span.dot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #be6332;
}

.lsyg-box .lsyg-content .item.item1 .text,
.lsyg-box .lsyg-content .item.item3 .text,
.lsyg-box .lsyg-content .item.item5 .text,
.lsyg-box .lsyg-content .item.item7 .text,
.lsyg-box .lsyg-content .item.item9 .text {
  padding-top: 1rem;
}

.lsyg-box .lsyg-content .item.item1 {
  margin-top: 46rem;
  margin-left: 2rem;
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item2 {
  margin-top: 15.5rem;
  margin-left: -3rem;
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item3 {
  margin-top: 46.5rem;
  /* margin-left: -7.5rem; */
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item4 {
  margin-top: 15.5rem;
  margin-left: -2rem;
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item5 {
  margin-top: 45rem;
  /* margin-left: -7rem; */
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item6 {
  margin-top: 13rem;
  margin-left: -2rem;
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item7 {
  margin-top: 40.5rem;
  /* margin-left: -5.5rem; */
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item8 {
  margin-top: 7rem;
  margin-left: -3rem;
  opacity: 1;
}

.lsyg-box .lsyg-content .item.item9 {
  margin-top: 32rem;
  margin-left: -1rem;
  opacity: 1;
}


.lsyg-box .arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lsyg-box .arrow-box .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  background-color: rgba(0, 106, 45, 0.06);
  border: 1px solid rgba(0, 106, 45, 0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  color: #006a2d;
  font-weight: bold;
  margin: 0 1.5rem;
}

.lsyg-box .arrow-box .arrow:hover {
  background-color: rgba(0, 106, 45, 1);
  color: #fff;
}

.lsyg-box .mobile-box .item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.lsyg-box .mobile-box .item .date {
  font-weight: bold;
  color: #be6332;
}

.lsyg-box .mobile-box .item .text {
  margin: 1rem 0;
  line-height: 1.5;
}

.lsyg-box .mobile-box .item .line {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: calc(100% - 2rem);
  background-color: #be6332;
}

.lsyg-box .mobile-box .item::after {
  content: '';
  position: absolute;
  left: 0%;
  top: 3px;
  transform: translate(-50%, 0%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #be6332;
}

.lsyg-box .mobile-box .item::before {
  content: '';
  position: absolute;
  left: 0%;
  top: 0%;
  transform: translate(-50%, 0%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #be6332;
}

.lsyg-box .web-box {
  overflow: hidden;
}

.lsyg-box .mobile-box {
  display: none;
}

@media (max-width: 1640px) {
  .lsyg-box .lsyg-content .item.item1 {
    margin-top: 44rem;
    margin-left: 2rem;
  }

  .lsyg-box .lsyg-content .item.item2 {
    margin-top: 13rem;
    margin-left: -5rem;
  }

  .lsyg-box .lsyg-content .item.item3 {
    margin-top: 44.5rem;
  }

  .lsyg-box .lsyg-content .item.item4 {
    margin-top: 13.5rem;
    margin-left: -4.5rem;
  }

  .lsyg-box .lsyg-content .item.item5 {
    margin-top: 43.5rem;
    margin-left: 0rem;
  }

  .lsyg-box .lsyg-content .item.item6 {
    margin-top: 12rem;
    margin-left: -4.5rem;
  }

  .lsyg-box .lsyg-content .item.item7 {
    margin-top: 41rem;
    margin-left: 0rem;
  }

  .lsyg-box .lsyg-content .item.item8 {
    margin-top: 8.5rem;
    margin-left: -4rem;
  }

  .lsyg-box .lsyg-content .item.item9 {
    margin-top: 36rem;
    margin-left: .5rem;
  }
}

@media (max-width: 996px) {
  .lsyg-box .web-box {
    display: none;
  }

  .lsyg-box .mobile-box {
    display: block;
  }
}

/* 专家介绍 */

/* .zjjs-container .breadcrumb {
  margin-bottom: 3rem;
}

.zjjs-container .gp-page1 {
  padding-top: 2rem;
} */

.zjjs-box .letter-box {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.zjjs-box .letter-title {
  font-weight: bold;
  flex-shrink: 0;
}

.zjjs-box .letter-list {
  display: flex;
  align-items: center;
}

.zjjs-box .letter-list a:not(.all) {
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(0, 106, 45, 0.1);
  cursor: pointer;
}

.zjjs-box .letter-list a.all {
  margin-right: 1rem;
  display: block;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.zjjs-box .letter-list a:hover,
.zjjs-box .letter-list a.active {
  color: #fff;
  background-color: #006a2d;
}

.zjjs-box .zjjs-list {
  display: flex;
  flex-wrap: wrap;
}

.zjjs-box .zjjs-list .item {
  margin-bottom: 3rem;
  width: calc(50% - 2rem);
}

.zjjs-box .zjjs-list .item:nth-child(odd) {
  margin-right: 1.5rem;
}

.zjjs-box .zjjs-list .item:nth-child(even) {
  margin-left: 1.5rem;
}

.zjjs-box .zjjs-list .item a {
  display: flex;
  border-radius: 2rem;
  padding: 2rem;
  background-color: #f0f6f3;
}

.zjjs-box .zjjs-list .item a:hover {
  box-shadow: 8px 8px 0px #62c7a1;
}

.zjjs-box .zjjs-list .item a .img {
  width: 16rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

.zjjs-box .zjjs-list .item a .img .gp-img {
  padding-bottom: 116.25%;
  border-radius: 1rem;
}

.zjjs-box .zjjs-list .item a:hover .img .gp-img img {
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
}

.zjjs-box .zjjs-list .item a .info {
  flex: 1;
}

.zjjs-box .zjjs-list .item a .info .name {
  font-weight: bold;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 106, 45, 0.2);
}

.zjjs-box .zjjs-list .item a .info .name .zw {
  font-weight: normal;
  display: inline-block;
  margin-left: 1rem;
  color: #608972;
}

.zjjs-box .zjjs-list .item a .info .email {
  color: #666;
  margin-bottom: 1rem;
}

.zjjs-box .zjjs-list .item a .info .desc {
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

/* IE 兼容 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .zjjs-box .zjjs-list .item a .info .desc {
    display: block;
    max-height: 4.5em;
    line-height: 1.5;
    overflow: hidden;
    word-break: break-all;
    color: #666;
  }
}

.zjjs-box .zjjs-list .item a:hover {
  color: #333;
}

@media screen and (max-width: 1640px) {
  .zjjs-box .letter-list a:not(.all) {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 1380px) {
  .zjjs-box .letter-list a:not(.all) {
    padding: 4px 8px;
  }
}

@media screen and (max-width: 1140px) {
  .zjjs-box .letter-list a:not(.all) {
    padding: 3px 7px;
  }
}

@media screen and (max-width: 996px) {
  .zjjs-box .letter-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .zjjs-box .letter-title {
    margin-bottom: 2rem;
  }

  .zjjs-box .letter-list {
    flex-wrap: wrap;
  }

  .zjjs-box .letter-list a:not(.all) {
    padding: 5px 10px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    width: max-content;
    height: max-content;
  }
}

@media screen and (max-width: 680px) {
  .zjjs-box .zjjs-list .item {
    width: 100%;
  }

  .zjjs-box .zjjs-list .item:nth-child(odd) {
    margin-right: 0;
  }

  .zjjs-box .zjjs-list .item:nth-child(even) {
    margin-left: 0;
  }
}

/* 侧栏师资详情页 */
/* .zjxq-container {
  padding-bottom: 6rem;
}

.zjxq-container .breadcrumb {
  margin-bottom: 3rem;
} */

.zjxq-box .zj-info {
  position: relative;
  border-radius: 2rem;
  padding: 3rem;
  background-color: #ebf2f5;
}

.zjxq-box .zj-info .img {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 22rem;
}

.zjxq-box .zj-info .img .gp-img {
  padding-bottom: 116.36%;
  border-radius: 2rem;
}

.zjxq-box .zj-info .info {
  width: calc(100% - 27rem);
  margin-right: 27rem;
}

.zjxq-box .zj-info .info .name {
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.zjxq-box .zj-info .info .name span {
  font-weight: bold;
  display: block;
}

.zjxq-box .zj-info .info .name span:first-child {
  padding-left: 1rem;
  border-left: 4px solid #006a2d;
}

.zjxq-box .zj-info .info .name .zw {
  color: #999;
  margin-left: 3rem;
}

.zjxq-box .zj-info .info .info-list .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.zjxq-box .zj-info .info .info-list .item .icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  margin-right: 1rem;
}

.zjxq-box .zj-info .info .info-list .item:nth-child(1) .icon {
  background: url('../images/xl_icon.png') no-repeat center/100% 100%;
}

.zjxq-box .zj-info .info .info-list .item:nth-child(2) .icon {
  background: url('../images/phone_iccon2.png') no-repeat center/100% 100%;
}

.zjxq-box .zj-info .info .info-list .item:nth-child(3) .icon {
  background: url('../images/email_icon2.png') no-repeat center/100% 100%;
}

.zjxq-box .zj-info .info .info-list .item:last-child {
  margin-bottom: 0;
}

.zjxq-box .zj-content {
  margin-top: 3rem;
}

.zjxq-box .zj-content .content p {
  margin-top: 2rem;
  line-height: 1.5;
}

.zjxq-box .zj-content .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.zjxq-box .zj-content .title span {
  font-weight: bold;
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 4px solid #006a2d;
}

@media screen and (max-width: 480px) {
  .zjxq-box .zj-info {
    display: flex;
    flex-direction: column;
  }

  .zjxq-box .zj-info .img {
    position: static;
    margin: 0 auto;
    margin-bottom: 2rem;
    width: 22rem;
    order: 1;
  }

  .zjxq-box .zj-info .info {
    width: calc(100% - 0rem);
    margin-right: 0rem;
    order: 2;
  }
}

/* 科研成果 */
/* .rczp-container {
  padding-bottom: 5rem;
}

.rczp-container .breadcrumb {
  margin-bottom: 3rem;
} */

.kycg-box li {
  padding: 3rem;
  border-radius: 2rem;
  margin-bottom: 3rem;
  background: url('../images/kycg2026.jpg') no-repeat right bottom, #ebf2f5;
}

.kycg-box li .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.kycg-box li .name .name-text {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}

.kycg-box li .name .job-text {
  display: flex;
  align-items: center;
  color: #999;
}

.kycg-box li .name .job-text .line {
  margin: 0 3rem;
}

.kycg-box li .name .add-link {
  display: block;
  color: #fff;
  border-radius: 5rem;
  padding: 0.8rem 2rem;
  background-color: #1aaa74;
}

.kycg-box li .name .add-link:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.kycg-box li .content {
  line-height: 1.5;
}

.kycg-box li .content .title {
  font-weight: bold;
  margin-bottom: 2rem;
}

.kycg-box-box li .content .item {
  display: flex;
  margin-bottom: 1rem;
}

.kycg-box li .content .item p {
  margin-bottom: 1rem;
}

.kycg-box li .content .item span {
  /* display: block; */
}

.kycg-box li .content .item span:first-child {
  /* margin-right: 2rem; */
  flex-shrink: 0;
}

.kycg-box li .content .item:last-child {
  margin-bottom: 0;
}



/* 人才招聘 */
/* .rczp-container {
  padding-bottom: 5rem;
}

.rczp-container .breadcrumb {
  margin-bottom: 3rem;
} */

.rczp-box li {
  padding: 3rem;
  border-radius: 2rem;
  margin-bottom: 3rem;
  background: url('../images/rczp_bg.png') no-repeat right bottom, #ebf2f5;
}

.rczp-box li .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rczp-box li .name .name-text {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}

.rczp-box li .name .job-text {
  display: flex;
  align-items: center;
  color: #999;
}

.rczp-box li .name .job-text .line {
  margin: 0 3rem;
}

.rczp-box li .name .add-link {
  display: block;
  color: #fff;
  border-radius: 5rem;
  padding: 0.8rem 2rem;
  background-color: #1aaa74;
}

.rczp-box li .name .add-link:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rczp-box li .content {
  line-height: 1.5;
}

.rczp-box li .content .title {
  font-weight: bold;
  margin-bottom: 2rem;
}

.rczp-box li .content .item {
  display: flex;
  margin-bottom: 1rem;
}

.rczp-box li .content .item p {
  margin-bottom: 1rem;
}

.rczp-box li .content .item span {
  display: block;
}

.rczp-box li .content .item span:first-child {
  margin-right: 2rem;
  flex-shrink: 0;
}

.rczp-box li .content .item:last-child {
  margin-bottom: 0;
}

/* 科研方向 */
/* .kyfx-container {
  padding-bottom: 6rem;
}

.kyfx-container .breadcrumb {
  margin-bottom: 3rem;
} */

.kyfx-box li {
  margin-bottom: 2rem;
}

.kyfx-box li a {
  position: relative;
  display: block;
  padding: 3rem;
  background-color: #ebf2f5;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.kyfx-box li a .title {
  font-weight: bold;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.kyfx-box li a .text {
  line-height: 1.5;
}

.kyfx-box li a:hover {
  color: #fff;
  background: url('../images/kyfx_item_bg.png') no-repeat center/100% 100%;
}

.kyfx-box li a:hover .title {
  border-color: rgba(255, 255, 255, 0.2);
}

/* 重点基地 */

/* .zdjd-container .breadcrumb {
  margin-bottom: 3rem;
}

.zdjd-container .gp-page1 {
  padding-top: 2rem;
} */

.zdjd-box {
  display: flex;
  flex-wrap: wrap;
}

.zdjd-box li:nth-child(odd) {
  margin-right: 1.5rem;
}

.zdjd-box li:nth-child(even) {
  margin-left: 1.5rem;
}

.zdjd-box li {
  width: calc(50% - 2rem);
  margin-bottom: 3rem;
}

.zdjd-box li a {
  display: flex;
  border-radius: 2rem;
  padding: 2rem;
  background-color: #ebf2f5;
}

.zdjd-box li a:hover {
  box-shadow: 8px 8px 0px #62c7a1;
}

.zdjd-box li a .img {
  width: 20rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

.zdjd-box li a .img .gp-img {
  padding-bottom: 66.5%;
  border-radius: 1rem;
}

.zdjd-box li a .text {
  /* flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; */
  flex: 1;
  position: relative;
  line-height: 1.5;
}

.zdjd-box li a .text .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.zdjd-box li a .text .desc {
  color: #999;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.zdjd-box li a .text .time {
  color: #999;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* IE 兼容 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

  .zdjd-box li a .text .title,
  .zdjd-box li a .text .desc {
    display: block;
    max-height: 3em;
    line-height: 1.5;
    overflow: hidden;
    word-break: break-all;
  }
}

@media screen and (max-width: 768px) {
  .zdjd-box li:nth-child(odd) {
    margin-right: 0;
  }

  .zdjd-box li:nth-child(even) {
    margin-left: 0;
  }

  .zdjd-box li {
    width: 100%;
  }
}

/* 侧栏文字列表页 */

/* .clwzlb-container .breadcrumb {
  margin-bottom: 3rem;
}

.clwzlb-container .gp-page1 {
  padding-top: 3rem;
} */

.clwzlb-box li {
  margin-bottom: 2rem;
}

.clwzlb-box li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  background-color: #ebf2f5;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.clwzlb-box li a .ciconfont {
  color: #999;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.clwzlb-box li a:hover {
  background: url('../images/clwz_item_bg.png') no-repeat center/100% 100%;
}

.clwzlb-box li a:hover .ciconfont {
  color: rgba(255, 255, 255, 0.6);
}

.clwzlb-box li a .info {
  display: flex;
  align-items: center;
}

.clwzlb-box li a .info .date {
  color: #006a2d;
  flex-shrink: 0;
}

.clwzlb-box li a:hover .info .date {
  color: #f8ff92;
}

.clwzlb-box li a .info .line {
  width: 1px;
  height: 3rem;
  margin: 0 3rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.clwzlb-box li a:hover .info .line {
  background-color: rgba(255, 255, 255, 0.3);
}

.clwzlb-box li a .info .text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.clwzlb-box li a:hover .info .text {
  color: #fff;
}

.clwzlb-box li a .info .date .day {
  font-weight: bold;
}

/* 成果转化 */

/* .cgzh-container .gp-page1 {
  margin-bottom: 2rem;
}

.cgzh-container .breadcrumb {
  margin-bottom: 3rem;
} */

.cgzh-box li {
  margin-bottom: 3rem;
}

.cgzh-box li a {
  display: flex;
  align-items: center;
  padding: 3rem;
  background-color: #ebf2f5;
  border-radius: 2rem;
}

.cgzh-box li a:hover {
  box-shadow: 8px 8px 0px #62c7a1;
}

.cgzh-box li a .img {
  width: 24rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

.cgzh-box li a .img .gp-img {
  padding-bottom: 66.66%;
  border-radius: 1rem;
}

.cgzh-box li a .info .title {
  margin-bottom: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.cgzh-box li a .info .desc {
  line-height: 1.5;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  margin-bottom: 3rem;
}

/* IE 兼容 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cgzh-box li a .info .desc {
    display: block;
    max-height: 3em;
    line-height: 1.5;
    overflow: hidden;
    word-break: break-all;
    color: #999;
    margin-bottom: 3rem;
  }
}

.cgzh-box li a .info .more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #006a2d;
}

.cgzh-box li a .info .more .time {
  color: #999;
}

@media screen and (max-width: 480px) {
  .cgzh-box li a {
    flex-direction: column;
  }

  .cgzh-box li a .img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .cgzh-box li a .info {
    width: 100%;
  }
}

/* 平台资质 */

.ptzz-box {
  display: flex;
  flex-wrap: wrap;
}

.ptzz-box li:nth-child(odd) {
  margin-right: 1.5rem;
}

.ptzz-box li:nth-child(even) {
  margin-left: 1.5rem;
}

.ptzz-box li {
  width: calc(50% - 1.5rem);
  margin-bottom: 3rem;
}

.ptzz-box li a {
  display: flex;
  align-items: center;
  background-color: #ebf2f5;
  border-radius: 2rem;
}

.ptzz-box li a:hover {
  box-shadow: 8px 8px 0px #62c7a1;
}

.ptzz-box li a .img {
  width: 30rem;
  flex-shrink: 0;
}

.ptzz-box li a .img .gp-img {
  padding-bottom: 66.66%;
  border-radius: 2rem;
}

.ptzz-box li a .text {
  padding: 3rem;
}

.ptzz-box li a .text .title {
  line-height: 1.5;
  margin-bottom: 6rem;
}

.ptzz-box li a:hover .text .title {
  color: #006a2d;
}

.ptzz-box li a .text .time {
  color: #999;
}

@media screen and (max-width: 996px) {
  .ptzz-box li:nth-child(odd) {
    margin-right: 0;
  }

  .ptzz-box li:nth-child(even) {
    margin-left: 0;
  }

  .ptzz-box li {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .ptzz-box li a {
    flex-direction: column;
  }

  .ptzz-box li a .img {
    width: 100%;
  }

  .ptzz-box li a .text {
    width: 100%;
  }

  .ptzz-box li a .text .title {
    margin-bottom: 2rem;
  }
}

/* 资源服务 */
/* .zyfw-container .breadcrumb {
  margin-bottom: 3rem;
}

.zyfw-container .gp-page1 {
  padding-top: 2rem;
} */

.zyfw-box {
  display: flex;
  flex-wrap: wrap;
}

.zyfw-box li {
  width: 31.5%;
  margin-bottom: 3rem;
}

.zyfw-box li:nth-child(3n + 2) {
  margin: 0 2.8rem;
}

.zyfw-box li a {
  display: flex;
  align-items: center;
  padding: 3rem;
  background-color: #ebf2f5;
  border-radius: 2rem;
}

.zyfw-box li a:hover {
  box-shadow: 8px 8px 0px #62c7a1;
}

.zyfw-box li a .text {
  margin-left: 2rem;
  line-height: 1.5;
}

.zyfw-box li a:hover .text {
  color: #006a2d;
}

.zyfw-box li a img {
  width: 8rem;
  object-fit: contain;
}

@media screen and (max-width: 1640px) {
  .zyfw-box li {
    width: 30.5%;
  }
}

@media screen and (max-width: 768px) {
  .zyfw-box li:nth-child(3n + 2) {
    margin: 0;
  }

  .zyfw-box li:nth-child(odd) {
    margin-right: 1.4rem;
  }

  .zyfw-box li:nth-child(even) {
    margin-left: 1.4rem;
  }

  .zyfw-box li {
    width: calc(50% - 1.4rem);
  }
}

@media screen and (max-width: 480px) {
  .zyfw-box li {
    width: 100%;
  }

  .zyfw-box li:nth-child(3n + 2) {
    margin-bottom: 2rem;
  }

  .zyfw-box li:nth-child(odd) {
    margin-right: 0;
  }

  .zyfw-box li:nth-child(even) {
    margin-left: 0;
  }
}

/* 侧栏文章页 */
/* .article-container {
  padding-bottom: 8rem;
}

.article-container .breadcrumb {
  margin-bottom: 3rem;
} */

/* .full-container .article-box {
  padding-left: 15rem;
} */

.article-box .top {
  position: relative;
  display: flex;
  margin-bottom: 5rem;
}

.article-box .share-article-box {
  position: static;
  margin-left: 3rem;
}

.article-box .left {
  flex: 1;
}

.article-box img {
  max-width: 70rem;
}

.article-box .article-title {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-box .article-title .title {
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.article-box .article-title .time {
  color: #999;
}

.article-box .article-title .time span {
  display: inline-block;
  margin: 0 1.5rem;
}

.article-box .article-img {
  width: 50%;
  margin: 0 auto;
  margin-top: 3rem;
}

.article-box .article-img .gp-img {
  padding-bottom: 66.66%;
}

.article-box .article-attach {
  border-radius: 2rem;
  background-color: #ebf2f5;
}

.article-box .article-attach .title {
  font-weight: bold;
  color: #006a2d;
  border-radius: 2rem 2rem 0 0;
  padding: 2rem 3rem;
  background-color: #e4ecf0;
}

.article-box .attach-list {
  padding: 0 3rem;
}

.article-box .attach-list .item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  padding-left: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-box .attach-list .item a::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #006a2d;
}

.article-box .attach-list .item:last-child a {
  border-bottom: none;
}

.article-box .attach-list .item a .icon {
  width: 2.4rem;
  height: 2.4rem;
  background: url('../images/down_icon.png') no-repeat center/100% 100%;
}

.article-box .attach-list .item a .text {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
  margin: 0 1rem;
}

.article-box .attach-list .item a:hover .text {
  transform: translateX(1rem);
}

/* @media screen and (max-width: 996px) {
  .full-container .article-box {
    padding-left: 0rem;
  }
} */

@media screen and (max-width: 768px) {
  .article-box .article-img {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .article-box .top {
    flex-direction: column;
  }

  .article-box .share-article-box {
    margin-left: 0;
    margin-top: 3rem;
    flex-direction: row;
  }

  .share-article-box>a.bds_weixin {
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .article-box .article-img {
    width: 100%;
  }
}

/* 科研项目 */
.kyxm-box .title-box {
  background-color: #D3EAE1;
  margin-bottom: 3rem;
  padding: 0 3rem;
  border-radius: 1rem;
}

.kyxm-box .title-box a {
  display: inline-flex;
  padding: 2rem .8rem;
  border-bottom: 2px solid transparent;
}

.kyxm-box .title-box a:last-child {
  margin-left: 2.5rem;
}

.kyxm-box .title-box a:hover, .kyxm-box .title-box a.active {
  border-color: #3da93b;
}

.kyxm-box .kyxm-con table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.kyxm-box .kyxm-con table tr {
  background-color: #f8f8f8;
}

.kyxm-box .kyxm-con table tr:nth-of-type(even) {
  background-color: #fff;
}

.kyxm-box .kyxm-con table th {
  background-color: #f1f6f2;
  color: #242424;
  font-weight: 600;
  height: 5rem;
  text-align: left;
  padding: 0 1.2rem;
}
.kyxm-box .kyxm-con table td {
    border-bottom: 1px solid #eaeaea;
    padding: 1.8rem 1.5rem;
    line-height: 1.4;
}
