@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, button, textarea, select, form {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html,
body {
  height: 100%;
  min-height: 100%;
}

/* 普通文章样式 */
.article-content {
  overflow: hidden;
}
.article-content strong, .article-content b {
  font-weight: bold;
}
.article-content i, .article-content em {
  font-style: italic;
}
.article-content ol, .article-content ul, .article-content li {
  list-style: inherit;
}
.article-content table {
  border-collapse: collapse;
  width: auto;
  word-break: break-all;
  max-width: 100%;
  table-layout: fixed;
}
.article-content table td, .article-content table th {
  word-break: break-all;
  border: 1px solid #f2f2f2;
  width: auto;
  padding: 5px 10px;
  vertical-align: middle;
}
.article-content iframe {
  max-width: 100%;
}
.article-content video, .article-content audio {
  max-width: 100%;
  height: auto;
}
.article-content p, .article-content span, .article-content div {
  word-break: break-word;
  text-align: justify;
}
.article-content p, .article-content pre {
  font-size: inherit;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content h1 {
  font-size: 20px;
}
.article-content h2 {
  font-size: 18px;
}
.article-content h3 {
  font-size: 16px;
}
.article-content h4, .article-content h5, .article-content h6 {
  font-size: 14px;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  padding: 15px 0;
  font-weight: bold;
}
.article-content a {
  color: #0b76ac;
  text-decoration: underline;
}
.article-content ol, .article-content ul {
  padding: 10px 20px;
}
.article-content blockquote {
  padding-left: 10px;
  border-left: 3px solid #dbdbdb;
  font-size: 14px;
}
.article-content blockquote p {
  font-size: 14px;
}
.article-content img {
  -o-object-fit: unset;
  object-fit: unset;
}
.article-content section {
  max-width: 100% !important;
}

html {
  min-height: 100%;
  height: 100%;
}
html body {
  line-height: 1.2;
  min-height: 100%;
  font: 16px/1.4286 arial, "PingFang SC", miui, system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
  color: #333;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
html body .page, html body main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
html body ol, html body ul, html body li {
  margin-bottom: 0;
  list-style: none;
}
html body a {
  text-decoration: none;
  cursor: pointer;
}
html body blockquote, html body q {
  quotes: none;
}
html body blockquote:before, html body blockquote:after,
html body q:before, html body q:after {
  content: none;
}
html body table {
  border-collapse: collapse;
  border-spacing: 0;
}
html body p {
  line-height: 1.5;
}
html body img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

input, button, textarea, select {
  border: 0;
}
input:focus, button:focus, textarea:focus, select:focus {
  outline: none;
}

a {
  color: unset;
}

button {
  border: 0;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-cut {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-cut-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-cut-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-cut-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

div.msgBoxBackGround {
  top: 0;
  left: 0;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
  z-index: 1000;
}

div.msgBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  position: fixed;
  z-index: 1050;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
}
div.msgBox .msgBoxTitle {
  width: 100%;
  border-bottom: 0;
  color: #333;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
}
div.msgBox .msgBoxImage {
  display: none;
}
div.msgBox .msgBoxContent {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}
div.msgBox .msgBoxContent span {
  color: #333;
}
div.msgBox div.msgBoxButtons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.scroll-animate.animated {
  visibility: hidden;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border: solid 2px #fff;
  width: 5px;
  border-radius: 4px;
  background-color: #c9c6c6;
}

::-webkit-scrollbar-corner {
  background-color: #fff;
}

::-webkit-scrollbar:horizontal {
  height: 9px;
}

::-webkit-selection {
  background: #009944;
  color: #fff;
}

::-moz-selection {
  background: #009944;
  color: #fff;
}

::selection {
  background: #009944;
  color: #fff;
}

@-webkit-keyframes toOpen {
  0% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@keyframes toOpen {
  0% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}
@-webkit-keyframes toClose {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }
}
@keyframes toClose {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }
}
.disable-hover {
  pointer-events: none;
}

.header_ {
  height: 120px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header {
  height: 120px;
  position: fixed;
  z-index: 15;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
}
.header.scroll {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
}
.header.hide {
  display: none;
}
.header .header-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.header .logo {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header .nav {
  margin-left: auto;
  height: 100%;
}
.header .nav .navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}
.header .nav .navList .item {
  margin: 0 22px;
  position: relative;
}
.header .nav .navList .item > a {
  font-size: 18px;
  color: #222;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}
.header .nav .navList .item > a > .iconfont {
  font-size: 22px;
}
.header .nav .navList .item > ol {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%) translateY(10px);
  -ms-transform: translateX(-50%) translateY(10px);
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
  opacity: 0;
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.04);
  min-width: 100%;
  text-align: center;
}
.header .nav .navList .item > ol > li > a {
  font-size: 16px;
  color: #222;
  display: block;
  white-space: nowrap;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .nav .navList .item > ol > li > a:hover {
  color: #009944;
}
.header .nav .navList .item:hover > a {
  color: #009944;
}
.header .nav .navList .item:hover > a > .iconfont {
  color: #009944;
}
.header .nav .navList .item:hover > ol {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.header .nav .navList .item.on > a {
  color: #009944;
}
.header .nav .navList .item.on > a > .iconfont {
  color: #009944;
}
.header .right-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.header .right-bar .search-btn {
  margin: 0 46px 0 24px;
}
.header .right-bar .search-btn .iconfont {
  font-size: 22px;
  color: #009944;
  margin-right: 10px;
}
.header .right-bar .language-btn > a {
  display: block;
  border-radius: 18px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  padding: 0 16px;
  text-transform: uppercase;
  color: #fff;
  background: #009944;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
  max-width: 1200px;
  min-width: 1190px;
}

footer .footer_top {
  background: #F9F9F9;
  padding: 50px 0 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
footer .footer_top .icon1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
footer .footer_top .icon2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
footer .footer_top .flex-cont {
  position: relative;
  z-index: 3;
}
footer .footer_top .flex-cont .top-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E6E6E6;
}
footer .footer_top .flex-cont .top-item .title {
  font-size: 20px;
  color: #222;
  font-weight: bold;
}
footer .footer_top .flex-cont .top-item .item ul {
  margin-top: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .footer_top .flex-cont .top-item .item ul li {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  margin-right: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer_top .flex-cont .top-item .item ul li:hover {
  color: #009944;
}
footer .footer_top .flex-cont .top-item .item .code {
  margin-top: 26px;
}
footer .footer_top .flex-cont .bottom-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer_top .flex-cont .bottom-item .contact-cont .title {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  text-transform: uppercase;
}
footer .footer_top .flex-cont .bottom-item .contact-cont ul {
  margin-top: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .footer_top .flex-cont .bottom-item .contact-cont ul li {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  margin-right: 86px;
  line-height: 2;
}
footer .footer_top .flex-cont .bottom-item .btn {
  display: block;
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 38px;
  background: #009944;
  border-radius: 4px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
footer .footer_top .flex-cont .bottom-item .btn .iconfont {
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
}
footer .footer_top .flex-cont .bottom-item .btn span {
  font-size: 16px;
  color: #fff;
}
footer .footer_top .flex-cont .bottom-item.en {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
footer .footer_top .flex-cont .bottom-item.en .contact-cont {
  max-width: 622px;
}
footer .footer_top .flex-cont .bottom-item.en .contact-cont ul li {
  width: 100%;
}
footer .footer_top .flex-cont .bottom-item.en .en_code_item .title {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  text-transform: uppercase;
}
footer .footer_top .flex-cont .bottom-item.en .en_code_item .code {
  margin-top: 30px;
}
footer .footer_top .flex-cont .bottom-item.en .en_code_item .tips {
  margin-top: 24px;
  text-align: center;
  color: #666;
  font-size: 16px;
  text-transform: uppercase;
}
footer .footer_bottom {
  background: #EEEEEE;
  color: #fff;
  padding: 16px 0;
  font-size: 16px;
  color: #333;
}
footer .footer_bottom .flex-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.enBanner > img {
  display: block;
  width: 100%;
}

.ind_banner_box .swiper-slide img {
  display: block;
  width: 100%;
}
.ind_banner_box .swiper-button-next, .ind_banner_box .swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
}
.ind_banner_box .swiper-button-prev {
  background-image: none;
}
.ind_banner_box .swiper-button-prev .iconfont {
  display: inline-block;
  color: #fff;
  font-size: 50px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ind_banner_box .swiper-button-next {
  background-image: none;
}
.ind_banner_box .swiper-button-next .iconfont {
  display: inline-block;
  color: #fff;
  font-size: 50px;
}
.ind_banner_box .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  margin: 0 7px;
  opacity: 0.5;
}
.ind_banner_box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.ind_topic_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #009944;
}
.ind_topic_title .iconfont {
  font-size: 32px;
  margin-right: 10px;
}
.ind_topic_title span {
  font-size: 32px;
  font-weight: bold;
}

.ind_about {
  padding: 86px 0;
}
.ind_about .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ind_about .container .left-cont {
  width: 448px;
}
.ind_about .container .left-cont .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #009944;
}
.ind_about .container .left-cont .title .icon {
  width: 42px;
  height: 42px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 16px;
}
.ind_about .container .left-cont .title span {
  font-size: 32px;
  font-weight: bold;
}
.ind_about .container .left-cont .article-content {
  margin-top: 46px;
}
.ind_about .container .right-cont {
  margin-left: auto;
}
.ind_about .container .right-cont .video-cover {
  position: relative;
  margin-right: 10px;
}
.ind_about .container .right-cont .video-cover::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #009944;
  top: 10px;
  left: 10px;
  border-radius: 4px;
}
.ind_about .container .right-cont .video-cover .iconfont {
  position: absolute;
  z-index: 3;
  font-size: 66px;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.ind_about .container .right-cont .video-cover .cover {
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.hidden {
  display: none !important;
}

.video-popup {
  width: calc(100% - 60px) !important;
  background: transparent !important;
  max-width: 1140px !important;
}
.video-popup .close-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 102%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  cursor: pointer;
}
.video-popup .close-content .icon-guanbi {
  font-size: 36px;
  color: #999;
}
.video-popup .popup-content {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  font-size: 0;
  max-height: calc(100vh - 120px) !important;
}
.video-popup #video {
  width: 100%;
  display: block;
}

.ind_news {
  padding: 24px 0 60px;
}
.ind_news .list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 60px) / 3));
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-areas: "a a a" "b c d";
}
.ind_news .list .item {
  background: #f7f7f7;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item .word-box {
  padding: 22px 20px;
}
.ind_news .list .item .word-box .title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item .word-box .date {
  color: #999;
  font-size: 16px;
  margin-top: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item .word-box .desc {
  font-size: 16px;
  color: #999;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item .word-box .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}
.ind_news .list .item .word-box .bottom .more {
  font-size: 16px;
  color: #009944;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item .word-box .bottom .more span {
  opacity: 0;
}
.ind_news .list .item .word-box .bottom .iconfont {
  font-size: 22px;
  color: #009944;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item .img-box {
  width: 600px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: none;
}
.ind_news .list .item:hover {
  background: #009944;
}
.ind_news .list .item:hover .word-box .title {
  color: #fff;
}
.ind_news .list .item:hover .word-box .date {
  color: #fff;
}
.ind_news .list .item:hover .word-box .desc {
  color: #fff;
}
.ind_news .list .item:hover .word-box .bottom .more {
  color: #fff;
}
.ind_news .list .item:hover .word-box .bottom .iconfont {
  color: #fff;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation: toLeft 2s ease-out infinite;
  animation: toLeft 2s ease-out infinite;
}
.ind_news .list .item:nth-child(1) {
  grid-area: a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.09);
}
.ind_news .list .item:nth-child(1) .word-box {
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 600px;
}
.ind_news .list .item:nth-child(1) .word-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 10px solid transparent;
  left: 100%;
  top: 30px;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_news .list .item:nth-child(1) .word-box .desc {
  -webkit-line-clamp: 3;
}
.ind_news .list .item:nth-child(1) .word-box .bottom {
  margin-top: auto;
}
.ind_news .list .item:nth-child(1) .word-box .bottom .more {
  height: 38px;
  line-height: 38px;
  border: 1px solid #009944;
  border-radius: 20px;
  padding: 0 18px;
}
.ind_news .list .item:nth-child(1) .word-box .bottom .more span {
  opacity: 1;
}
.ind_news .list .item:nth-child(1) .word-box .bottom .iconfont {
  display: none;
}
.ind_news .list .item:nth-child(1) .img-box {
  display: block;
  position: relative;
  z-index: 1;
}
.ind_news .list .item:nth-child(1):hover {
  background: #009944;
}
.ind_news .list .item:nth-child(1):hover .word-box .bottom .more {
  border-color: #fff;
}
.ind_news .list .item:nth-child(1):hover .word-box::after {
  border-left: 10px solid #009944;
}

.ind_project_info {
  padding: 60px 0;
}
.ind_project_info .list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 30px) / 2));
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
.ind_project_info .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  background: #f7f7f7;
  overflow: hidden;
  background: #f7f7f7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_project_info .list .item .word-box {
  padding: 30px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_project_info .list .item .word-box .title {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_project_info .list .item .word-box .desc {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 18px;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_project_info .list .item .word-box .bottom {
  margin-top: auto;
}
.ind_project_info .list .item .word-box .bottom .iconfont {
  font-size: 18px;
  color: #009944;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ind_project_info .list .item .img-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 296px;
  height: 250px;
}
.ind_project_info .list .item .img-box img {
  height: 100%;
  width: 100%;
}
.ind_project_info .list .item:hover {
  background: #009944;
}
.ind_project_info .list .item:hover .word-box .title {
  color: #fff;
}
.ind_project_info .list .item:hover .word-box .desc {
  color: #fff;
}
.ind_project_info .list .item:hover .word-box .desc {
  color: #fff;
}
.ind_project_info .list .item:hover .word-box .bottom .iconfont {
  color: #fff;
  margin-left: calc(100% - 20px);
}

.ind_partner_map {
  padding: 68px 0;
}
.ind_partner_map .data-cont {
  position: relative;
}
.ind_partner_map .data-cont .city-data-box .city-name {
  font-size: 20px;
  font-weight: bold;
  color: #009944;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.ind_partner_map .data-cont .city-data-box .item {
  font-size: 16px;
  color: #222;
  margin-top: 10px;
}
.ind_partner_map .data-cont .city-data-box .item .num {
  color: #009944;
}
.ind_partner_map .data-cont .right-data {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 140px;
}
.ind_partner_map .data-cont .right-data .item {
  margin-bottom: 30px;
}
.ind_partner_map .data-cont .right-data .item .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.ind_partner_map .data-cont .right-data .item .title .iconfont {
  margin-right: 16px;
  font-size: 26px;
  font-weight: normal;
}
.ind_partner_map .data-cont .right-data .item .bottom {
  font-size: 18px;
  color: #222;
}
.ind_partner_map .data-cont .right-data .item .bottom .number {
  font-size: 46px;
  color: #009944;
  font-weight: bold;
}
.ind_partner_map .data-cont .right-data .tips {
  font-size: 16px;
  color: #999;
}

.ind_partner {
  padding-bottom: 100px;
  text-align: center;
}
.ind_partner .cont {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ind_partner .cont .btn {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.ind_partner .cont .btn .iconfont {
  font-size: 30px;
  color: #009944;
  display: inline-block;
}
.ind_partner .cont .btn.prev {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-right: 15px;
}
.ind_partner .cont .btn.next {
  margin-left: 15px;
}
.ind_partner .cont .btn.swiper-button-disabled {
  cursor: no-drop;
}
.ind_partner .cont .btn.swiper-button-disabled .iconfont {
  color: #eee;
}
.ind_partner .cont .swiper-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.ind_partner .cont .swiper-container .img-box {
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ind_partner .cont .swiper-container .img-box img {
  display: block;
}
.ind_partner .more {
  position: relative;
  font-size: 18px;
  padding: 10px 28px;
  color: #009944;
  background-color: transparent;
  border: 2px solid #009944;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: inline-block;
  line-height: 1;
  margin-top: 45px;
}
.ind_partner .more span {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  position: relative;
  overflow: hidden;
}
.ind_partner .more::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #009944;
  top: 0%;
  left: -100%;
  scale: 1;
  border-radius: inherit;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
.ind_partner .more:hover {
  border-color: transparent;
}
.ind_partner .more:hover::before {
  scale: 1;
  top: 0%;
  left: 0%;
}
.ind_partner .more:hover span {
  z-index: 2;
  color: #fff;
}
.ind_partner .more:active {
  scale: 0.9;
}

.pagination-box {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
}
.pagination-box .page-buttom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination-box a {
  display: block;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  position: relative;
  margin: 0 6px;
  color: #b5b4b4;
  border-radius: 50%;
  border: 1px solid #b5b4b4;
}
.pagination-box a.on, .pagination-box a.active, .pagination-box a:hover {
  border: 1px solid #009944;
  color: #009944;
}
.pagination-box a.on .iconfont, .pagination-box a.active .iconfont, .pagination-box a:hover .iconfont {
  color: #009944;
}
.pagination-box .iconfont {
  font-size: 24px;
}
.pagination-box .prev {
  width: 0.36rem;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination-box .prev .iconfont {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.pagination-box .next {
  width: 0.36rem;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination-box .disabled {
  border-color: #ddd !important;
}
.pagination-box .disabled .iconfont {
  color: #CCCCCC !important;
}
.pagination-box .page-count {
  font-size: 18px;
  color: #666;
  margin-left: 10px;
}

.no-result {
  width: 736px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 100px;
  position: relative;
}
.no-result img {
  width: 100%;
}
.no-result .tips {
  text-align: center;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  color: #999999;
}

.search_banner {
  height: 365px;
  background: #f3f3f3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.search_banner .search_box {
  width: 600px;
  overflow: hidden;
  background: #fff;
  border-radius: 25px;
}
.search_banner .search_box form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}
.search_banner .search_box form input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.search_banner .search_box form button {
  width: 42px;
  background: #009944;
  border: none;
  height: 42px;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  margin-right: 5px;
}
.search_banner .search_box form button .iconfont {
  font-size: 30px;
  color: #fff;
}

.search_page {
  padding: 45px 0 70px;
}
.search_page .total {
  font-size: 18px;
  color: #999;
  padding: 0 20px;
}
.search_page .total span {
  color: #009944;
  font-weight: bold;
}
.search_page .search_list {
  margin-top: 30px;
}
.search_page .search_list .item {
  padding: 28px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search_page .search_list .item .title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search_page .search_list .item .date {
  font-size: 16px;
  color: #999;
  margin-top: 20px;
}
.search_page .search_list .item .iconfont {
  color: #CCC;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search_page .search_list .item:hover {
  background: #F9F9F9;
  border-color: transparent;
}
.search_page .search_list .item:hover .title {
  color: #009944;
}
.search_page .search_list .item:hover .iconfont {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  color: #009944;
  -webkit-animation: toLeft 2s ease-out infinite;
  animation: toLeft 2s ease-out infinite;
}

@-webkit-keyframes toLeft {
  from {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes toLeft {
  from {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.ny-banner {
  position: relative;
  z-index: 1;
}
.ny-banner > img {
  display: block;
  width: 100%;
}
.ny-banner .word-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}

.ny-container {
  padding: 80px 0 110px;
}

.ny_partner_cont .slide_content {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 60px) / 3));
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 35px;
}
.ny_partner_cont .slide_content .item {
  color: #222;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ny_partner_cont .slide_content .item:hover {
  color: #009944;
}
.ny_partner_cont .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 80px;
}
.ny_partner_cont .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.3;
  background: #009944;
  margin: 0 7px;
}
.ny_partner_cont .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.nytopNav {
  position: relative;
  z-index: 3;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.nytopNav .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-y: hidden;
}
.nytopNav .wrapper > a {
  height: 60px;
  width: 240px;
  line-height: 60px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nytopNav .wrapper > a:last-child {
  border-right: none;
}
.nytopNav .wrapper > a:hover, .nytopNav .wrapper > a.on {
  background: rgba(0, 153, 68, 0.5);
}

.page-about {
  padding: 20px 0 40px;
}
.page-about .section1 {
  padding-bottom: 90px;
}
.page-about .section1 > .w1200 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-about .section1 > .w1200 .left-cont {
  width: 454px;
}
.page-about .section1 > .w1200 .left-cont .article-title {
  font-size: 20px;
  color: #222;
  font-weight: bold;
}
.page-about .section1 > .w1200 .left-cont .article-content {
  margin-top: 20px;
  text-align: justify;
}
.page-about .section1 > .w1200 .right-cont .honors-box {
  position: relative;
  margin-right: 10px;
}
.page-about .section1 > .w1200 .right-cont .honors-box::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #009944;
  top: 10px;
  left: 10px;
  border-radius: 4px;
}
.page-about .section1 > .w1200 .right-cont .honors-box .img {
  border-radius: 4px;
  position: relative;
  z-index: 2;
  border: 1px solid #009944;
}
.page-about .section2 > img {
  display: block;
  width: 100%;
}
.page-about .section2 .w1200 {
  position: relative;
}
.page-about .section2 .word-box {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 58px;
  background: #009944;
  border-radius: 90px 90px 0px 0px;
  color: #fff;
}
.page-about .section2 .word-box .item {
  width: 374px;
  margin-bottom: 60px;
}
.page-about .section2 .word-box .item .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.page-about .section2 .word-box .item .desc {
  font-size: 16px;
  line-height: 1.6;
}
.page-about .section2 .word-box .item:last-child {
  margin-bottom: 0;
}
.page-about .section3 {
  text-align: center;
  padding: 60px 0;
}
.page-about .section3 .title {
  font-size: 34px;
  color: #009944;
  font-weight: bold;
}
.page-about .section3 .article-content {
  margin-top: 70px;
}

.page-manager {
  padding: 20px 0 100px;
}
.page-manager .manager-nav .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-x: auto;
}
.page-manager .manager-nav .wrapper > a {
  padding: 15px 35px;
  min-width: 180px;
  text-align: center;
  border-radius: 4px;
  line-height: 1;
  font-size: 18px;
  color: #666;
  margin-right: 20px;
  background: #EAEAEA;
  -webkit-transform: all 0.3s;
  -ms-transform: all 0.3s;
  transform: all 0.3s;
}
.page-manager .manager-nav .wrapper > a.on, .page-manager .manager-nav .wrapper > a:hover {
  background: #009944;
  color: #fff;
}
.page-manager .manager-nav .wrapper > a:last-child {
  margin-right: 0;
}
.page-manager .content {
  margin-top: 50px;
}
.page-manager .content .section-item {
  margin-bottom: 60px;
}
.page-manager .content .section-item .topic_title {
  font-size: 28px;
  color: #009944;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
.page-manager .content .section-item .topic_title::before {
  content: "";
  display: block;
  width: 7px;
  height: 26px;
  background: #009944;
  margin-right: 10px;
}
.page-manager .content .section-item .list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 20px) / 2));
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.page-manager .content .section-item .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  background: #F8F8F8;
  border-radius: 4px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-manager .content .section-item .list .item .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0px 11px 0px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 11px 0px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  flex-shrink: 0;
}
.page-manager .content .section-item .list .item .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-manager .content .section-item .list .item .right-cont {
  width: calc(100% - 225px);
}
.page-manager .content .section-item .list .item .right-cont .title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.page-manager .content .section-item .list .item .right-cont .tag {
  font-size: 18px;
  color: #009944;
  margin-top: 10px;
}
.page-manager .content .section-item .list .item .right-cont .date {
  font-size: 18px;
  color: #999;
  margin-top: 10px;
}
.page-manager .content .section-item .list .item .right-cont .desc {
  font-size: 16px;
  color: #666;
  margin-top: 25px;
  line-height: 1.6;
}
.page-manager .content .section-item .list .item:hover {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.page-manager .content .section-item .list .item:hover .avatar {
  -webkit-box-shadow: 0px 11px 0px 0px rgba(0, 153, 68, 0.06);
  box-shadow: 0px 11px 0px 0px rgba(0, 153, 68, 0.06);
}

.page-record {
  padding: 20px 0 140px;
}
.page-record .record-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-record .record-nav .btn {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: #fff;
  border: 1px solid #009944;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.page-record .record-nav .btn .iconfont {
  font-size: 18px;
  color: #009944;
}
.page-record .record-nav .btn.prev .iconfont {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.page-record .record-nav .btn.swiper-button-disabled {
  border-color: #CCC;
}
.page-record .record-nav .btn.swiper-button-disabled .iconfont {
  color: #999;
}
.page-record .history-swiper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 3px;
}
.page-record .history-swiper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #F3F3F3;
  top: 15px;
  z-index: 1;
}
.page-record .swiper-slide .content {
  cursor: pointer;
}
.page-record .swiper-slide .content .svg-box {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  position: relative;
}
.page-record .swiper-slide .content .svg-box::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #CCC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
}
.page-record .swiper-slide .content .svg-box svg {
  display: none;
}
.page-record .swiper-slide .content .svg-box .point circle {
  fill: #009944;
  opacity: 1;
}
.page-record .swiper-slide .content .svg-box .point .rp1 {
  -webkit-animation: ripple1 0.7s linear infinite;
  animation: ripple1 0.7s linear infinite;
}
.page-record .swiper-slide .content .title {
  text-align: center;
  font-size: 24px;
  color: #222;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 34px;
  margin-top: 10px;
}
.page-record .swiper-slide.active .content .svg-box svg {
  display: block;
}
.page-record .swiper-slide.active .content .svg-box::before {
  display: none;
}
.page-record .swiper-slide.active .content .title {
  color: #009944;
  font-size: 34px;
}
.page-record .list-cont {
  margin-top: 60px;
}
.page-record .list-cont .top {
  background: #f8f8f8;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 30px;
}
.page-record .list-cont .top .left-cont {
  margin-left: 30px;
  margin-top: 40px;
  width: calc(100% - 650px);
}
.page-record .list-cont .top .left-cont > img {
  width: 80px;
}
.page-record .list-cont .top .left-cont .year {
  font-size: 24px;
  color: #009944;
  margin-top: 24px;
}
.page-record .list-cont .top .left-cont .year .num {
  font-size: 50px;
  font-weight: bold;
  margin-right: 10px;
}
.page-record .list-cont .top .left-cont ul {
  margin-top: 10px;
}
.page-record .list-cont .top .left-cont ul li {
  margin-bottom: 20px;
}
.page-record .list-cont .top .left-cont ul li > a {
  font-size: 24px;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}
.page-record .list-cont .top .left-cont ul li > a:hover {
  color: #009944;
}
.page-record .list-cont .top .left-cont ul li:last-child {
  margin-bottom: 0;
}
.page-record .list-cont .top .right-cont {
  width: 600px;
  border-radius: 6px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.page-record .list-cont .top .right-cont img {
  display: block;
  width: 100%;
}
.page-record .record-list .item {
  padding: 38px 48px;
  background: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-record .record-list .item .months {
  font-size: 40px;
  font-weight: bold;
  color: #009944;
}
.page-record .record-list .item .line {
  width: 1px;
  height: 38px;
  background: #DEDEDE;
  margin-left: 44px;
  margin-right: 54px;
  margin-top: 8px;
}
.page-record .record-list .item .right-cont {
  width: calc(100% - 162px);
}
.page-record .record-list .item .right-cont ul {
  line-height: 2;
  font-size: 16px;
}
.page-record .record-list .item .right-cont ul li > a {
  display: block;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-record .record-list .item .right-cont ul li > a:hover {
  color: #009944;
}

@-webkit-keyframes ripple1 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.2;
  }
}

@keyframes ripple1 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.2;
  }
}
.page-members {
  padding: 20px 0 120px;
}
.page-members .type1_list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.page-members .type1_list .item .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0px 11px 0px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 11px 0px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  flex-shrink: 0;
}
.page-members .type1_list .item .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-members .type1_list .item .right-cont {
  width: calc(100% - 225px);
}
.page-members .type1_list .item .right-cont .name {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-top: 6px;
}
.page-members .type1_list .item .right-cont .tag {
  font-size: 18px;
  font-weight: bold;
  color: #009944;
  margin-top: 10px;
}
.page-members .type1_list .item .right-cont .desc {
  font-size: 16px;
  color: #666;
  margin-top: 25px;
  line-height: 1.8;
}
.page-members .type1_list .item .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 152px;
}
.page-members .type1_list .item:hover .avatar {
  -webkit-box-shadow: 0px 11px 0px 0px rgba(0, 153, 68, 0.06);
  box-shadow: 0px 11px 0px 0px rgba(0, 153, 68, 0.06);
}
.page-members .type1_list .item:hover .icon {
  opacity: 0.2;
}
.page-members .type1_list .item:last-child {
  margin-bottom: 0;
}
.page-members .type2_list {
  margin-top: 80px;
}
.page-members .type2_list .topic_title {
  font-size: 34px;
  color: #009944;
  font-weight: bold;
  text-align: center;
}
.page-members .type2_list .list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 90px) / 3));
  -webkit-column-gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
  row-gap: 40px;
}
.page-members .type2_list .list .item {
  border-radius: 4px;
  background: #F8F8F8;
  padding: 28px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-members .type2_list .list .item .avatar {
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.page-members .type2_list .list .item .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-members .type2_list .list .item .bottom {
  text-align: center;
  margin-top: 14px;
}
.page-members .type2_list .list .item .bottom .name {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-members .type2_list .list .item .bottom .tag {
  color: #666;
  font-size: 18px;
  margin-top: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-members .type2_list .list .item:hover {
  background: #009944;
}
.page-members .type2_list .list .item:hover .bottom .name {
  color: #fff;
}
.page-members .type2_list .list .item:hover .bottom .tag {
  color: #fff;
}

.page-join {
  padding: 20px 0 140px;
}

.join-list {
  margin-top: 80px;
  background: #F8F8F8;
  border-radius: 10px;
  padding: 20px;
}
.join-list .topic_title {
  font-size: 24px;
  color: #222;
  font-weight: bold;
}
.join-list .list {
  margin-top: 20px;
}
.join-list .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #222;
}
.join-list .list .item .iconfont {
  color: #009944;
  font-size: 18px;
  margin-right: 10px;
}
.join-list .list .item .title {
  max-width: calc(100% - 60px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.join-list .list .item .num {
  margin-left: 10px;
}
.join-list .list .item:hover .title {
  color: #009944;
  text-decoration: underline;
}

.details-banner {
  height: 300px;
  background: #f3f3f3;
  position: relative;
}
.details-banner .word-box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.details-banner .word-box .title {
  font-size: 22px;
  font-weight: bold;
}
.details-banner .word-box .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  color: #999;
  margin-top: 36px;
}
.details-banner .word-box .bottom .item {
  margin: 0 25px;
}

.ny-page-partner {
  padding: 60px 0 120px;
}

.filter-section > .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter-section > .top .filter-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: 1px solid #eee;
  border-radius: 25px;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter-section > .top .filter-options li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 50px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-size: 20px;
  color: #222;
  border-radius: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.filter-section > .top .filter-options li .iconfont {
  font-size: 24px;
  margin-right: 10px;
  color: #009944;
}
.filter-section > .top .filter-options li.on, .filter-section > .top .filter-options li:hover {
  color: #fff;
  background: #009944;
}
.filter-section > .top .filter-options li.on .iconfont, .filter-section > .top .filter-options li:hover .iconfont {
  color: #fff;
}
.filter-section > .top .filter-options .back {
  position: absolute;
  height: 50px;
  border-radius: 25px;
  background: #009944;
  z-index: 1;
}
.filter-section > .top .search-bar {
  width: 320px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 25px;
  padding-right: 20px;
}
.filter-section > .top .search-bar input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}
.filter-section > .top .search-bar button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}
.filter-section > .top .search-bar button .iconfont {
  font-size: 24px;
  color: #009944;
}
.filter-section .partner-nav-swiper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 26px;
  margin-left: -17px;
  overflow: hidden;
}
.filter-section .partner-nav-swiper.close {
  height: 50px;
}
.filter-section .partner-nav-swiper .partner-nav-swiper-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.filter-section .partner-nav-swiper .partner-nav-swiper-container .slide {
  margin-top: 14px;
  margin-left: 17px;
  min-width: 130px;
}
.filter-section .partner-nav-swiper .partner-nav-swiper-container .slide .text {
  line-height: 1;
  background: #f2f2f2;
  border-radius: 20px;
  text-align: center;
  color: #222;
  font-size: 16px;
  padding: 10px 10px;
  cursor: pointer;
}
.filter-section .partner-nav-swiper .partner-nav-swiper-container .slide.active .text {
  background: #009944;
  color: #fff;
}
.filter-section .partner-nav-swiper .image_icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
  height: 36px;
  padding-left: 25px;
  cursor: pointer;
}
.filter-section .partner-nav-swiper .image_icon > img {
  height: 18px;
  width: auto;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filter-section .partner-nav-swiper .image_icon.open > img {
  -webkit-animation-name: toOpen;
  animation-name: toOpen;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.filter-section .partner-nav-swiper .image_icon.close > img {
  -webkit-animation-name: toClose;
  animation-name: toClose;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.filter-section .partner-list-swiper {
  margin-top: 50px;
}
.filter-section .partner-list-swiper .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 90px) / 3));
  -webkit-column-gap: 45px;
  -moz-column-gap: 45px;
  column-gap: 45px;
  row-gap: 50px;
}
.filter-section .partner-list-swiper .list .item {
  text-align: center;
}
.filter-section .partner-list-swiper .list .item .avatar {
  width: 270px;
  height: 270px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.filter-section .partner-list-swiper .list .item .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.filter-section .partner-list-swiper .list .item .top {
  margin-top: 10px;
}
.filter-section .partner-list-swiper .list .item .top .name {
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.filter-section .partner-list-swiper .list .item .top .desc {
  font-size: 16px;
  color: #666;
  height: 68px;
  line-height: 2;
  width: 316px;
  margin: 0 auto;
  margin-top: 6px;
}
.filter-section .partner-list-swiper .list .item .bottom {
  width: 316px;
  border-top: 1px solid #E2E2E2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 6px;
  padding: 30px 60px 0;
  margin: 0 auto;
}
.filter-section .partner-list-swiper .list .item .bottom .tag-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #222;
  text-align: left;
}
.filter-section .partner-list-swiper .list .item .bottom .tag-item .iconfont {
  font-size: 20px;
  margin-right: 10px;
  color: #009944;
}
.filter-section .partner-list-swiper .list .item:hover .top .name {
  color: #009944;
}
.filter-section .partner-list-swiper .list .item:hover .bottom {
  border-color: #009944;
}
.filter-section .partner-list-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 56px;
}
.filter-section .partner-list-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #009944;
  margin: 0 7px;
  opacity: 0.5;
}
.filter-section .partner-list-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.coo-story-section .topic_title {
  font-size: 34px;
  color: #009944;
  font-weight: bold;
  text-align: center;
}
.coo-story-section .content {
  margin-top: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.coo-story-section .content .left-nav {
  height: 1100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 90px 0;
  width: 80px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #009944;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #009944;
}
.coo-story-section .content .left-nav .item {
  text-align: center;
}
.coo-story-section .content .left-nav .item .icon {
  width: 52px;
  height: 30px;
  position: relative;
  margin: 0 auto;
}
.coo-story-section .content .left-nav .item .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 88px;
  height: 54px;
  max-width: unset;
  max-height: unset;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.coo-story-section .content .left-nav .item .icon img.normal {
  opacity: 1;
}
.coo-story-section .content .left-nav .item .text {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-top: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.coo-story-section .content .left-nav .item:hover .icon img.normal {
  opacity: 0;
}
.coo-story-section .content .left-nav .item:hover .icon img.hover1 {
  opacity: 0;
}
.coo-story-section .content .left-nav .item:hover .icon img.hover2 {
  opacity: 1;
}
.coo-story-section .content .left-nav:hover {
  background: #fff;
}
.coo-story-section .content .left-nav:hover .item .icon img.hover1 {
  opacity: 1;
}
.coo-story-section .content .left-nav:hover .item .text {
  color: #009944;
}
.coo-story-section .content .right-cont {
  width: calc(100% - 113px);
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 52px) / 3));
  -webkit-column-gap: 26px;
  -moz-column-gap: 26px;
  column-gap: 26px;
  row-gap: 20px;
  grid-template-areas: "a a c" "b b c" "d e f";
}
.coo-story-section .content .right-cont .item {
  height: 460px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.coo-story-section .content .right-cont .item img {
  display: block;
  width: 100%;
  height: 100%;
}
.coo-story-section .content .right-cont .item:nth-child(1) {
  grid-area: a;
  height: 240px;
  border-color: #009944;
  width: 620px;
}
.coo-story-section .content .right-cont .item:nth-child(2) {
  grid-area: b;
  height: 360px;
  width: 620px;
}
.coo-story-section .content .right-cont .item:nth-child(3) {
  grid-area: c;
  height: 620px;
  width: 446px;
  -webkit-transform: translateX(-102px);
  -ms-transform: translateX(-102px);
  transform: translateX(-102px);
}
.coo-story-section .content .right-cont .item .word-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.coo-story-section .content .right-cont .item .word-box .title {
  font-size: 18px;
  color: #009944;
  font-weight: bold;
}
.coo-story-section .content .right-cont .item .word-box .desc {
  line-height: 1.6;
  font-size: 16px;
  margin-top: 6px;
  color: #222;
}
.coo-story-section .content .right-cont .item:hover {
  border-color: rgba(0, 153, 68, 0.8);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 153, 68, 0.8);
  box-shadow: 0px 0px 10px 0px rgba(0, 153, 68, 0.8);
}
.coo-story-section .content .right-cont .item:hover .word-box {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.partner-info-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.partner-info-banner .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.partner-info-banner .content .left-cont {
  width: 600px;
}
.partner-info-banner .content .left-cont img {
  display: block;
  margin: 0 auto;
}
.partner-info-banner .content .right-cont {
  width: calc(100% - 638px);
  color: #fff;
}
.partner-info-banner .content .right-cont .name {
  font-size: 34px;
  font-weight: bold;
}
.partner-info-banner .content .right-cont .tag {
  font-size: 20px;
  margin-top: 20px;
}
.partner-info-banner .content .right-cont .desc {
  font-size: 14px;
  margin-top: 10px;
}
.partner-info-banner .content .right-cont .label-box {
  margin-top: 50px;
}
.partner-info-banner .content .right-cont .label-box .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}
.partner-info-banner .content .right-cont .label-box .item .iconfont {
  font-size: 22px;
  font-weight: normal;
  margin-right: 6px;
}
.partner-info-banner .content .right-cont .badge-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, 80px);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 40px;
}
.partner-info-banner .content .right-cont .badge-box .item {
  border-radius: 6px;
  overflow: hidden;
}

.partner-info-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.partner-info-cont .infoNav {
  background: #fff;
  width: 240px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.partner-info-cont .infoNav li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  color: #333;
  padding: 9px 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.partner-info-cont .infoNav li a::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #333;
  border-radius: 50%;
  margin-right: 15px;
}
.partner-info-cont .infoNav li.on a, .partner-info-cont .infoNav li:hover a {
  background: #009944;
  color: #fff;
}
.partner-info-cont .infoNav li.on a::before, .partner-info-cont .infoNav li:hover a::before {
  border-color: #fff;
}
.partner-info-cont .right-item {
  width: calc(100% - 270px);
  background: #F8F8F8;
  padding: 10px 30px;
  margin-left: auto;
}
.partner-info-cont .right-item > .item {
  margin-bottom: 30px;
}
.partner-info-cont .right-item > .item .topic_title {
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.partner-info-cont .right-item > .item .topic_title::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid #222222;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.partner-info-cont .right-item > .item .article-content {
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.partner-info-cont .right-item > .item .story-list > .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
}
.partner-info-cont .right-item > .item .story-list > .item:last-child {
  margin-bottom: 0;
}
.partner-info-cont .right-item > .item .story-list > .item .img-box {
  overflow: hidden;
  width: 260px;
  height: 160px;
}
.partner-info-cont .right-item > .item .story-list > .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.partner-info-cont .right-item > .item .story-list > .item .right-cont {
  width: calc(100% - 284px);
}
.partner-info-cont .right-item > .item .story-list > .item .right-cont .title {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.partner-info-cont .right-item > .item .story-list > .item .right-cont .desc {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}
.partner-info-cont .right-item > .item .story-list > .item .right-cont .date {
  font-size: 14px;
  color: #999;
  margin-top: 36px;
}
.partner-info-cont .right-item > .item .story-list > .item:hover .img-box img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.partner-info-cont .right-item > .item .story-list > .item:hover .right-cont .title {
  color: #009944;
}

.news-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  background: #F8F8F8;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-list .item .img-box {
  width: 260px;
  height: 160px;
  overflow: hidden;
}
.news-list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-list .item .right-cont {
  width: calc(100% - 284px);
}
.news-list .item .right-cont .title {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 4px;
}
.news-list .item .right-cont .desc {
  color: #666;
  line-height: 1.6;
  margin-top: 16px;
}
.news-list .item .right-cont .date {
  font-size: 14px;
  color: #999;
  margin-top: 36px;
}
.news-list .item .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 115px;
}
.news-list .item:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.news-list .item:hover .img-box img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.news-list .item:hover .right-cont .title {
  color: #009944;
}
.news-list .item:hover .icon {
  opacity: 0.2;
}

.partner_banner {
  position: relative;
  background: #F3F3F3;
  padding: 54px 0;
}
.partner_banner .word-box .title {
  font-size: 22px;
  font-weight: bold;
}
.partner_banner .word-box .date {
  color: #999;
  font-size: 16px;
  margin-top: 10px;
}
.partner_banner .word-box .related {
  margin-top: 40px;
}
.partner_banner .word-box .related .topic_title {
  font-size: 16px;
  color: #222;
}
.partner_banner .word-box .related .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
.partner_banner .word-box .related .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px;
}
.partner_banner .word-box .related .list .item .img-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-right: 12px;
  overflow: hidden;
}
.partner_banner .word-box .related .list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.partner_banner .word-box .related .list .item .name {
  font-size: 16px;
  color: #222;
}

.project_info_list .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #f7f7f7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.project_info_list .list .item .img-box {
  width: 600px;
  height: 300px;
  overflow: hidden;
}
.project_info_list .list .item .img-box img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
}
.project_info_list .list .item .right-cont {
  width: calc(100% - 600px);
  padding: 40px 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.project_info_list .list .item .right-cont .title {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.project_info_list .list .item .right-cont .desc {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.project_info_list .list .item .right-cont .more {
  width: 130px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #CCC;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: auto;
  color: #fff;
}
.project_info_list .list .item:last-child {
  margin-bottom: 0;
}
.project_info_list .list .item:nth-child(even) .right-cont {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.project_info_list .list .item:hover {
  background: #009944;
}
.project_info_list .list .item:hover .img-box img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.project_info_list .list .item:hover .right-cont .title {
  color: #fff;
}
.project_info_list .list .item:hover .right-cont .desc {
  color: #fff;
}
.project_info_list .list .item:hover .right-cont .more {
  background: #fff;
  color: #009944;
}

.file_list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0 20px 12px;
  background: #F8F8F8;
  border-radius: 6px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.file_list .item .iconfont {
  font-size: 60px;
  color: #8a8a8a;
  line-height: 60px;
  margin-right: 22px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.file_list .item .word-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.file_list .item .word-box .title {
  font-size: 18px;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}
.file_list .item .word-box .date {
  font-size: 14px;
  margin-top: 10px;
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.file_list .item .btn-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.file_list .item .btn-cont .btn {
  width: 100px;
  height: 38px;
  line-height: 38px;
  background: #fff;
  border: 1px solid #009944;
  border-radius: 20px;
  font-size: 16px;
  text-align: center;
  margin-right: 20px;
  color: #009944;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.file_list .item .btn-cont .btn:hover {
  background: #009944;
  color: #fff;
}
.file_list .item:hover {
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.file_list .item:hover .iconfont {
  color: #009944;
}
.file_list .item:hover .word-box .title {
  color: #009944;
}

.page-political {
  padding: 70px 0 30px;
}
.page-political .topic_title {
  color: #009944;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.page-political .section {
  margin-bottom: 70px;
}
.page-political .political-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #F8F8F8;
  padding: 30px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-political .political-info .swiper-container {
  width: 530px;
  margin: 0;
}
.page-political .political-info .swiper-container .img-box img {
  display: block;
  width: 100%;
}
.page-political .political-info .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
.page-political .political-info .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.page-political .political-info .right-cont {
  width: calc(100% - 575px);
}
.page-political .political-info:hover {
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.page-info-disclosure {
  padding: 70px 0 30px;
}
.page-info-disclosure .topic_title {
  color: #009944;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.page-info-disclosure .section {
  margin-bottom: 60px;
}
.page-info-disclosure .section.rule-section .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 60px) / 3));
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
}
.page-info-disclosure .section.rule-section .list .item {
  padding: 10px 20px;
  background: #eee;
  border-radius: 8px;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.page-info-disclosure .section.rule-section .list .item:hover {
  background: #009944;
  color: #fff;
}
.page-info-disclosure .section.report-section .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 100px) / 5));
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 20px;
}
.page-info-disclosure .section.report-section .list .item {
  padding: 10px 20px;
  background: #eee;
  border-radius: 8px;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.page-info-disclosure .section.report-section .list .item:hover {
  background: #009944;
  color: #fff;
}

.annual_report_list .topic_title {
  text-align: center;
  font-size: 32px;
  color: #009944;
  font-weight: bold;
}
.annual_report_list .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 78px) / 4));
  -webkit-column-gap: 26px;
  -moz-column-gap: 26px;
  column-gap: 26px;
  row-gap: 50px;
  margin-top: 36px;
  text-align: center;
}
.annual_report_list .list .item .title {
  padding: 0 10px;
  font-size: 18px;
  color: #222;
  margin-top: 14px;
  font-weight: bold;
}
.annual_report_list .list .item .btn {
  width: 130px;
  height: 40px;
  line-height: 40px;
  background: #009944;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 14px;
  color: #fff;
  overflow: hidden;
}
.annual_report_list .list .item .btn .iconfont {
  display: inline-block;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
}
.annual_report_list .list .item .btn .text {
  -webkit-transform: translateY(-42px);
  -ms-transform: translateY(-42px);
  transform: translateY(-42px);
  line-height: 40px;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.annual_report_list .list .item:hover .btn .iconfont {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.annual_report_list .list .item:hover .btn .text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.filter-section .loading {
  margin: 60px auto;
}
.filter-section .nodata {
  margin: 60px auto;
  text-align: center;
  color: #999;
}

.typing-indicator {
  width: 60px;
  height: 30px;
  position: relative;
  z-index: 4;
  margin: 0 auto;
}

.typing-circle {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background-color: #009944;
  left: 15%;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: typing-circle7124 0.5s alternate infinite ease;
  animation: typing-circle7124 0.5s alternate infinite ease;
}

@-webkit-keyframes typing-circle7124 {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    -webkit-transform: scaleX(1.7);
    transform: scaleX(1.7);
  }
  40% {
    height: 8px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}

@keyframes typing-circle7124 {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    -webkit-transform: scaleX(1.7);
    transform: scaleX(1.7);
  }
  40% {
    height: 8px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.typing-circle:nth-child(2) {
  left: 45%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
  left: auto;
  right: 15%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.typing-shadow {
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 153, 68, 0.2);
  position: absolute;
  top: 30px;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  z-index: 3;
  left: 15%;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  -webkit-animation: typing-shadow046 0.5s alternate infinite ease;
  animation: typing-shadow046 0.5s alternate infinite ease;
}

@-webkit-keyframes typing-shadow046 {
  0% {
    -webkit-transform: scaleX(1.5);
    transform: scaleX(1.5);
  }
  40% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scaleX(0.2);
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

@keyframes typing-shadow046 {
  0% {
    -webkit-transform: scaleX(1.5);
    transform: scaleX(1.5);
  }
  40% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scaleX(0.2);
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.typing-shadow:nth-child(4) {
  left: 45%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.typing-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.leader-popup {
  width: 590px !important;
}
.leader-popup .icon-close {
  position: absolute;
  line-height: 1;
  font-size: 42px !important;
  right: 0 !important;
  top: 0 !important;
  z-index: 4 !important;
  color: #999;
}
.leader-popup .popup-content {
  padding: 0 30px !important;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}
.leader-popup .top-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
}
.leader-popup .top-cont .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 10px 0px 0px rgba(0, 0, 0, 0.06);
}
.leader-popup .top-cont .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.leader-popup .top-cont .right-info {
  width: calc(100% - 225px);
}
.leader-popup .top-cont .right-info .name {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-top: auto;
}
.leader-popup .top-cont .right-info .tag {
  font-size: 18px;
  color: #009944;
  margin-top: 10px;
}
.leader-popup .top-cont .right-info .date {
  font-size: 18px;
  color: #999;
  margin-top: 10px;
}
.leader-popup .top-cont .right-info .desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-top: 16px;
}
.leader-popup .bottom-cont {
  margin-top: 20px;
  border-top: 1px solid #eee;
  font-size: 16px;
  line-height: 1.8;
  padding: 30px 0 0;
  color: #222;
}
.leader-popup .bottom-cont > span {
  color: #009944;
}

.download-a.downloading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.download-a.downloading .text {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  color: #009944;
  width: 100%;
  z-index: 2;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */