/* 主視覺 */
#key-version img {
  width: 100%;
  object-fit: contain;
  transform: translateY(-62px);
}

#target .row {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 3rem;
}

#target .col {
  position: relative;
  width: 45%;
}

#target .col::before,
#target .col::after {
  content: '';
  position: absolute;
  border-radius: 3rem;
}

#target .col:first-child::before {
  width: 100px;
  height: 20px;
  background: var(--blue-1);
  right: -1rem;
  bottom: 1rem;
}

#target .col:last-child::before {
  width: 150px;
  height: 30px;
  background: var(--blue-1);
  right: -8rem;
  top: 1rem;
}

#target .col:first-child::after {
  width: 150px;
  height: 20px;
  border: 1px solid var(--blue-5);
  right: .5rem;
  bottom: -1.5rem;
}

#target .col:last-child::after {
  border: 1px solid var(--blue-5);
  width: 250px;
  height: 30px;
  right: -18rem;
  top: -2rem;
}

#target img {
  width: 100%;
}

/* 平臺目標 rwd ----------------------------------- */
@media screen and (max-width: 375px) {
  #target {
    overflow-x: hidden;
  }
  #target .row {
    flex-wrap: wrap;
  }
  #target .col {
    width: 100%;
  }
}

#feature {
  background: 
  linear-gradient(
    90deg,
    var(--blue-1) 45%,
    var(--light) 45%,
    var(--light) 90%,
    var(--blue-1) 90%,
    var(--blue-1) 100%
  );
  padding: 2rem 0;
  margin-bottom: 2rem;
}

#feature .row {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

#feature .col {
  flex-basis: 45%;
}

#feature img {
  width: 100%;
}

#feature a.more {
  right: -300px;
}

/* 平臺特色 feature rwd ----------------------- */
@media screen and (max-width: 375px) {
  #feature {
    background: 
    linear-gradient(
      0deg,
      var(--blue-1) 45%,
      var(--light) 45%,
      var(--light) 90%,
      var(--blue-1) 90%,
      var(--blue-1) 100%
    );
  }
  #feature .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #feature .col {
    flex-basis: 100%;
  }
  #feature a.more {
    right: -180px;
  }
}

#result {
  margin-bottom: 100px;
}

#result h1 {
  font-size: 2.5rem;
}

#result .row {
/*  display: flex;*/
  /* justify-content: space-between; */
  margin: 2rem;
  padding: 1.5rem 2rem;
/*  gap: 2rem;*/
  border-radius: .8rem;
  background: var(--light);
  filter: drop-shadow(2px 3px 3px #8e8e8e84);
}
#result figure .image {
  text-align: center;
}


/*#result .row:nth-of-type(even) {
  flex-direction: row-reverse;
}

#result .row:nth-of-type(even) {
  border-top-left-radius: .8rem;
  border-bottom-left-radius: .8rem;
}*/

#result img {
  width: 100%;
  text-align: center;
  vertical-align: middle;
  object-fit: cover;
}



#result a.more {
  top: 1rem;
}

#video iframe {
  width: 100%;
  height: 700px;
  vertical-align: middle;
}

/* 平臺成果 result & video rwd -------------------------------*/
@media screen and (max-width: 768px) {
  #video iframe {
    height: 425px;
  } 
}

@media screen and (max-width: 375px) {
  #result .row {
    flex-wrap: wrap;
    gap: 0;
    border-bottom-left-radius: .8rem;
  }
  #result .col {
    flex-basis: 100%;
  }
  #video iframe {
    height: 255px;
  } 

  #result img  {
    width: 100%;
  }
}