@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
.main {
  margin-top: 60px;
}

.inner {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}

.choice {
  min-height: calc(100vh - 217px);
  display: flex;
  align-items: center;
}
.choice-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.choice-list {
  margin: 30px;
  position: relative;
}
.choice-list:hover .choice-pic {
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.choice-list:hover .choice-pic img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.choice-list:hover .choice-pic:before {
  background-color: transparent;
}
.choice-list:hover .choice-name:before {
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.choice-list:hover .choice-name .en {
  color: #fff;
}
.choice-list:hover .choice-name .tw {
  letter-spacing: 0.5em;
}
.choice-pic {
  width: 100%;
  position: relative;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  overflow: hidden;
}
.choice-pic:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  z-index: 1;
}
.choice-pic img {
  width: 100%;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.choice-name {
  position: absolute;
  bottom: -90px;
  left: 50%;
  text-align: center;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.choice-name:before {
  content: "";
  height: 50px;
  width: 1px;
  background-color: #fff;
  display: block;
  margin: 0 auto 15px;
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.choice-name .en {
  font-size: 20px;
  -moz-transition: color 0.5s;
  -o-transition: color 0.5s;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.choice-name .tw {
  color: #e2a688;
  letter-spacing: 0.3em;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1100px) {
  .choice-list {
    margin-bottom: 150px;
    margin-top: 50px;
  }
  .choice-list:hover .choice-name .en {
    color: #e2a688;
  }
  .choice-pic:before {
    background-color: transparent;
  }
  .choice-name:before {
    background-color: #ddd;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .choice-name .en {
    color: #e2a688;
  }
  .choice-name .tw {
    color: #666;
  }
}
@media screen and (max-width: 860px) {
  .choice-box {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .inner {
    width: 90%;
  }
}
@media screen and (max-width: 460px) {
  .choice-list {
    margin: 50px 0 150px;
  }
  .choice-name .en {
    font-size: 18px;
  }
}
