* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
.common-width {
  width: 80vw;
  margin: auto auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .common-width {
    width: 95vw;
  }
}
@media screen and (max-width: 767px) {
  .common-width {
    width: 90vw;
  }
}
.text-center {
  text-align: center;
}
@font-face {
  font-family: ArialMT;
  src: url(../font/ArialMT.otf);
}
@font-face {
  font-family: Arial-BoldMT;
  src: url(../font/Arial-BoldMT.otf);
}
.pc-header .header-top {
  width: 100%;
  height: 2vw;
  background: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-header .header-top .header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-header .header-top .header-top-content li {
  font-size: 0.875rem;
  color: #333333;
}
.pc-header .header-top .header-top-content li a {
  font-size: 0.875rem;
  color: #333333;
}
.pc-header .pc-header-nav {
  width: 100%;
  height: 4vw;
  background: #7dab60;
}
.pc-header .pc-header-nav .pc-header-nav-content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-header .pc-header-nav .pc-header-nav-content .logo {
  width: 12vw;
  height: 4vw;
}
.pc-header .pc-header-nav .pc-header-nav-content .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pc-header .pc-header-nav .pc-header-nav-content .logo a img {
  width: 100%;
  height: auto;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav {
  width: 63vw;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li {
  height: 100%;
  padding-left: 1vw;
  padding-right: 1vw;
  position: relative;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  color: #ffffff;
  font-family: ArialMT;
  text-transform: uppercase;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop {
  position: relative;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu {
  display: none;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu li {
  width: 100%;
  height: 2vw;
  padding-left: 1vw;
  background: #7dab60;
  opacity: 0.9;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu li a {
  width: 13vw;
  height: 2vw;
  font-size: 0.875rem;
  font-family: ArialMT;
  color: #eeeeee;
  display: flex;
  align-items: center;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu li:hover a {
  color: #333333;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li::before {
  display: block;
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: #7dab60;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li .triangle {
  text-align: center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5.5px 7px 5.5px;
  border-color: transparent transparent #7dab60 transparent;
  position: absolute;
  bottom: 3px;
  left: 44%;
  display: none;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover {
  z-index: 2;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover::before {
  display: block;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover .triangle {
  display: block;
}
.pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover .drop-menu {
  display: block;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .pc-header .header-top {
    width: 100%;
    height: 3.75rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    background: #7dab60;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pc-header .header-top .header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .pc-header .header-top .header-top-content li {
    font-size: 0.875rem;
    color: #89dbaf;
  }
  .pc-header .header-top .header-top-content li a {
    font-size: 0.875rem;
    color: #89dbaf;
  }
  .pc-header .header-top .header-top-content li:nth-child(2) {
    display: flex;
  }
  .pc-header .pc-header-nav {
    width: 100%;
    height: 8.125rem;
    background: #222222;
    padding-top: 1.25rem;
  }
  .pc-header .pc-header-nav .pc-header-nav-content {
    width: 98vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .logo {
    width: 12.5rem;
    height: 3.125rem;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .logo a img {
    width: 100%;
    height: auto;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li {
    width: auto;
    height: 100%;
    padding: 0;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
    color: #ffffff;
    font-family: ArialMT;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop {
    position: relative;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu {
    display: none;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu li {
    width: 100%;
    height: 2vw;
    padding-left: 1vw;
    background: #222222;
    opacity: 0.9;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu li a {
    width: 13vw;
    height: 2vw;
    font-size: 0.875rem;
    font-family: ArialMT;
    color: #666666;
    display: flex;
    align-items: center;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li.drop .drop-menu li:hover a {
    color: #7dab60;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li::before {
    display: block;
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: #7dab60;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li .triangle {
    text-align: center;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5.5px 7px 5.5px;
    border-color: transparent transparent #7dab60 transparent;
    position: absolute;
    bottom: 3px;
    left: 44%;
    display: none;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover {
    z-index: 2;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover::before {
    display: none;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover .triangle {
    display: none;
  }
  .pc-header .pc-header-nav .pc-header-nav-content .pc-nav > li:hover .drop-menu {
    display: none;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .pc-header {
    display: none;
  }
}
.phone-header {
  display: none;
}
@media screen and (max-width: 767px) {
  .phone-header {
    display: block;
    position: relative;
    z-index: 1;
  }
  .phone-header .phone-nav {
    background: #7dab60;
    height: auto;
    padding-top: 0.9375rem;
    padding-bottom: 1.25rem;
  }
  .phone-header .phone-nav .icon-caidan {
    width: 100%;
    height: 30px;
    font-size: 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
  }
  .phone-header .phone-nav .icon-caidan img {
    width: 12.5rem;
    height: auto;
  }
  .phone-header .drop {
    padding: 0.9375rem;
    display: none;
    background: #ffffff;
    position: relative;
    z-index: 1111;
    margin-top: 0.625rem;
  }
  .phone-header .drop li {
    margin-bottom: 0.625rem;
  }
  .phone-header .drop li .drop-one {
    display: flex;
    align-items: center;
  }
  .phone-header .drop li .drop-one span:nth-child(1) {
    margin-right: 0.625rem;
  }
  .phone-header .drop li span,
  .phone-header .drop li a {
    color: #7dab60;
  }
  .phone-header .drop li .drop-menu {
    height: auto;
    display: none;
  }
  .phone-header .drop li ol li:first-child {
    color: #7dab60;
  }
  .phone-header .drop li ol li a {
    color: #7dab60;
  }
}
.fourDirectionsOnTheMobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .fourDirectionsOnTheMobile {
    background: #7dab60;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fourDirectionsOnTheMobile li {
    width: 24%;
    margin-top: 20px;
  }
  .fourDirectionsOnTheMobile li a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fourDirectionsOnTheMobile li a p:nth-child(1) {
    font-size: 3.125rem;
    color: #ffffff;
  }
  .fourDirectionsOnTheMobile li a p:nth-child(2) {
    font-size: 1.125rem;
    color: #ffffff;
  }
}
.banner {
  width: 100%;
}
.banner img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .banner {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    height: auto;
  }
}
.breadcrumb-navigation {
  height: 3vw;
  background: #eeeeee;
}
.breadcrumb-navigation .breadcrumb-navigation-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.breadcrumb-navigation .breadcrumb-navigation-content span {
  font-size: 1rem;
  color: #28282b;
  font-family: Arial-BoldMT;
}
.breadcrumb-navigation .breadcrumb-navigation-content a {
  color: #666666;
  margin-left: 0.625rem;
  text-transform: capitalize !important;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb-navigation {
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-navigation {
    display: none;
  }
}
@keyframes position {
  0% {
    top: 467px;
  }
  50% {
    top: 233.5px;
  }
  100% {
    top: 0;
  }
}
.related-news h1 {
  font-size: 2.8125rem;
  color: #333333;
}
.related-news .news-ul {
  display: flex;
  justify-content: space-between;
  margin-top: 4.375rem;
  margin-bottom: 4.375rem;
}
.related-news .news-ul li {
  width: 24.131%;
  height: 29.1875rem;
  background: #ffffff;
  padding-bottom: 1.1875rem;
  overflow: hidden;
  box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.28);
}
.related-news .news-ul li .top-div {
  width: 100%;
  height: 17.9375rem;
}
.related-news .news-ul li .top-div .top-img {
  width: 100%;
  height: 17.9375rem;
  overflow: hidden;
}
.related-news .news-ul li .top-div .bottom-text {
  padding: 0 1.5625rem 0 1rem;
}
.related-news .news-ul li .top-div .bottom-text a .time {
  color: #666666;
  margin: 1.5rem 0;
}
.related-news .news-ul li .top-div .bottom-text a .news-title {
  font-size: 1rem;
  color: #333333;
  font-family: Arial-BoldMT;
}
.related-news .news-ul li .top-div .bottom-text a .more {
  color: #333333;
  margin-top: 0.625rem;
}
.related-news .news-ul li .bottom-div {
  width: 100%;
  height: 29.1875rem;
  background: #ffffff;
  display: none;
  padding: 2.625rem 0.875rem 1.0625rem 0.875rem;
}
.related-news .news-ul li .bottom-div a .news-time {
  font-family: ArialMT;
  color: #666666;
  margin-bottom: 1.4375rem;
}
.related-news .news-ul li .bottom-div a .news-title-red {
  color: #7dab60;
  font-family: Arial-BoldMT;
  margin-bottom: 1.5625rem;
}
.related-news .news-ul li .bottom-div a .line {
  width: 3.5rem;
  height: 0.0625rem;
  background: #7dab60;
  margin-bottom: 1.5rem;
}
.related-news .news-ul li .bottom-div a .news-des {
  color: #666666;
  line-height: 1.4375rem;
  padding-bottom: 5.1875rem;
  border-block-start: 1px solid #eeeeee;
}
.related-news .news-ul li .bottom-div a .news-more {
  margin-top: 1.25rem;
  color: #7dab60;
}
.related-news .news-ul li:hover {
  position: relative;
}
.related-news .news-ul li:hover .bottom-div {
  display: block;
  position: absolute;
  top: 0;
  animation: position 0.5s linear;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .related-news {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .related-news {
    display: none;
  }
}
.footer .links {
  height: 4vw;
  background: #7dab60;
}
.footer .links .links-content {
  display: flex;
  align-items: center;
  height: 100%;
}
.footer .links .links-content p {
  font-size: 1rem;
  font-weight: 600;
  font-family: Arial-BoldMT;
  color: #ffffff;
}
.footer .links .links-content li a {
  font-size: 1rem;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
  font-family: MicrosoftYaHei;
  color: #8bd2a0;
}
.footer .footer-content {
  padding-top: 2vw;
  padding-bottom: 2vw;
  background: #222222;
}
.footer .footer-content .footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2vw;
  margin-bottom: 2vw;
  border-bottom: 0.0625rem solid #151517;
}
.footer .footer-content .footer-top .left h1 {
  margin-bottom: 1vw;
}
.footer .footer-content .footer-top .left h1 p {
  font-size: 2.4375rem;
  color: #7dab60;
}
.footer .footer-content .footer-top .left h1 p span a {
  color: #7dab60;
}
.footer .footer-content .footer-top .left address,
.footer .footer-content .footer-top .left > p {
  margin-bottom: 1vw;
  color: #666666;
}
.footer .footer-content .footer-top .left address span,
.footer .footer-content .footer-top .left > p span {
  color: #ffffff;
  font-family: MicrosoftYaHei;
  margin-right: 0.625rem;
}
.footer .footer-content .footer-top .left address a,
.footer .footer-content .footer-top .left > p a {
  color: #666666;
}
.footer .footer-content .footer-top .right {
  width: 5vw;
  height: 5vw;
}
.footer .footer-content .footer-top .right img {
  width: 100%;
  height: auto;
}
.footer .footer-content .footer-center {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2vw;
}
.footer .footer-content .footer-center ul p a {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
  font-family: ArialMT;
}
.footer .footer-content .footer-center ul li a {
  font-size: 0.875rem;
  line-height: 1.875rem;
  font-family: MicrosoftYaHei;
  color: #656864;
}
.footer .footer-content .footer-bottom {
  padding-top: 1vw;
  border-top: 0.0625rem solid #151517;
}
.footer .footer-content .footer-bottom .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-content .footer-bottom .content > p {
  font-size: 0.875rem;
  font-family: MicrosoftYaHei;
  color: #656864;
}
.footer .footer-content .footer-bottom .content > p a {
  color: #656864;
}
.footer .footer-content .footer-bottom .content ul {
  display: flex;
}
.footer .footer-content .footer-bottom .content ul li {
  width: 2.3125rem;
  height: 2.3125rem;
  background: #151518;
  border-radius: 50%;
  margin-left: 0.9375rem;
}
.footer .footer-content .footer-bottom .content ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.footer .footer-content .footer-bottom .content ul li a p {
  font-size: 1.1875rem;
  color: #b3b4b8;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer .links {
    display: none;
  }
  .footer .footer-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: #222222;
  }
  .footer .footer-content .footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 0.0625rem solid #151517;
  }
  .footer .footer-content .footer-top .left h1 {
    margin-bottom: 1vw;
  }
  .footer .footer-content .footer-top .left h1 p {
    font-size: 2.4375rem;
    color: #7dab60;
  }
  .footer .footer-content .footer-top .left address,
  .footer .footer-content .footer-top .left > p {
    margin-bottom: 1vw;
    color: #666666;
  }
  .footer .footer-content .footer-top .left address span,
  .footer .footer-content .footer-top .left > p span {
    color: #ffffff;
    font-family: MicrosoftYaHei;
    margin-right: 0.625rem;
  }
  .footer .footer-content .footer-top .right {
    width: 9.375rem;
    height: 9.375rem;
  }
  .footer .footer-content .footer-top .right img {
    width: 100%;
    height: auto;
  }
  .footer .footer-content .footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1.25rem;
  }
  .footer .footer-content .footer-center ul {
    margin-bottom: 2.5rem;
  }
  .footer .footer-content .footer-center ul p a {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
    font-family: ArialMT;
  }
  .footer .footer-content .footer-center ul li a {
    font-size: 0.875rem;
    line-height: 1.875rem;
    font-family: MicrosoftYaHei;
    color: #656864;
  }
  .footer .footer-content .footer-bottom {
    padding-top: 2.5rem;
    border-top: 0.0625rem solid #151517;
  }
  .footer .footer-content .footer-bottom .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer .footer-content .footer-bottom .content > p {
    font-size: 0.875rem;
    font-family: MicrosoftYaHei;
    color: #656864;
  }
  .footer .footer-content .footer-bottom .content > p a {
    color: #656864;
  }
  .footer .footer-content .footer-bottom .content ul {
    display: flex;
  }
  .footer .footer-content .footer-bottom .content ul li {
    width: 2.3125rem;
    height: 2.3125rem;
    background: #151518;
    border-radius: 50%;
    margin-left: 0.9375rem;
  }
  .footer .footer-content .footer-bottom .content ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .footer .footer-content .footer-bottom .content ul li a p {
    font-size: 1.1875rem;
    color: #b3b4b8;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    display: none;
  }
}
.content {
  margin-top: 4.375rem;
}
.content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content ul li {
  width: 38vw;
  margin-bottom: 3.125rem;
}
.content ul li .top {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #eeeeee;
  display: flex;
  align-items: center;
}
.content ul li .top span {
  color: #7dab60;
}
.content ul li .top span:first-child {
  font-size: 1.875rem;
}
.content ul li .top span:last-child {
  font-size: 1.0625rem;
  margin-left: 0.625rem;
  font-family: ArialMT;
}
.content ul li .top span:last-child strong {
  font-family: Arial-BoldMT;
}
.content ul li .bottom {
  display: none;
}
.content ul li .bottom h1,
.content ul li .bottom h2,
.content ul li .bottom h3,
.content ul li .bottom h4,
.content ul li .bottom h5,
.content ul li .bottom h6 {
  font-family: Arial-BoldMT;
  font-size: 1rem;
  color: #333333;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.content ul li .bottom p {
  font-size: 1rem;
  line-height: 1.4375rem;
  color: #666666;
  font-family: ArialMT;
}
.content ul li .bottom.bottom-active {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .content ul li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .content ul li {
    width: 100%;
  }
}
