* {
  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;
  }
}
.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;
  margin-bottom: 4.375rem;
}
.content .company-profile {
  margin-bottom: 4.375rem;
}
.content .company-profile h1 {
  font-size: 2.8125rem;
  font-family: Arial-BoldMT;
  color: #333333;
  margin-bottom: 4.375rem;
}
.content .company-profile .company-profile-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3.125rem;
  border-bottom: 0.0625rem solid #eeeeee;
}
.content .company-profile .company-profile-content .left {
  width: 37vw;
  height: 16vw;
}
.content .company-profile .company-profile-content .left img {
  width: 100%;
  height: auto;
}
.content .company-profile .company-profile-content .right {
  width: 40vw;
  height: 14vw;
}
.content .company-profile .company-profile-content .right p {
  line-height: 1.5625rem;
  color: #666666;
  font-family: ArialMT;
}
.content .company-profile .roll {
  display: flex;
  justify-content: space-between;
  margin-top: 3.25rem;
}
.content .company-profile .roll li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content .company-profile .roll li:not(:last-child) {
  padding-right: 10rem;
  border-right: 1px solid #eeeeee;
}
.content .company-profile .roll li p:first-child {
  font-family: Arial-BoldMT;
  font-size: 5.1875rem;
  color: #7dab60;
}
.content .message-from-the-president {
  height: 36vw;
  background: #f5f5f5;
  padding-top: 5.3125rem;
  padding-bottom: 3.5rem;
  margin-bottom: 4.375rem;
}
.content .message-from-the-president h1 {
  font-size: 2.8125rem;
  font-family: Arial-BoldMT;
  color: #333333;
  margin-bottom: 4.375rem;
  text-transform: uppercase;
}
.content .message-from-the-president .message-content .text {
  display: flex;
  justify-content: space-between;
}
.content .message-from-the-president .message-content .text .left {
  width: 40vw;
  line-height: 1.5625rem;
  color: #666666;
  font-family: ArialMT;
}
.content .message-from-the-president .message-content .text .left p {
  line-height: 1.5625rem;
  color: #666666;
  font-family: ArialMT;
}
.content .message-from-the-president .message-content .text .left .more {
  width: 14.8125rem;
  height: 3.1875rem;
  color: #ffffff;
  background: #7dab60;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.8125rem;
  float: right;
}
.content .corporate-culture {
  margin-bottom: 4.375rem;
}
.content .corporate-culture h1 {
  font-size: 2.8125rem;
  font-family: Arial-BoldMT;
  color: #333333;
  margin-bottom: 4.375rem;
  text-transform: uppercase;
}
.content .corporate-culture ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.content .corporate-culture ul li {
  width: 39vw;
  height: 13vw;
  background: #f5f5f5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}
.content .corporate-culture ul li .left {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .corporate-culture ul li .left .iconfont {
  font-size: 3.375rem;
  color: #7dab60;
}
.content .corporate-culture ul li .right {
  width: 28vw;
}
.content .corporate-culture ul li .right h2 {
  font-size: 1.875rem;
  font-family: Arial-BoldMT;
  margin-bottom: 1.5625rem;
}
.content .corporate-culture ul li .right p {
  line-height: 1.5625rem;
  color: #666666;
  font-family: ArialMT;
}
.content .corporate-culture ul li:nth-child(3) {
  margin: 1.5625rem auto 0 auto;
}
.content .corporate-culture ul li:hover {
  background: url(../img/back.png) no-repeat;
  background-size: cover;
}
.content .corporate-culture ul li:hover .right h2,
.content .corporate-culture ul li:hover .right p {
  color: #ffffff;
}
.content .honor {
  height: 46vw;
  padding-top: 4.375rem;
  background: #f5f5f5;
}
.content .honor h1 {
  font-size: 2.8125rem;
  font-family: Arial-BoldMT;
  color: #333333;
  margin-bottom: 4.375rem;
  text-transform: uppercase;
}
.content .honor ul {
  display: flex;
  justify-content: space-between;
}
.content .honor ul li {
  width: 19vw;
  height: 26vw;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.17);
}
.content .honor ul li img {
  width: 100%;
  height: 100%;
}
.content .honor .more {
  width: 14.8125rem;
  height: 3.1875rem;
  color: #ffffff;
  background: #7dab60;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.8125rem auto 0 auto;
}
.content .organization {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content .organization li {
  width: 49.5%;
  height: 31vw;
  background-size: cover !important;
  margin-bottom: 0.625rem;
  display: flex;
  justify-content: center;
  padding: 4vw 6vw;
}
.content .organization li:nth-child(1) .text,
.content .organization li:nth-child(2) .text,
.content .organization li:nth-child(3) .text,
.content .organization li:nth-child(4) .text {
  width: 39vw;
  height: 7vw;
}
.content .organization li:nth-child(1) .text h1 a,
.content .organization li:nth-child(2) .text h1 a,
.content .organization li:nth-child(3) .text h1 a,
.content .organization li:nth-child(4) .text h1 a {
  font-size: 1.5625rem;
  color: #333333;
  font-family: Arial-BoldMT;
}
.content .organization li:nth-child(1) .text p,
.content .organization li:nth-child(2) .text p,
.content .organization li:nth-child(3) .text p,
.content .organization li:nth-child(4) .text p {
  font-size: 1rem;
  line-height: 1.4375rem;
  font-family: ArialMT;
  color: #666666;
  margin-bottom: 2vw;
  margin-top: 1vw;
}
.content .organization li:nth-child(1) .text > a,
.content .organization li:nth-child(2) .text > a,
.content .organization li:nth-child(3) .text > a,
.content .organization li:nth-child(4) .text > a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #333333;
  font-family: ArialMT;
  padding-bottom: 0.3125rem;
  text-decoration: underline;
}
.content .organization li:nth-child(3) .text h1 a,
.content .organization li:nth-child(4) .text h1 a {
  color: #ffffff;
}
.content .organization li:nth-child(3) .text p,
.content .organization li:nth-child(4) .text p {
  color: #ffffff;
}
.content .organization li:nth-child(3) .text > a,
.content .organization li:nth-child(4) .text > a {
  color: #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .content .company-profile {
    margin-bottom: 4.375rem;
  }
  .content .company-profile h1 {
    font-size: 2.8125rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 4.375rem;
  }
  .content .company-profile .company-profile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3.125rem;
    border-bottom: 0.0625rem solid #eeeeee;
  }
  .content .company-profile .company-profile-content .left {
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
  }
  .content .company-profile .company-profile-content .left img {
    width: 100%;
    height: auto;
  }
  .content .company-profile .company-profile-content .right {
    width: 100%;
    height: auto;
  }
  .content .company-profile .company-profile-content .right p {
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
    word-break: break-all;
  }
  .content .company-profile .roll {
    display: none;
  }
  .content .message-from-the-president {
    height: auto;
    background: #f5f5f5;
    padding-top: 5.3125rem;
    padding-bottom: 3.5rem;
    margin-bottom: 4.375rem;
  }
  .content .message-from-the-president h1 {
    font-size: 2.8125rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 4.375rem;
    text-transform: uppercase;
  }
  .content .message-from-the-president .message-content .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .content .message-from-the-president .message-content .text .left {
    width: 100%;
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
    margin-bottom: 1.875rem;
  }
  .content .message-from-the-president .message-content .text .left p {
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
  }
  .content .message-from-the-president .message-content .text .left .more {
    width: 14.8125rem;
    height: 3.1875rem;
    color: #ffffff;
    background: #7dab60;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.8125rem;
    float: none;
  }
  .content .corporate-culture {
    margin-bottom: 4.375rem;
  }
  .content .corporate-culture h1 {
    font-size: 2.8125rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 4.375rem;
    text-transform: uppercase;
  }
  .content .corporate-culture ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .content .corporate-culture ul li {
    width: 100%;
    height: 16.0625rem;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    margin-top: 0.625rem;
  }
  .content .corporate-culture ul li:nth-child(3) {
    margin-top: 0.625rem;
  }
  .content .corporate-culture ul li .left {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content .corporate-culture ul li .left .iconfont {
    font-size: 3.375rem;
    color: #7dab60;
  }
  .content .corporate-culture ul li .right {
    width: 80%;
  }
  .content .corporate-culture ul li .right h2 {
    font-size: 1.875rem;
    font-family: Arial-BoldMT;
    margin-bottom: 1.5625rem;
  }
  .content .corporate-culture ul li .right p {
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
  }
  .content .corporate-culture ul li:hover {
    background: url(../img/back.png) no-repeat;
    background-size: cover;
  }
  .content .corporate-culture ul li:hover .right h2,
  .content .corporate-culture ul li:hover .right p {
    color: #ffffff;
  }
  .content .honor {
    height: auto;
    padding-top: 4.375rem;
    background: none;
    margin-bottom: 2.5rem;
  }
  .content .honor h1 {
    font-size: 2.8125rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 4.375rem;
    text-transform: uppercase;
  }
  .content .honor ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .content .honor ul li {
    width: 24%;
    height: auto;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.17);
  }
  .content .honor ul li img {
    width: 100%;
    height: 100%;
  }
  .content .honor .more {
    width: 14.8125rem;
    height: 3.1875rem;
    color: #ffffff;
    background: #7dab60;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.8125rem auto 0 auto;
  }
  .content .organization {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .content .organization li {
    width: 49.5%;
    height: 25rem;
    background-size: cover !important;
    margin-bottom: 0.625rem;
    display: flex;
    justify-content: center;
    padding: 1.25rem;
  }
  .content .organization li:nth-child(1) .text,
  .content .organization li:nth-child(2) .text,
  .content .organization li:nth-child(3) .text,
  .content .organization li:nth-child(4) .text {
    width: 95%;
    height: auto;
  }
  .content .organization li:nth-child(1) .text h1 a,
  .content .organization li:nth-child(2) .text h1 a,
  .content .organization li:nth-child(3) .text h1 a,
  .content .organization li:nth-child(4) .text h1 a {
    font-size: 1.5625rem;
    color: #333333;
    font-family: Arial-BoldMT;
  }
  .content .organization li:nth-child(1) .text p,
  .content .organization li:nth-child(2) .text p,
  .content .organization li:nth-child(3) .text p,
  .content .organization li:nth-child(4) .text p {
    font-size: 1rem;
    line-height: 1.4375rem;
    font-family: ArialMT;
    color: #666666;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
  }
  .content .organization li:nth-child(1) .text > a,
  .content .organization li:nth-child(2) .text > a,
  .content .organization li:nth-child(3) .text > a,
  .content .organization li:nth-child(4) .text > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #333333;
    font-family: ArialMT;
    padding-bottom: 0.3125rem;
    text-decoration: underline;
  }
  .content .organization li:nth-child(3) .text h1 a,
  .content .organization li:nth-child(4) .text h1 a {
    color: #ffffff;
  }
  .content .organization li:nth-child(3) .text p,
  .content .organization li:nth-child(4) .text p {
    color: #ffffff;
  }
  .content .organization li:nth-child(3) .text > a,
  .content .organization li:nth-child(4) .text > a {
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .content .company-profile {
    margin-bottom: 4.375rem;
  }
  .content .company-profile h1 {
    font-size: 1.25rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 1.25rem;
  }
  .content .company-profile .company-profile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3.125rem;
    border-bottom: 0.0625rem solid #eeeeee;
  }
  .content .company-profile .company-profile-content .left {
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
  }
  .content .company-profile .company-profile-content .left img {
    width: 100%;
    height: auto;
  }
  .content .company-profile .company-profile-content .right {
    width: 100%;
    height: auto;
  }
  .content .company-profile .company-profile-content .right p {
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
    word-break: break-all;
  }
  .content .company-profile .roll {
    display: none;
  }
  .content .message-from-the-president {
    height: auto;
    background: #f5f5f5;
    padding-top: 5.3125rem;
    padding-bottom: 3.5rem;
    margin-bottom: 4.375rem;
  }
  .content .message-from-the-president h1 {
    font-size: 1.25rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
  }
  .content .message-from-the-president .message-content .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .content .message-from-the-president .message-content .text .left {
    width: 100%;
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
    margin-bottom: 1.875rem;
  }
  .content .message-from-the-president .message-content .text .left p {
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
  }
  .content .message-from-the-president .message-content .text .left .more {
    width: 14.8125rem;
    height: 3.1875rem;
    color: #ffffff;
    background: #7dab60;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.8125rem;
    float: none;
  }
  .content .message-from-the-president .message-content .text .right {
    width: 100%;
    height: auto;
  }
  .content .message-from-the-president .message-content .text .right img {
    width: 100%;
    height: auto;
  }
  .content .corporate-culture {
    margin-bottom: 1.875rem;
  }
  .content .corporate-culture h1 {
    font-size: 1.25rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
  }
  .content .corporate-culture ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .content .corporate-culture ul li {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 0.625rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .content .corporate-culture ul li:nth-child(3) {
    margin-top: 0.625rem;
  }
  .content .corporate-culture ul li .left {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content .corporate-culture ul li .left .iconfont {
    font-size: 3.375rem;
    color: #7dab60;
    margin-bottom: 0.625rem;
  }
  .content .corporate-culture ul li .right {
    width: 80%;
  }
  .content .corporate-culture ul li .right h2 {
    font-size: 1.25rem;
    font-family: Arial-BoldMT;
    margin-bottom: 0.9375rem;
    word-break: break-all;
    margin-top: 1.5625rem;
  }
  .content .corporate-culture ul li .right p {
    line-height: 1.5625rem;
    color: #666666;
    font-family: ArialMT;
  }
  .content .corporate-culture ul li:hover {
    background: url(../img/back.png) no-repeat;
    background-size: cover;
  }
  .content .corporate-culture ul li:hover .right h2,
  .content .corporate-culture ul li:hover .right p {
    color: #ffffff;
  }
  .content .honor {
    height: auto;
    padding-top: 4.375rem;
    background: none;
    margin-bottom: 2.5rem;
  }
  .content .honor h1 {
    font-size: 1.25rem;
    font-family: Arial-BoldMT;
    color: #333333;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
  }
  .content .honor ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .content .honor ul li {
    width: 48%;
    height: auto;
    margin-bottom: 0.9375rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.17);
  }
  .content .honor ul li img {
    width: 100%;
    height: 100%;
  }
  .content .honor .more {
    width: 14.8125rem;
    height: 3.1875rem;
    color: #ffffff;
    background: #7dab60;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.8125rem auto 0 auto;
  }
  .content .organization {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .content .organization li {
    width: 100%;
    height: auto;
    background-size: cover !important;
    margin-bottom: 0.625rem;
    display: flex;
    justify-content: center;
    padding: 6.25rem 1.25rem;
  }
  .content .organization li:nth-child(1) .text,
  .content .organization li:nth-child(2) .text,
  .content .organization li:nth-child(3) .text,
  .content .organization li:nth-child(4) .text {
    width: 95%;
    height: auto;
  }
  .content .organization li:nth-child(1) .text h1 a,
  .content .organization li:nth-child(2) .text h1 a,
  .content .organization li:nth-child(3) .text h1 a,
  .content .organization li:nth-child(4) .text h1 a {
    font-size: 1.5625rem;
    color: #333333;
    font-family: Arial-BoldMT;
  }
  .content .organization li:nth-child(1) .text p,
  .content .organization li:nth-child(2) .text p,
  .content .organization li:nth-child(3) .text p,
  .content .organization li:nth-child(4) .text p {
    font-size: 1rem;
    line-height: 1.4375rem;
    font-family: ArialMT;
    color: #666666;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
  }
  .content .organization li:nth-child(1) .text > a,
  .content .organization li:nth-child(2) .text > a,
  .content .organization li:nth-child(3) .text > a,
  .content .organization li:nth-child(4) .text > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #333333;
    font-family: ArialMT;
    padding-bottom: 0.3125rem;
    text-decoration: underline;
  }
  .content .organization li:nth-child(3) .text h1 a,
  .content .organization li:nth-child(4) .text h1 a {
    color: #ffffff;
  }
  .content .organization li:nth-child(3) .text p,
  .content .organization li:nth-child(4) .text p {
    color: #ffffff;
  }
  .content .organization li:nth-child(3) .text > a,
  .content .organization li:nth-child(4) .text > a {
    color: #ffffff;
  }
}
