@charset "UTF-8";
.common-banner .cover {
  background-image: url("../images/banner/foundation.jpg");
  background-position: center;
  background-size: cover;
}

.foundation-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 68px;
}
@media (max-width: 990px) {
  .foundation-wrapper {
    gap: 40px;
  }
}
.foundation-wrapper .section1 {
  width: 100%;
  margin-bottom: calc(2vw + 48px);
}
@media (max-width: 990px) {
  .foundation-wrapper .section1 {
    margin-bottom: 0;
  }
}
.foundation-wrapper .section1 .main {
  width: 83%;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  padding: 40px 24% 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  position: relative;
}
.foundation-wrapper .section1 .main h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .foundation-wrapper .section1 .main h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.foundation-wrapper .section1 .main P {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}
@media (max-width: 990px) {
  .foundation-wrapper .section1 .main P {
    font-size: 16px;
    line-height: 30px;
  }
}
.foundation-wrapper .section1 .main .img-box {
  width: 48%;
  position: absolute;
  aspect-ratio: 5/7.4;
  align-self: flex-end;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  z-index: 2;
  overflow: hidden;
  right: 0;
  bottom: 0;
  transform: translate(44%, 10%);
  max-width: 520px;
}
.foundation-wrapper .section1 .main .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .foundation-wrapper .section1 .main {
    width: 100%;
    padding: 24px 20px 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
  .foundation-wrapper .section1 .main .img-box {
    margin-top: 48px;
    position: relative;
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}
.foundation-wrapper .section2 {
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 990px) {
  .foundation-wrapper .section2 {
    margin-bottom: 0;
    padding: 24px 20px 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
}
.foundation-wrapper .section2 h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .foundation-wrapper .section2 h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.foundation-wrapper .section2 P {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}
.foundation-wrapper .section2 P a {
  color: var(--blue-500);
}
@media (max-width: 990px) {
  .foundation-wrapper .section2 P {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.foundation-wrapper .section2 .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 高度比例 = 9 / 16 = 0.5625 */
  border-radius: 5px;
  overflow: hidden;
}
.foundation-wrapper .section2 .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.foundation-wrapper .section3 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: calc(100px - 2vw) 0 180px;
}
.foundation-wrapper .section3 .card {
  width: 48%;
  padding: 68px 64px;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  position: relative;
  z-index: 2;
}
.foundation-wrapper .section3 .card h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .foundation-wrapper .section3 .card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.foundation-wrapper .section3 .card .desc {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
.foundation-wrapper .section3 .card .desc .gradient-line {
  width: 6px;
  background-image: linear-gradient(180deg, #00D0DD, #005BAC);
}
.foundation-wrapper .section3 .card .desc ul {
  flex: 1;
  list-style: none;
}
.foundation-wrapper .section3 .card .desc ul li {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 400px;
  display: flex;
  align-items: flex-start;
  word-break: break-all;
  flex-wrap: wrap;
}
@media (max-width: 990px) {
  .foundation-wrapper .section3 .card .desc ul li {
    font-size: 16px;
  }
}
.foundation-wrapper .section3 .card .inner-img-box {
  margin-top: 36px;
  width: 100%;
  aspect-ratio: 2.22/1;
  background-color: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  overflow: hidden;
  display: none;
}
.foundation-wrapper .section3 .card .inner-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .foundation-wrapper .section3 .card .inner-img-box {
    display: block;
  }
}
@media (max-width: 990px) {
  .foundation-wrapper .section3 .card {
    padding: 24px 20px 30px;
  }
}
.foundation-wrapper .section3 .img-box {
  position: absolute;
  width: 70%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/0.5;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  overflow: hidden;
}
.foundation-wrapper .section3 .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .foundation-wrapper .section3 {
    margin: 0 0 60px;
  }
  .foundation-wrapper .section3 .card {
    width: 100%;
  }
  .foundation-wrapper .section3 .img-box {
    display: none;
  }
}

.subsidy-wrapper {
  width: 100%;
  margin-bottom: 280px;
}
@media (max-width: 990px) {
  .subsidy-wrapper {
    margin-bottom: 0;
  }
}
.subsidy-wrapper .main {
  width: 83%;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  padding: 42px 24% 74px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  position: relative;
}
.subsidy-wrapper .main h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .subsidy-wrapper .main h3 {
    font-size: 20px;
    font-weight: 600;
  }
}
.subsidy-wrapper .main P {
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 60px;
}
@media (max-width: 990px) {
  .subsidy-wrapper .main P {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
  }
}
.subsidy-wrapper .main button.default {
  margin-top: 24px;
}
.subsidy-wrapper .main .img-box {
  width: 48%;
  position: absolute;
  aspect-ratio: 5/6.5;
  align-self: flex-end;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  z-index: 2;
  overflow: hidden;
  right: 0;
  bottom: 0;
  transform: translate(50%, 30%);
  max-width: 520px;
}
.subsidy-wrapper .main .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .subsidy-wrapper .main {
    width: 100%;
    padding: 20px 20px 33px;
    margin-bottom: 60px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
  .subsidy-wrapper .main .img-box {
    position: relative;
    width: 100%;
    transform: none;
    max-width: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
  .subsidy-wrapper .main button.default {
    align-self: center;
  }
}

.volunteerFAQ-wrapper {
  width: 100%;
}
.volunteerFAQ-wrapper h3 {
  text-align: start;
  font-size: 32px;
  color: var(--blue-500);
  margin-bottom: 48px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .volunteerFAQ-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
  }
}
.volunteerFAQ-wrapper .FAQ-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 990px) {
  .volunteerFAQ-wrapper .FAQ-box {
    gap: 30px;
  }
}
.volunteerFAQ-wrapper .FAQ-box .FAQ-item {
  width: 100%;
  padding: 30px 90px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: white;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  gap: 24px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.volunteerFAQ-wrapper .FAQ-box .FAQ-item h4 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 990px) {
  .volunteerFAQ-wrapper .FAQ-box .FAQ-item h4 {
    font-size: 20px;
  }
}
.volunteerFAQ-wrapper .FAQ-box .FAQ-item ul {
  margin-left: 48px;
  list-style-type: none;
  font-size: 20px;
}
@media (max-width: 990px) {
  .volunteerFAQ-wrapper .FAQ-box .FAQ-item ul {
    font-size: 16px;
  }
}
.volunteerFAQ-wrapper .FAQ-box .FAQ-item p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-left: 58px;
}
@media (max-width: 990px) {
  .volunteerFAQ-wrapper .FAQ-box .FAQ-item p {
    font-size: 16px;
  }
}
.volunteerFAQ-wrapper .FAQ-box .FAQ-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: var(--blue-500);
  display: inline-block;
}
@media (max-width: 990px) {
  .volunteerFAQ-wrapper .FAQ-box .FAQ-item {
    padding: 30px;
    gap: 30px;
  }
  .volunteerFAQ-wrapper .FAQ-box .FAQ-item p,
  .volunteerFAQ-wrapper .FAQ-box .FAQ-item ul {
    margin-left: 0px;
  }
}

.volunteerInfo-wrapper {
  margin-bottom: 46px;
}

.volunteerInfo-card {
  width: 100%;
  border-radius: 13.5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.volunteerInfo-card a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: white;
  gap: 16px;
  padding-bottom: 26px;
}
.volunteerInfo-card a .img-box {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
}
.volunteerInfo-card a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.volunteerInfo-card a p.date {
  padding: 0px 13px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  font-weight: 500;
  font-size: 20px;
}
.volunteerInfo-card a p.date span.gradient-line {
  display: inline-block;
  width: 4px;
  background-image: linear-gradient(180deg, #00D0DD, #005BAC);
}
.volunteerInfo-card a p.date span {
  color: var(--blue-500);
}
@media (max-width: 768px) {
  .volunteerInfo-card a p.date {
    font-size: 16px;
  }
}
.volunteerInfo-card a p.caption {
  padding: 0px 26px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  text-align: start;
  word-break: break-all;
  color: black;
}
@media (max-width: 768px) {
  .volunteerInfo-card a p.caption {
    font-size: 18px;
  }
}
.volunteerInfo-card a:hover .img-box img {
  filter: brightness(0.5);
}
.volunteerInfo-card a:hover p.caption {
  color: var(--blue-500);
}

.card-wrapper {
  margin-bottom: 33px !important;
}
@media (max-width: 768px) {
  .card-wrapper {
    font-size: 24px !important;
  }
}

.volunteerInfoDetail-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 14px;
  padding: 40px 45px;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper {
    padding: 20px 20px 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    gap: 0;
  }
}
.volunteerInfoDetail-wrapper h3.news-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper h3.news-title {
    font-size: 20px;
    font-weight: 600;
  }
}
.volunteerInfoDetail-wrapper span.date {
  color: #7A7F84;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper span.date {
    margin-bottom: 30px;
  }
}
.volunteerInfoDetail-wrapper .htmlBox .img-box {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.volunteerInfoDetail-wrapper .htmlBox .img-box .img-item {
  width: 50%;
  max-width: 50%;
  flex: 1;
  aspect-ratio: 1.52/1;
  border-radius: 9px;
  overflow: hidden;
  gap: 36px;
}
.volunteerInfoDetail-wrapper .htmlBox .img-box .img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .volunteerInfoDetail-wrapper .htmlBox .img-box {
    flex-direction: column;
    gap: 20px;
  }
  .volunteerInfoDetail-wrapper .htmlBox .img-box .img-item {
    width: 100%;
    max-width: 100%;
  }
}
.volunteerInfoDetail-wrapper .htmlBox img {
  max-width: 100%;
}
.volunteerInfoDetail-wrapper a.blue {
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
}
.volunteerInfoDetail-wrapper a.blue img {
  width: 12px;
  transform: scale(0.9);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper a.blue img {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper a.blue {
    gap: 3px;
  }
}
.volunteerInfoDetail-wrapper a.blue.sm {
  font-size: 18px;
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper a.blue.sm {
    font-size: 16px;
  }
}
.volunteerInfoDetail-wrapper a.blue.start {
  align-self: flex-start;
}
.volunteerInfoDetail-wrapper a.blue.big {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper a.blue.big {
    font-size: 16px;
  }
}
.volunteerInfoDetail-wrapper a.blue.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.volunteerInfoDetail-wrapper .btn-box {
  border-top: 1px solid #7A7F84;
  margin-top: 44px;
  padding: 44px 0 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .volunteerInfoDetail-wrapper .btn-box {
    margin-top: 30px;
    padding: 30px 0 0;
  }
}

.donation-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: calc(120px - 1vw) 0 180px;
}
.donation-wrapper .card {
  width: 48%;
  padding: 68px 64px;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  position: relative;
  z-index: 2;
}
.donation-wrapper .card h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
  margin-bottom: 30px;
}
@media (max-width: 990px) {
  .donation-wrapper .card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.donation-wrapper .card .desc {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
.donation-wrapper .card .desc .gradient-line {
  width: 6px;
  background-image: linear-gradient(180deg, #00D0DD, #005BAC);
}
.donation-wrapper .card .desc ul {
  flex: 1;
  list-style: none;
}
.donation-wrapper .card .desc ul li {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 400px;
  display: flex;
  align-items: flex-start;
  word-break: break-all;
}
@media (max-width: 990px) {
  .donation-wrapper .card .desc ul li {
    font-size: 16px;
  }
}
.donation-wrapper .card .inner-img-box {
  margin-top: 36px;
  width: 100%;
  aspect-ratio: 2.22/1;
  background-color: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  overflow: hidden;
  display: none;
}
.donation-wrapper .card .inner-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .donation-wrapper .card .inner-img-box {
    display: block;
  }
}
@media (max-width: 990px) {
  .donation-wrapper .card {
    padding: 24px 20px 30px;
  }
}
.donation-wrapper .img-box {
  position: absolute;
  width: 70%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/0.5;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  overflow: hidden;
}
.donation-wrapper .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% center;
     object-position: 10% center;
}
@media (max-width: 1200px) {
  .donation-wrapper {
    margin: 20px 0 180px;
  }
}
@media (max-width: 990px) {
  .donation-wrapper {
    margin: 0 0 60px;
  }
  .donation-wrapper .card {
    width: 100%;
  }
  .donation-wrapper .img-box {
    display: none;
  }
}/*# sourceMappingURL=foundation.css.map */