:root {
  --color-bg: #ffffff;
  --color-fg: #0f172a;
  --color-muted: #64748b;
  --color-primary: #1dae65;
  --color-primary-600: #16a15c;
  --radius: 12px;
  --shadow: 0 6px 30px rgba(2, 6, 23, 0.08);
  --container: 1400px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.06);
  padding: 24px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  width: auto;
  display: block;
}
.site-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  padding: 10px 6px;
  color: var(--color-muted);
  font-weight: 500;
}
.site-nav li.active a,
.site-nav a:hover {
  color: var(--color-primary);
}
.nav-toggle {
  display: none;
  font-size: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media (max-width: 900px) {
  .site-header {
    padding: 12px 20px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    display: none;
    box-shadow: var(--shadow);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 12px;
  }
}
/* Sections */
section {
  padding: 48px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.banner-other {
  height: 292px;
  background: linear-gradient(100deg, #44cc88 0%, #5fd299 100%), #d9d9d9;
  border-radius: 0px 0px 162px 162px;
  position: relative;
  margin-bottom: 160px;
}
.banner-other .inner {
  background-image: url(../images/banner3.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  max-width: var(--container);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.banner-other .inner .title {
  max-width: 794px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.banner-other .inner .title .h2 {
  color: #ffffff;
  display: flex;
  gap: 20px;
  font-size: 36px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.banner-other .inner .title .h2 img {
  height: 54px;
  object-fit: contain;
  filter: saturate(0) brightness(0) invert(1);
  margin-right: -54px;
}
.banner-other .inner .title p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 60px;
}
.banner-other > img {
  position: absolute;
  bottom: -73px;
  right: 0;
}
/* UI */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--color-fg);
  cursor: pointer;
  transition: 0.2s ease;
}
.button:hover {
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
}
.button.primary {
  background: var(--color-primary);
  color: #fff;
  border: 0;
}
.button.primary:hover {
  background: var(--color-primary-600);
}
.input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}
textarea.input {
  padding: 12px;
  height: auto;
}
.toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.empty-state {
  text-align: center;
  color: #666666;
  margin-bottom: 240px;
}
.empty-state > img {
  width: 168px;
  max-width: 100%;
  margin: 160px auto 12px;
}
.hidden {
  display: none !important;
}
/* Footer */
.site-footer {
  background: #208954;
  color: #e8f5ee;
  padding: 90px 0 28px;
  border-top: 0;
}
.site-footer a {
  color: #e8f5ee;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 28px;
  align-items: start;
}
.footer-title {
  margin: 0 0 16px;
  color: #ff7a3d;
  letter-spacing: 0.3px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 10px 0;
}
.footer-note {
  color: #d1fae5;
  margin: 0 0 16px;
}
.newsletter-desc {
  color: #d1fae5;
  margin: 6px 0 18px;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.footer-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 24px;
  outline: none;
  background: #ffffff;
  color: #0f172a;
}
.footer-btn {
  height: 48px;
  padding: 0 22px;
  border-radius: 24px;
  border: 0;
  background: #ff7a3d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.footer-btn:hover {
  filter: brightness(0.95);
}
.footer-bottom {
  text-align: center;
  margin-top: 185px;
  color: #bde7d4;
  font-size: 14px;
}
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-row {
    grid-template-columns: 1fr;
  }
  .footer-btn {
    width: 140px;
  }
}
.index-content .banner {
  height: 740px;
  background: linear-gradient(100deg, #44cc88 0%, #5fd299 100%), #d9d9d9;
  border-radius: 0px 0px 0px 260px;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}
.index-content .banner .inner {
  width: calc(100% - 260px);
  background-image: url(../images/banner1.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: start;
  height: 100%;
  color: #fff;
  align-items: center;
  margin-left: 260px;
}
.index-content .banner .inner .left-text {
  width: 55%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.index-content .banner .inner .left-text h1 {
  font-size: 48px;
}
.index-content .banner .inner .left-text p {
  font-size: 16px;
  padding-right: 144px;
}
.index-content .banner .inner .left-text a {
  height: 44px;
  background: #ee6b19;
  border-radius: 22px 22px 22px 22px;
  padding: 0 38px;
}
.index-content .banner .inner .right-img {
  margin-right: 115px;
  margin-left: -200px;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 55px;
}
.index-content .features {
  margin-bottom: 120px;
}
.index-content .features .title .h2 {
  color: #003d38;
  display: flex;
  gap: 20px;
  font-size: 36px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.index-content .features .title .h2 img {
  height: 54px;
  object-fit: contain;
}
.index-content .features .title p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
  color: #01312c;
  margin-top: 0px;
  margin-bottom: 60px;
}
.index-content .features a {
  height: 44px;
  background: #ee6b19;
  border-radius: 22px 22px 22px 22px;
  padding: 0 38px;
  color: #fff;
  margin-top: 16px;
}
.index-content .features .features-img {
  width: 767px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.index-content .features .features-img img {
  width: 100%;
}
.index-content .features .features-img > div {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #2567358c;
  border-radius: 0px 0px 16px 16px;
  border-top: 10px solid #224229;
  color: #fff;
  padding: 15px 38px;
}
.index-content .features .features-list {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.index-content .features .features-list .card {
  width: 268px;
  height: 158px;
  background-color: #429c59;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.index-content .project {
  margin-bottom: 192px;
}
.index-content .project .title {
  max-width: 794px;
  margin-left: auto;
  margin-right: auto;
}
.index-content .project .title .h2 {
  color: #003d38;
  display: flex;
  gap: 20px;
  font-size: 36px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.index-content .project .title .h2 img {
  height: 54px;
  object-fit: contain;
}
.index-content .project .title p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
  color: #01312c;
  margin-top: 0px;
  margin-bottom: 60px;
}
.index-content .project .project-list .project-item {
  display: flex;
  justify-content: space-between;
  padding: 25px 40px;
  height: 310px;
  margin-bottom: -10px;
  position: relative;
  gap: 71px;
}
.index-content .project .project-list .project-item .text {
  display: flex;
  align-items: center;
}
.index-content .project .project-list .project-item .text .num {
  border-radius: 50%;
  background-color: #4acd8b;
  color: #fff;
  height: 80px;
  width: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
}
.index-content .project .project-list .project-item .text .content {
  margin: 0 30px;
}
.index-content .project .project-list .project-item .text .content div:nth-child(1) {
  font-size: 28px;
  font-weight: bold;
}
.index-content .project .project-list .project-item:nth-child(1) {
  border-top: 10px solid #d9d9d9;
  border-left: 10px solid #d9d9d9;
  border-bottom: 10px solid #d9d9d9;
  border-radius: 155px 0 0 155px;
  margin-right: 155px;
}
.index-content .project .project-list .project-item:nth-child(1)::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 155px;
  background-color: #d9d9d9;
  top: -10px;
  right: -155px;
}
.index-content .project .project-list .project-item:nth-child(1) > img {
  margin-right: -155px;
}
.index-content .project .project-list .project-item:nth-child(1) .num {
  margin-right: 58px;
}
.index-content .project .project-list .project-item:nth-child(1) .content {
  text-align: right;
}
.index-content .project .project-list .project-item:nth-child(2) {
  border-top: 10px solid #d9d9d9;
  border-right: 10px solid #d9d9d9;
  border-bottom: 10px solid #d9d9d9;
  border-radius: 0 155px 155px 0;
  margin-left: 155px;
}
.index-content .project .project-list .project-item:nth-child(2) > img {
  margin-left: -155px;
}
.index-content .project .project-list .project-item:nth-child(2) .num {
  background-color: #ee6b19;
}
.index-content .project .project-list .project-item:nth-child(3) {
  border-top: 10px solid #d9d9d9;
  border-left: 10px solid #d9d9d9;
  border-bottom: 10px solid #d9d9d9;
  border-radius: 155px 0 0 155px;
  margin-right: 155px;
}
.index-content .project .project-list .project-item:nth-child(3)::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 155px;
  background-color: #d9d9d9;
  bottom: -10px;
  right: -155px;
}
.index-content .project .project-list .project-item:nth-child(3) > img {
  margin-right: -155px;
}
.index-content .project .project-list .project-item:nth-child(3) .num {
  margin-right: 58px;
}
.index-content .project .project-list .project-item:nth-child(3) .content {
  text-align: right;
}
.mission-content {
  margin-bottom: 240px;
}
.mission-content .mission-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.mission-content .mission-list .mission-item {
  margin: 0 100px;
  display: flex;
  gap: 120px;
}
.mission-content .mission-list .mission-item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-content .mission-list .mission-item .content .num {
  width: 32px;
  height: 32px;
  background: #4acd8b;
  border-radius: 50%;
  color: #fff;
  line-height: 32px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.mission-content .mission-list .mission-item .content .title {
  font-size: 24px;
  color: #003d38;
  font-weight: 500;
  margin-bottom: 24px;
}
.mission-content .mission-list .mission-item .content .text {
  color: #666666;
}
.sassociation-content .title {
  max-width: 794px;
  margin-top: 20px;
}
.sassociation-content .title .h2 {
  color: #003d38;
  display: flex;
  gap: 20px;
  font-size: 30px;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.sassociation-content .title .h2 img {
  height: 54px;
  object-fit: contain;
}
.sassociation-content .title p {
  width: fit-content;
  color: #666666;
  margin-top: 0px;
  margin-bottom: 48px;
}
.sassociation-content .detailed {
  padding: 0 100px;
  display: flex;
  margin-bottom: 160px;
}
.sassociation-content .detailed .left-imgs {
  margin-right: 131px;
  position: relative;
  width: 487px;
  height: 546px;
  flex-shrink: 0;
}
.sassociation-content .detailed .left-imgs img:nth-child(1) {
  width: 100%;
}
.sassociation-content .detailed .left-imgs img:nth-child(2) {
  position: absolute;
  bottom: -25px;
  right: -71px;
}
.sassociation-content .detailed .right-content .cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.sassociation-content .detailed .right-content .cards div {
  background-color: #f4faf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px 26px 0px 26px;
  padding: 36px 15px;
}
.sassociation-content .detailed .right-content .cards div span:nth-child(1) {
  color: #406150;
}
.sassociation-content .detailed .right-content .cards div span:nth-child(2) {
  color: #ff6400;
  font-weight: bold;
  font-size: 24px;
}
.sassociation-content .detailed .right-content .cards + p {
  color: #666;
}
.sassociation-content .core-areas {
  background-color: #f4faf5;
  margin-bottom: -24px;
  border-radius: 162px 162px 0px 0px;
}
.sassociation-content .core-areas .container {
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  align-items: center;
}
.sassociation-content .core-areas .container .right-imgs {
  position: relative;
  flex-shrink: 0;
  width: 513px;
}
.sassociation-content .core-areas .container .right-imgs img {
  width: 100%;
}
.sassociation-content .core-areas .container .right-imgs div {
  padding: 25px 35px;
  border-radius: 0px 0px 16px 16px;
  color: #fff;
  width: 100%;
  background-color: #208954;
}
.sassociation-content .core-areas .container .right-imgs div span:nth-child(1) {
  font-size: 22px;
  margin-bottom: 15px;
}
.sassociation-content .core-areas .container .left-content {
  margin-right: 79px;
}
.sassociation-content .core-areas .container .left-content .core-item {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.sassociation-content .core-areas .container .left-content .core-item .num {
  font-size: 48px;
  color: transparent;
  -webkit-text-stroke: 1px #b7b7b7;
  font-weight: 900;
  width: 63px;
  flex-shrink: 0;
}
.sassociation-content .core-areas .container .left-content .core-item .text div:nth-child(1) {
  font-size: 23px;
  margin-bottom: 8px;
  font-weight: 500;
}
.sassociation-content .core-areas .container .left-content .core-item .text div:nth-child(2) {
  color: #666666;
}
.members-content .container {
  padding: 0 100px;
}
.members-content .page-header {
  padding-bottom: 12px;
}
.members-content .page-header .title {
  display: flex;
  gap: 50px;
}
.members-content .page-header .title img {
  height: 75px;
}
.members-content .members-search .title .h2 {
  color: #003d38;
  display: flex;
  gap: 20px;
  font-size: 36px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.members-content .members-search .title .h2 img {
  height: 54px;
  object-fit: contain;
}
.members-content .members-search .title p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
  color: #01312c;
  margin-top: 0px;
  margin-bottom: 60px;
}
.members-content .members-search .toolbar {
  height: 52px;
  background: #ffffff;
  border-radius: 60px 60px 60px 60px;
  border: 1px solid #58d195;
  display: flex;
  align-items: center;
  margin-bottom: 63px;
}
.members-content .members-search .toolbar .input {
  border: none;
  outline: none;
  background-color: transparent;
  padding-left: 32px;
  padding-right: 32px;
}
.members-content .members-search .toolbar .button {
  background-color: #58d195;
  border: 1px solid #58d195;
  color: #fff;
  border-radius: 60px 60px 60px 60px;
  height: 100%;
}
.members-content .members-search .toolbar .button2 {
  display: none;
}
.members-content .members-search .list {
  margin-top: 60px;
}
.members-content .members-search .list table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}
.members-content .members-search .list table thead tr {
  background-color: #f4faf5;
  font-weight: 600;
  font-size: 22px;
}
.members-content .members-search .list table th,
.members-content .members-search .list table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.members-content .members-search .list table td {
  border: 1px solid #d7d7d7;
}
.members-content .members-search .list table td img {
  width: 117px;
}
.members-content .members-search .list .moblie-list {
  display: none;
}
.about-content .title {
  max-width: 794px;
  margin-top: 20px;
}
.about-content .title .h2 {
  color: #003d38;
  display: flex;
  gap: 20px;
  font-size: 30px;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.about-content .title .h2 img {
  height: 54px;
  object-fit: contain;
}
.about-content .title p {
  width: fit-content;
  color: #666666;
  margin-top: 0px;
  margin-bottom: 48px;
}
.about-content .page-header {
  padding: 0;
}
.about-content .page-header .container {
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 131px;
}
.about-content .choose-us {
  margin-bottom: 160px;
}
.about-content .choose-us .title {
  margin-left: auto;
  margin-right: auto;
}
.about-content .choose-us .title .h2 {
  margin-left: auto;
  margin-right: auto;
}
.about-content .choose-us .list {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  gap: 30px;
}
.about-content .choose-us .list > div {
  flex: 1;
  box-shadow: 0px 0px 8px 4px rgba(107, 107, 107, 0.1);
}
.about-content .choose-us .list > div img {
  width: 100%;
}
.about-content .choose-us .list > div div {
  padding: 43px 24px 20px;
  position: relative;
  color: #333333;
}
.about-content .choose-us .list > div div span:first-child {
  display: block;
  background-color: #fd8439;
  padding: 14px 12px;
  border-radius: 0px 6px 6px 0px;
  width: fit-content;
  position: absolute;
  top: -27px;
  left: 0px;
  color: #fff;
}
.about-content .development {
  background-color: #f4faf5;
  border-radius: 162px 162px 0px 0px;
}
.about-content .development .title {
  margin-left: auto;
  margin-right: auto;
}
.about-content .development .title .h2 {
  margin-left: auto;
  margin-right: auto;
}
.about-content .development .line1,
.about-content .development .line2 {
  display: flex;
}
.about-content .development .line1 div,
.about-content .development .line2 div {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.about-content .development .line1 div span:nth-child(1),
.about-content .development .line2 div span:nth-child(1) {
  display: block;
  background: #def2e8;
  border-radius: 50%;
  height: 130px;
  width: 130px;
  text-align: center;
  line-height: 130px;
  font-size: 28px;
  font-weight: bold;
}
.about-content .development .line1 {
  gap: 45px;
  justify-content: center;
  margin-bottom: 80px;
}
.about-content .development .line1 div {
  width: 375px;
}
.about-content .development .line2 {
  gap: 102px;
  justify-content: center;
  margin-bottom: 95px;
}
.about-content .development .line2 div {
  width: 417px;
}
.about-content .development .line2 img {
  height: 162px;
  width: 162px;
}
.about-content .development .about-bottom {
  margin: 0 auto -128px;
}
.contact-content .title .h2 {
  color: #003d38;
  display: flex;
  gap: 20px;
  font-size: 36px;
  width: fit-content;
  font-weight: 900;
  margin-bottom: 8px;
}
.contact-content .title .h2 img {
  height: 54px;
  object-fit: contain;
}
.contact-content .title p {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  color: #01312c;
  margin-top: 0px;
  margin-bottom: 60px;
}
.contact-content .page-header {
  display: flex;
  padding: 0 100px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 160px;
}
.contact-content .page-header .title {
  max-width: 580px;
}
.contact-content .page-header .title .email {
  display: flex;
}
.contact-content .page-header .title p {
  margin-bottom: 24px;
}
.contact-content .page-header > img {
  width: 240px;
}
.contact-content .form-page {
  background-color: #f4faf5;
  border-radius: 162px 162px 0px 0px;
  padding-bottom: 160px;
}
.contact-content .form-page .title {
  margin-bottom: 60px;
}
.contact-content .form-page .title .h2 {
  margin-left: auto;
  margin-right: auto;
}
.contact-content .form-page .title p {
  margin-bottom: 24px;
  max-width: 580px;
}
.contact-content .form-page .form {
  padding: 0 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: space-between;
}
.contact-content .form-page .form i {
  font-style: normal;
  color: red;
}
.contact-content .form-page .form .input-item {
  width: calc(50% - 15px);
  flex-shrink: 0;
}
.contact-content .form-page .form .input-area-item {
  width: 100%;
}
.contact-content .form-page .form .input-area-item .input {
  min-height: 150px;
}
.contact-content .form-page .form .button {
  font-size: 15px;
  height: 37px;
  background: #ee6b19;
  border-radius: 22px 22px 22px 22px;
  padding: 0 21px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .index-content .banner .inner .left-text {
    width: 60%;
  }
  .index-content .banner .inner .left-text h1 {
    font-size: 32px;
  }
  .index-content .banner .inner .left-text p {
    font-size: 14px;
  }
  .index-content .banner .inner .right-img {
    margin-right: 115px;
    margin-left: -200px;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 55px;
  }
}
@media (max-width: 900px) {
  .title .h2 {
    font-size: 24px !important;
  }
  .title .h2 img {
    height: 34px !important;
  }
  .title p {
    font-size: 14px !important;
  }
  .banner-other {
    height: auto;
    background: linear-gradient(100deg, #44cc88 0%, #5fd299 100%), #d9d9d9;
    border-radius: 0px 0px 60px 60px;
    margin-bottom: 54px;
  }
  .banner-other .inner {
    background-image: none;
    width: calc(100% - 32px);
    max-width: var(--container);
  }
  .banner-other .inner .title {
    max-width: 794px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    overflow: hidden;
  }
  .banner-other .inner .title .h2 {
    color: #ffffff;
    display: flex;
    gap: 16px;
    font-size: 24px !important;
  }
  .banner-other .inner .title .h2 img {
    height: 34px;
    object-fit: contain;
    filter: saturate(0) brightness(0) invert(1);
    margin-right: -54px;
  }
  .banner-other > img {
    position: absolute;
    width: 237px;
    bottom: -53px;
    right: 0;
  }
  .index-content .banner {
    border-radius: 0px 0px 0px 60px;
    height: inherit;
    overflow: inherit;
    margin-bottom: 60px;
  }
  .index-content .banner .inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: column;
    width: 100%;
    background-image: none;
  }
  .index-content .banner .inner .left-text {
    width: 100%;
  }
  .index-content .banner .inner .left-text h1 {
    font-size: 24px;
  }
  .index-content .banner .inner .left-text p {
    font-size: 14px;
    padding-right: inherit;
  }
  .index-content .banner .inner .left-text a {
    font-size: 15px;
    height: 37px;
    background: #ee6b19;
    border-radius: 22px 22px 22px 22px;
    padding: 0 21px;
  }
  .index-content .banner .inner .right-img {
    margin-right: auto;
    margin-left: auto;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: -16px;
  }
  .index-content .features {
    padding: 0;
    margin-bottom: 90px;
  }
  .index-content .features p {
    margin-bottom: 24px !important;
  }
  .index-content .features a {
    height: 37px;
    padding: 0 27px;
    margin-top: 24px;
    font-size: 15px;
  }
  .index-content .features .features-img {
    width: 100%;
    max-width: 343px;
    margin-bottom: 16px;
  }
  .index-content .features .features-img img {
    width: 100%;
    margin-bottom: -8px;
  }
  .index-content .features .features-img > div {
    width: 100%;
    background: #569365;
    border-radius: 0px 0px 8px 8px;
    border-top: 10px solid #224229;
    color: #fff;
    padding: 10px 16px;
    position: relative;
  }
  .index-content .features .features-img > div div:last-child {
    font-size: 12px;
  }
  .index-content .features .features-list {
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .index-content .features .features-list .card {
    width: 163px;
    height: 131px;
    display: flex;
    gap: 12px;
    text-align: center;
    padding: 23px;
  }
  .index-content .features .features-list .card img {
    height: 52px;
    width: 52px;
  }
  .index-content .project {
    margin-bottom: 90px;
    padding: 0;
  }
  .index-content .project .title {
    max-width: 794px;
    margin-left: auto;
    margin-right: auto;
  }
  .index-content .project .title .h2 {
    display: block;
    text-align: center;
  }
  .index-content .project .title .h2 img {
    height: 54px;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
  }
  .index-content .project .title p {
    margin-bottom: 60px;
  }
  .index-content .project .project-list .project-item {
    display: block;
    padding: 23px 29px;
    height: 160px;
    margin-bottom: -3px;
  }
  .index-content .project .project-list .project-item img {
    display: none;
  }
  .index-content .project .project-list .project-item .text {
    width: calc(100% + 80px);
  }
  .index-content .project .project-list .project-item .text .num {
    border-radius: 50%;
    background-color: #4acd8b;
    color: #fff;
    height: 36px;
    width: 36px;
    font-size: 16px;
    position: absolute;
  }
  .index-content .project .project-list .project-item .text .content {
    margin: 0;
  }
  .index-content .project .project-list .project-item .text .content div:nth-child(1) {
    font-size: 16px;
    font-weight: bold;
  }
  .index-content .project .project-list .project-item .text .content div:nth-child(2) {
    font-size: 12px;
  }
  .index-content .project .project-list .project-item:nth-child(1) {
    border-top: 3px solid #d9d9d9;
    border-left: 3px solid #d9d9d9;
    border-bottom: 3px solid #d9d9d9;
    border-radius: 155px 0 0 155px;
    margin-right: 80px;
  }
  .index-content .project .project-list .project-item:nth-child(1)::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 155px;
    background-color: #d9d9d9;
    top: -3px;
    right: -80px;
  }
  .index-content .project .project-list .project-item:nth-child(1) > img {
    margin-right: -80px;
  }
  .index-content .project .project-list .project-item:nth-child(1) .num {
    margin-right: 0;
    position: absolute;
    right: -80px;
    top: -46px;
  }
  .index-content .project .project-list .project-item:nth-child(1) .content {
    text-align: center;
  }
  .index-content .project .project-list .project-item:nth-child(2) {
    border-top: 3px solid #d9d9d9;
    border-right: 3px solid #d9d9d9;
    border-bottom: 3px solid #d9d9d9;
    border-radius: 0 155px 155px 0;
    margin-left: 80px;
  }
  .index-content .project .project-list .project-item:nth-child(2) .text {
    margin-left: -80px;
    text-align: center;
  }
  .index-content .project .project-list .project-item:nth-child(2) > img {
    margin-left: -155px;
  }
  .index-content .project .project-list .project-item:nth-child(2) .num {
    background-color: #ee6b19;
    position: absolute;
    top: 0px;
    left: -80px;
  }
  .index-content .project .project-list .project-item:nth-child(3) {
    border-top: 3px solid #d9d9d9;
    border-left: 3px solid #d9d9d9;
    border-bottom: 3px solid #d9d9d9;
    border-radius: 155px 0 0 155px;
    margin-right: 80px;
  }
  .index-content .project .project-list .project-item:nth-child(3)::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 80px;
    background-color: #d9d9d9;
    bottom: -3px;
    right: -80px;
  }
  .index-content .project .project-list .project-item:nth-child(3) > img {
    margin-right: -155px;
  }
  .index-content .project .project-list .project-item:nth-child(3) .num {
    margin-right: 0;
    position: absolute;
    top: 0px;
    right: -80px;
  }
  .index-content .project .project-list .project-item:nth-child(3) .content {
    text-align: center;
  }
  .mission-content {
    margin-bottom: 90px;
  }
  .mission-content .mission-list {
    flex-direction: column;
    gap: 60px;
  }
  .mission-content .mission-list .mission-item {
    margin: 0;
    flex-direction: column;
    gap: 12px;
  }
  .mission-content .mission-list .mission-item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mission-content .mission-list .mission-item .content .num {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 7px;
  }
  .mission-content .mission-list .mission-item .content .title {
    margin-bottom: 12px;
  }
  .mission-content .mission-list .mission-item .content .text {
    font-size: 14px;
  }
  .mission-content .mission-list .mission-item:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .sassociation-content .title .h2 {
    gap: 12px;
    font-size: 24px;
    width: fit-content;
    font-weight: 900;
    margin-bottom: 12px;
    display: block;
  }
  .sassociation-content .title .h2 img {
    height: 54px;
    object-fit: contain;
    display: inline;
  }
  .sassociation-content .title p {
    margin-bottom: 24px;
  }
  .sassociation-content .detailed {
    padding: 0 16px;
    flex-direction: column;
    margin-bottom: 85px;
  }
  .sassociation-content .detailed .left-imgs {
    margin-right: 0;
    position: relative;
    max-width: 487px;
    width: calc(100% - 37px);
    height: auto;
    flex-shrink: 0;
  }
  .sassociation-content .detailed .left-imgs img:nth-child(1) {
    width: 100%;
    margin-bottom: 36px;
  }
  .sassociation-content .detailed .left-imgs img:nth-child(2) {
    width: 130px;
    position: absolute;
    bottom: -12px;
    right: -43px;
  }
  .sassociation-content .detailed .right-content .cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 13px;
  }
  .sassociation-content .detailed .right-content .cards div {
    border-radius: 0px 26px 0px 26px;
    padding: 20px 8px;
    text-align: center;
  }
  .sassociation-content .detailed .right-content .cards div span:nth-child(1) {
    font-size: 15px;
  }
  .sassociation-content .detailed .right-content .cards div span:nth-child(2) {
    font-size: 17px;
  }
  .sassociation-content .core-areas {
    background-color: #f4faf5;
    margin-bottom: -24px;
    border-radius: 60px 60px 0px 0px;
    padding-top: 24px;
  }
  .sassociation-content .core-areas .container {
    padding: 0 16px;
    flex-direction: column;
    margin-top: 0;
  }
  .sassociation-content .core-areas .container .right-imgs {
    position: relative;
    flex-shrink: 0;
    width: 100%;
  }
  .sassociation-content .core-areas .container .right-imgs img {
    width: 100%;
  }
  .sassociation-content .core-areas .container .right-imgs div {
    padding: 12px 15px;
    border-radius: 0px 0px 8px 8px;
  }
  .sassociation-content .core-areas .container .right-imgs div span:nth-child(1) {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .sassociation-content .core-areas .container .left-content {
    margin-right: 0px;
  }
  .sassociation-content .core-areas .container .left-content .core-item {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
  }
  .sassociation-content .core-areas .container .left-content .core-item .num {
    font-size: 36px;
    color: transparent;
    -webkit-text-stroke: 1px #b7b7b7;
    font-weight: 900;
    width: 63px;
    flex-shrink: 0;
  }
  .sassociation-content .core-areas .container .left-content .core-item .text div:nth-child(1) {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .sassociation-content .core-areas .container .left-content .core-item .text div:nth-child(2) {
    color: #666666;
  }
  .members-content .container {
    padding: 0 16px;
  }
  .members-content .page-header {
    padding-bottom: 12px;
  }
  .members-content .page-header .title {
    flex-direction: column;
    gap: 12px;
  }
  .members-content .page-header .title img {
    height: 60px;
    width: fit-content;
  }
  .members-content .page-header .title p {
    margin: 0;
  }
  .members-content .members-search {
    padding-top: 24px;
  }
  .members-content .members-search .toolbar {
    height: 36px;
    background: #ffffff;
    border-radius: 60px 60px 60px 60px;
    border: 1px solid #58d195;
    display: flex;
    align-items: center;
    margin-bottom: 63px;
  }
  .members-content .members-search .toolbar .input {
    padding-left: 12px;
    padding-right: 0px;
  }
  .members-content .members-search .toolbar .button {
    background-color: #58d195;
    border: 1px solid #58d195;
    color: #fff;
    border-radius: 60px 60px 60px 60px;
    height: 100%;
  }
  .members-content .members-search .toolbar .button1 {
    display: none;
  }
  .members-content .members-search .toolbar .button2 {
    width: 54px;
    display: inherit;
    height: 36px;
    padding: 0;
  }
  .members-content .members-search .list {
    margin-top: 60px;
  }
  .members-content .members-search .list table {
    display: none;
  }
  .members-content .members-search .list .moblie-list {
    display: flex;
    flex-direction: column;
    background: #f4faf5;
    border: 1px solid #d7d7d7;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
  }
  .members-content .members-search .list .moblie-list img {
    width: 124px;
  }
  .members-content .members-search .list .moblie-list span {
    font-weight: 500;
    color: #333333;
  }
  .members-content .members-search .list .moblie-list span:nth-child(2),
  .members-content .members-search .list .moblie-list span:nth-child(5) {
    color: #ee6b19;
  }
  .members-content .members-search .empty-state > img {
    height: 77px;
    object-fit: contain;
  }
  .about-content .title {
    max-width: 794px;
    margin-top: 20px;
  }
  .about-content .title .h2 {
    display: block;
  }
  .about-content .title .h2 img {
    display: inline;
  }
  .about-content .page-header {
    padding-top: 60px;
    margin-bottom: 40px;
  }
  .about-content .page-header .container {
    padding: 0 16px;
    flex-direction: column;
    gap: 24px;
  }
  .about-content .page-header .container img {
    max-width: 266px;
  }
  .about-content .choose-us {
    margin-bottom: 90px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .about-content .choose-us .title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  .about-content .choose-us .title .h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .about-content .choose-us .list {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    gap: 24x;
    flex-direction: column;
  }
  .about-content .development {
    background-color: inherit;
    border-radius: 0;
  }
  .about-content .development .title {
    margin-left: auto;
    margin-right: auto;
  }
  .about-content .development .title .h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .about-content .development .line1,
  .about-content .development .line2 {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }
  .about-content .development .line1 div,
  .about-content .development .line2 div {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }
  .about-content .development .line1 div span:nth-child(1),
  .about-content .development .line2 div span:nth-child(1) {
    display: block;
    background: #def2e8;
    border-radius: 50%;
    height: 110px;
    width: 110px;
    text-align: center;
    line-height: 110px;
    font-size: 24px;
    font-weight: bold;
  }
  .about-content .development .line1 {
    gap: 36px;
    justify-content: center;
    margin-bottom: 36px;
  }
  .about-content .development .line1 div {
    width: 100%;
  }
  .about-content .development .line2 {
    gap: 36px;
    justify-content: center;
    margin-bottom: 0;
  }
  .about-content .development .line2 div {
    width: 100%;
  }
  .about-content .development .line2 img {
    margin: 0 auto;
    order: -1;
  }
  .about-content .development .about-bottom {
    margin: 0 auto -48px;
    transform: translateY(33%);
  }
  .contact-content .title .h2 {
    color: #003d38;
    display: flex;
    gap: 20px;
    font-size: 36px;
    width: fit-content;
    font-weight: 900;
    margin-bottom: 8px;
  }
  .contact-content .title .h2 img {
    height: 54px;
    object-fit: contain;
  }
  .contact-content .title p {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    color: #01312c;
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .contact-content .page-header {
    display: flex;
    padding: 0 16px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    margin-bottom: 160px;
    padding-top: 40px;
    gap: 24px;
  }
  .contact-content .page-header .title {
    max-width: 580px;
  }
  .contact-content .page-header .title .email {
    display: flex;
    gap: 12px;
  }
  .contact-content .page-header .title p {
    margin-bottom: 24px;
  }
  .contact-content .page-header > img {
    width: 160px;
  }
  .contact-content .form-page {
    border-radius: 60px 60px 0px 0px;
    padding-bottom: 90px;
    padding: 24px 16px 90px;
  }
  .contact-content .form-page .title {
    margin-bottom: 60px;
  }
  .contact-content .form-page .title .h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-content .form-page .title p {
    margin-bottom: 24px;
    max-width: 580px;
  }
  .contact-content .form-page .form {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: space-between;
  }
  .contact-content .form-page .form i {
    font-style: normal;
    color: red;
  }
  .contact-content .form-page .form .input-item {
    width: 100%;
    flex-shrink: 0;
  }
  .contact-content .form-page .form .input-area-item {
    width: 100%;
  }
  .contact-content .form-page .form .input-area-item .input {
    min-height: 150px;
  }
  .contact-content .form-page .form .button {
    font-size: 15px;
    height: 37px;
    background: #ee6b19;
    border-radius: 22px 22px 22px 22px;
    padding: 0 21px;
    margin: 0 auto;
  }
}
