.inner-banner {
  width: 100%;
  height: 534px;
  margin-top: 90px;
}

.inner-banner .cont {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-bottom: 60px;
}

.inner-banner .cont .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}

.inner-banner .cont .text .en {
  color: #fff;
  font-size: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  line-height: 1;
}

.inner-banner .cont .text h2 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1;
  margin-top: 16px;
}

.inner-banner .cont .text .line {
  width: 94px;
  height: 3px;
  background-color: #fff;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
  margin-top: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.inner-banner .cont .text p {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  margin-top: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.inner-banner .cont .text p a {
  color: #fff;
  font-size: 18px;
  margin: 0 6px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.inner-banner .cont .text p a:first-child {
  margin-left: 0;
}

.inner-banner .cont .text p a:last-child {
  margin-right: 0;
}

.detail-container {
  position: relative;
  width: 1220px;
  margin: 0 auto;
  padding: 60px 0;
}

.detail-container .content-navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.detail-container .content-navigation ul li {
  border: 1px solid #81c429;
  margin-left: -1px;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
  position: relative;
  -webkit-animation-duration: 0.66s;
  animation-duration: 0.66s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.detail-container .content-navigation ul li::after {
  width: 0;
  height: 100%;
  right: 0;
  position: absolute;
  bottom: 0;
  content: '';
  display: block;
  background-color: #81c429;
  transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  -ms-transition: all 0.33s linear;
  -webkit-transition: all 0.33s linear;
  -moz-transition: all 0.33s linear;
}

.detail-container .content-navigation ul li::before {
  width: 0;
  height: 0;
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: '';
  display: block;
  border-top: 0px solid #81c429;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
}

.detail-container .content-navigation ul li a {
  display: block;
  color: #333;
  font-size: 18px;
  line-height: 1;
  padding: 1em 2em;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
}

.detail-container .content-navigation ul li.active::after,
.detail-container .content-navigation ul li:hover::after {
  width: 100%;
  left: 0;
}

.detail-container .content-navigation ul li.active::before,
.detail-container .content-navigation ul li:hover::before {
  border-top: 10px solid #81c429;
}

.detail-container .content-navigation ul li.active a,
.detail-container .content-navigation ul li:hover a {
  color: #fff;
}

.detail-container .content-navigation ul li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.detail-container .content-navigation ul li:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.detail-container .content-navigation ul li:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.detail-container .content-navigation ul li:nth-child(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.detail-container .content-navigation ul li:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.detail-container .content-navigation ul li:nth-child(6) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.detail-container .content-title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.detail-container .tels {
  color: #666;
  font-size: 18px;
  margin-top: 40px;
  text-align: center;
}
.detail-container .content-title .en {
  color: #666666;
  font-size: 30px;
  line-height: 1;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.detail-container .content-title h2 {
  color: #333;
  font-size: 36px;
  line-height: 1;
  margin: 18px 0;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.detail-container .content-title .line {
  width: 76px;
  height: 5px;
  background-color: #81c429;
  margin: 0 auto;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

.detail-container .content-detail-container .news-list ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 46px;
  height: 171px;
}

.detail-container .content-detail-container .news-list ul li .pic {
  width: 258px;
  height: 100%;
}

.detail-container .content-detail-container .news-list ul li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail-container .content-detail-container .news-list ul li .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 12px 0;
}

.detail-container .content-detail-container .news-list ul li .info .tit {
  color: #333;
  font-size: 18px;
  line-height: 1;
}

.detail-container .content-detail-container .news-list ul li .info .desc {
  color: #666;
  font-size: 16px;
  line-height: 30px;
  margin-top: 24px;
}

.detail-container .content-detail-container .news-list ul li .info .date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
}

.detail-container
  .content-detail-container
  .news-list
  ul
  li
  .info
  .date
  .iconfont {
  font-size: 24px;
  color: #3c3c3c;
}

.detail-container .content-detail-container .news-list ul li .info .date span {
  color: #777777;
  font-size: 18px;
  margin-left: 9px;
}

.detail-container .content-detail-container .content-detail {
  color: #333;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
  /* width: 800px; */
}

.detail-container .content-detail-container .content-detail img {
  max-width: 100%;
}
.detail-container .content-detail-container .news-detail img {
  width: 800px !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}
.detail-container .content-detail-container .service-list .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.detail-container .content-detail-container .service-list .list ul li {
  min-width: 23%;
  max-width: 48%;
  border-radius: 16px;
  margin-top: 32px;
  height: 167px;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
}

.detail-container .content-detail-container .service-list .list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.detail-container .content-detail-container .service-list .list ul li a img {
  border-radius: 16px;
}

.detail-container .content-detail-container .service-list .list ul li:hover {
  background-color: #82c43c;
}

.detail-container
  .content-detail-container
  .service-list
  .list
  ul
  li:nth-child(n + 9) {
  width: 48%;
}

.detail-container .content-detail-container .buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.detail-container .content-detail-container .buttons a {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  background-color: #81c429;
  padding: 0.66667em 2em;
  border-radius: 21px;
  margin: 0 18px;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.3);
}

.detail-container .content-detail-container .service-detail .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.detail-container .content-detail-container .service-detail .list ul li {
  width: 489px;
  padding: 18px;
  margin: 18px;
  text-align: center;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
}

.detail-container .content-detail-container .service-detail .list ul li .pic {
  display: block;
  width: 100%;
  height: 277px;
}

.detail-container
  .content-detail-container
  .service-detail
  .list
  ul
  li
  .pic
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-container .content-detail-container .service-detail .list ul li .tit {
  display: block;
  color: #333;
  font-size: 18px;
  line-height: 2;
  margin-top: 18px;
}

.detail-container
  .content-detail-container
  .service-detail1
  .content-detail
  .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.detail-container
  .content-detail-container
  .service-detail1
  .content-detail
  .bottom
  .left {
  text-indent: 0;
}

.detail-container
  .content-detail-container
  .service-detail1
  .content-detail
  .bottom
  img {
  margin-left: auto;
}

.detail-container .content-detail-container .service-detail1 .list h3 {
  color: #333;
  font-size: 18px;
  line-height: 1;
  margin: 36px 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.detail-container .content-detail-container .service-detail1 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .service-detail1 .list ul li {
  width: 23.5%;
  margin-right: 2%;
  text-align: center;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.detail-container
  .content-detail-container
  .service-detail1
  .list
  ul
  li:last-child {
  margin-right: 0;
}

.detail-container .content-detail-container .service-detail1 .list ul li .pic {
  display: block;
  width: 100%;
  height: 182px;
}

.detail-container
  .content-detail-container
  .service-detail1
  .list
  ul
  li
  .pic
  img {
  width: 100%;
  height: 100%;
}

.detail-container .content-detail-container .service-detail1 .list ul li p {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  background-color: #999999;
}

.detail-container .content-detail-container .historys .history {
  position: relative;
}

.detail-container .content-detail-container .historys .history .mid-line {
  left: 0;
  right: 0;
  width: 18px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f3f9ed),
    color-stop(#91cb54),
    to(#f3f9ed)
  );
  background-image: -o-linear-gradient(#f3f9ed, #91cb54, #f3f9ed);
  background-image: linear-gradient(#f3f9ed, #91cb54, #f3f9ed);
}

.detail-container .content-detail-container .historys .history h2 {
  color: #81c429;
  font-size: 48px;
  font-weight: bold;
  left: 1;
  margin: 48px 0;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.detail-container
  .content-detail-container
  .historys
  .history
  h2:nth-of-type(odd) {
  text-align: left;
  padding-left: 400px;
}

.detail-container
  .content-detail-container
  .historys
  .history
  h2:nth-of-type(even) {
  text-align: right;
  padding-right: 400px;
}

.detail-container .content-detail-container .historys .history ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail-container .content-detail-container .historys .history ul li .info {
  width: 331px;
  margin-right: 14px;
}

.detail-container .content-detail-container .historys .history ul li .info img {
  width: 100%;
}

.detail-container .content-detail-container .historys .history ul li .info p {
  color: #3e3e3e;
  font-size: 18px;
  line-height: 30px;
}

.detail-container .content-detail-container .historys .history ul li .date {
  width: 290px;
  height: 64px;
  position: relative;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li
  .date
  span {
  color: #81c429;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  top: 0;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li
  .date
  .lines {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  height: 50px;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li
  .date
  .lines
  .line {
  width: 240px;
  height: 4px;
  position: absolute;
  background-color: #81c429;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li
  .date
  .lines
  .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #81c429;
  position: absolute;
  z-index: 1;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li
  .date
  .lines
  .icon::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  margin: auto;
  background-color: #81c429;
  border-radius: 50%;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(odd) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(odd)
  .info {
  justify-self: end;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(odd)
  .date
  span {
  left: 12px;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(odd)
  .date
  .lines
  .line {
  left: 0;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(odd)
  .date
  .lines
  .icon {
  right: 0;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(even) {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(even)
  .info {
  margin-right: 0;
  justify-self: flex-end;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 14px;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(even)
  .date {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  justify-self: flex-start;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(even)
  .date
  span {
  right: 12px;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(even)
  .date
  .lines
  .line {
  right: 0;
}

.detail-container
  .content-detail-container
  .historys
  .history
  ul
  li:nth-child(even)
  .date
  .lines
  .icon {
  left: 0;
}

.detail-container .content-detail-container .dj {
  text-align: center;
}

.detail-container .content-detail-container .dj > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .dj > ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  margin-top: 40px;
  padding: 10px 14px;
  border-left: 2px solid #81c429;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
}

.detail-container .content-detail-container .dj > ul li:nth-child(odd) {
  margin-right: 2%;
}

.detail-container .content-detail-container .dj > ul li .pic {
  width: 248px;
  height: 166px;
}

.detail-container .content-detail-container .dj > ul li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail-container .content-detail-container .dj > ul li .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 16px;
  margin-left: 24px;
}

.detail-container .content-detail-container .dj > ul li .info .tit {
  color: #1a1a1a;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.detail-container .content-detail-container .dj > ul li .info .tit img {
  margin-left: auto;
}

.detail-container .content-detail-container .dj > ul li .info .desc {
  color: #333;
  font-size: 16px;
  line-height: 30px;
  margin-top: 24px;
  text-align: justify;
}

.detail-container .content-detail-container .dj .more {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  margin: 40px auto 0;
  display: inline-block;
  background-color: #81c429;
  padding: 1em 3em;
  border-radius: 5px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.detail-container .content-detail-container .fund .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .fund .list ul li {
  width: 392px;
  height: 92px;
  margin-right: 22px;
  margin-top: 22px;
  border: 1px solid #333;
}

.detail-container .content-detail-container .fund .list ul li:nth-child(3n) {
  margin-right: 0;
}

.detail-container .content-detail-container .platform .content-detail {
  text-align: center;
}

.detail-container .content-detail-container .platform .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.detail-container .content-detail-container .platform .list ul {
  width: 593px;
}

.detail-container .content-detail-container .platform .list ul li {
  padding: 0 30px;
  margin-top: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
}

.detail-container .content-detail-container .platform .list ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 22px;
  line-height: 100px;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.detail-container .content-detail-container .platform .list ul li a::before {
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 1em;
  border-radius: 50%;
  border: 2px solid #333;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.detail-container .content-detail-container .platform .list ul li:hover {
  background-color: #81c429;
}

.detail-container .content-detail-container .platform .list ul li:hover a {
  color: #fff;
}

.detail-container
  .content-detail-container
  .platform
  .list
  ul
  li:hover
  a::before {
  border-color: #fff;
}

.detail-container .content-detail-container .gym .list {
  margin-top: 40px;
}

.detail-container .content-detail-container .gym .list ul {
  height: 380px;
  position: relative;
}

.detail-container .content-detail-container .gym .list ul li {
  width: 220px;
  height: 330px;
  position: absolute;
}

.detail-container .content-detail-container .gym .list ul li img {
  width: 100%;
  height: 100%;
}

.detail-container .content-detail-container .gym .list ul li:nth-child(1) {
  left: 0;
  top: 0;
}
.detail-container .content-detail-container .gym .list ul li:nth-child(2) {
  left: 200px;
  bottom: 0;
}
.detail-container .content-detail-container .gym .list ul li:nth-child(3) {
  left: 400px;
  top: 0;
}
.detail-container .content-detail-container .gym .list ul li:nth-child(4) {
  left: 600px;
  bottom: 0;
}
.detail-container .content-detail-container .gym .list ul li:nth-child(5) {
  left: 800px;
  top: 0;
}
.detail-container .content-detail-container .gym .list ul li:nth-child(6) {
  right: 0;
  bottom: 0;
}
.detail-container .content-detail-container .gym .tels {
  text-align: center;
  font-size: 24px;
  color: #666;
  line-height: 1;
  margin-top: 40px;
}
.detail-container .content-detail-container .meeting .content-detail {
  text-align: center;
  text-indent: 0;
}

.detail-container .content-detail-container .meeting .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .meeting .list ul li {
  width: 394px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 19px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 24px;
}

.detail-container .content-detail-container .meeting .list ul li:nth-child(3n) {
  margin-right: 0;
}

.detail-container .content-detail-container .meeting .list ul li .pic {
  width: 100%;
  height: 245px;
  border-radius: 16px;
}

.detail-container .content-detail-container .meeting .list ul li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.detail-container .content-detail-container .meeting .list ul li .tit {
  color: #333;
  font-size: 24px;
  margin-top: 24px;
  line-height: 1;
}

.detail-container .content-detail-container .meeting .list ul li .desc {
  color: #666;
  font-size: 18px;
  line-height: 1;
  margin-top: 9px;
}

.detail-container .content-detail-container .programme .tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.detail-container .content-detail-container .programme .tags .tag {
  margin-right: 20px;
}

.detail-container .content-detail-container .programme .tags .tag:last-child {
  margin-right: 0;
}

.detail-container .content-detail-container .programme .tags .tag .iconfont {
  color: #707070;
  font-size: 48px;
}

.detail-container .content-detail-container .programme .tags .tag span {
  color: #707070;
  font-size: 18px;
  margin-left: 9px;
}

.detail-container .content-detail-container .programme .title {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding: 1em 2em;
  display: inline-block;
  margin-top: 60px;
  background-color: #81c429;
  margin-bottom: 60px;
}

.detail-container .content-detail-container .story .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .story .list ul li {
  width: 32%;
  margin-right: 2%;
  padding: 10px;
  margin-top: 40px;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
}

.detail-container .content-detail-container .story .list ul li .pic {
  display: block;
  width: 100%;
  height: 240px;
}

.detail-container .content-detail-container .story .list ul li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail-container .content-detail-container .story .list ul li .tit {
  color: #333;
  font-size: 18px;
  line-height: 3;
}

.detail-container .content-detail-container .story .list ul li:nth-child(3n) {
  margin-right: 0;
}

.detail-container .content-detail-container .honor .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .honor .list ul li {
  width: 32%;
  height: 240px;
  margin-right: 2%;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.detail-container .content-detail-container .honor .list ul li .pic {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-container .content-detail-container .honor .list ul li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail-container .content-detail-container .honor .list ul li .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -240px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 26px;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  text-align: center;
}

.detail-container .content-detail-container .honor .list ul li .mask .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  font-size: 18px;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  padding: 0 1em;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  text-align: center;
  justify-content: center;
}

.detail-container .content-detail-container .honor .list ul li:nth-child(3n) {
  margin-right: 0;
}

.detail-container .content-detail-container .honor .list ul li:hover .mask {
  top: 0;
  -webkit-columns: ;
  -moz-columns: ;
  columns: ;
}

.detail-container .content-detail-container .apply {
  width: 1217px;
  margin: 0 auto;
}

.detail-container .content-detail-container .apply .top {
  width: 100%;
  height: 160px;
  background: url(../images/bg.png) no-repeat center center;
}

.detail-container .content-detail-container .apply .body {
  border-left: 20px solid #82583b;
  border-right: 19px solid #82583b;
  border-bottom: 27px solid #82583b;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 50px 50px 50px 40px;
  color: #454545;
  font-size: 16px;
  line-height: 2;
}

.detail-container .content-detail-container .lib {
  text-align: center;
}

.detail-container .content-detail-container .lib .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .lib .list ul li {
  width: 32%;
  height: 248px;
  margin-right: 2%;
  margin-top: 24px;
}

.detail-container .content-detail-container .lib .list ul li:nth-child(3n) {
  margin-right: 0;
}

.detail-container .content-detail-container .lib .list ul li a img {
  width: 100%;
  height: 100%;
}

.detail-container .content-detail-container .profile .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.detail-container .content-detail-container .profile .list ul li {
  padding: 8px;
  width: 293px;
  height: 205px;
  margin-right: 16px;
  margin-top: 16px;
  background-color: #9d9d9d;
}

.detail-container .content-detail-container .profile .list ul li a img {
  width: 100%;
  height: 100%;
}

.detail-container .content-detail-container .profile .list ul li:nth-child(4n) {
  margin-right: 0;
}

.detail-container .content-detail-container .paging {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.detail-container .content-detail-container .paging a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #333;
  font-size: 18px;
  text-align: center;
  margin: 0 4px;
  -webkit-transition: all 0.33s linear;
  -o-transition: all 0.33s linear;
  transition: all 0.33s linear;
}

.detail-container .content-detail-container .paging .num:hover,
.detail-container .content-detail-container .paging .num.active {
  color: #fff;
  background-color: #81c429;
}

.detail-container .content-detail-container .paging .prev .iconfont,
.detail-container .content-detail-container .paging .next .iconfont {
  font-size: 32px;
}

.detail-container .content-detail-container .content-change {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.detail-container .content-detail-container .content-change p {
  color: #333;
  font-size: 14px;
}
.detail-container .content-detail-container .content-change p {
  color: #666;
  font-size: 14px;
}
