@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Noto+Sans+TC:wght@300;400;700&display=swap");
@keyframes light {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(6);
  }
}
@keyframes floatS {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes float {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes floatShadow {
  0% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
}

a {
  color: inherit;
}

.g_header {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(170deg, #0d0e20, #003DA5);
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
}
.g_header .header_logo {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 100px;
  transform: translateY(-50%);
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #000;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #000;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .menu_btn.sty_white {
  border-color: #fff;
}
.g_header .menu_btn.sty_white .icon, .g_header .menu_btn.sty_white .icon::before, .g_header .menu_btn.sty_white .icon::after {
  background-color: #fff;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: flex;
  justify-content: center;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #ffff01;
  text-decoration: none;
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}
.sc_title .tit {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding: 0 1em 0.33em;
  font-size: 2rem;
  font-weight: 400;
  color: #38d4f6;
  position: relative;
}
.sc_title .tit::before, .sc_title .tit::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
}
.sc_title .tit::before {
  left: 0;
  top: calc(100% + 1px);
  padding: 0.33em;
  border-width: 0 0 0 1px;
}
.sc_title .tit::after {
  right: 0;
  bottom: 0;
  padding: 0.33em;
  border-width: 1px 1px 0 0;
}

.main_content {
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}

.sc_intro {
  padding: 3rem 0;
}
.sc_intro .intro_wrap {
  font-size: 1.25rem;
}
.sc_intro .p1 {
  color: #003DA5;
}
.sc_intro .p2 {
  color: #002864;
  font-weight: 700;
}
.sc_intro .h4 {
  font-size: 2rem;
  color: #003DA5;
  margin-bottom: 2rem;
}
.sc_intro p:last-child {
  margin-bottom: 0;
}

.cta {
  margin-top: 2rem;
  font-size: 0;
  text-align: center;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  border-radius: 2rem;
  background-color: #002a72;
}
.cta .bttn div {
  position: relative;
  z-index: 2;
  bottom: 6px;
  border-radius: 2rem;
  background-color: #003DA5;
  padding: 0.75em 2.5em;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #fff;
  transition: bottom 300ms;
}
.cta .bttn:hover {
  text-decoration: none;
}
.cta .bttn:hover div {
  bottom: 0;
}

.sc_agenda {
  padding: 4rem 0;
  background-color: #fafafb;
}

.ag_table {
  border-radius: 6px;
  border: 1px solid #003DA5;
  border-width: 10px 1px;
  background-color: #fff;
}
.ag_table .tr {
  display: flex;
  align-items: center;
  background-color: rgba(0, 61, 165, 0.05);
}
.ag_table .tr .td {
  padding: 1rem 1.5rem;
  line-height: 1;
}
.ag_table .tr .time {
  flex: 0 0 auto;
}
.ag_table .tr .title {
  flex: 1 0 45%;
  line-height: 1.33;
  font-size: 1.25rem;
  color: #0d0e20;
}
.ag_table .tr .speaker {
  flex: 0 0 35%;
}
.ag_table .tr .sp_name {
  font-size: 1.125em;
  font-weight: 700;
  color: #002864;
}
.ag_table .tr .sp_tit {
  margin: 0.5rem 0;
}
.ag_table .tr .sp_com {
  color: #003DA5;
}
.ag_table .tr.soft_bg {
  background-color: rgba(0, 61, 165, 0.1);
}
.ag_table .tr.tr_spec {
  position: relative;
  display: block;
  background-color: #fff;
}
.ag_table .tr.tr_spec .td {
  padding: 0.75rem 1.5rem;
  color: #aaa;
}
.ag_table .tr.tr_spec .title {
  text-align: center;
}
.ag_table .tr.tr_spec .time {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sc_speaker {
  padding-top: 3rem;
}
.sc_speaker .item {
  cursor: pointer;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}
.sc_speaker .item:hover .img img {
  transform: scale(1.08);
}
.sc_speaker .item .img {
  margin: 0 auto;
  max-width: 220px;
  border-radius: 50%;
  overflow: hidden;
}
.sc_speaker .item .img img {
  transition: transform 200ms;
}
.sc_speaker .item .name {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #003DA5;
}
.sc_speaker .item .tit {
  padding: 0.5em 0;
  height: 3.6em;
}

.sc_gift {
  padding: 3rem 0;
}

.cnt_tit {
  display: inline-block;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.25em;
  background-color: #002864;
  font-size: 1.25em;
  font-weight: 300;
  color: #ffff01;
}

.cnt_tip {
  margin-bottom: 0.5rem;
}

.gift_cnt .item {
  position: relative;
  padding-top: 1rem;
}
.gift_cnt .item.soft_bg {
  background-color: rgba(0, 61, 165, 0.05);
}
.gift_cnt .item .att {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: #38d4f6;
  color: #fff;
  line-height: 1;
}
.gift_cnt .item .img {
  overflow: hidden;
}
.gift_cnt .item .img img {
  padding: 25px;
}
.gift_cnt .item .txt {
  position: relative;
  line-height: 1;
  padding: 1em;
  padding-bottom: calc(1em + 25px);
  text-align: center;
}
.gift_cnt .item .val {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1;
  color: #003DA5;
}
.gift_cnt .item .tip {
  border-radius: 4px;
  display: inline-block;
  padding: 0.25em;
  border: 1px solid currentColor;
  font-size: 1rem;
  margin-top: 0.25rem;
  font-weight: 300;
  color: #38d4f6;
}
.gift_cnt .item .active {
  margin-top: 0.5rem;
  line-height: 1.6;
  width: 100%;
}
.gift_cnt .item.qa_item {
  background-color: rgba(0, 61, 165, 0.9);
}
.gift_cnt .item.qa_item .val {
  color: #fff;
}

.sc_location {
  background-color: #003DA5;
}
.sc_location .sc_title .tit {
  color: rgba(255, 255, 255, 0.8);
}
.sc_location .infomaion {
  padding: 2rem 2rem 2rem 0;
  flex: 0 1 40%;
  font-size: 1.125rem;
  color: #fff;
}
.sc_location .date,
.sc_location .loca {
  line-height: 1.1;
}
.sc_location .date {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}
.sc_location .loca {
  margin-bottom: 1.25rem;
}
.sc_location .loca .zh {
  font-size: 2rem;
  font-weight: 700;
}
.sc_location .loca .en {
  font-size: 1.5rem;
  padding-top: 0.25rem;
  color: #ffff01;
}
.sc_location .addr {
  font-weight: 100;
}
.sc_location .map {
  flex: 1 0 60%;
}
.sc_location .map_wrap {
  position: relative;
  height: 100%;
  min-height: 24vw;
}
.sc_location .map_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #fafafa;
}
.sc_detail ol {
  padding-left: 1.25em;
}
.sc_detail li a {
  text-decoration: underline;
  color: #002864;
}
.sc_detail li a:hover {
  color: #fe8eec;
}

.sc_footer {
  overflow: hidden;
}
.sc_footer .logo {
  padding: 30px 0;
  margin: 0 auto;
  width: 210px;
}

.modal-dialog {
  max-width: 36rem;
}

.modal-content {
  border-width: 0;
}

.modal-header {
  border-bottom-width: 0;
}
.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.modal-body {
  margin: 0.25em 0;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .sc_location .sc_title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .g_header.is_active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .g_header .nav_cnt {
    position: absolute;
    left: -0.5rem;
    top: 100%;
    width: calc(100% + 1rem);
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(-170deg, #003DA5, #0d0e20);
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }

  .sc_title .tit {
    margin-left: -1rem;
    padding: 1rem;
  }
  .sc_title .tit .zh {
    font-size: 2rem;
  }

  .ag_table {
    margin: 0 -5px;
    border-radius: 0;
  }
  .ag_table .tr {
    display: block;
    padding: 0.75rem 1.5rem;
  }
  .ag_table .tr .td {
    padding: 0.25rem 0rem;
    line-height: 1;
  }
  .ag_table .tr .time {
    color: #2eafcb;
  }
  .ag_table .tr.tr_spec {
    position: relative;
    display: block;
    background-color: #fff;
  }
  .ag_table .tr.tr_spec .td {
    padding: 0.25rem 0;
    color: #aaa;
  }
  .ag_table .tr.tr_spec .title {
    text-align: left;
  }
  .ag_table .tr.tr_spec .time {
    position: static;
    top: 0;
    transform: translateY(0);
  }

  .gift_cnt {
    display: block;
  }
  .gift_cnt .item .txt {
    padding-top: 0;
  }

  .sc_location {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .sc_location .infomaion {
    padding: 0;
    padding-bottom: 1rem;
  }
  .sc_location .loca {
    margin-bottom: 0.5rem;
  }
  .sc_location .addr {
    font-weight: 100;
  }
  .sc_location .map {
    flex: 1 0 60%;
  }
  .sc_location .map_wrap {
    position: relative;
    height: 100%;
    padding-top: 75%;
  }
  .sc_location .map_wrap iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}