@charset "UTF-8";
html {
  font-size: 16px;
}

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

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  transition: transform 240ms, box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: #27a5df linear-gradient(120deg, #df6555 2%, #0d3f8d 30%, #27a5df 70%, #fff251 98%);
  color: #fff;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.sc_title {
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 2em;
  text-align: center;
}
.sc_title .tit {
  position: relative;
  display: inline-block;
  border-radius: 2rem;
  padding: 0.5rem 2rem 0.6rem;
  background-color: #000;
  font-size: 1.5rem;
  color: #fff;
}

.g_header {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 10%), linear-gradient(120deg, #df6555 2%, #0d3f8d 30%, #27a5df 70%, #fff251 98%);
}
.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 #fff;
}
.g_header .menu_btn .icon {
  display: inline-block;
  position: absolute;
  left: 20%;
  top: 50%;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.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;
  font-weight: normal;
}
.g_header .nav_link {
  color: #fff;
}
.g_header .nav_link:hover {
  color: #fbab2c;
  text-decoration: none;
}
.g_header .dropdown_link {
  display: block;
  padding: 0.75rem 1rem;
}
.g_header .dropdown_link:hover {
  text-decoration: none;
  background-color: #f6f6f6;
}

@keyframes scalee {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.03);
    opacity: 0.67;
  }
}
.g_kv {
  position: relative;
}
.g_kv .desktop {
  position: relative;
}
.g_kv .desktop .img {
  overflow: hidden;
}
.g_kv .desktop .img img {
  animation: scalee 5s linear 0s infinite alternate both;
}
.g_kv .kv_logo,
.g_kv .kv_tit {
  position: absolute;
  left: 5%;
}
.g_kv .kv_logo {
  top: 9%;
  width: 36.9791666667%;
}
.g_kv .kv_tit {
  top: 32%;
  display: flex;
  flex-wrap: wrap;
  width: 72.9166666667%;
}
.g_kv .kv_tit .ti1 {
  flex: 0 0 50%;
  padding-right: 40px;
}
.g_kv .kv_tit .ti1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(50%);
  background-color: #333;
}
.g_kv .kv_tit .ti2 {
  flex: 0 0 50%;
  padding-left: 40px;
}
.g_kv .kv_tit .tip_box {
  flex: 1 0 100%;
}
.g_kv .tip_box span {
  display: inline-block;
  margin-top: 30px;
  border-radius: 10px;
  padding: 0.5rem 2rem 0.65rem;
  background: linear-gradient(120deg, #27a5df, #0d3f8d);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
.g_kv .link_box {
  position: absolute;
  left: calc(50% - 6em);
  top: 65%;
}
.g_kv .link_box a {
  display: block;
  border-radius: 10px;
  border: 3px solid #fff;
  padding: 0.67rem 0 0.8rem;
  width: 12em;
  background: linear-gradient(120deg, #27a5df, #0d3f8d);
  box-shadow: 0 0 20px 2px rgba(39, 165, 223, 0.8);
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  color: #fff;
  text-align: center;
  transition: transform 300ms;
}
.g_kv .link_box a:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.g_main {
  position: relative;
  z-index: 2;
}

.sc_intro {
  padding: 3rem 0;
  background-color: #222;
  background: linear-gradient(0deg, #27a5df, #0d3f8d);
}
.sc_intro .intro_cnt {
  flex-wrap: wrap;
  justify-content: space-between;
}
.sc_intro .intro_wrap {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6);
}
.sc_intro .intro_wrap p {
  max-width: calc(800px + 2rem);
  margin: 0 auto 0.75em;
  font-size: 1.25rem;
}
.sc_intro .intro_wrap p strong {
  color: #0d3f8d;
}
.sc_intro .intro_wrap p:last-child {
  margin-bottom: 0;
}
.sc_intro .intro_wrap .icon_line {
  padding: 1rem 0;
}
.sc_intro .intro_wrap .icon_line .img,
.sc_intro .intro_wrap .icon_line span {
  display: inline-block;
  vertical-align: middle;
}
.sc_intro .intro_wrap .icon_line .img {
  border-radius: 20px;
  padding: 15px;
  background-color: #fff251;
  line-height: 0;
}
.sc_intro .intro_wrap .icon_line img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sc_intro .intro_wrap .icon_line span {
  padding: 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff251;
}
.sc_intro .ag_intro {
  flex: 0 0 49%;
  border-radius: 10px;
  padding: 1.5rem;
  background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  display: inline-flex;
  justify-content: center;
}
.sc_intro .ag_intro .ag_intro_inwrap {
  flex: 0 1 auto;
}
.sc_intro .ag_intro .tit {
  font-size: 2rem;
  line-height: 1;
}
.sc_intro .ag_intro .tit strong {
  color: #0d3f8d;
  color: #57ffff;
  display: inline-block;
  vertical-align: middle;
}
.sc_intro .ag_intro .tit span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: #27a5df;
  color: #fff;
}
.sc_intro .ag_intro .in {
  margin-top: 1rem;
  color: #000;
  color: #57ffff;
}
.sc_intro .ag_intro .bestfor {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.sc_intro .ag_intro .bestfor .for {
  display: inline-block;
  border-radius: 2rem;
  margin: 2px 0;
  padding: 0.25rem 1rem;
  font-size: 1.125rem;
  background-color: #fff251;
}
.sc_intro .ag_intro .list ul {
  padding-left: 2rem;
  list-style: none;
  margin-bottom: 0;
}
.sc_intro .ag_intro .list li {
  color: #0d3f8d;
  color: #fff;
  position: relative;
  padding: 0.25rem 0;
  font-size: 1.125rem;
  line-height: 1.3;
}
.sc_intro .ag_intro .list li::before {
  content: "";
  position: absolute;
  right: calc(100% + .7rem);
  top: calc(50% - .2rem);
  width: 0.6rem;
  height: 0.6rem;
  background-image: linear-gradient(135deg, #0d3f8d 50% 33%, #fff251 50% 66%);
}
.sc_intro .ag_intro .list li:last-child {
  border-bottom-width: 0;
}

.sc_agenda {
  padding: 3rem 0 0;
  background: linear-gradient(0deg, #fff251, rgba(255, 242, 81, 0) 20%);
}
.sc_agenda .ag_bonus {
  margin-top: 2rem;
  padding-bottom: 4rem;
}
.sc_agenda .ag_tip {
  margin-top: 1rem;
  font-size: 16px;
  text-align: center;
  color: #0d3f8d;
}
.sc_agenda .ag_tip div span {
  display: inline-block;
  padding: 0.5rem 1rem;
}
.sc_agenda .ag_tip div:last-child {
  margin-top: -0.5rem;
}
.sc_agenda .cta {
  display: flex;
  justify-content: center;
}
.sc_agenda .cta .btn_wrap {
  flex: 0 0 50%;
  max-width: 480px;
}
.sc_agenda .cta .btn_wrap:nth-child(1) .bttn {
  background: linear-gradient(120deg, #0d3f8d 33%, #27a5df 95%) left center/200% 100% no-repeat;
}
.sc_agenda .cta .btn_wrap:nth-child(2) .bttn {
  background: linear-gradient(120deg, #27a5df 33%, #0d3f8d 95%) left center/200% 100% no-repeat;
}
.sc_agenda .cta .btn_wrap:nth-child(2) .bttn:hover {
  background-size: 100% 100%;
  text-decoration: none;
}
.sc_agenda .cta .btn_wrap .btn_tip {
  padding: 0 2.5rem;
  font-size: 1rem;
  line-height: 1.2;
  display: flex;
}
.sc_agenda .cta .bttn {
  margin: 0 1rem;
  border-radius: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  overflow: hidden;
  transition: background 300ms;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
}
.sc_agenda .cta .bttn .t {
  flex: 0 1 100%;
  padding-right: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}
.sc_agenda .cta .bttn .t span {
  padding-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.sc_agenda .cta .bttn .t strong {
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 0.3rem 0.5rem 0.38rem;
  font-weight: 400;
  line-height: 1;
}
.sc_agenda .cta .bttn .t .tip {
  display: block;
  margin-top: 0.33rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff251;
}
.sc_agenda .cta .bttn .i {
  flex: 0 0 40px;
}

.agenda_cnt {
  display: flex;
  justify-content: center;
}

.ag_wrap {
  flex: 0 1 50%;
  padding: 0 1rem;
  max-width: 800px;
}

.ag_tit {
  padding: 1rem;
  line-height: 1;
  border-radius: 1rem;
  color: #fff;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-around;
  font-weight: 700;
}
.ag_tit.ag_1 {
  background: linear-gradient(90deg, #df6555, #0d3f8d);
}
.ag_tit.ag_2 {
  background: linear-gradient(90deg, #ffd11f, #27a5df);
}
.ag_tit .date,
.ag_tit .day,
.ag_tit .tit {
  font-size: 2rem;
  display: inline-block;
  vertical-align: baseline;
}
.ag_tit .day {
  margin-left: 0.5rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.ag_tit .tit {
  padding-left: 1rem;
}
.ag_tit .loc {
  font-size: 1.5rem;
  padding: 0.3rem 0.2rem 0.4rem;
  border: 1px solid currentColor;
  border-width: 1px 0;
}

.ag_table {
  margin: 0.5rem auto;
  max-width: 720px;
}
.ag_table .tr {
  display: flex;
  color: #000;
  padding: 0.5rem 0 0.75rem;
  border-bottom: 1px solid #27a5df;
}
.ag_table .tr:last-child {
  margin-bottom: 0;
  border-bottom-width: 0;
}
.ag_table .tr.tr_spec {
  background-color: transparent;
}
.ag_table .tr .td {
  padding: 0 1rem;
  line-height: 1;
}
.ag_table .tr .td_time {
  flex: 0 0 auto;
  color: #27a5df;
  line-height: 1.3;
}
.ag_table .tr .td_title {
  line-height: 1.33;
}
.ag_table .tr .td_title .tit {
  cursor: pointer;
}
.ag_table .tr .td_title .tit:hover {
  text-decoration: underline;
}
.ag_table .tr .td_title .tit_zh {
  font-size: 1.25rem;
  color: #0d3f8d;
  font-weight: 700;
}
.ag_table .tr .td_title .tit_en {
  color: rgba(13, 63, 141, 0.8);
}
.ag_table .tr .td_title .tit_infor {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.ag_table .tr .spk_unit {
  padding-top: 0.75rem;
  line-height: 1;
}
.ag_table .tr .spk_unit::before {
  content: "";
  display: block;
  width: 1.5rem;
  border-top: 4px dotted rgba(223, 101, 85, 0.5);
  padding-bottom: 0.25rem;
}
.ag_table .tr .sp_name {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #343434;
}
.ag_table .tr .sp_com {
  margin-top: 0.25rem;
  color: #27a5df;
  color: #676767;
}
.ag_table .tr_tit {
  margin-top: 1rem;
  padding: 0.5rem 0;
  background-color: #27a5df;
  color: #fff;
}
.ag_table .tr_tit .t {
  font-size: 1.33rem;
  text-align: center;
}

.sc_gift {
  padding: 3rem 0;
}

.gift_cnt .item .img {
  overflow: hidden;
}
.gift_cnt .item .img img {
  display: block;
  margin: 0 auto 1rem;
  max-width: 300px;
}
.gift_cnt .item .txt {
  line-height: 1;
  padding: 0.5em 2rem 2rem;
  text-align: center;
}
.gift_cnt .item .att {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}
.gift_cnt .item .att .t {
  flex: 0 0 auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  color: #0d3f8d;
}
.gift_cnt .item .att .l {
  margin-top: 3px;
  flex: 0 0 3rem;
  height: 1px;
  background-color: #27a5df;
}
.gift_cnt .item .name {
  margin-top: 0.5rem;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.2;
  color: #0d3f8d;
}
.gift_cnt .more {
  margin-top: 1rem;
  text-align: center;
}
.gift_cnt .more_inner {
  display: inline-block;
  border-radius: 3rem;
  padding: 1rem 2rem;
  background-color: #0d3f8d;
  font-size: 1.25rem;
  color: #fff251;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #fafafa;
}
.sc_detail ul {
  padding-left: 1.25em;
}
.sc_detail li {
  line-height: 1.3;
  padding: 0.33rem 0;
}

.sc_location {
  padding: 3rem 0;
}
.sc_location .info_wrap span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.sc_location .info_wrap .loca {
  font-size: 2.25rem;
  font-weight: 700;
  color: #27a5df;
  line-height: 1;
}
.sc_location .info_wrap .addr {
  border-radius: 4px;
  margin-top: 1.25rem;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: #27a5df;
}
.sc_location .info_wrap ul {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.sc_location .map_wrap {
  padding: 4px;
}
.sc_location .map_wrap .map {
  position: relative;
  padding-top: 40%;
  overflow: hidden;
}
.sc_location .map_wrap .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc_rewind {
  border-top: 1px solid #f1f2f3;
  padding: 40px 0;
  background: linear-gradient(0deg, #f6f7f8, rgba(246, 247, 248, 0.2));
}

.rew_cnt {
  padding-top: 20px;
  padding-bottom: 20px;
}
.rew_cnt .ag_tit {
  margin-bottom: 30px;
}
.rew_cnt .items_tit {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.rew_cnt .items_tit div {
  display: inline-block;
  border-bottom: 3px solid #27a5df;
}
.rew_cnt .items_tit span {
  color: #0d3f8d;
}
.rew_cnt .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rew_cnt .item {
  flex: 0 0 calc(50% - 10px);
  margin-bottom: 20px;
}
.rew_cnt .item .it_wrap {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.rew_cnt .item .it_wrap::before {
  content: "";
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  z-index: 2;
  width: 60px;
  height: 60px;
  background: url("img/ui/ic_play.svg") center/contain;
  opacity: 0;
  transition: opacity 300ms;
}
.rew_cnt .item .it_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(13, 63, 141, 0.2);
  opacity: 0;
  transition: opacity 300ms;
}
.rew_cnt .item .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat;
  transition: transform 300ms;
}
.rew_cnt .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 60px 20px 20px;
  line-height: 1.3;
  background: radial-gradient(farthest-side at 0 100%, rgba(13, 63, 141, 0.75), rgba(13, 63, 141, 0.75) 40%, rgba(13, 63, 141, 0));
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.rew_cnt .item .zh {
  font-size: 1.25rem;
}
.rew_cnt .item .en {
  margin-top: 6px;
  color: #fff251;
  font-weight: 400;
}
.rew_cnt .item:hover > a::before, .rew_cnt .item:hover > a::after {
  opacity: 1;
}
.rew_cnt .item:hover .pic {
  transform: scale(1.1);
}

.g_footer {
  padding: 2rem 0 4rem;
}
.g_footer .foo_logo {
  margin: 0 auto;
  max-width: 200px;
}

.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 (max-width: 767px) {
  .g_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(150deg, #0d3f8d 60%, #27a5df);
  }
  .g_header .nav_cnt {
    left: -0.5rem;
    top: 100%;
    width: calc(100% + 1rem);
    display: block;
    margin-top: 0.5rem;
  }
  .g_header .nav_item {
    padding: 1rem 2rem;
  }

  .g_kv {
    margin-top: 66px;
  }
  .page_rewind .g_kv {
    margin-top: 0;
  }
  .page_rewind .g_kv .tip_box {
    position: absolute;
    left: 9%;
    bottom: 30px;
  }

  .sc_intro {
    padding: 2rem 0;
    background: linear-gradient(0deg, #27a5df, #0d3f8d);
  }
  .sc_intro .intro_wrap {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
  }
  .sc_intro .intro_wrap p {
    font-size: 1rem;
  }
  .sc_intro .icon_line span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .sc_intro .ag_intro {
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .sc_intro .ag_intro .tit {
    font-size: 1.75rem;
  }
  .sc_intro .ag_intro .tit span {
    padding-right: 0;
  }
  .sc_intro .ag_intro .bestfor .in {
    display: block;
  }
  .sc_intro .ag_intro .bestfor .for {
    margin: 2px 0;
  }

  .sc_agenda {
    padding-bottom: 0;
  }
  .sc_agenda .sc_title {
    margin-bottom: 0;
  }
  .sc_agenda .sc_tip {
    margin: 0 -15px;
    padding: 10px 0;
    background-color: #000;
  }
  .sc_agenda .ag_bonus {
    margin-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sc_agenda .ag_bonus .cta {
    display: block;
  }
  .sc_agenda .ag_bonus .cta .bttn {
    max-width: 100%;
    margin: 10px 0;
    display: flex;
    padding: 1rem;
  }
  .agenda_cnt {
    display: block;
  }
  .agenda_cnt .ag_wrap {
    margin: 0 -15px;
    padding: 1rem;
  }
  .agenda_cnt .ag_tit {
    align-items: center;
  }
  .agenda_cnt .ag_tit .tit {
    display: block;
    padding-left: 0;
    margin-top: 0.25rem;
  }
  .agenda_cnt .ag_tit .right {
    flex: 0 0 1.5rem;
  }
  .agenda_cnt .ag_tit .right .loc {
    padding-left: 0;
    padding-right: 0;
  }

  .ag_table .tr {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
  .ag_table .tr .td {
    padding: 0 1rem;
  }
  .ag_table .tr .td_time {
    text-align: left;
  }
  .ag_table .tr .td_title {
    margin-top: 0.25rem;
    line-height: 1.2;
  }

  .gift_cnt {
    display: block;
  }
  .gift_cnt .item {
    padding: 15px 0;
  }
  .gift_cnt .item .img img {
    padding: 0 25px;
  }
  .gift_cnt .item .txt {
    padding-top: 0;
  }
  .gift_cnt .more_inner {
    font-size: 1rem;
    line-height: 1.3;
  }

  .sc_rewind {
    padding: 20px 0;
  }
  .sc_rewind .ag_tit .date,
.sc_rewind .ag_tit .tit {
    font-size: 1.5rem;
  }

  .rew_cnt .items {
    display: block;
  }
  .rew_cnt .item .pic {
    height: auto;
    padding-top: 56.25%;
  }
  .rew_cnt .item .text {
    position: static;
    padding: 10px 14px 20px;
    background-color: #27a5df;
  }
  .rew_cnt .item .zh {
    font-size: 1rem;
  }
  .rew_cnt .item .en {
    font-size: 0.875rem;
  }

  .fix_aside {
    right: 0.5rem;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }
}