.banner-box {
  background-color: #F8F8F8;
}

.phase2-box {
  background-color: #F8F8F8;
}

.phase2-box .left {
  position: relative;
  width: 50%;
  flex-shrink: 0;
}

.phase2-box .left .left-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 176px;
  background-image: url(../images/phase2_02.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 9;
}

.phase2-box .left-inner .data-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px;
}

.data-list .data {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data .data-number {
  font-size: 34px;

  font-weight: bold;
  color: #B7C3A2;
  line-height: 1;
}

.data .data-number .company {
  font-size: 18px;
}

.data .data-title {
  margin-top: 20px;
  font-size: 16px;

  font-weight: 300;
  color: #FFFEFE;
  line-height: 1;
}

.phase2-box .right {
  position: relative;
  padding-top: 60px;
  padding-left: 50px;
  padding-right: 6.25%;
}

.phase2-box .right .title {
  font-size: clamp(18px,1.45vw,28px);
  font-weight: 600;
  color: #090C10;
  line-height: 1.5;
}

.phase2-box .right .subtitle {
  font-size: 24px;
}

.phase2-box .right .desc {
  margin-top: 40px;
}

.phase2-box .right .desc>p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}

.phase2-box .right::after {}

.phase2-box .right-data {
  display: flex;
  width: 100%;
	padding: 20px 0;
}

.right-data .data {
  position: relative;
  flex: 1;
}

.right-data .data::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background-color: #E0E0E0;
}

.right-data .data:last-child::after {
  display: none;
}

.right-data .data .data-n {
  font-size: 34px;
  font-weight: bold;
  color: #0D683F;
  line-height: 1;
}
.data .data-n .unit {
  font-size: 18px;
}

.data .data-t {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #090C10;
  line-height: 1.5;
	padding-right: 30px;
}
.right-data .data:last-child .data-t{
	padding-right: 0;
}


.map {
  position: relative;
  width: 100%;
  height: 750px;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.map-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
}

@media (max-width: 480px) {
  .map-image {
    padding-top: 50px;
    padding-bottom: 0px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.map-image img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.map .title {
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  color: #1D5747;
  line-height: 1;
}

.map .container {
  height: 100%;
}

.map-inner {
  position: relative;
  height: 100%;
}

.right-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  width: 25px;
  height: 25px;
  background-color: #0D683F;
}

.right-block::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  width: 25px;
  height: 25px;
  background-color: #EBB687;
}

.left-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #8DD6B3;
}

.supporting {
  position: relative;
  padding-top: 108px;
  padding-bottom: 120px;
  background-color: #F2F3F8;
  margin-bottom: -64px;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  overflow: hidden;
  z-index: 99;
}

.supporting .title {
  font-size: 32px;
  font-weight: 600;
  color: #1D5747;
  line-height: 1;
	margin-bottom: 50px;
}

.supporting-inner {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: repeat(2, 380px);
  gap: 10px;
}

.image-wrap {
  position: relative;
  overflow: hidden;
}

.image-wrap::after {
  /* content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8)); */
}

.left .image-wrap {
  height: 100%;
}

.image-wrap>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s linear;
}

.image-wrap>span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 18px;

  font-weight: 400;
  color: #FFFFFF;
  z-index: 1;
  transition: all .3s linear;
}

.supporting-inner .image-wrap:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.supporting-inner .image-wrap:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.supporting-inner .image-wrap:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.supporting-inner .image-wrap:nth-child(4) {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.supporting-inner .image-wrap:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
}

.supporting-inner .image-wrap:nth-child(6) {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.image-wrap:hover>img {
  transform: scale(1.05);
}

.image-wrap:hover>span {
  bottom: 15px;
}

.bbg {
  padding-top: 164px;
}




@media (max-width: 1800px) {

  .phase2-box .right {
    padding-bottom: 50px;
  }

  .phase2-box .right .desc {
    margin-top: 30px;
  }

  .phase2-box .right .desc>p {
    font-size: 16px;
    margin: 0;
  }
}

@media (max-width: 1600px) {
  .phase2-box .right {
    padding-bottom: 50px;
  }

  .phase2-box .left .data .data-number {
    font-size: 30px;
  }

  .phase2-box .left .left-inner {
    height: 120px;
  }

  .phase2-box .right {
    padding-top: 50px;
  }

  .phase2-box .right .subtitle {
    font-size: 18px;
  }

  .phase2-box .right .desc {
    margin-top: 20px;
  }

  .phase2-box .right .desc>p {
    font-size: 14px;
  }

  .phase2-box .right::after {
    font-size: 80px;
  }

  .supporting-inner {
    grid-template-columns: 300px auto auto 300px;
    grid-template-rows: repeat(2, 250px);
  }

  .right-data .data .data-n {
    font-size: 28px;
  }

  .right-data .data .data-t {}

  .right-data .data::after {
    height: 32px;
  }

}

@media (max-width: 1400px) {
  .phase2-box .left .data .data-number {
    font-size: 24px;
  }

  .phase2-box .left .data-title {
    font-size: 12px;
  }

  .phase2-box .right .subtitle {
    font-size: 16px;
  }

  .phase2-box .right .desc>p {
    margin-bottom: 50px;
  }

  .phase2-box .right::after {
    font-size: 70px;
  }

  .supporting-inner {
    grid-template-columns: 260px auto auto 260px;
    grid-template-rows: repeat(2, 250px);
  }

  .map {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .supporting {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .right-data .data .data-n {
    font-size: 24px;
  }

  .right-data .data .data-t {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .phase2-box .right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .right .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 992px) {

  .phase2-box .left .left-inner {
    height: 80px;
  }

  .phase2-box .left .data .data-number {
    font-size: 18px;
  }

  .phase2-box .left .data .data-title {
    margin-top: 10px;
  }

  .phase2-box .right {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .phase2-box .right .subtitle {
    font-size: 12px;
  }

  .phase2-box .right .desc>p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .phase2-box .right::after {
    bottom: 15px;
    font-size: 50px;
  }

  .map {
    height: 500px;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .map .title {
    font-size: 30px;
  }

  .supporting {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .supporting .title {
    font-size: 30px;
  }

  .supporting-inner {
    margin-top: 40px;
    grid-template-columns: 250px auto auto 250px;
    grid-template-rows: repeat(2, 200px);
    gap: 4px;
  }

  .image-wrap>span {
    font-size: 14px;
  }

  .right-data {
    padding-bottom: 16px;
  }

  .right-data .data .data-n {
    font-size: 16px;
  }

  .right-data .data .data-t {
    margin-top: 4px;
    font-size: 12px;
    white-space: nowrap;
  }

  .right-data .data::after {
    display: none;
  }

  .right-data .data {
    flex-shrink: 0;
  }

  .left .image-wrap {
    height: 100%;
  }

  .left .image-wrap img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {

  .phase2-box .left .data {
    width: 33%;
  }

  .phase2-box.flex-box {
    flex-direction: column;
  }

  .phase2-box .left,
  .phase2-box .right {
    width: 100%;
  }

  .phase2-box .left .data-list {
    padding: 0;
  }

  .phase2-box .right {
    padding-bottom: 0;
  }

  .phase2-box .right .desc>p {
    margin-bottom: 20px;
  }

  .phase2-box .right::after {
    font-size: 40px;
    right: 0;
  }

  .right-data {
    /* flex-direction: column; */
    flex-wrap: wrap;
  }

  .right-data .data {
    width: 50%;
    margin-bottom: 15px;
  }

  .map {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .map .title {
    font-size: 14px;
    text-align: center;
  }

  .map .map-image {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 15px;
  }

  .map .map-image img {
    width: 100%;
    height: auto;
  }

  .map .map-inner {
    display: none;
  }

  .supporting {
    padding-top: 15px;
    padding-bottom: 40px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .supporting .title {
    font-size: 14px;
    text-align: center;
  }

  .supporting-inner {
    padding-left: 4px;
    padding-right: 4px;
    margin-top: 15px;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: 160px auto auto auto;
    gap: 2px;
  }

  .supporting-inner .image-wrap>span {
    font-size: 12px;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }


  .bbg {
    padding-top: 100px;
  }

  /* .supporting-inner .image-wrap:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .supporting-inner .image-wrap:nth-child(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
  }

  .supporting-inner .image-wrap:nth-child(3) {
    grid-column: 4;
    grid-row: 1 / span 2;
  }

  .supporting-inner .image-wrap:nth-child(4) {
    grid-column: 1 /span 4;
    grid-row: 3;
  }

  .supporting-inner .image-wrap:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
  }

  .supporting-inner .image-wrap:nth-child(6) {
    grid-column: 2 / span 2;
    grid-row: 2;
  } */

}

.sup-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-s {
  position: absolute;
  bottom: 63%;
  left: 54%;
  width: 2%;
}

.sup-s::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(60%);
  width: 44px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .3);
}

.sup-s::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(60%);
  width: 22px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  animation: zo-out 1.5s infinite;
  animation-delay: 1.5s;
}


.sup-s-cir {
  position: absolute;
  bottom: 0;
  left: 52%;
  transform: translateX(-50%) translateY(60%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e63131;
  z-index: 9;
}

.sup-s>img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  animation: zo-up 1.5s infinite;
}

@media (max-width: 992px) {
  .sup-s {
    width: 4%;
  }
}

@keyframes zo-up {
  0% {
    transform: translateY(-5%);
  }

  50% {
    transform: translateY(-20%);
  }

  100% {
    transform: translateY(-5%);
  }
}

@keyframes zo-out {
  0% {
    width: 22px;
    height: 9px;
    background-color: rgba(0, 0, 0, .5);
  }

  50% {
    width: 44px;
    height: 18px;
    background-color: rgba(0, 0, 0, .3);
  }

  100% {
    width: 22px;
    height: 9px;
    background-color: rgba(0, 0, 0, .5);
  }
}