@keyframes viewMoreAni {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes viewMoreAniR {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes headerScrollStart {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes headerScrollEndOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  padding: 0 30px;
}
.header:after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, .3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header .header-wrapper {
  max-width: 1560px;
  height: 90px;
  margin: auto;
}
.header .header-logo {
  margin: 0;
}
.header .header-logo > a {
  display: block;
}
.header .header-logo > a img {
  display: block;
  width: 225px;
}
.header .header-nav .header-nav-switch {
  display: none;
}
.header .header-nav .header-nav-list {
  transition: opacity 0.3s 0.3s, transform 0s 0.3s;
}
.header .header-nav .header-nav-list.search-hide {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0s, transform 0s;
}
.header .header-nav .header-nav-list .header-nav-switch,
.header .header-nav .header-nav-list .header-nav-others {
  display: none;
}
.header .header-nav .header-nav-list .header-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 90px;
  margin: 0 14px;
}
.header .header-nav .header-nav-list .header-nav-item::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  background-color: #207638;
  left: 0;
  bottom: 0;
  transition: opacity 0.15s 0.15s, height 0.15s 0.15s;
  transition-timing-function: linear;
}
.header .header-nav .header-nav-list .header-nav-item::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 0 solid #207638;
  left: 50%;
  bottom: 0;
  margin-left: -9px;
  transition: opacity 0.3s, border 0.3s;
  transition-timing-function: linear;
}
.header .header-nav .header-nav-list .header-nav-item > a {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1.0625rem;
  color: #222222;
  padding: 0 14px;
}
.header .header-nav .header-nav-list .header-nav-item .header-nav-sublist {
  display: inline-block;
  position: absolute;
  min-width: 100%;
  background-color: #ffffff;
  padding: 0 16px;
  top: 100%;
  left: 50%;
  transform: scale(0) translateX(-50%);
  opacity: 0;
  transition: transform 0s 0.3s, opacity 0.3s;
}
.header .header-nav .header-nav-list .header-nav-item .header-nav-sublist .header-nav-subitem {
  min-width: 135px;
  font-size: 1.0625rem;
  text-align: center;
  white-space: nowrap;
  padding: 16px;
}
.header .header-nav .header-nav-list .header-nav-item .header-nav-sublist .header-nav-subitem + .header-nav-subitem {
  border-top: 1px solid #ededed;
}
.header .header-nav .header-nav-list .header-nav-item .header-nav-sublist .header-nav-subitem > a {
  color: #222222;
  transition: color 0.3s;
}
.header .header-nav .header-nav-list .header-nav-item .header-nav-sublist .header-nav-subitem > a:hover {
  color: #739b42;
}
.header .header-nav .header-nav-list .header-nav-item.active::before {
  height: 3px;
  transition: opacity 0.15s, height 0.15s;
}
.header .header-nav .header-nav-list .header-nav-item.active::after {
  border-bottom-width: 9px;
  transition: opacity 0.3s, border 0.3s;
}
.header .header-nav .header-nav-list .header-nav-item.active .header-nav-sublist {
  transform: scale(1) translateX(-50%);
  opacity: 1;
  transition: transform 0s, opacity 0.3s;
}
.header .header-nav .header-option {
  margin-left: 10px;
}
.header .header-nav .header-option .header-option-search-form {
  position: relative;
  margin: 0;
}
.header .header-nav .header-option .header-option-search-form button {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  font-size: 0;
  border: none;
  background-color: transparent;
  background-image: url(../images/header-search.png);
  background-size: 30px 30px;
  top: 4px;
  left: 14px;
  pointer-events: none;
}
.header .header-nav .header-option .header-option-search-form input {
  display: block;
  width: 50px;
  height: 38px;
  font-size: 1rem;
  color: #ffffff;
  border: none;
  background-color: #8cbd50;
  border-radius: 19px 0 0 19px;
  padding-left: 50px;
  transition: width 0.3s;
}
.header .header-nav .header-option .header-option-search-form input:focus {
  width: 200px;
}
.header .header-nav .header-option .header-option-search-form input:focus + button {
  pointer-events: auto;
}
.header .header-nav .header-option .header-option-language .btn {
  display: block;
  height: 38px;
  font-size: 0.875rem;
  color: #80b63d;
  border: none;
  background-color: #ffffff;
  border-radius: 0 19px 19px 0;
  padding: 0 14px;
}
.header .header-nav .header-option .header-option-language .btn:focus {
  outline: none;
}
.header .header-nav .header-option .header-option-language .btn .caret {
  margin-left: 8px;
}
.header .header-nav .header-option .header-option-language .dropdown-menu {
  min-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 16px;
}
.header .header-nav .header-option .header-option-language .dropdown-menu > li {
  font-size: 1.0625rem;
  text-align: center;
  white-space: nowrap;
  padding: 16px;
}
.header .header-nav .header-option .header-option-language .dropdown-menu > li + li {
  border-top: 1px solid #ededed;
}
.header .header-nav .header-option .header-option-language .dropdown-menu > li > a {
  color: #222222;
  background-color: transparent;
  transition: color 0.3s;
}
.header .header-nav .header-option .header-option-language .dropdown-menu > li > a:hover {
  color: #739b42;
}
@media (max-width: 1199px) {
  .header .header-nav {
    flex-direction: row-reverse;
  }
  .header .header-nav .header-nav-switch {
    display: block;
    position: relative;
    width: 38px;
    height: 38px;
    border: none;
    background-color: transparent;
    margin-left: 20px;
  }
  .header .header-nav .header-nav-switch > span {
    font-size: 0;
  }
  .header .header-nav .header-nav-switch > i {
    display: block;
    position: absolute;
    height: 2px;
    background-color: #222222;
    border-radius: 2px;
    right: 6px;
  }
  .header .header-nav .header-nav-switch > i:nth-child(2) {
    width: 26px;
    top: 11px;
  }
  .header .header-nav .header-nav-switch > i:nth-child(3) {
    width: 20px;
    top: 25px;
  }
  .header .header-nav .header-nav-switch > i:nth-child(4),
  .header .header-nav .header-nav-switch > i:nth-child(5) {
    width: 14px;
    top: 18px;
  }
  .header .header-nav .header-nav-list {
    display: block;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 30px 15px;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s, transform 0s 0.5s;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .header-nav .header-nav-list.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s, transform 0s;
  }
  .header .header-nav .header-nav-list .header-nav-switch {
    display: block;
    position: absolute;
    font-size: 0;
    top: 10px;
    right: 10px;
  }
  .header .header-nav .header-nav-list .header-nav-switch button {
    display: block;
    position: relative;
    width: 38px;
    height: 38px;
    border: none;
    background-color: transparent;
  }
  .header .header-nav .header-nav-list .header-nav-switch button::before,
  .header .header-nav .header-nav-list .header-nav-switch button::after {
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #222222;
    border-radius: 4px;
    top: 18px;
    left: 7px;
  }
  .header .header-nav .header-nav-list .header-nav-switch button::before {
    transform: rotate(45deg);
  }
  .header .header-nav .header-nav-list .header-nav-switch button::after {
    transform: rotate(-45deg);
  }
  .header .header-nav .header-nav-list .header-nav-item {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 0 0;
  }
  .header .header-nav .header-nav-list .header-nav-item::before,
  .header .header-nav .header-nav-list .header-nav-item::after {
    display: none;
  }
  .header .header-nav .header-nav-list .header-nav-item + .header-nav-item {
    border-top: 1px solid #d1d1d1;
  }
  .header .header-nav .header-nav-list .header-nav-item > a {
    text-align: center;
    padding: 8px 0;
    transition: color 0.3s;
    font-weight: bold;
  }
  .header .header-nav .header-nav-list .header-nav-item > a:hover {
    color: #739b42;
  }
  .header .header-nav .header-nav-list .header-nav-item .header-nav-sublist {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    background-color: #fafafa;
    margin-top: 8px;
    padding: 8px;
    top: auto;
    left: auto;
    opacity: 1 !important;
    transform: none !important;
  }
  .header .header-nav .header-nav-list .header-nav-item .header-nav-sublist::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fafafa;
    top: -8px;
    left: 50%;
    margin-left: -6px;
  }
  .header .header-nav .header-nav-list .header-nav-item .header-nav-sublist .header-nav-subitem {
    border-top: none !important;
    padding: 8px;
  }
  .header .header-nav .header-nav-list .header-nav-item.current > a {
    color: #207638 !important;
  }
  .header .header-nav .header-nav-list .header-nav-item.current .header-nav-sublist .header-nav-subitem.current > a {
    color: #207638 !important;
  }
}
@media (max-width: 639px) {
  .header {
    padding: 0 10px;
  }
  .header .header-wrapper,
  .header:after {
    height: 60px;
  }
  .header .header-nav .header-option {
    display: none;
  }
  .header .header-nav .header-nav-list .header-nav-others {
    display: flex;
    border-top: 1px solid #d1d1d1;
    padding: 15px 0;
  }
  .header .header-nav .header-nav-list .header-nav-others .header-nav-other-language > li {
    margin-left: 10px;
  }
  .header .header-nav .header-nav-list .header-nav-others .header-nav-other-language > li > a {
    font-size: 0.875rem;
    color: #999999;
  }
  .header .header-nav .header-nav-list .header-nav-others .header-nav-other-language > li > a:hover {
    color: #739b42;
  }
  .header .header-nav .header-nav-list .header-nav-others form {
    position: relative;
    margin: 0;
  }
  .header .header-nav .header-nav-list .header-nav-others form input {
    display: block;
    width: 200px;
    height: 34px;
    font-size: 1rem;
    color: #ffffff;
    border: none;
    background-color: #8cbd50;
    border-radius: 17px;
    padding: 0 36px 0 18px;
  }
  .header .header-nav .header-nav-list .header-nav-others form button {
    display: block;
    position: absolute;
    width: 26px;
    height: 26px;
    border: none;
    background-color: transparent;
    background-image: url(../images/header-search.png);
    background-size: 26px 26px;
    top: 4px;
    right: 8px;
  }
  .header .header-nav .header-nav-list .header-nav-others form button span {
    font-size: 0;
  }
}
.footer .footer-top {
  background-color: #80b63d;
  padding: 55px 15px 40px;
}
.footer .footer-top .footer-top-content {
  max-width: 1560px;
  margin: auto;
  padding: 0 45px;
}
.footer .footer-top .footer-top-brand {
  width: 363px;
}
.footer .footer-top .footer-top-brand .footer-top-brand-logo {
  display: block;
  height: 35px;
  line-height: 35px;
  font-size: 2rem;
  color: transparent;
  background-image: url(../images/footer-brand.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
.footer .footer-top .footer-top-brand .footer-top-brand-pg {
  font-size: 0.9375rem;
  color: #5f7e38;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  margin: 20px 0 0;
  padding: 12px 24px;
}
.footer .footer-top .footer-top-info {
  width: calc(100% - 363px);
}
.footer .footer-top .footer-top-info .footer-top-menu {
  width: 350px;
}
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block {
  width: 50%;
  padding-left: 40px;
}
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block .footer-top-menu-item {
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block .footer-top-menu-item > a {
  color: #ffffff;
}
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block .footer-top-menu-item > a:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-top-info .footer-top-company {
  width: calc(100% - 350px);
  padding: 0 50px;
}
.footer .footer-top .footer-top-info .footer-top-company a {
  color: #ffffff;
}
.footer .footer-top .footer-top-info .footer-top-company a:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 12px;
  padding-right: 16px;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item.full {
  width: 100%;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-copyright {
  width: 100%;
  color: #ffffff;
  margin-top: 20px;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-copyright span {
  margin-right: 12px;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-copyright .design {
  color: #a7c582;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-copyright .design a {
  color: #a7c582;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-copyright .design a:hover {
  color: #fff;
}
.footer .footer-bottom {
  background-color: #207638;
  padding: 30px 15px 20px;
}
.footer .footer-bottom p {
  max-width: 1560px;
  line-height: 2.5;
  font-size: 0.9375rem;
  color: #ffffff;
  margin: auto;
  padding: 0 30px;
}
@media (max-width: 1199px) {
  .footer .footer-top {
    padding: 30px 15px;
  }
  .footer .footer-top .footer-top-content {
    padding: 0;
  }
  .footer .footer-top .footer-top-info .footer-top-menu {
    width: 250px;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block {
    padding-left: 20px;
  }
  .footer .footer-top .footer-top-info .footer-top-company {
    width: calc(100% - 250px);
    padding: 0 15px;
  }
  .footer .footer-bottom {
    padding: 20px 15px 15px;
  }
  .footer .footer-bottom p {
    line-height: 1.75;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .footer .footer-top .footer-top-brand {
    width: 100%;
    text-align: center;
  }
  .footer .footer-top .footer-top-brand .footer-top-brand-pg {
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
    padding: 8px 16px;
  }
  .footer .footer-top .footer-top-info {
    width: 100%;
    margin-top: 15px;
  }
  .footer .footer-top .footer-top-info .footer-top-menu {
    width: 100%;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block .footer-top-menu-item {
    width: 33.333%;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer .footer-top .footer-top-info .footer-top-company {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
    padding: 0;
  }
  .footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item {
    margin-bottom: 8px;
  }
}
.index-banner-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.index-banner-wrapper .index-banner-carousel .flickity-slider {
  transform: none !important;
}
.index-banner-wrapper .index-banner-carousel .index-banner-carousel-item {
  left: 0 !important;
  opacity: 0;
  transform: none !important;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
.index-banner-wrapper .index-banner-carousel .index-banner-carousel-item.is-selected {
  opacity: 1;
  z-index: 1;
}
.index-banner-wrapper .index-banner-carousel .index-banner-carousel-item > a {
  display: block;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.index-banner-wrapper .index-banner-carousel .index-banner-carousel-item > a > div {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.index-banner-wrapper .index-banner-pager {
  display: inline-block;
  position: absolute;
  z-index: 10;
  font-size: 1rem;
  color: #207638;
  letter-spacing: 2px;
  padding: 0 33px 0 35px;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  pointer-events: none;
}
.index-banner-wrapper .index-banner-pager::before,
.index-banner-wrapper .index-banner-pager::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #80b63d;
  border-radius: 100%;
  top: 50%;
  margin-top: -5px;
}
.index-banner-wrapper .index-banner-pager::before {
  left: 0;
}
.index-banner-wrapper .index-banner-pager::after {
  right: 0;
}
.index-intro-wrapper {
  position: relative;
  padding: 105px 0 0;
  overflow: hidden;
}
.index-intro-wrapper i.index-intro-bg {
  display: block;
  position: absolute;
  width: 35.416%;
  height: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 41.666%;
  top: 130px;
  left: 0;
  pointer-events: none;
}
.index-intro-wrapper .index-about-section {
  position: relative;
  width: 90%;
  max-width: 1560px;
  margin: auto;
}
.index-intro-wrapper .index-about-section .index-about-img {
  position: relative;
  width: 60.256%;
  height: 490px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 490px;
  left: 39.744%;
  overflow: hidden;
}
.index-intro-wrapper .index-about-section .index-about-text {
  position: absolute;
  width: 50%;
  background-image: url(../images/index-about-icon.png);
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: 40px 0;
  padding-left: 135px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-title {
  font-size: 2rem;
  color: #80b63d;
  margin: 10px 0;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-pg {
  line-height: 2;
  font-size: 1.0625rem;
  color: #222222;
  margin: 0;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  margin-top: 60px;
  margin-left: calc(100% - 200px);
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more:hover {
  color: #80b63d;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more:hover > i::before,
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-more:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
.index-intro-wrapper .index-link-section {
  position: relative;
  margin-top: 95px;
}
.index-intro-wrapper .index-link-section .index-link-img {
  width: calc(50% + 50px);
  height: 490px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 490px 490px 0;
}
.index-intro-wrapper .index-link-section .index-link-text {
  position: absolute;
  width: calc(45% - 50px);
  max-width: 730px;
  padding: 0 0 0 40px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-title {
  font-size: 1.625rem;
  color: #222222;
  margin: 0 0 20px;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-pg {
  line-height: 2;
  font-size: 1.0625rem;
  color: #222222;
  margin: 0;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  margin-top: 60px;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more:hover {
  color: #80b63d;
}
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more:hover > i::before,
.index-intro-wrapper .index-link-section .index-link-text .index-link-text-more:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
.index-news-wrapper {
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
}
.index-news-wrapper > i[class^="index-news-bg-"] {
  display: block;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-news-wrapper > i[class^="index-news-bg-"].index-news-bg-r {
  width: 23.4375%;
  height: 0;
  padding-bottom: 19.53125%;
  background-image: url(../images/index-news-bg-r.png);
  top: 0;
  right: 0;
}
.index-news-wrapper > i[class^="index-news-bg-"].index-news-bg-l {
  width: 14.583%;
  height: 0;
  padding-bottom: 14.0625%;
  background-image: url(../images/index-news-bg-l.png);
  top: 20%;
  left: 4.6875%;
}
.index-news-wrapper > i[class^="index-news-bg-"].index-news-bg-b {
  width: 9.375%;
  height: 0;
  padding-bottom: 7.8125%;
  left: 0;
  bottom: 12%;
}
.index-news-wrapper .index-news-section {
  position: relative;
  width: 85%;
  max-width: 1320px;
  margin: auto;
  padding: 120px 0;
}
.index-news-wrapper .index-news-section .index-news-section-left {
  width: 320px;
  background-image: url(../images/index-about-icon.png);
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-top: 30px;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-title {
  font-size: 2rem;
  color: #80b63d;
  margin: 10px 0;
  padding-left: 95px;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  margin-top: 40px;
  margin-left: 30px;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more:hover {
  color: #80b63d;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more:hover > i::before,
.index-news-wrapper .index-news-section .index-news-section-left .index-news-more:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
.index-news-wrapper .index-news-section .index-news-section-right {
  width: calc(100% - 320px);
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item {
  position: relative;
  padding: 30px;
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
  left: 0;
  bottom: 0;
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item::after {
  content: '';
  display: block;
  position: absolute;
  width: 165px;
  height: 1px;
  background-color: #92d54a;
  left: 0;
  bottom: 0;
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item .index-news-item-date {
  width: 135px;
  font-size: 1rem;
  color: #999999;
  letter-spacing: 1px;
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item .index-news-item-text {
  width: calc(100% - 135px);
  font-size: 1rem;
  padding-left: 20px;
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item .index-news-item-text > a {
  color: #222222;
  transition: color 0.3s;
}
.index-news-wrapper .index-news-section .index-news-list .index-news-item .index-news-item-text > a:hover {
  color: #80b63d;
}
.index-news-wrapper .index-page-section {
  position: relative;
  padding: 120px 0 80px;
}
.index-news-wrapper .index-page-section::before {
  content: '';
  display: block;
  position: absolute;
  width: 75%;
  height: 100%;
  background: #ffffff;
  border-radius: 9999px 0 0 9999px;
  top: 0;
  right: 0;
}
.index-news-wrapper .index-page-section .index-page-list {
  position: relative;
  width: 90%;
  max-width: 1560px;
  margin: auto;
  padding: 0 20px;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item {
  width: 33.333%;
  padding: 0 25px;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-img {
  height: 290px;
  border-radius: 145px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: path("M0 0 L999 0 L999 290 L120 290 A45,45 0,0,0 30,290 L0 290 z");
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-title {
  position: relative;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-title > img {
  position: absolute;
  width: 60px;
  top: -25px;
  left: 45px;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-title > h3 {
  font-size: 1.375rem;
  margin: 0;
  padding: 18px 0 18px 145px;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  margin-top: 10px;
  margin-left: calc(100% - 240px);
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more:hover {
  color: #80b63d;
}
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more:hover > i::before,
.index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .index-intro-wrapper {
    padding: 60px 0 0;
  }
  .index-intro-wrapper .index-about-section {
    width: 100%;
    padding: 0 15px;
  }
  .index-intro-wrapper .index-about-section .index-about-img {
    position: absolute;
    width: 400px;
    height: 200px;
    top: 0;
    left: auto;
    right: 15px;
  }
  .index-intro-wrapper .index-about-section .index-about-text {
    position: relative;
    width: calc(100% - 400px);
    background-position: 0 0;
    padding-left: 80px;
    padding-right: 45px;
    top: auto;
    left: auto;
    transform: none;
  }
  .index-intro-wrapper .index-about-section .index-about-text .index-about-text-more {
    margin-top: 20px;
  }
  .index-intro-wrapper .index-link-section {
    margin-top: 40px;
  }
  .index-intro-wrapper .index-link-section .index-link-img {
    position: absolute;
    width: 450px;
    height: 200px;
    top: 0;
    left: 0;
  }
  .index-intro-wrapper .index-link-section .index-link-text {
    position: relative;
    width: calc(100% - 450px);
    margin-left: 450px;
    padding: 0 15px 0 30px;
    top: auto;
    right: auto;
    transform: none;
  }
  .index-intro-wrapper .index-link-section .index-link-text .index-link-text-more {
    margin-top: 20px;
  }
  .index-news-wrapper .index-news-section {
    width: 100%;
    padding: 60px 15px;
  }
  .index-news-wrapper .index-news-section .index-news-section-left {
    width: 260px;
  }
  .index-news-wrapper .index-news-section .index-news-section-right {
    width: calc(100% - 260px);
  }
  .index-news-wrapper .index-page-section {
    padding: 60px 15px 40px;
  }
  .index-news-wrapper .index-page-section .index-page-list {
    display: block;
    width: 100%;
    padding: 0;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item {
    width: 100%;
    max-width: 640px;
    margin: auto;
    padding: 0;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-more {
    margin-top: 0;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item + .index-page-item {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .index-news-wrapper {
    padding-bottom: 60px;
  }
  .index-news-wrapper .index-news-section .index-news-section-left {
    width: 100%;
  }
  .index-news-wrapper .index-news-section .index-news-section-left .index-news-title {
    margin: 0;
  }
  .index-news-wrapper .index-news-section .index-news-section-left .index-news-more {
    margin-top: 8px;
    margin-left: calc(100% - 200px);
  }
  .index-news-wrapper .index-news-section .index-news-section-right {
    width: 100%;
    margin-top: 20px;
  }
  .index-news-wrapper .index-news-section .index-news-section-right .index-news-list .index-news-item {
    padding: 8px 0;
  }
  .index-news-wrapper .index-news-section .index-news-section-right .index-news-list .index-news-item::after {
    width: 145px;
  }
  .index-intro-wrapper .index-about-section .index-about-text {
    padding-left: 40px;
    padding-right: 5px;
  }
}
@media (max-width: 767px) {
  .index-intro-wrapper i.index-intro-bg {
    display: none;
  }
  .index-intro-wrapper .index-about-section .index-about-img {
    position: relative;
    top: auto;
    right: auto;
    margin: auto;
  }
  .index-intro-wrapper .index-about-section .index-about-text {
    width: 100%;
    margin-top: 12px;
    background-size: 38px 38px;
    padding-left: 45px;
    padding-right: 0;
  }
  .index-intro-wrapper .index-about-section .index-about-text .index-about-text-title {
    font-size: 1.5rem;
    margin: 0;
  }
  .index-intro-wrapper .index-about-section .index-about-text .index-about-text-pg {
    line-height: 1.75;
    font-size: 1rem;
    margin-top: 10px;
  }
  .index-intro-wrapper .index-link-section {
    padding: 0 15px;
  }
  .index-intro-wrapper .index-link-section .index-link-img {
    position: relative;
    width: 400px;
    border-radius: 490px;
    margin: auto;
    top: auto;
    left: auto;
  }
  .index-intro-wrapper .index-link-section .index-link-text {
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
    padding: 0;
  }
  .index-intro-wrapper .index-link-section .index-link-text .index-link-text-title {
    font-size: 1.5rem;
    margin: 0;
  }
  .index-intro-wrapper .index-link-section .index-link-text .index-link-text-pg {
    line-height: 1.75;
    font-size: 1rem;
    margin-top: 10px;
  }
  .index-intro-wrapper .index-link-section .index-link-text .index-link-text-more {
    margin-left: calc(100% - 200px);
  }
  .index-news-wrapper > i[class^="index-news-bg-"] {
    display: none;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item {
    max-width: 400px;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-img {
    height: 180px;
    clip-path: none;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-title > img {
    width: 30px;
    top: 10px;
    left: 50px;
  }
  .index-news-wrapper .index-page-section .index-page-list .index-page-item .index-page-item-title > h3 {
    padding: 16px 0 16px 100px;
  }
}
.about-wrapper {
  padding-bottom: 25px;
}
.page-nav {
  margin-bottom: 50px;
}
.page-nav > li {
  margin: 0 15px 25px;
}
.page-nav > li > a {
  display: block;
  font-size: 1.0625rem;
  color: #222222;
  background-color: #ffffff;
  border-radius: 99px;
  padding: 18px 36px;
  transition: all 0.3s;
}
.page-nav > li > a:hover {
  color: #ffffff;
  background-color: #8cbd50;
}
.page-nav > li.current > a {
  color: #ffffff;
  background-color: #8cbd50;
}
.about-text-with-img .img {
  width: calc(50% - 60px);
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 999px;
}
.about-text-with-img .text {
  width: 50%;
  margin-left: 60px;
  padding: 0 15px;
}
.about-text-with-img .text p {
  line-height: 2;
  font-size: 1.0625rem;
  margin: 0;
}
.about-text-with-img .text .mb-30 {
  margin-bottom: 30px;
}
.about-text-with-img .text .text-title-black {
  line-height: 1.5;
  font-size: 2.5rem;
  color: #207638;
  letter-spacing: 1px;
}
.about-text-with-img .text .text-title-thin {
  line-height: 1.5;
  font-size: 2.5rem;
  color: #739b42;
  letter-spacing: 1px;
}
.about-text-with-img.g-flex-justify-end .text {
  margin-left: 0;
  margin-right: 60px;
}
.about-text-center {
  max-width: 1100px;
  text-align: center;
  margin: 100px auto 75px;
}
.about-text-center p {
  line-height: 2;
  font-size: 1.0625rem;
  margin: 0;
}
.about-text-center .mb-30 {
  margin-bottom: 30px;
}
.about-text-center .text-title {
  font-size: 1.625rem;
  color: #207638;
}
.about-glory-list .about-glory-item {
  background-color: #ffffff;
  border-radius: 6px;
  margin-bottom: 50px;
  padding: 30px 60px;
}
.about-glory-list .about-glory-item .about-glory-item-year {
  width: 125px;
  font-size: 1.75rem;
  color: #8cbd50;
  padding: 10px 20px 10px 0;
}
.about-glory-list .about-glory-item .about-glory-item-content {
  width: calc(100% - 125px);
  border-left: 1px solid #d1d1d1;
  padding: 10px 0 10px 40px;
}
.about-glory-list .about-glory-item .about-glory-item-content > ul > li {
  position: relative;
  font-size: 1.0625rem;
  padding: 6px 0 6px 24px;
}
.about-glory-list .about-glory-item .about-glory-item-content > ul > li::before {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #207638;
  top: 15.25px;
  left: 0;
}
@media (max-width: 1079px) {
  .page-nav {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .about-text-with-img .img {
    width: 100%;
    max-width: 400px;
    height: 240px;
    margin: auto;
  }
  .about-text-with-img .text {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    text-align: center;
  }
  .about-text-center {
    margin: 40px auto;
  }
}
@media (max-width: 767px) {
  .page-nav > li {
    margin: 0 8px 12px;
  }
  .page-nav > li > a {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .about-text-with-img .text p {
    line-height: 1.75;
    font-size: 1rem;
  }
  .about-text-with-img .text .text-title-black {
    font-size: 1.5rem;
  }
  .about-text-with-img .text .text-title-thin {
    font-size: 1.5rem;
  }
  .about-text-center p {
    line-height: 1.75;
    font-size: 1rem;
  }
  .about-text-center .text-title {
    font-size: 1.25rem;
  }
  .about-glory-list {
    padding-bottom: 20px;
  }
  .about-glory-list .about-glory-item {
    margin-bottom: 30px;
    padding: 15px 20px;
  }
  .about-glory-list .about-glory-item .about-glory-item-year {
    width: 80px;
    font-size: 1.25rem;
    border-bottom: 1px solid #d1d1d1;
    padding: 0 0 10px 0;
  }
  .about-glory-list .about-glory-item .about-glory-item-content {
    width: 100%;
    border-left: none;
    padding: 10px 0 0 0;
  }
  .about-glory-list .about-glory-item .about-glory-item-content > ul > li {
    font-size: 1rem;
  }
  .about-glory-list .about-glory-item .about-glory-item-content > ul > li::before {
    top: 14.5px;
  }
}
.news-detail {
  background: #fff;
  padding: 70px;
}
.news-detail .news-title {
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.news-detail .news-title:before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 80px;
  height: 1px;
  background: #8cbd50;
}
.news-detail .news-title .tag-wrap {
  margin: -5px;
  margin-top: 10px;
}
.news-detail .news-title .tag-wrap .tag {
  display: inline-block;
  font-size: 0.9375rem;
  color: #318148;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 6px 10px;
  margin: 5px;
}
.news-detail .news-title .date {
  margin-bottom: 10px;
  color: #999999;
}
.news-detail .news-title .title {
  font-size: 1.625rem;
  color: #000;
  transition: color .3s;
}
.back {
  margin: 80px 0;
}
.back a {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  width: 220px;
  margin: auto;
}
.back a > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.back a > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.back a > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.back a:hover {
  color: #80b63d;
}
.back a:hover > i::before,
.back a:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .news-detail {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .news-detail {
    padding: 20px 15px;
  }
  .news-detail .news-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .news-detail .news-title .date {
    font-size: 0.9375rem;
  }
  .news-detail .news-title .title {
    font-size: 1.375rem;
  }
}
.clinical-list-wrapper {
  padding-bottom: 100px;
}
.clinical-list-header {
  margin-bottom: 50px;
}
.clinical-list-header .clinical-list-header-subject {
  position: relative;
  padding-left: 100px;
}
.clinical-list-header .clinical-list-header-subject::before {
  content: '';
  display: block;
  position: absolute;
  width: 75px;
  height: 75px;
  background-image: url(../images/page-subject-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
}
.clinical-list-header .clinical-list-header-subject > h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #80b63d;
  margin: 0;
}
.clinical-list-header .clinical-list-header-subject > p {
  font-size: 1.0625rem;
  color: #666666;
  margin: 5px 0 0;
}
.clinical-list-header .clinical-list-header-phase > div {
  position: relative;
  line-height: 24px;
  font-size: 1.0625rem;
  margin-left: 30px;
  padding: 8px 94px 8px 0;
}
.clinical-list-header .clinical-list-header-phase > div::before {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 24px;
  background: #222222;
  top: 8px;
  right: 12px;
}
.clinical-list-header .clinical-list-header-phase > div::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 12px solid #222222;
  border-bottom: 12px solid transparent;
  top: 8px;
  right: 0;
}
.clinical-list-header .clinical-list-header-phase > div.phase-2::before {
  background-color: #ec7f1f;
}
.clinical-list-header .clinical-list-header-phase > div.phase-2::after {
  border-left-color: #ec7f1f;
}
.clinical-list-header .clinical-list-header-phase > div.phase-3::before {
  background-color: #ecbf1f;
}
.clinical-list-header .clinical-list-header-phase > div.phase-3::after {
  border-left-color: #ecbf1f;
}
.clinical-list-board .clinical-list-board-header .indication {
  width: 280px;
  font-size: 1.125rem;
  color: #ffffff;
  border-right: 1px solid #ffffff;
  background-color: #207638;
  text-align: center;
  padding: 18px 36px;
}
.clinical-list-board .clinical-list-board-header .orphan-drug {
  width: 140px;
  font-size: 1.125rem;
  color: #ffffff;
  border-right: 1px solid #ffffff;
  background-color: #207638;
  text-align: center;
  padding: 18px 36px;
}
.clinical-list-board .clinical-list-board-header .moa {
  width: 250px;
  font-size: 1.125rem;
  color: #ffffff;
  border-right: 1px solid #ffffff;
  background-color: #207638;
  text-align: center;
  padding: 18px 36px;
}
.clinical-list-board .clinical-list-board-header .trails {
  width: calc(100% - 670px);
}
.clinical-list-board .clinical-list-board-header .trails .top {
  font-size: 1.125rem;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  background-color: #207638;
  padding: 18px 36px;
}
.clinical-list-board .clinical-list-board-header .trails .bottom {
  flex-wrap: nowrap;
}
.clinical-list-board .clinical-list-board-header .trails .bottom > div {
  width: 100%;
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #80b63d;
  text-align: center;
  padding: 18px;
}
.clinical-list-board .clinical-list-board-header .trails .bottom > div:nth-child(n+2) {
  border-left: 1px solid #ffffff;
}
.clinical-list-board .clinical-list-board-body {
  position: relative;
}
.clinical-list-board .clinical-list-board-body .years {
  flex-wrap: nowrap;
  position: absolute;
  z-index: 2;
  width: calc(100% - 669px);
  height: 100%;
  pointer-events: none;
  top: 0;
  right: 0;
}
.clinical-list-board .clinical-list-board-body .years > i {
  display: block;
  width: 100%;
  border-left: 1px solid #ffffff;
}
.clinical-list-board .clinical-list-board-body .clinical-item {
  position: relative;
  border-top: 1px solid #ffffff;
}
.clinical-list-board .clinical-list-board-body .clinical-item .indication {
  width: 280px;
  padding: 20px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .indication p {
  font-size: 1.125rem;
  margin: 0 0 10px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .indication a {
  display: inline-block;
  font-size: 0.9375rem;
  color: #ffffff;
  background-color: #80b63d;
  border-radius: 99px;
  padding: 10px 18px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.clinical-list-board .clinical-list-board-body .clinical-item .indication a:hover {
  background-color: #207638;
}
.clinical-list-board .clinical-list-board-body .clinical-item .orphan-drug {
  width: 140px;
  padding: 14px 8px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .orphan-drug img {
  width: 44px;
  margin: 4px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .moa {
  width: 250px;
  font-size: 1.125rem;
  text-align: center;
  padding: 20px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .moa p {
  font-size: 1.375rem;
  margin: 0;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails {
  position: relative;
  z-index: 5;
  width: calc(100% - 670px);
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails > div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails > div.rows-1 {
  height: 24px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails > div.rows-2 {
  height: 68px;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails .phase {
  position: absolute;
  height: 24px;
  background-color: #222222;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails .phase::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 12px solid #222222;
  border-bottom: 12px solid transparent;
  top: 0;
  left: 100%;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails .phase[data-phase="2"] {
  background-color: #ec7f1f;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails .phase[data-phase="2"]::before {
  border-left-color: #ec7f1f;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails .phase[data-phase="3"] {
  background-color: #ecbf1f;
}
.clinical-list-board .clinical-list-board-body .clinical-item .trails .phase[data-phase="3"]::before {
  border-left-color: #ecbf1f;
}
.clinical-list-board .clinical-list-board-body .clinical-item:nth-child(even) {
  background-color: #fafafa;
}
.clinical-list-board .clinical-list-board-body .clinical-item:nth-child(odd) {
  background-color: #f0f0f0;
}
.clinical-list-row .clinical-item {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 10px 15px;
}
.clinical-list-row .clinical-item + .clinical-item {
  margin-top: 20px;
}
.clinical-list-row .clinical-item .info {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  border-bottom: 1px solid #ededed;
  padding: 6px 0;
}
.clinical-list-row .clinical-item .info::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #80b63d;
  margin: 9px 10px 9px 0;
}
.clinical-list-row .clinical-item .info > p {
  width: 120px;
  color: #999999;
  margin: 0;
}
.clinical-list-row .clinical-item .info > div {
  flex-grow: 1;
  color: #222222;
}
.clinical-list-row .clinical-item .info > div img {
  width: 44px;
}
.clinical-list-row .clinical-item .trails {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.clinical-list-row .clinical-item .trails .start,
.clinical-list-row .clinical-item .trails .end {
  width: 100px;
}
.clinical-list-row .clinical-item .trails .start {
  text-align: left;
}
.clinical-list-row .clinical-item .trails .end {
  text-align: end;
}
.clinical-list-row .clinical-item .trails .phase {
  position: absolute;
  width: calc(100% - 212px);
  height: 24px;
  background-color: #222222;
  top: 6px;
  left: 100px;
}
.clinical-list-row .clinical-item .trails .phase::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 12px solid #222222;
  border-bottom: 12px solid transparent;
  top: 0;
  left: 100%;
}
.clinical-list-row .clinical-item .trails .phase.phase-2 {
  background-color: #ec7f1f;
}
.clinical-list-row .clinical-item .trails .phase.phase-2::before {
  border-left-color: #ec7f1f;
}
.clinical-list-row .clinical-item .trails .phase.phase-3 {
  background-color: #ecbf1f;
}
.clinical-list-row .clinical-item .trails .phase.phase-3::before {
  border-left-color: #ecbf1f;
}
.clinical-list-row .clinical-item .more {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  margin-top: 10px;
  margin-left: calc(100% - 200px);
}
.clinical-list-row .clinical-item .more > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.clinical-list-row .clinical-item .more > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.clinical-list-row .clinical-item .more > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.clinical-list-row .clinical-item .more:hover {
  color: #80b63d;
}
.clinical-list-row .clinical-item .more:hover > i::before,
.clinical-list-row .clinical-item .more:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
@media (max-width: 1399px) {
  .clinical-list-board .clinical-list-board-header .indication,
  .clinical-list-board .clinical-list-board-header .moa {
    width: 140px;
    padding: 8px 12px;
  }
  .clinical-list-board .clinical-list-board-header .orphan-drug {
    width: 80px;
    padding: 8px 12px;
  }
  .clinical-list-board .clinical-list-board-header .trails {
    width: calc(100% - 360px);
  }
  .clinical-list-board .clinical-list-board-body .clinical-item .indication,
  .clinical-list-board .clinical-list-board-body .clinical-item .moa {
    width: 140px;
    padding: 8px;
  }
  .clinical-list-board .clinical-list-board-body .clinical-item .orphan-drug {
    width: 80px;
    padding: 8px;
  }
  .clinical-list-board .clinical-list-board-body .clinical-item .trails {
    width: calc(100% - 360px);
  }
}
@media (max-width: 1199px) {
  .clinical-list-header .clinical-list-header-subject {
    width: 100%;
  }
  .clinical-list-header .clinical-list-header-phase {
    justify-content: flex-start;
  }
  .clinical-list-header .clinical-list-header-phase > div {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .clinical-list-header {
    margin-bottom: 30px;
  }
  .clinical-list-header .clinical-list-header-subject {
    padding-left: 50px;
  }
  .clinical-list-header .clinical-list-header-subject::before {
    width: 38px;
    height: 38px;
    margin-right: 12px;
  }
  .clinical-list-header .clinical-list-header-subject h2 {
    font-size: 1.5rem;
  }
  .clinical-list-header .clinical-list-header-subject p {
    font-size: 1rem;
  }
  .clinical-list-header .clinical-list-header-phase > div {
    line-height: 20px;
    font-size: 0.9375rem;
    padding: 4px 64px 4px 0;
  }
  .clinical-list-header .clinical-list-header-phase > div::before {
    width: 48px;
    height: 20px;
    top: 4px;
    right: 10px;
  }
  .clinical-list-header .clinical-list-header-phase > div::after {
    border-top-width: 10px;
    border-left-width: 10px;
    border-bottom-width: 10px;
    top: 4px;
  }
}
.investor-wrapper {
  margin-bottom: 80px;
}
.investor-nav {
  margin-bottom: 50px;
}
.investor-nav > li {
  margin: 0 15px 25px;
}
.investor-nav > li > a {
  display: block;
  font-size: 1.0625rem;
  color: #222222;
  background-color: #ffffff;
  border-radius: 99px;
  padding: 18px 36px;
  transition: all 0.3s;
}
.investor-nav > li > a:hover {
  color: #ffffff;
  background-color: #8cbd50;
}
.investor-nav > li.current > a {
  color: #ffffff;
  background-color: #8cbd50;
}
.investor-subnav {
  border-bottom: 1px solid #dedede;
}
.investor-subnav > li {
  padding: 0 20px;
  position: relative;
}
.investor-subnav > li > a {
  display: block;
  color: #222222;
  font-size: 1.0625rem;
  padding: 15px 8px;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.investor-subnav > li::after {
  content: '';
  width: 1px;
  height: 20px;
  background: #c5c5c5;
  display: block;
  position: absolute;
  right: 0;
  top: 18px;
}
.investor-subnav > li:last-child::after {
  display: none;
}
.investor-subnav > li.current > a {
  color: #207638;
  border-bottom: 2px solid #207638;
}
.sub-title {
  font-size: 1.625rem;
  color: #207638;
  font-weight: bold;
  text-align: center;
  margin: 50px 0;
}
.sub-title.left {
  text-align: left;
}
.sub-content {
  margin: 40px 0;
}
.sub-content.mt-minus {
  margin-top: -20px;
}
.sub-content.left {
  text-align: left;
}
.content-dl {
  margin-bottom: 40px;
}
.content-dt {
  font-size: 1.25rem;
  margin: 20px 0;
}
.content-dd {
  margin: 20px 0;
  font-size: 1.0625rem;
}
.company-tree img {
  max-width: 100%;
}
.outsitelink {
  margin-bottom: 40px;
  text-align: center;
}
.outsitelink .ti {
  color: #207638;
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.outsitelink .link {
  border-radius: 30px;
  background-color: #207638;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.investor-table {
  background: #fff;
  width: 100%;
  border-top: 2px solid #207638;
}
.investor-table .pl-50 {
  padding-left: 50px;
}
.investor-table thead tr {
  border-bottom: 2px solid #f7f7f7;
}
.investor-table thead th {
  border-right: 2px solid #f7f7f7;
  text-align: center;
  color: #207638;
  padding: 23px 15px;
}
.investor-table thead th.left {
  text-align: left;
}
.investor-table tbody tr {
  background: #fff;
}
.investor-table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}
.investor-table tbody tr td {
  padding: 23px 15px;
  border-right: 2px solid #f7f7f7;
}
.investor-table tbody tr td.bdl {
  border-left: 2px solid #f7f7f7;
}
.investor-table tbody tr td.center {
  text-align: center;
}
.investor-table tbody tr td a {
  color: #000;
}
.investor-table tbody tr td a:hover {
  color: #207638;
}
.investor-table tbody tr td .link {
  width: 26px;
  display: inline-block;
}
.investor-table tbody tr td .link img {
  width: 100%;
}
@media (max-width: 767px) {
  .investor-nav {
    margin-bottom: 30px;
  }
  .investor-nav > li {
    margin: 0 8px 12px;
  }
  .investor-nav > li > a {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .investor-subnav > li {
    padding: 0 8px;
  }
  .investor-subnav > li > a {
    font-size: 1rem;
    padding: 8px;
  }
  .investor-table thead th {
    padding: 8px;
  }
  .investor-table tbody tr td {
    padding: 8px;
  }
  .investor-table .pl-50 {
    padding-left: 15px;
  }
}
.container-1560 {
  max-width: 1560px;
  width: 100%;
  padding: 35px 28px;
  margin: auto;
}
.contact-info {
  display: flex;
}
.contact-info .map {
  width: 60%;
}
.contact-info .address {
  width: 40%;
  background: #fff;
  display: flex;
  padding: 90px;
}
.contact-info .address .inner .logo {
  max-width: 250px;
  margin-bottom: 30px;
}
.contact-info .address .inner .logo img {
  width: 100%;
}
.contact-info .address .inner ul.info li {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.contact-info .address .inner ul.info li .icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.contact-info .address .inner ul.info li .icon img {
  width: 100%;
}
.contact-form {
  background: #f1f1f1;
  padding: 70px;
}
.contact-form .green {
  color: #80b63d;
  padding-right: 3px;
  font-size: 1.125rem;
}
.contact-form .words {
  text-align: center;
  margin-bottom: 60px;
}
.contact-form .words p {
  margin: 5px 0;
  padding: 0;
}
.contact-form .words .must {
  color: #555;
}
.contact-form .form {
  margin: auto;
  width: 100%;
  max-width: 1110px;
  display: flex;
  flex-wrap: wrap;
}
.contact-form .form .form-box {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
}
.contact-form .form .form-box.flex1 {
  flex: 1;
}
.contact-form .form .form-box .ti {
  width: 170px;
  text-align: right;
  padding: 13px 40px 13px 0;
}
.contact-form .form .form-box .content {
  flex-grow: 1;
}
.contact-form .form .form-box .content .input-box {
  background: #fff;
  border-radius: 30px;
  width: 100%;
  border: none;
  padding: 13px 16px;
}
.contact-form .form .form-box .content .textarea {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  border: none;
  padding: 8px 16px;
  height: 200px;
}
.button-wrap {
  text-align: center;
  margin: 50px 0;
  width: 100%;
}
.button-wrap .button {
  max-width: 145px;
  width: 50%;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  color: #fff;
  border: none;
  padding: 15px 0;
  margin: 0 10px;
  transition: opacity .3s;
}
.button-wrap .button.cancel {
  background: #93998c;
}
.button-wrap .button.submit {
  background: #8cbd50;
}
.button-wrap .button .icon {
  font-size: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 5px;
}
.button-wrap .button .icon.cross:before,
.button-wrap .button .icon.cross:after {
  content: "";
  left: 2.5%;
  top: 45%;
  width: 90%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
}
.button-wrap .button .icon.cross:before {
  transform: rotate(45deg);
}
.button-wrap .button .icon.cross:after {
  transform: rotate(-45deg);
}
.button-wrap .button .icon.arrow:before,
.button-wrap .button .icon.arrow:after {
  content: "";
  display: block;
  position: absolute;
}
.button-wrap .button .icon.arrow:before {
  top: 50%;
  margin-top: -1px;
  left: 2.5%;
  width: 90%;
  height: 2px;
  background: #fff;
}
.button-wrap .button .icon.arrow:after {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  top: 50%;
  margin-top: -4px;
  margin-left: -4px;
  left: 90%;
}
.button-wrap .button:hover {
  opacity: 0.85;
}
.form-finish {
  background: #fff;
  display: flex;
  width: 100%;
  height: 500px;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.form-finish .content {
  text-align: center;
}
.form-finish .content .t1 {
  font-size: 1.625rem;
  color: #207638;
}
.form-finish .content .t2 {
  margin: 40px 0;
}
.form-finish .content .btn {
  max-width: 145px;
  width: 100%;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #fff;
  padding: 15px 0;
  margin: 0 auto;
  transition: opacity .3s;
  background: #8cbd50;
}
.form-finish .content .btn .icon {
  font-size: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 5px;
}
.form-finish .content .btn .icon.arrow:before,
.form-finish .content .btn .icon.arrow:after {
  content: "";
  display: block;
  position: absolute;
}
.form-finish .content .btn .icon.arrow:before {
  top: 50%;
  margin-top: -1px;
  left: 2.5%;
  width: 90%;
  height: 2px;
  background: #fff;
}
.form-finish .content .btn .icon.arrow:after {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  top: 50%;
  margin-top: -4px;
  margin-left: -4px;
  left: 90%;
}
.form-finish .content .btn:hover {
  opacity: 0.85;
}
@media (max-width: 1199px) {
  .contact-info .address {
    padding: 45px 30px;
  }
  .contact-form {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .contact-info {
    flex-wrap: wrap;
  }
  .contact-info .map {
    width: 100%;
    height: 300px;
  }
  .contact-info .address {
    width: 100%;
    padding: 15px;
  }
  .contact-form {
    padding: 20px 15px;
  }
  .contact-form .words {
    margin-bottom: 20px;
  }
  .contact-form .form .form-box {
    flex-direction: column;
  }
  .contact-form .form .form-box .ti {
    /* width: 125px; padding-right: 15px; */
    width: 100%;
    padding: 0;
    text-align: left;
  }
  .contact-form .form .form-box.flex1 {
    flex: 100%;
  }
  .form-finish {
    margin-bottom: 40px;
  }
}
.sitemap-list {
  background: #ffffff;
  text-align: center;
  padding: 50px 70px;
  margin-bottom: 100px;
}
.sitemap-list .sitemap-item {
  padding: 20px 0;
}
.sitemap-list .sitemap-item + .sitemap-item {
  border-top: 1px solid #ededed;
}
.sitemap-list .sitemap-item > p,
.sitemap-list .sitemap-item > a {
  display: block;
  width: 400px;
  font-size: 1.125rem;
  color: #222222;
  margin: auto;
  padding: 12px 0;
  transition: color 0.3s;
}
.sitemap-list .sitemap-item > a:hover {
  color: #739b42;
}
.sitemap-list .sitemap-item .sitemap-sublist {
  display: inline-flex;
  align-items: stretch;
  position: relative;
  background-color: #f7f7f7;
  vertical-align: top;
  margin-top: 8px;
  padding: 20px 10px;
}
.sitemap-list .sitemap-item .sitemap-sublist::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f7f7f7;
  top: -8px;
  left: 50%;
  margin-left: -8px;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem {
  padding: 0 24px;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem + .sitemap-subitem {
  border-left: 1px solid #d1d1d1;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem > p,
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem > a {
  display: block;
  font-size: 1rem;
  color: #222222;
  padding: 8px 0;
  transition: color 0.3s;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem > a:hover {
  color: #739b42;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist {
  position: relative;
  background-color: #ffffff;
  border-radius: 6px;
  margin-top: 8px;
  padding: 12px 20px;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  top: -8px;
  left: 50%;
  margin-left: -8px;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist .sitemap-granditem {
  padding: 8px 0;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist .sitemap-granditem > a {
  color: #222222;
}
.sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist .sitemap-granditem > a:hover {
  color: #739b42;
}
@media (max-width: 991px) {
  .sitemap-list {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .sitemap-list {
    text-align: left;
  }
  .sitemap-list .sitemap-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sitemap-list .sitemap-item > p,
  .sitemap-list .sitemap-item > a {
    width: 120px;
    margin: inherit;
  }
  .sitemap-list .sitemap-item .sitemap-sublist {
    display: block;
    width: calc(100% - 130px);
    margin-top: 0;
    margin-left: 10px;
    padding: 10px 15px;
  }
  .sitemap-list .sitemap-item .sitemap-sublist::before {
    border-top: 6px solid transparent;
    border-left: none;
    border-right: 8px solid #f7f7f7;
    border-bottom: 6px solid transparent;
    top: 20px;
    left: -8px;
    margin-left: 0;
  }
  .sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem {
    border-left: none !important;
    padding: 4px 0;
  }
  .sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem > p,
  .sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem > a {
    padding: 4px 0;
  }
  .sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist {
    padding: 4px 10px;
  }
  .sitemap-list .sitemap-item .sitemap-sublist .sitemap-subitem .sitemap-grandlist::before {
    left: 26px;
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .sitemap-list .sitemap-item {
    flex-wrap: wrap;
  }
  .sitemap-list .sitemap-item .sitemap-sublist {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
  .sitemap-list .sitemap-item .sitemap-sublist::before {
    border-top: none;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f7f7f7;
    top: -8px;
    left: 32px;
    margin-left: -8px;
  }
}
/* 2022.06.01 */
.team {
  margin-bottom: 75px;
}
.team .team-title {
  font-size: 1.625rem;
  color: #222222;
  font-weight: bold;
  margin: 0 0 20px;
  text-align: center;
}
.team .grid {
  margin-bottom: 50px;
}
.team .grid .item {
  width: 22%;
  margin: 1.5%;
}
.team .grid .item .pic {
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.team .grid .item .pic img {
  width: 100%;
  transition: transform .3s;
}
.team .grid .item .content {
  background: #fff;
  padding: 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.team .grid .item .content .job {
  margin-top: 10px;
  color: #8cbd50;
}
.team .grid .item .content .title {
  font-size: 18px;
  margin-top: 10px;
  color: #000;
  transition: color .3s;
}
.team .grid .item:hover .pic img {
  transform: scale(1.1);
}
.team .grid .item:hover .content .title {
  color: #80b63d;
}
.team-detail {
  background: #fff;
  padding: 70px;
}
.team-detail .team-title {
  border-bottom: 1px solid #dcdcdc;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.team-detail .team-title:before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 80px;
  height: 1px;
  background: #8cbd50;
}
.team-detail .team-title .job {
  color: #80b63d;
  padding-left: 5px;
}
.team-detail .team-title .title {
  font-size: 1.625rem;
  color: #000;
  transition: color .3s;
}
.team-detail .flex-type {
  display: flex;
}
.team-detail .flex-type .img {
  width: 100%;
  max-width: 450px;
}
.team-detail .flex-type .img img {
  max-width: 100%;
}
.team-detail .flex-type .cont {
  padding-left: 30px;
  line-height: 1.8;
}
.back {
  margin: 80px 0;
}
.back a {
  display: block;
  position: relative;
  width: 200px;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  width: 220px;
  margin: auto;
}
.back a > i {
  display: block;
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url(../images/g-more-circle.png);
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
.back a > i::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #222222;
  top: 22px;
  left: -20px;
}
.back a > i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid #222222;
  border-bottom: 5px solid transparent;
  top: 18px;
  left: 20px;
}
.back a:hover {
  color: #80b63d;
}
.back a:hover > i::before,
.back a:hover > i::after {
  animation: viewMoreAni 1.2s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .team .grid .item {
    width: 30.333%;
    margin: 0 1.5% 20px;
  }
  .team-detail {
    padding: 40px 30px;
  }
  .team-detail .flex-type .img {
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .team .team-title {
    font-size: 1.25rem;
  }
  .team .grid .item {
    width: 47%;
  }
  .team-detail {
    padding: 20px 15px;
  }
  .team-detail .team-title {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .team-detail .team-title .job {
    font-size: 0.9375rem;
  }
  .team-detail .team-title .title {
    font-size: 1.375rem;
  }
  .team-detail .flex-type {
    flex-wrap: wrap;
    justify-content: center;
  }
  .team-detail .flex-type .img {
    max-width: 300px !important;
    margin-bottom: 15px;
  }
}
@media (max-width: 479px) {
  .team .grid .item {
    width: 100%;
    margin: 0 0 20px;
  }
}
/* 2022.06.23 */
.custom-swiper {
  position: relative;
  max-height: 100vh;
  overflow: hidden;
}
.swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
  z-index: 5;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: #2f7f47;
  border: 2px solid #fff;
  user-select: none;
  font-size: 0;
  background: #80b63d;
  border-radius: 10px;
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  background: #fff;
}
.swiper img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
.swiper-wrapper .swiper-slide {
  left: 0 !important;
  opacity: 0;
  transform: none !important;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
.swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
.swiper-wrapper .swiper-slide > a {
  display: block;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.swiper-wrapper .swiper-slide > a > div {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 580px) {
  .custom-swiper {
    max-height: 70vh;
  }
  .swiper-wrapper .swiper-slide > a > div {
    height: 70vh;
  }
}
@media (max-width: 479px) {
  .custom-swiper {
    max-height: 60vh;
  }
  .swiper-wrapper .swiper-slide > a > div {
    height: 60vh;
  }
}
/* 2022.07.19 */
.footer .footer-top-brand-pg {
  font-size: 0.9375rem;
  color: #5f7e38;
  background-color: #e6f0d8;
  border-radius: 0;
  padding: 15px 24px;
  text-align: center;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item.full {
  letter-spacing: 0em;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item {
  letter-spacing: 0.05em;
  text-align: left;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-copyright,
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item {
  text-align: left;
}
.g-page-content {
  padding: 0 30px 30px;
}
.about-text-center {
  max-width: 1200px;
}
.about-text-with-img.g-flex-justify-end .text {
  margin-left: 60px;
  margin-right: 0;
}
.about-history-header {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.contact-info .address .inner ul.info span.txt {
  flex: 1;
}
@media (max-width: 991px) {
  .about-text-with-img.g-flex-justify-end .text {
    margin-left: 0;
  }
  .footer .footer-top .footer-top-info .footer-top-company {
    text-align: left;
    justify-content: unset
  }
}
/* ------ 修改 / 追加 20220927 ------ */
/*---- 彈出視窗-效果 ----*/
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}
/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: .6;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-close-btn-in .mfp-close {
  color: #000;
  opacity: 1;
}
.mfp-img-mobile .mfp-close {
  padding-right: 15px !important;
}
.mfp-img-mobile .mfp-container {
  padding: 0 15px;
}
@media only screen and (max-width:767px) {
  .mfp-container {
    padding: 0 15px;
  }
}
.popup-wrap .mfp-close {
  top: 5px;
}
.popup-wrap {
  margin: 0 auto;
  padding: 50px;
  max-width: 980px;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .popup-wrap {
    padding: 30px;
  }
}
@media only screen and (max-width:767px) {
  .popup-wrap {
    padding: 25px 20px;
  }
  .popup-wrap .mfp-close {
    top: 0;
    right: 0;
  }
}
/* header */
.header .header-nav .header-nav-list .header-nav-item > a {
  font-weight: bold;
}
.header .header-nav .header-nav-list .header-nav-item .header-nav-sublist .header-nav-subitem > a {
  font-weight: bold;
}
@media (max-width: 1365px) {
  .header .header-nav .header-nav-list .header-nav-item {
    margin: 0 5px;
  }
}
/* footer */
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block {
  padding-left: 20px;
}
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block:nth-child(1) {
  width: 40%;
}
.footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block:nth-child(2) {
  width: 60%;
}
.footer .footer-top .footer-top-info .footer-top-company .stronghold {
  margin-bottom: 5px;
  width: 100%;
  color: #fff;
  font-weight: bold;
}
.footer .footer-top .footer-top-info .footer-top-company .stronghold.us {
  margin-top: 10px;
}
.footer .footer-top .footer-top-info .footer-top-company .footer-top-company-item {
  margin-bottom: 5px;
  padding-right: 20px;
  line-height: 1.3;
}
.footer-top-company-copyright {
  padding-top: 8px;
}
.footer .footer-bottom {
  padding: 20px 15px 15px;
}
.footer .footer-bottom p:not(:last-child) {
  margin-bottom: 5px;
}
.footer .footer-bottom p {
  line-height: 1.5;
}
@media and (min-width: 1080px) and (max-width: 1439px) {
  .footer .footer-top .footer-top-content {
    padding: 0;
  }
  .footer .footer-top .footer-top-brand {
    width: 300px;
  }
  .footer .footer-top .footer-top-info {
    width: calc(100% - 300px);
  }
  .footer .footer-top .footer-top-info .footer-top-company {
    padding: 0 20px;
  }
}
@media (max-width: 1079px) {
  .footer .footer-top .footer-top-brand {
    width: 100%;
    text-align: center;
  }
  .footer .footer-top .footer-top-info {
    width: 100%;
    margin-top: 15px;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }
  .footer .footer-top .footer-top-info .footer-top-menu {
    width: 100%;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block {
    padding-left: 0;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block:nth-child(1) {
    justify-content: flex-end;
    width: 45%;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block:nth-child(2) {
    width: 55%;
  }
  .footer .footer-top .footer-top-info .footer-top-menu .footer-top-menu-block .footer-top-menu-item {
    padding: 0 10px;
    width: auto;
  }
  .footer .footer-top .footer-top-info .footer-top-company {
    padding: 0;
    width: 100%;
    text-align: left;
    justify-content: unset;
  }
}
@media (max-width: 767px) {
  .footer .footer-top {
    padding: 30px 15px 20px;
  }
  .footer .footer-top .footer-top-info .footer-top-menu {
    display: none;
  }
}
/* index */
.index-intro-wrapper .index-about-section .index-about-text {
  padding-left: 95px;
  background: none;
}
.index-intro-wrapper .index-about-section .index-about-text .index-about-text-title {
  font-weight: 600;
  line-height: 1.3
}
.index-news-wrapper .index-news-section .index-news-section-left {
  background: none;
}
.index-news-wrapper .index-news-section .index-news-section-left .index-news-title {
  padding-left: 25px;
}
@media (max-width: 1679px) {
  .index-intro-wrapper .index-about-section .index-about-text {
    padding-left: 25px;
  }
}
@media (max-width: 991px) {
  .index-intro-wrapper .index-about-section .index-about-text {
    padding-left: 0;
  }
  .index-news-wrapper .index-news-section .index-news-section-left .index-news-title {
    padding-left: 0;
  }
}
/* 內頁選單 */
@media (max-width: 1279px) {
  .page-nav > li {
    margin: 0 8px 25px;
  }
  .page-nav > li > a {
    padding: 18px 20px;
  }
}
@media (max-width: 991px) {
  .page-nav > li {
    margin: 0 0 5px;
  }
  .page-nav > li > a {
    padding: 5px 20px;
    font-size: 1rem;
  }
}
#nav-item .cate-btn {
  display: none;
}
@media (max-width: 991px) {
  #nav-item {
    margin-bottom: 25px;
    padding: 3px 5px 5px;
    border-radius: 4px;
    background-color: #373a3c;
  }
  #nav-item .cate-btn {
    display: block;
    position: relative;
    padding: 5px 20px;
    cursor: pointer;
  }
  #nav-item .cate-name {
    font-size: 1.05rem;
    color: #fff;
  }
  #nav-item .cate-name span {
    display: block;
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 20px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  #nav-item .cate-btn span:before,
  #nav-item .cate-btn span:after {
    display: block;
    content: "";
    position: absolute;
    background-color: #fff;
  }
  #nav-item .cate-btn span:before {
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
  }
  #nav-item .cate-btn span:after {
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: 100%;
    height: 2px;
  }
  #nav-item .cate-btn.open span:before {
    height: 0;
  }
  ul.page-nav {
    display: none;
    margin-bottom: 0;
    padding: 10px 15px;
    width: 100%;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
  }
}
/* ---- about ---- */
.about-wrapper {
  padding-top: 20px;
}
/* 理念 */
.about-text-with-img .text .text-title-black,
.about-text-with-img .text .text-title-thin {
  font-weight: 600;
  line-height: 1.2;
}
.about-text-center .text-title {
  font-weight: 600;
}
/* team */
.team-style .page-nav {
  margin-bottom: 10px;
}
.menu-sub {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  text-align: center;
}
.menu-sub a {
  display: block;
  position: relative;
  padding: 0 20px;
  font-size: 1.15rem;
  color: #333;
}
.menu-sub a:hover,
.menu-sub a.current {
  color: #8cbd50;
}
.menu-sub a:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 1px;
  height: 15px;
  background-color: #ccc;
}
.team .team-title {
  font-size: 1.6rem;
  font-weight: 600;
}
.team .grid .item .content .job {
  margin-top: 0;
  min-height: 45px;
  line-height: 1.3
}
.team .grid .item .content .title {
  margin-top: 5px;
}
.team-detail {
  padding: 0;
  background-color: transparent;
}
.team-detail .flex-type {
  justify-content: space-between;
}
.team-detail .flex-type .cont {
  width: calc(100% - 450px);
}
.team-detail .team-title .job {
  padding-left: 0;
}
@media (max-width: 1199px) {
  .team-detail .flex-type .cont {
    width: calc(100% - 350px);
  }
}
@media (max-width: 991px) {
  .team-style .page-nav {
    margin-bottom: 0;
  }
  .menu-sub a {
    padding: 0 10px;
    font-size: 1.05rem;
  }
  .team-detail .team-title {
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
  .team-detail .team-title .title {
    font-size: 1.45rem;
  }
}
@media (max-width: 767px) {
  .team-detail .flex-type {
    flex-direction: column;
  }
  .team-detail .flex-type .img {
    margin: 0 auto 15px;
  }
  .team-detail .flex-type .cont {
    padding-left: 0;
    width: 100%;
  }
}
/* Milestone & Recognitions */
.about-history-list .about-history-item {
  margin-bottom: 15px;
  padding: 15px 60px;
  border-radius: 6px;
  background-color: #ffffff;
}
.about-history-list .about-history-item .about-history-item-year {
  width: 125px;
  font-size: 1.75rem;
  color: #8cbd50;
  padding: 10px 20px 10px 0;
}
.about-history-list .about-history-item .about-history-item-content {
  padding: 7px 0 10px 40px;
  width: calc(100% - 125px);
  border-left: 1px solid #d1d1d1;
}
.about-history-list .about-history-item .about-history-item-content .brief {
  margin-bottom: 0;
}
.about-history-list .about-history-item .about-history-item-content .item-ti {
  font-size: 1.45rem;
}
.about-history-list .about-history-item .about-history-item-content > .brief {
  margin-top: 10px;
  font-size: 1.0625rem;
}
.about-history-list .about-history-item .about-history-item-content > ul {
  margin: 10px 0 0;
}
.about-history-list .about-history-item .about-history-item-content > ul > li {
  position: relative;
  font-size: 1.0625rem;
  padding: 0 0 6px 24px;
}
.about-history-list .about-history-item .about-history-item-content > ul > li::before {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #207638;
  top: 8px;
  left: 0;
}
.about-history-list .about-history-item .about-history-item-content > ul > li .brief {
  margin-top: 5px;
  font-size: 1rem;
  color: #999;
}
.about-history-list .about-history-item .about-history-item-content .img {
  display: flex;
  flex-wrap: wrap;
  margin: 15px -5px 0;
}
.about-history-list .about-history-item .about-history-item-content .img .img-item {
  padding: 0 5px;
  width: 25%;
}
.about-history-list .about-history-item .about-history-item-content .img .img-item img {
  width: 100%;
}
.about-history-list .about-history-item .about-history-item-content .img .img-item p {
  margin: 5px 0 0 0;
  font-size: 1rem;
  color: #999;
}
@media (max-width: 1279px) {
  .about-history-list .about-history-item .about-history-item-content .img .img-item {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .about-history-list .about-history-item .about-history-item-year {
    padding-right: 0;
    width: 100px;
  }
  .about-history-list .about-history-item .about-history-item-content {
    padding-left: 30px;
    width: calc(100% - 100px);
  }
}
@media (max-width: 767px) {
  .about-history-list {
    padding-bottom: 20px;
  }
  .about-history-list .about-history-item .about-history-item-year {
    width: 80px;
    font-size: 1.25rem;
    border-bottom: 1px solid #d1d1d1;
    padding: 0 0 10px 0;
  }
  .about-history-list .about-history-item .about-history-item-content {
    width: 100%;
    border-left: none;
    padding: 10px 0 0 0;
  }
  .about-history-list .about-history-item .about-history-item-content > ul > li {
    padding-left: 18px;
    font-size: 1rem;
  }
  .about-history-list .about-history-item .about-history-item-content .img .img-item {
    margin-bottom: 5px;
  }
}
@media (max-width: 639px) {
  .about-history-list .about-history-item .about-history-item-content .img .img-item {
    width: 50%;
  }
}
/* ---- news ---- */
.news .grid .item {
  padding: 30px 40px;
  border-radius: 6px;
  background-color: #fff;
}
.news .grid .item:not(:last-child) {
  margin-bottom: 15px;
}
.news .grid .item a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.news .grid .item a::after {
  display: block;
  content: "";
  position: absolute;
  top: 4px;
  right: -5px;
  width: 18px;
  height: 16px;
  background: url('../images/icon_arrow.svg') no-repeat 0 0;
  background-size: cover;
}
.news .grid .item a:hover::after {
  background-position: 0 -16px;
}
.news .grid .item .date {
  padding-top: 2px;
  width: 130px;
  font-size: .9rem;
  color: #207638;
  font-weight: 500;
}
.news .grid .item .txt {
  padding-right: 5vw;
  width: calc(100% - 130px);
}
.news .grid .item .type {
  margin-bottom: 3px;
  font-size: .9rem;
  color: #80b63d;
}
.news .grid .item .title {
  font-size: 1.05rem;
  color: #000;
  transition: color .3s;
}
.news .grid .item:hover .title {
  color: #80b63d;
}
.news .grid .item .tag-wrap {
  margin: 0 -5px;
  padding-top: 10px;
  border-top: #ddd solid 1px;
}
.news .grid .item .tag-wrap .tag {
  display: inline-block;
  font-size: 0.9375rem;
  color: #318148;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 6px 10px;
  margin: 5px;
}
@media (max-width: 991px) {
  .news .grid .item {
    padding: 30px;
  }
  .news .grid .item .date {
    width: 110px;
  }
  .news .grid .item .txt {
    padding-right: 40px;
    width: calc(100% - 110px);
  }
}
@media (max-width: 767px) {
  .news .grid .item {
    padding: 20px 20px 25px;
  }
  .news .grid .item a {
    flex-direction: column;
  }
  .news .grid .item a::after {
    top: 39px;
    width: 14px;
    height: 12px;
  }
  .news .grid .item a:hover::after {
    background-position: 0 -12px;
  }
  .news .grid .item .txt {
    padding-top: 5px;
    width: 100%;
  }
  .news .grid .item .type {
    position: absolute;
    top: 2px;
    left: 100px;
  }
}
/* ---- media ---- */
.media {
  margin-bottom: 50px;
}
.media .item {
  padding: 25px;
  border-radius: 6px;
  background-color: #fff;
}
.media .item:not(:last-child) {
  margin-bottom: 15px;
}
.media .item .item-ti {
  position: relative;
  padding-right: 30px;
  font-size: 1.6rem;
  color: #80b63d;
  font-weight: 600;
  cursor: pointer;
}
.media .item .item-ti span {
  display: block;
  position: absolute;
  top: 10px;
  right: 20px;
  width: 16px;
  height: 16px;
}
.media .item .item-ti span::before,
.media .item .item-ti span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #80b63d;
  transform: translate(-50%, -50%);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.media .item .item-ti span::before {
  width: 2px;
  height: 100%;
}
.media .item .item-ti span::after {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%) rotate(180deg);
}
.media .item.open .item-ti span::before {
  display: none;
}
.media .item.open .item-ti span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.media .item .item-txt {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: #eee solid 3px;
}
.media .item .item-txt .box {
  padding: 0 15px;
  line-height: 1.6;
}
.media .item .item-txt .box:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #ddd solid 1px;
}
.media .item .item-txt .box .js-more {
  margin-top: 10px;
  font-size: .8rem;
  color: #207638;
  font-weight: 600;
  cursor: pointer;
}
.media .item .item-txt .box .js-more.js-show {
  display: block !important;
}
.media .item .item-txt .box .js-more span {
  display: inline-block;
  margin: -3px 0 0 8px;
  width: 12px;
  height: 10px;
  vertical-align: middle;
  background: url('../images/icon_arrow.svg') no-repeat 0 -10px;
  background-size: cover;
}
.media .item .item-txt .box .data-top {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.media .item .item-txt .box .data-top.js-show {
  display: inline !important;
  -webkit-line-clamp: unset;
}
.media .item .item-txt .box .data-bottom.inline {
  display: inline !important;
}
@media (max-width: 991px) {
  .media {
    margin-bottom: 0;
  }
  .media .item {
    padding: 15px 15px;
  }
  .media .item .item-ti {
    font-size: 1.25rem;
  }
  .media .item .item-ti span {
    top: 8px;
    right: 0;
    width: 12px;
    height: 12px;
  }
  .media .item .item-txt .box {
    padding: 0;
  }
  .media .item .item-txt .box:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .media .item .item-ti {
    font-size: 1.1rem;
  }
}
/* ---- Research ---- */
/* Pipeline */
.pipeline {
  margin: 0 auto 50px;
  padding: 25px;
  max-width: 1440px;
  border-radius: 6px;
  background: #fff;
}
.pipeline .note {
  font-size: .8rem;
  color: rgba(0, 0, 0, .75);
  text-align: right;
}
.pipeline .box {
  position: relative;
  padding: 20px 40px 30px;
  border: #e0e0e0 solid 3px;
  border-radius: 6px;
  background-color: #F6F6F6;
  overflow-y: hidden;
  overflow-x: auto;
}
.pipeline .box::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 5px;
  width: 35px;
  height: 32px;
  opacity: 0;
  background: url(../images/touch_icon_mb.png) no-repeat 0 0;
  background-size: cover;
}
.pipeline .box.need-scroll::after {
  opacity: 1;
}
.pipeline .box::-webkit-scrollbar {
  height: 8px;
}
.pipeline .box::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.1);
}
.pipeline .box::-webkit-scrollbar-thumb {
  -webkit-box-shadow: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25);
}
.pipeline .box:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}
.pipeline table {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pipeline table thead th {
  position: relative;
  padding: 15px 0;
  font-weight: 600;
  text-align: center;
}
.pipeline table .wrap {
  margin: 0 5px;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .2);
  /*   background: -moz-linear-gradient(top,  #fcfcfc 0%, #f0f0f0 100%);
  background: -webkit-linear-gradient(top,  #fcfcfc 0%,#f0f0f0 100%);
  background: linear-gradient(to bottom,  #fcfcfc 0%,#f0f0f0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f0f0f0',GradientType=0 );
 */
}
.pipeline table thead th .mb {
  display: none;
}
.pipeline table thead th .column-bg {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 3000px;
  border-right: #ddd 1px solid;
}
.pipeline table tbody {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.pipeline table tbody tr:nth-child(even) {
  position: relative;
}
/* .pipeline table tbody tr:nth-child(even)::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: rgba(0,0,0,.05);
} */
.pipeline table tbody td {
  padding: 0 20px 20px 20px;
}
.pipeline table .ti {
  position: relative;
  z-index: 2;
  margin: 20px 0 10px;
  font-size: 1.15rem;
  color: #000;
  font-weight: 600;
}
.pipeline table tbody td .progress-con:nth-child(odd) {
  margin-bottom: 10px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, .6);
}
.progress-con {
  position: relative;
  z-index: 2;
  padding: 15px 0 5px 15px;
  padding-left: 15px;
  width: 100%;
}
.progress-con .item {
  position: relative;
  padding-bottom: 8px;
  -webkit-transition: all .55s .2s ease-in-out;
  transition: all .55s .2s ease-in-out;
}
.progress-con .item .bar {
  display: block;
  position: relative;
  padding: 0 15px;
  height: 30px;
  font-size: 1.02rem;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  border-radius: 100px;
  background-color: #548235;
  text-shadow: 0 0 5px rgba(0, 0, 0, .08);
  overflow: hidden;
}
.progress-con .item .bar:hover {
  text-decoration: underline;
}
.progress-con .item .bar span {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid #548235;
  border-bottom: 15px solid transparent;
}
.progress-con .item .bar .name {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  font-weight: 500;
}
.progress-con .progress-txt {
  position: absolute;
  top: 45%;
  right: 0;
  padding: 0 10px 0 15px;
  width: 15%;
  font-size: .9rem;
  line-height: 1.2;
  transform: translateY(-50%);
}
.progress-con .progress-txt p {
  margin-bottom: 0;
}
.progress-con .progress-txt br {
  display: none;
}
#popup-detail .ti {
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 1.45rem;
  color: #207638;
  font-weight: 600;
  border-bottom: #8cbd50 solid 4px;
}
#popup-detail .view img {
  max-width: 100%;
  height: auto !important;
  text-align: center;
}
@-webkit-keyframes ani-bar {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@keyframes ani-bar {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .progress-con .item {
    width: 0;
  }
  /* .progress-con .item .bar .name {
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  } */
  .progress-con .item {
    -webkit-animation: ani-bar .85s forwards;
    animation: ani-bar .85s forwards;
  }
  /* .progress-con .item.scroll-view .bar .name {
    opacity: 1;
  } */
}
@media (max-width: 1365px) {
  .pipeline {
    padding: 30px 40px 40px;
  }
}
@media (max-width: 1279px) {
  .pipeline {
    padding: 15px 20px 20px;
  }
  .pipeline table th .ti {
    font-size: 1.25rem;
  }
  #popup-detail .ti {
    padding-bottom: 5px;
  }
}
@media (max-width: 1079px) {
  .pipeline {
    padding: 10px;
  }
  .pipeline .box {
    padding: 15px 10px 5px;
  }
  .pipeline table .wrap,
  .progress-con .item .progress-txt {
    font-size: .8rem;
  }
  .pipeline table .wrap {
    margin: 0 2px;
    padding: 6px 10px;
  }
  .pipeline table thead th {
    padding: 0 0 10px;
  }
  .pipeline table th .ti {
    margin: 10px 0 5px;
    font-size: 1.15rem;
  }
  .progress-con .item .bar {
    font-size: .9rem;
  }
}
@media (max-width: 991px) {
  .pipeline {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pipeline table thead th .pc {
    display: none;
  }
  .pipeline table thead th .mb {
    display: block;
  }
  .progress-con .progress-txt {
    position: absolute;
    top: 45%;
    right: 0;
    padding: 0 5px;
  }
}
@media (max-width: 575px) {
  .pipeline .note {
    margin-bottom: 5px;
  }
  .pipeline table {
    width: 600px;
  }
  .pipeline table th {
    white-space: nowrap;
  }
  .pipeline table thead th .column-bg {
    height: 450px;
  }
  .pipeline table th .ti {
    margin: 5px 0 2px;
    font-size: 1.02rem;
  }
  .progress-con .item .bar {
    padding: 0 5px;
    height: 25px;
    font-size: .8rem;
    white-space: nowrap;
    line-height: 25px;
  }
  .progress-con .item .bar span {
    border-top-width: 12px;
    border-left-width: 12px;
    border-bottom-width: 13px;
  }
}
/* contact */
.contact-info {
  margin-bottom: 15px;
}
.contact-info .address {
  padding: 3vw 3vw 3vw 3.5vw;
}
.contact-info .address .inner .logo {
  margin-bottom: 20px;
}
.contact-info .address .stronghold {
  font-size: 1.15rem;
  color: #207638;
  font-weight: 600;
}
.contact-info .address .name {
  color: #8cbd50;
  font-weight: 600;
}
@media (max-width: 1365px) {
  .contact-info .map {
    width: 55%;
  }
  .contact-info .address {
    padding: 3.5vw 20px 3.5vw 30px;
    width: 45%;
  }
}
@media (max-width: 991px) {
  .contact-info {
    flex-wrap: wrap;
  }
  .contact-info .map {
    width: 100%;
    height: 300px;
  }
  .contact-info .address {
    padding: 25px 20px 15px;
    width: 100%;
  }
  .contact-info .address .inner .logo {
    margin-bottom: 0;
  }
  .contact-info .address .inner ul.info li {
    margin: 10px 0;
  }
}
/* ---- about concept center ---- */
.about-text-center {
  max-width: 1500px;
}
.about-text-center .img img {
  max-width: 100%;
  height: auto;
}
.about-text-center .img.pc {
  display: block;
}
.about-text-center .img.mb {
  display: none;
}
@media (max-width: 991px) {
  .about-text-center .img.pc {
    display: none;
  }
  .about-text-center .img.mb {
    display: block;
  }
}
/* ---- about concept center ---- */
.antroq-t-wrap {
  position: relative;
  padding: 50px 0 40px;
  margin-bottom: 60px;
}
.antroq-t-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 75%;
  height: 100%;
  border-radius: 9999px 1000px 1000px 9999px;
  background: #ffffff;
  content: '';
}
.antroq-t-wrap .antroq-area {
  position: relative;
  margin: auto;
  padding: 0 20px;
  max-width: 1300px;
  width: 90%;
}
.antroq-t-wrap .antroq-area .bgimg {
  width: 14.583%;
  height: 0;
  padding-bottom: 14.0625%;
  background: url(../images/index-news-bg-l.png) center no-repeat;
  background-size: cover;
  top: 50%;
  left: -13%;
  position: absolute;
  z-index: 1;
}
.antroq-t-wrap .antroq-area .img {
  width: calc(40% - 60px);
}
.antroq-t-wrap .antroq-area .img img {
  max-width: 100%;
  height: auto;
}
.antroq-t-wrap .antroq-area .text {
  margin-left: 60px;
  padding: 3% 0;
  width: 60%;
}
.antroq-t-wrap .antroq-area .text ol {
  list-style: none;
  counter-reset: li;
}
.antroq-t-wrap .antroq-area .text ol li {
  position: relative;
  margin: 0;
  padding: 3% 5px 3% 50px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  counter-increment: li;
}
.antroq-t-wrap .antroq-area .text ol li::after {
  position: absolute;
  top: 25%;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #8cbd50;
  content: '';
}
.antroq-t-wrap .antroq-area .text ol li::before {
  content: counter(li);
  color: #fff;
  display: block;
  width: 32px;
  display: block;
  position: absolute;
  top: 28%;
  left: 0px;
  text-align: center;
  z-index: 10;
}
@media (max-width: 991px) {
  .antroq-t-wrap::before {
    width: 100%;
    border-radius: 50px;
  }
  .antroq-t-wrap .antroq-area .bgimg {
    display: none;
  }
  .antroq-t-wrap .antroq-area .img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }
  .antroq-t-wrap .antroq-area .text {
    width: 100%;
    margin-left: 0;
  }
}
.antroq-text-with-img {
  padding-bottom: 60px;
}
.antroq-text-with-img .img {
  width: calc(50% - 60px);
  height: 400px;
  border-radius: 999px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.antroq-text-with-img .text.order {
  order: -1;
  margin-left: 0;
  margin-right: 60px;
}
.antroq-text-with-img .text {
  margin-left: 60px;
  padding: 0 15px;
  width: 50%;
}
.antroq-text-with-img .text p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 2;
}
.antroq-text-with-img .text p a {
  color: #80b63d;
  text-decoration: underline;
}
.antroq-text-with-img .text p a:hover {
  color: #207638;
  text-decoration: underline;
}
.antroq-text-with-img .text .mb-30 {
  margin-bottom: 30px;
}
.antroq-text-with-img .text .text-title-black {
  color: #207638;
  letter-spacing: 1px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
.antroq-text-with-img.g-flex-justify-end .text {
  margin-right: 60px;
  margin-left: 0;
}
@media (max-width: 991px) {
  .antroq-text-with-img .text.order {
    order: 0;
  }
  .antroq-text-with-img .img {
    width: 100%;
    max-width: 400px;
    height: 240px;
    margin: auto;
  }
  .antroq-text-with-img .text {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    text-align: center;
  }
  .antroq-text-center {
    margin: 40px auto;
  }
}
@media (max-width: 767px) {
  .antroq-text-with-img .text p {
    line-height: 1.75;
    font-size: 1rem;
  }
  .antroq-text-with-img .text .text-title-black {
    font-size: 1.5rem;
  }
}