@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

.mobile-show {
  display: none !important;
}

.mobile-show-flex {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

body {
  background-color: #ffffff;
  font-family: "MicrosoftYaHei";
  min-width: 1120px;
  overflow-x: hidden;
  padding-top: 120px;
}

.container {
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  width: 100%;
  height: 120px;
  border-bottom: 2px solid #eee;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header_logo {
  display: block;
}

.header_right nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_right .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  border-bottom: 4px solid transparent;
  padding: 0 10px;
}
.header_right .item > a {
  height: 120px;
  line-height: 120px;
  font-size: 18px;
}
.header_right .item:hover {
  border-bottom-color: #1b75bb;
}
.header_right .item:hover > a {
  color: #1b75bb;
}
.header_right .item.active > a {
  color: #1b75bb;
  font-weight: 500;
}
.header_right .item.hover .nav-panel {
  max-height: 500px;
  border-bottom: 4px solid #1b75bb;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: max-height 2s ease;
  transition: max-height 2s ease;
}
.header_right .item.hover .nav-panel .sub-nav {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.nav-panel {
  display: block;
  background-color: #fff;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  position: fixed;
  top: 120px;
  left: 0;
  -webkit-transition: top ease 0.2s;
  transition: top ease 0.2s;
}
.nav-panel > .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 20px;
}
.nav-panel .thumbnail {
  width: 280px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 40px;
}
.nav-panel .sub-nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 2px solid #eee;
  padding-left: 20px;
  padding-top: 20px;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}
.nav-panel .sub-nav span {
  width: 25%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-panel .sub-nav span i {
  display: block;
  margin-right: 10px;
}

#back-top {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 100px;
  background-color: #1b75bb;
  padding: 5px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1000;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  padding: 15px;
}
#back-top img {
  display: block;
}

.banner-item {
  display: block;
  position: relative;
  height: 100%;
}
.banner-item .container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.banner-item .inner {
  position: absolute;
  bottom: 0;
  right: -660px;
  background-color: rgba(27, 117, 187, 0.6);
  padding: 30px 40px;
  color: #fff;
  opacity: 0;
  max-width: 660px;
  -webkit-transition: opacity 1s linear 0.5s, right 1s linear 0.5s;
  transition: opacity 1s linear 0.5s, right 1s linear 0.5s;
  z-index: 3;
  overflow: hidden;
}
.banner-item .inner h3 {
  font-size: 32px;
  line-height: 46px;
  font-weight: 900;
  margin-bottom: 10px;
  font-family: "Noto Serif SC";
}
.banner-item .inner p {
  font-size: 16px;
  line-height: 25px;
}
.banner-item .inner.lg {
  padding: 20px;
}
.banner-item .inner.lg p {
  font-size: 24px;
  line-height: 40px;
}
.banner-item .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}
.banner-item .banner-img {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 5s ease-in-out 0.5s;
  transition: all 5s ease-in-out 0.5s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#banners-carousel {
  height: 560px;
}
#banners-carousel .swiper-slide-active .banner-item .inner {
  opacity: 1;
  right: 0;
}
#banners-carousel .swiper-slide-active .banner-item .banner-img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
#banners-carousel .swiper-pagination {
  width: auto;
  left: auto;
  right: 60px;
  padding: 5px;
  border-radius: 10px;
}
#banners-carousel .swiper-pagination:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
#banners-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  background-color: #fff;
  opacity: 0.8;
}
#banners-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1b75bb;
  opacity: 1;
}

.index-dynamic {
  width: 100%;
  background-color: #d6e7f7;
  padding: 60px 0;
}
.index-dynamic .container {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 356px;
}
.index-dynamic .left {
  width: 120px;
  background-color: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 20px;
}
.index-dynamic .date {
  width: 92px;
  height: 140px;
  background-image: url(/static/images/home/date.png);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 30px;
}
.index-dynamic .date span {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.index-dynamic .date span:first-child {
  font-size: 32px;
  margin-bottom: 10px;
}
.index-dynamic .date span:first-child + span {
  margin-bottom: 13px;
}
.index-dynamic .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.index-dynamic .content {
  width: 100%;
  position: relative;
}
.index-dynamic .tab-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}
.index-dynamic .tab-titles .tab-title {
  font-size: 28px;
  line-height: 34px;
  color: #707070;
  margin-right: 60px;
  padding: 6px 0;
  border-bottom: 4px solid transparent;
  font-family: "Noto Serif SC";
}
.index-dynamic .tab-titles .tab-title:last-child {
  margin-right: 0;
}
.index-dynamic .tab-titles .tab-title.active {
  color: #333;
  border-bottom: 4px solid #1b75bb;
}
.index-dynamic .tab-panels {
  width: 100%;
}
.index-dynamic .tab-panels .tab-panel {
  width: 100%;
  display: none;
}
.index-dynamic .tab-panels .tab-panel.active {
  display: block;
}
.index-dynamic .new-list {
  width: 530px;
}
.index-dynamic .cephalogram {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.index-dynamic .cephalogram img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.new-list {
  width: 100%;
}
.new-list li {
  width: 100%;
  display: block;
}
.new-list li a {
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 26px;
  color: #333;
  margin-bottom: 20px;
  padding-left: 24px;
  position: relative;
}
.new-list li a::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #a6c5ee;
}
.new-list li a:hover {
  color: #1b75bb;
}
.new-list li a:visited {
  color: #999;
}

.index-business {
  width: 100%;
  background-image: url(/static/images/home/banner2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}
.index-business .index-title {
  color: #fff;
}
.index-business .index-title:hover {
  color: #fff;
}
.index-business .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 54px;
}
.index-business .mobile-content {
  display: none;
  padding: 0 12px 20px;
}
.index-business .mobile-content .tab-title {
  display: block;
  width: 100%;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  width: 100%;
  line-height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  font-family: "Noto Serif SC";
  text-align: center;
}
.index-business .mobile-content .business-box {
  width: 100%;
}
.index-business .mobile-content .business-box .img {
  height: auto;
}
.index-business .mobile-content .business-box p {
  font-size: 14px;
}
.index-business .mobile-content .business-box .more {
  margin-bottom: 20px;
}
.index-business .tab-titles {
  width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.index-business .tab-titles .tab-title {
  width: 0;
  opacity: 0;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  width: 100%;
  line-height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  padding-left: 80px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  font-family: "Noto Serif SC";
}
.index-business .tab-titles .tab-title.active {
  background-color: #f69220;
}
.index-business .tab-panels .tab-panel {
  display: none;
}
.index-business .tab-panels .tab-panel.active {
  display: block;
}
.index-business .business-box {
  width: 520px;
}
.index-business .business-box .img {
  opacity: 0;
  margin-left: 200px;
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 16px;
}
.index-business .business-box .img img {
  width: 100%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.index-business .business-box .img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.index-business .business-box p {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 25px;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 16px;
}
.index-business .business-box .more {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.index-business .business-box a {
  display: block;
  line-height: 30px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
}
.index-business .business-box a i {
  margin-right: 5px;
  font-style: normal;
}
.index-business .business-box a:hover {
  border-color: #1b75bb;
}
.index-business.animation .tab-title {
  -webkit-animation: business_tab 1.5s ease;
  animation: business_tab 1.5s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  word-break: keep-all;
}
.index-business.animation .tab-title + .tab-title {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.index-business.animation .tab-title + .tab-title + .tab-title {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.index-business.animation .img {
  -webkit-animation: business_img 1.5s ease;
  animation: business_img 1.5s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.index-business.animation .business-box p {
  -webkit-animation: business_p 1s ease;
  animation: business_p 1s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.index-business.animation .more {
  -webkit-animation: business_p 1s ease;
  animation: business_p 1s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes business_tab {
  0% {
    width: 0;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes business_tab {
  0% {
    width: 0;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes business_img {
  0% {
    opacity: 0;
    margin-left: 200px;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
@keyframes business_img {
  0% {
    opacity: 0;
    margin-left: 200px;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes business_p {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes business_p {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.index-title {
  display: block;
  padding-top: 60px;
  line-height: 46px;
  font-size: 32px;
  font-weight: 900;
  color: #333;
  text-align: center;
  letter-spacing: 2px;
  padding-bottom: 14px;
  position: relative;
  margin-bottom: 60px;
  font-family: "Noto Serif SC";
}
.index-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #1b75bb;
}
.index-title:hover {
  color: #333;
}

.index-achievement {
  width: 100%;
  background-color: #fff;
}
.index-achievement .content {
  padding-bottom: 40px;
}
.index-achievement.animation .index-achievement-list li:first-child,
.index-achievement.animation .index-achievement-list li:nth-child(4) {
  -webkit-animation: achievement_li_left 2s ease;
  animation: achievement_li_left 2s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.index-achievement.animation .index-achievement-list li:nth-child(5),
.index-achievement.animation .index-achievement-list li:nth-child(2) {
  -webkit-animation: achievement_li_center 2s ease;
  animation: achievement_li_center 2s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.index-achievement.animation .index-achievement-list li:last-child,
.index-achievement.animation .index-achievement-list li:nth-child(3) {
  -webkit-animation: achievement_li_right 2s ease;
  animation: achievement_li_right 2s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes achievement_li_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes achievement_li_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes achievement_li_center {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes achievement_li_center {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes achievement_li_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes achievement_li_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.index-achievement-list li:first-child,
.index-achievement-list li:nth-child(4) {
  opacity: 0;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}
.index-achievement-list li:nth-child(5),
.index-achievement-list li:nth-child(2) {
  opacity: 0;
}
.index-achievement-list li:last-child,
.index-achievement-list li:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.achievement-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.achievement-list li {
  display: block;
  margin-bottom: 40px;
  margin-right: 35px;
}
.achievement-list li:nth-child(3n) {
  margin-right: 0;
}
.achievement-list a {
  width: 350px;
  display: block;
  position: relative;
}
.achievement-list a:hover {
  -webkit-box-shadow: 0 0 15px rgba(166, 166, 166, 0.15);
  box-shadow: 0 0 15px rgba(166, 166, 166, 0.15);
}
.achievement-list a:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.achievement-list a:hover p {
  color: #1b75bb;
}
.achievement-list a:hover .line {
  width: 100%;
}
.achievement-list .img {
  width: 350px;
  height: 235px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}
.achievement-list .img img {
  width: 100%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.achievement-list h4 {
  color: #2a2a2a;
  line-height: 28px;
  font-size: 20px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 8px;
}
.achievement-list span {
  display: block;
  line-height: 20px;
  font-size: 14px;
  color: #8e8e8e;
  margin-bottom: 4px;
}
.achievement-list p {
  display: block;
  line-height: 22px;
  font-size: 16px;
  color: #8e8e8e;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.achievement-list .line {
  width: 0;
  height: 2px;
  background-color: #f4a948;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.index-layout {
  width: 100%;
  position: relative;
}
.index-layout .container {
  position: relative;
  z-index: 1;
}
.index-layout .index-title {
  opacity: 0;
  padding-top: 47px;
  margin-bottom: 50px;
}
.index-layout .region-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.index-layout .region-titles .region-title {
  width: 207px;
  font-size: 32px;
  line-height: 58px;
  text-align: center;
  color: #1b75bb;
  margin-right: 60px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 35px;
  font-weight: 900;
  cursor: pointer;
  font-family: "Noto Serif SC";
}
.index-layout .region-titles .region-title:last-child {
  margin-right: 0;
}
.index-layout .region-titles .region-title.active {
  color: #fff;
  border: 1px solid #1b75bb;
  background-color: #1b75bb;
}
.index-layout .layout-text {
  opacity: 0;
  display: none;
  padding: 20px;
  margin-bottom: 51px;
  background-color: rgba(27, 117, 187, 0.6);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}
.index-layout .layout-text.active {
  display: block;
}
.index-layout .layout-text p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.index-layout .layout-text .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.index-layout .layout-text .more a {
  display: block;
  line-height: 30px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
}
.index-layout .layout-text .more a i {
  margin-right: 5px;
}
.index-layout .layout-text .more a:hover {
  border-color: #1b75bb;
}
.index-layout .layout-bgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-layout .layout-bgs .content {
  width: 300%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.index-layout .layout-bgs .layout-bg {
  width: 33.3333%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}
.index-layout.animation .index-title {
  -webkit-animation: layout_inShow 2s ease;
  animation: layout_inShow 2s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.index-layout.animation .layout-text {
  -webkit-animation: layout_inShow 2s ease;
  animation: layout_inShow 2s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.index-layout.animation .region-titles {
  -webkit-animation: layout_inDown 2s ease;
  animation: layout_inDown 2s ease;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes layout_inShow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes layout_inShow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes layout_inDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes layout_inDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.index-partner {
  padding-bottom: 77px;
}
.index-partner .content {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.index-partner .content::before,
.index-partner .content::after {
  content: "";
  position: absolute;
  top: 0;
  width: 47px;
  height: 100%;
  pointer-events: none;
}
.index-partner .content::before {
  left: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(255, 255, 255, 0)),
    to(#ffffff)
  );
  background: -webkit-linear-gradient(
    right,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 100%
  );
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.index-partner .content::after {
  right: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(#ffffff)
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 100%
  );
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.partner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.partner-list li {
  display: block;
}
.partner-list li a {
  display: block;
  width: 186px;
  text-align: center;
}
.partner-list li a img {
  display: block;
  margin: 0 auto;
  height: 100px;
  margin-bottom: 16px;
}
.partner-list li a span {
  display: block;
  width: 100%;
  word-wrap: break-word;
  font-size: 12px;
}

.footer {
  background-color: #242424;
  padding: 60px 0 70px;
  color: #fff;
}
.footer a {
  color: #ffffff;
}
.footer .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
.footer ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer ul li h1 {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 24px;
  font-weight: 900;
}
.footer ul li a {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}
.footer .contact-us {
  margin-left: 110px;
  position: relative;
}
.footer .contact-us h1 {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 24px;
  font-weight: 900;
}
.footer .contact-us p {
  display: block;
  font-size: 16px;
  line-height: 28px;
}
.footer .contact-us .qrcode {
  position: absolute;
  top: 0;
  right: 0;
}
.footer .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .bottom a {
  font-size: 12px;
}
.footer .bottom span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .bottom span a {
  font-size: 14px;
  color: #c99143;
}
.footer .bottom span i {
  font-size: 12px;
  margin: 0 10px;
  margin-top: -1px;
}

.head-img {
  display: block;
  max-width: 100%;
}

.bread-crumbs {
  background-color: #e4e4e4;
  line-height: 40px;
  font-size: 14px;
  margin-bottom: 20px;
}
.bread-crumbs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.bread-crumbs a:hover {
  color: #1b75bb;
}
.bread-crumbs span {
  margin: 0 10px;
}
.bread-crumbs.detail-bread {
  line-height: 60px;
  font-size: 16px;
  color: #555;
  background-color: #fff;
}
.bread-crumbs.detail-bread .container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.main-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.main-side {
  width: 260px;
}
.main-side h1 {
  font-size: 24px;
  color: #fff;
  background-color: #1b75bb;
  padding: 20px 0;
  padding-left: 50px;
}
.main-side h1 p {
  font-size: 14px;
  padding-top: 10px;
}

.side-menu {
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #ebebeb;
}
.side-menu > li {
  border-bottom: 1px solid #ebebeb;
}
.side-menu > li > a {
  display: block;
  line-height: 60px;
  background-color: #f5f5f5;
  color: #2a2a2a;
  padding: 0 25px;
  position: relative;
}
.side-menu > li > a::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 20px;
  width: 8px;
  height: 8px;
  border: 1px solid #7c7c7c;
  border-width: 1px 1px 0 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: rotate 0.2s ease-in;
  transition: rotate 0.2s ease-in;
}
.side-menu > li:last-child {
  border-bottom: none;
}
.side-menu > li.active > a {
  background-color: #fff;
  color: #000000;
}
.side-menu > li.active > a::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.side-menu > li.active .sub-menu {
  display: block;
}
.side-menu .sub-menu {
  display: none;
}
.side-menu .sub-menu li a {
  display: block;
  padding: 0 25px;
  font-size: 14px;
  margin-bottom: 20px;
}

.main-section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 100px;
}

.main-title {
  font-size: 22px;
  line-height: 2.5;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.main-title.bb {
  border-bottom: 2px solid #eee;
}

.main-content p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  margin-bottom: 10px;
}
.main-content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.main-content b {
  font-weight: bold;
  color: #333;
}

.develop-history {
  padding-left: 40px;
  position: relative;
}
.develop-history::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 38px;
  width: 2px;
  height: 100%;
  background-color: #aaa;
}
.develop-history li {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}
.develop-history li:last-child {
  padding-bottom: 0;
}
.develop-history li span {
  display: block;
  line-height: 24px;
}
.develop-history li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1b75bb;
}
.develop-history li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #1b75bb;
}

.notice {
  padding: 20px 0;
  margin-bottom: 20px;
}
.notice .layui-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.notice .layui-form .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}
.notice .layui-form .item:last-child {
  margin-right: 0;
}
.notice .layui-form .item .layui-form-select,
.notice .layui-form .item .layui-input {
  width: 160px;
}
.notice .layui-form .project-name {
  position: relative;
}
.notice .layui-form .project-name .layui-input {
  width: 324px;
  padding-right: 38px;
}
.notice .layui-form .project-name .layui-icon {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 10;
  cursor: pointer;
}
.notice .notice-list {
  margin-bottom: 20px;
  min-height: 200px;
}
.notice .notice-list .th {
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notice .notice-list .th span {
  padding: 10px 0;
  font-size: 18px;
  color: #000000;
}
.notice .notice-list .th span.field1 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 60px;
}
.notice .notice-list .td a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 40px;
  margin: 15px 0;
  color: #2a2a2a;
}
.notice .notice-list .td a:hover {
  color: #1b75bb;
}
.notice .notice-list .field1 {
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notice .notice-list .field1 .layui-icon {
  font-size: 20px;
  color: #1b75bb;
  margin: 0 20px;
}
.notice .notice-list .field1 b {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.notice .notice-list .field2 {
  width: 280px;
  text-align: center;
}
.notice .notice-list .field3 {
  width: 560px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice .notice-list .field4 {
  width: 140px;
  text-align: center;
}

.label-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.label-items .item {
  background-color: #eeeeee;
  padding: 8px 12px;
  margin-right: 20px;
  cursor: pointer;
}
.label-items .item.active {
  background-color: #1b75bb;
  color: #fff;
}
.label-items .item:last-child {
  margin-right: 0;
}

.detail {
  margin-bottom: 40px;
}
.detail .main-section {
  padding-top: 30px;
  margin-left: 0;
  -webkit-box-shadow: 0 0 15px rgba(166, 166, 166, 0.15);
  box-shadow: 0 0 15px rgba(166, 166, 166, 0.15);
}
.detail .main-title {
  padding-bottom: 20px;
}
.detail .main-title h2 {
  text-align: center;
  padding: 0 20px;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}
.detail .main-title p {
  font-size: 14px;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.detail .main-title p span {
  margin-right: 40px;
}
.detail .main-title p span:last-child {
  margin-right: 0;
}
.detail .main-content {
  padding: 20px 45px;
}
.detail .main-content * {
  font-size: inherit;
}
.detail .main-content img {
  max-width: 100%;
  display: block;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
}
.detail .main-content table {
  max-width: 100%;
  border: 1px solid #333;
  margin-bottom: 20px !important;
}
.detail .main-content table td {
  border: 1px solid #333;
  text-align: center;
}
.detail .main-content table p {
  margin-bottom: 0;
  text-align: center;
}

.news-detail {
  margin-bottom: 0;
  padding-bottom: 40px;
}
.news-detail .main-section {
  background-color: #fff;
}

.layui-form-select dl dd.layui-this {
  background-color: #1b75bb;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: #1b75bb;
}

.layui-laypage a:hover {
  color: #1b75bb;
}

#pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#pagination .layui-laypage a,
#pagination .layui-laypage span {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  margin-right: 10px;
}

.join-us .layui-colla-title {
  height: 50px;
  line-height: 50px;
}
.join-us .layui-colla-title > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.join-us .layui-colla-title .title {
  font-weight: bold;
  font-size: 18px;
}
.join-us .layui-colla-title .email {
  background-image: url("/static/images/home/email.png");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0 17px;
  padding-left: 26px;
}
.join-us .layui-colla-title .email:hover {
  color: #1b75bb;
}

.report-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.report-list li {
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 28px;
}
.report-list li:nth-child(2n) {
  margin-right: 0;
}
.report-list li a {
  display: block;
  position: relative;
  padding-bottom: 96px;
}
.report-list li .img {
  overflow: hidden;
}
.report-list li img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.report-list li .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #f1f1f1;
  padding: 20px;
}
.report-list li .title h1 {
  color: #333;
  font-size: 20px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.report-list li:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.report-list li:hover .title {
  height: 116px;
  background-color: #1b75bb;
}
.report-list li:hover .title h1,
.report-list li:hover .title h2 {
  color: #fff;
}
.report-list.tsingzhi li {
  width: 30%;
  margin-right: 5%;
}
.report-list.tsingzhi li:nth-child(2n) {
  margin-right: 5%;
}
.report-list.tsingzhi li:nth-child(3n) {
  margin-right: 0;
}
.report-list.tsingzhi li:hover .title h1 {
  -webkit-line-clamp: 3;
}

.team-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.team-list li {
  width: 251px;
  margin-right: 23.5px;
  margin-bottom: 28px;
  overflow: hidden;
  background-color: #f1f1f1;
}
.team-list li:nth-child(3n) {
  margin-right: 0;
}
.team-list li a {
  display: block;
}
.team-list li img {
  display: block;
  height: 378px;
  min-width: 251px;
}
.team-list li .title {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px;
}
.team-list li .title h1 {
  text-align: center;
  color: #333;
  font-size: 20px;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-bottom: 10px;
}
.team-list li .title h2 {
  text-align: center;
}
.team-list li:hover .title {
  background-color: #1b75bb;
}
.team-list li:hover .title h1,
.team-list li:hover .title h2 {
  color: #fff;
}

.team-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.team-detail .info > div {
  margin-bottom: 20px;
}
.team-detail .info p {
  line-height: 28px;
}
.team-detail .info b {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
.team-detail .info .email a {
  background-image: url("/static/images/home/email.png");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0 2.5px;
  padding-left: 26px;
}
.team-detail .info .email a:hover {
  color: #1b75bb;
}

.achievement {
  padding-top: 40px;
}
.achievement .label-items {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.achievement .label-items:first-child {
  margin-bottom: 20px;
}

.file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  padding-top: 20px;
}
.file-list ul {
  margin-left: 20px;
}
.file-list li {
  margin-bottom: 20px;
}
.file-list a {
  color: #1b75bb;
}

.research-detail {
  margin-bottom: 40px;
}
.research-detail .main-section {
  padding-top: 30px;
  margin-left: 0;
  -webkit-box-shadow: 0 0 15px rgba(166, 166, 166, 0.15);
  box-shadow: 0 0 15px rgba(166, 166, 166, 0.15);
}
.research-detail .main-content {
  padding: 20px 40px;
}
.research-detail .main-content * {
  font-size: inherit;
}
.research-detail .image,
.research-detail img {
  max-width: 100%;
  display: block;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
}
.research-detail .image {
  margin-bottom: 32px !important;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.research-detail .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}
.research-detail .type {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #73738a;
}
.research-detail .abstract {
  line-height: 32px;
  letter-spacing: 2px;
  color: #555;
  background-color: #f2f5fb;
  padding: 20px;
  margin-bottom: 40px;
  border-left: 4px solid #d0d6dc;
}
.research-detail .outline {
  overflow: hidden;
  position: relative;
  height: 600px;
}
.research-detail .outline-detail {
  color: #404040;
}
.research-detail .more-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 44px;
  position: absolute;
  bottom: 1px;
  left: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.7)),
    to(#fff)
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0.7),
    #fff
  );
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), #fff);
}
.research-detail .more-box .more-btn {
  color: #1b75bb;
  width: 232px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #1b75bb;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
}
.research-detail .pdf {
  width: 100%;
  height: 800px;
}
.research-detail .layui-tab-title {
  border-bottom-width: 2px;
  border-bottom-color: #e4e7ed;
}
.research-detail .layui-tab-title li {
  padding: 0;
  margin-right: 40px;
}
.research-detail .layui-tab-title .layui-this {
  color: #1b75bb;
}
.research-detail .layui-tab-title .layui-this:after {
  height: 2px;
  top: auto;
  bottom: 0;
  border: none;
  border-bottom: 2px solid;
  border-bottom-color: #1b75bb;
  z-index: 10;
  border-radius: 0;
}
.research-detail .download {
  display: inline-block;
  line-height: 40px;
  vertical-align: middle;
}
.research-detail.tsingzhi .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.research-detail.tsingzhi .top > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
}
.research-detail.tsingzhi .image {
  width: 360px;
  height: 510px;
}

.not-found {
  height: calc(100vh - 120px - 393px);
}
.not-found .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.not-found .img-404 {
  display: block;
  width: 300px;
}
.not-found .a-404 {
  width: 200px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #1b75bb;
  background-color: #1b75bb;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  margin-left: 40px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.not-found .a-404:hover {
  background-color: #fff;
  color: #1b75bb;
}

.news-focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  margin-bottom: 20px;
}
.news-focus a {
  display: block;
}

.news-focus-imgs {
  width: 800px;
}
.news-focus-imgs .item {
  display: none;
}
.news-focus-imgs .item img {
  width: 800px;
  height: 400px;
  display: block;
}
.news-focus-imgs .item.active {
  display: block;
}

.news-focus-titles {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.news-focus-titles .item {
  height: 133.33px;
  background-color: #fff;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  border-bottom: 1px solid #ebedee;
  border-right: 1px solid #ebedee;
  padding: 0 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-focus-titles .item span {
  height: 48px;
  overflow: hidden;
  /*将对象作为弹性伸缩盒子模型显示*/
  display: -webkit-box;
  /*设置子元素排列方式*/
  -webkit-box-orient: vertical;
  /*设置显示的行数，多出的部分会显示为...*/
  -webkit-line-clamp: 3;
}
.news-focus-titles .item:first-child {
  border-top: 1px solid #ebedee;
}
.news-focus-titles .item.active {
  border-right: 1px solid #ffce91;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bfdef5),
    to(#1b75bb)
  );
  background: -webkit-linear-gradient(left, #bfdef5 0%, #1b75bb 100%);
  background: linear-gradient(90deg, #bfdef5 0%, #1b75bb 100%);
}

.news-module-dynamic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 40px;
}
.news-module-dynamic .news-dynamic-list {
  width: 100%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.news-module-dynamic .news-dynamic-list .max-list-item img {
  width: 200px;
  height: 100px;
}
.news-module-dynamic .news-dynamic-side {
  width: 360px;
  height: auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.news-module-dynamic .news-dynamic-side .top {
  padding: 0 20px;
  padding-bottom: 20px;
}
.news-module-dynamic .news-dynamic-side .swiper {
  margin-bottom: 20px;
}
.news-module-dynamic .news-dynamic-side .info-list {
  padding: 0;
}
.news-module-dynamic .news-dynamic-side .info-list li .item h2 {
  width: 100%;
}
.news-module-dynamic .news-dynamic-side .info-list li:last-child .item {
  margin-bottom: 0;
}

.new-item {
  width: 100%;
  display: block;
  position: relative;
}
.new-item img {
  display: block;
  width: 100%;
}
.new-item h3 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-right: 80px;
  padding-left: 12px;
  line-height: 40px;
  background-color: rgba(27, 117, 187, 0.6);
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#news-carousel.swiper .swiper-pagination {
  width: auto;
  left: auto;
  bottom: 9px;
  right: 0px;
  padding: 3px 5px;
  border-radius: 10px;
}
#news-carousel.swiper .swiper-pagination:hover {
  background-color: rgba(0, 0, 0, 0.35);
}
#news-carousel.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
#news-carousel.swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 1;
}
#news-carousel.swiper.carousel-this-ind-primary
  .swiper-pagination
  .swiper-pagination-bullet {
  background: #ffffff;
}
#news-carousel.swiper.carousel-this-ind-primary
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1b75bb;
}

.focus-item {
  display: block;
  width: 100%;
  position: relative;
}
.focus-item img {
  display: block;
  width: 100%;
}
.focus-item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 5px;
  padding-right: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 公共样式 */
.module-title {
  height: 72px;
  padding: 10px 0;
  background-image: url("/static/images/home/png_list_t.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
  font-size: 26px;
  color: #333333;
  font-weight: bold;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.module-title .title {
  height: 35px;
  line-height: 35px;
}
.module-title .title b {
  color: #1b75bb;
}
.module-title .more {
  font-size: 16px;
  color: #333333;
  height: 21px;
  line-height: 21px;
  font-weight: normal;
}

.max-list-item {
  padding: 0 20px;
}
.max-list-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #ebedee;
}
.max-list-item > a img {
  display: block;
  width: 168px;
  height: 110px;
  margin-right: 20px;
}
.max-list-item > a .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
}
.max-list-item > a .content h2 {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 5px;
  color: #333333;
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.max-list-item > a .content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
  color: #333333;
  width: 100%;
  overflow: hidden;
  /*将对象作为弹性伸缩盒子模型显示*/
  display: -webkit-box;
  /*设置子元素排列方式*/
  -webkit-box-orient: vertical;
  /*设置显示的行数，多出的部分会显示为...*/
  -webkit-line-clamp: 2;
}
.max-list-item > a .content .tool {
  line-height: inherit;
}
.max-list-item > a .content .time {
  display: block;
  color: #999999;
}

.max-list .max-list-item:last-child > a {
  border-bottom: none;
}

/* 公共样式 */
.info-list {
  padding-left: 20px;
  padding-right: 20px;
}
.info-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #333333;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
  position: relative;
}
.info-list .item .title {
  width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list .item .time {
  display: block;
  color: #999999;
}
.info-list .item.no-time .title {
  width: 100%;
}
.info-list .item:hover {
  color: #1b75bb !important;
}
.info-list .item:visited {
  color: #999999;
}

#navToggle {
  position: fixed;
  z-index: 99999;
  top: 25px;
  right: 15px;
  width: 30px;
  height: 23px;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: none;
}
#navToggle span {
  position: absolute;
  top: 0;
  display: block;
  width: 30px;
  height: 2px;
  left: 0;
  background-color: #040404;
  -webkit-transition: top 0.2s 0.2s, background 0.2s, opacity 0s 0.2s,
    -webkit-transform 0.2s;
  transition: top 0.2s 0.2s, background 0.2s, opacity 0s 0.2s,
    -webkit-transform 0.2s;
  transition: top 0.2s 0.2s, transform 0.2s, background 0.2s, opacity 0s 0.2s;
  transition: top 0.2s 0.2s, transform 0.2s, background 0.2s, opacity 0s 0.2s,
    -webkit-transform 0.2s;
}
#navToggle span:nth-of-type(2) {
  top: 10px;
}
#navToggle span:nth-of-type(3) {
  top: auto;
  bottom: 0;
  transition: bottom 0.2s 0.2s, transform 0.2s, background 0.2s,
    -webkit-transform 0.2s;
}
#navToggle.expanded {
  border-color: #aaa;
}
#navToggle.expanded span {
  background-color: #fff;
}
#navToggle.expanded span:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.2s, background 0.2s, -webkit-transform 0.2s 0.2s;
  transition: top 0.2s, background 0.2s, -webkit-transform 0.2s 0.2s;
  transition: top 0.2s, transform 0.2s 0.2s, background 0.2s;
  transition: top 0.2s, transform 0.2s 0.2s, background 0.2s,
    -webkit-transform 0.2s 0.2s;
}
#navToggle.expanded span:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#navToggle.expanded span:nth-of-type(3) {
  bottom: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: bottom 0.2s, background 0.2s, -webkit-transform 0.2s 0.2s;
  transition: bottom 0.2s, background 0.2s, -webkit-transform 0.2s 0.2s;
  transition: bottom 0.2s, transform 0.2s 0.2s, background 0.2s;
  transition: bottom 0.2s, transform 0.2s 0.2s, background 0.2s,
    -webkit-transform 0.2s 0.2s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1001;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.mobile-nav .box {
  width: 80%;
  height: 100%;
  margin-left: 20%;
  background-color: #1b75bb;
  padding: 0 10px;
}
.mobile-nav .item {
  display: block;
  border-bottom: 2px dashed rgba(238, 238, 238, 0.2);
  margin-bottom: 10px;
}
.mobile-nav .item > a {
  color: #eee;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}
.mobile-nav .item div a {
  display: inline-block;
  color: #eee;
  font-size: 14px;
  margin-bottom: 10px;
  margin-right: 20px;
}
.mobile-nav.show {
  left: 0;
}

.mobile-business-menu {
  display: none;
  margin-bottom: 20px;
}
.mobile-business-menu li {
  list-style: inside;
  line-height: 28px;
}
.mobile-business-menu li a {
  text-decoration: underline;
}

.tab-more-btn {
  display: none;
  border: 1px solid #eee;
  border-radius: 5px;
  line-height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #999;
}

body.print {
  padding-top: 0;
}
body.print #header {
  display: none;
}
body.print #navToggle {
  display: none;
}
body.print .mobile-nav {
  display: none;
}
body.print .bread-crumbs {
  display: none;
}
body.print .detail-tools {
  display: none;
}
body.print .footer {
  display: none;
}
body.print #back-top {
  display: none;
}
body.print .main-section {
  box-shadow: none;
}
