@charset "UTF-8";
body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #000002;
}

.main_color {
  color: #1C1366;
}

.sub_color {
  color: #FDCF5E;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}

.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}

.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}

.fix_aside .fx_item.is_primary {
  background-color: #ffd073;
  color: #1d1d1d;
  line-height: 1.3;
}

.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}

.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}

.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 98;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header.is_active {
  background-color: rgba(0, 0, 0, 0.8);
}

.g_header .header_cnt {
  position: relative;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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: #14369A;
}

.g_header .nav_area {
  position: relative;
  z-index: 3;
}

.g_header .nav_area .nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g_header .nav_area .nav_cnt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.g_header .nav_area .nav_item {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}

.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}

.g_header .nav_area .nav_item.is_highlight .nav_link {
  background-color: #FDCF5E;
  color: #000;
}

.g_header .nav_area .nav_link {
  border-radius: 4px;
  display: block;
  padding: 12px;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.g_header .nav_area .nav_link:hover {
  color: #3b3b3b;
  text-decoration: none;
}

.g_header .header_sns {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}

.g_header .header_sns .hover {
  display: inline-block;
  position: relative;
}

.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
}

.g_header .header_sns .hover:hover .hover_menu {
  display: block;
}

.g_header .header_sns .hover_holder {
  cursor: pointer;
}

.g_header .header_sns .hover_menu {
  position: absolute;
  padding: 0.5em 0;
  display: none;
}

.g_header .header_sns .hover_menu .hover_item {
  cursor: pointer;
  display: block;
  margin-top: 0.5em;
}

.bttn {
  display: inline-block;
}

.bttn .bttn_inner {
  cursor: pointer;
  display: block;
  padding: 0.75em 2em;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bttn .bttn_inner:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.bttn .xl_size {
  font-size: 2em;
}

.bttn .lg_size {
  max-width: 100%;
}

.bttn .sm_size {
  font-size: 1em;
}

.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}

.bttn .dark_b {
  border-width: 0;
  background-color: #000;
  color: #1C1366;
}

.bttn .dark_b:hover {
  background-color: #160f02;
}

.bttn .sub_b {
  border: none;
  background-color: #fff;
  color: #1C1366;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.bttn .sub_b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.g_kv_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/kv/kv_bg.jpg") center/cover fixed;
  z-index: -1;
}

.g_kv {
  height: 50vw;
  position: relative;
  overflow: hidden;
}

.g_kv .tit {
  position: absolute;
  top: 5%;
  width: 50.3125%;
  margin-left: 1%;
}

.g_kv .tit .df_logo {
  position: absolute;
  margin-top: 0;
  margin-left: 5%;
  width: 30.32454%;
}

.g_kv .tit .t1 {
  position: absolute;
  margin-top: 33%;
  left: 5%;
  width: 100%;
}

.g_kv .tit .t1 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.g_kv .tit .t2 {
  position: absolute;
  left: 5%;
  margin-top: 56%;
  width: 65.83851%;
}

.g_kv .tit .t2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@-webkit-keyframes galaxy {
  0% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  100% {
    -webkit-transform: scale(1.3) rotate(10deg);
            transform: scale(1.3) rotate(10deg);
  }
}

@keyframes galaxy {
  0% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
  100% {
    -webkit-transform: scale(1.3) rotate(10deg);
            transform: scale(1.3) rotate(10deg);
  }
}

@-webkit-keyframes galaxy3d {
  0% {
    -webkit-transform: rotate3d(0);
            transform: rotate3d(0);
    -webkit-filter: brightness(100%) blur(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate3d(2, -1, -1, -0.1turn);
            transform: rotate3d(2, -1, -1, -0.1turn);
    -webkit-filter: brightness(150%) blur(5px);
    opacity: .8;
  }
}

@keyframes galaxy3d {
  0% {
    -webkit-transform: rotate3d(0);
            transform: rotate3d(0);
    -webkit-filter: brightness(100%) blur(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate3d(2, -1, -1, -0.1turn);
            transform: rotate3d(2, -1, -1, -0.1turn);
    -webkit-filter: brightness(150%) blur(5px);
    opacity: .8;
  }
}

.g_kv .tit .t3 {
  position: absolute;
  margin-top: 18%;
  margin-left: 3%;
  width: 47.23958%;
}

.g_kv .tit .t3 img {
  width: 100%;
  max-width: 100%;
}

.g_kv .tit .t4 {
  position: absolute;
  margin-top: 21%;
  margin-left: 58%;
  width: 78.2318%;
  max-width: 100%;
  z-index: 1;
}

.g_kv .tit .t4 img {
  width: 100%;
  max-width: 100%;
}

.g_kv .tit .t5 {
  position: absolute;
  margin-top: 38%;
  margin-left: 80%;
  width: 46.65676%;
  max-width: 100%;
  z-index: 1;
}

.g_kv .tit .t5 img {
  width: 100%;
  max-width: 100%;
}

.g_kv .date {
  position: absolute;
  left: 9.375%;
  bottom: 170px;
  color: #ffc000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.33vw;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.33);
  font-weight: 500;
  line-height: 1.2;
}

.g_kv .date .d {
  font-size: 2.5rem;
}

.g_kv .date .l {
  font-size: 1.25rem;
  display: block;
  margin: 0 10px;
}

.g_kv .date .n {
  font-size: 2.5rem;
}

.g_kv .date .time_glow {
  position: absolute;
  bottom: -45px;
  left: -25%;
  width: 150%;
  height: auto;
}

.g_kv .timer {
  position: absolute;
  left: 9.375%;
  bottom: 60px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
}

.g_kv .timer .tb {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 3.5rem;
  padding-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: #000;
  letter-spacing: normal;
}

.g_kv .timer .tb::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  color: white;
}

.g_kv .timer .tb span {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.g_kv .timer .d {
  border-radius: 1rem 0 0 1rem;
}

.g_kv .timer .d::after {
  content: "day";
}

.g_kv .timer .h::after {
  content: "hour";
}

.g_kv .timer .m::after {
  content: "min";
}

.g_kv .timer .s {
  border-radius: 0 1rem 1rem 0;
}

.g_kv .timer .s::after {
  content: "sec";
}

.xxxxxxx {
  color: #000;
}

.cta {
  position: relative;
  width: 100%;
  margin: 50px auto;
}

.cta .container {
  text-align: center;
}

.cta .button-sign {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  color: #004B8F;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 2% 8%;
  text-decoration: none;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#fde29e), to(#f5b618));
  background: linear-gradient(#fde29e, #f5b618);
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-weight: 550;
  letter-spacing: 0.2rem;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.cta .button-sign:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.g_main {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(5, 23, 53, 0.8)), color-stop(40%, rgba(0, 104, 146, 0.8)));
  background: linear-gradient(180deg, rgba(5, 23, 53, 0.8), rgba(0, 104, 146, 0.8) 40%);
}

.main_sc {
  padding: 30px 0 20px 0;
}

.sc_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1em;
}

.sc_title .sub_tit {
  color: #FFE700;
  color: 0.6em;
  letter-spacing: 5px;
}

.sc_title .tit {
  font-weight: 500;
  letter-spacing: 5px;
  color: #4df2ef;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.sc_title .tit.sp {
  color: #000;
  font-weight: 550;
}

.sc_title .tit span {
  font-size: 1.4rem;
  letter-spacing: initial;
}

.sc_title .tit.c_main {
  color: #ff8c00;
}

.sc_title .tit.c_white {
  color: #fff;
}

.intro_cnt2 {
  margin: 2.5rem 0 3em 0;
}

.intro_cnt {
  padding: 0 5rem;
  text-align: center;
  font-size: 1.25rem;
}

.intro_cnt .text {
  font-size: 24px;
  line-height: 0;
  padding: 10px 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fde29e), to(#f5b618));
  background: linear-gradient(#fde29e, #f5b618);
  border-radius: 20px;
}

.intro_cnt .heightlight {
  color: #EB8D00;
  font-weight: bold;
}

.intro_cnt .heightlight2 {
  font-size: 1.35rem;
  color: #EB8D00;
  font-weight: bold;
}

.intro_cnt .invite {
  text-align: right;
}

.intro_cnt .btn_title {
  margin-top: 5%;
  color: #f5b618;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}

.intro_cnt .intro_part2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 15%;
}

.intro_cnt .intro_part2 .title_list {
  padding: 3% 0;
  border-radius: 15px 15px 0 0;
  margin: 3% 0 0 0;
  color: #004B8F;
  font-weight: 600 !important;
}

.intro_cnt .intro_part2 .block {
  color: white;
  padding: 3% 0;
}

.intro_cnt .intro_part2 .block1 {
  border-radius: 15px 15px 0 0;
  background: -webkit-gradient(linear, right top, left top, from(#2136ed), to(rgba(33, 54, 237, 0.5)));
  background: linear-gradient(-90deg, #2136ed, rgba(33, 54, 237, 0.5));
}

.intro_cnt .intro_part2 .block2 {
  background: -webkit-gradient(linear, left top, right top, from(#d47afb), to(rgba(212, 122, 251, 0.5)));
  background: linear-gradient(90deg, #d47afb, rgba(212, 122, 251, 0.5));
}

.intro_cnt .intro_part2 .block3 {
  background: -webkit-gradient(linear, left top, right top, from(#d43b30), to(rgba(212, 59, 48, 0.5)));
  background: linear-gradient(90deg, #d43b30, rgba(212, 59, 48, 0.5));
}

.intro_cnt .intro_part2 .block4 {
  border-radius: 0 0 15px 15px;
  background: -webkit-gradient(linear, right top, left top, from(#00b643), to(rgba(0, 182, 67, 0.5)));
  background: linear-gradient(-90deg, #00b643, rgba(0, 182, 67, 0.5));
}

.intro_cnt .title1 {
  color: #4EF2EF;
  font-weight: 500 !important;
  text-align: left;
}

.intro_cnt .title2 {
  margin-top: 3vw;
}

.intro_cnt .highlight_tit {
  color: #1C1366;
  font-size: 1.65em;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1;
}

.intro_cnt p {
  color: white;
  text-align: left;
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 1.65;
}

.intro_cnt .activity-intro {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 35px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 52px;
}

.intro_cnt .activity-intro img {
  height: auto;
  max-width: 100%;
}

.intro_cnt .activity-intro .activity-title {
  color: #ffffff;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.13em;
  font-size: 16px;
  margin-bottom: 5px;
}

.intro_cnt .activity-intro .activity-address {
  color: #ffffff;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.13em;
  font-size: 16px;
  margin-bottom: 5px;
}

.intro_cnt .activity-intro .activity-time {
  color: transparent;
  font-size: 24px;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, right top, from(#19b5f6), color-stop(#b9eaff), to(#19b5f6));
  background-image: linear-gradient(90deg, #19b5f6, #b9eaff, #19b5f6);
  -webkit-background-clip: text;
  /* 背景裁剪成文字的前景色 */
  text-align: center;
  margin-bottom: 3px;
}

.intro_cnt .activity-intro .activity-place {
  color: transparent;
  font-size: 24px;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, right top, from(#19b5f6), color-stop(#b9eaff), to(#19b5f6));
  background-image: linear-gradient(90deg, #19b5f6, #b9eaff, #19b5f6);
  -webkit-background-clip: text;
  /* 背景裁剪成文字的前景色 */
  text-align: center;
  margin-bottom: 3px;
}

.intro_cnt .combain {
  display: inline-block;
  margin: 3rem -20em 5rem -20em;
  padding: 1.5em 1.5em;
  max-width: 100%;
  line-height: 1.2;
  font-size: 1.25em;
  color: white;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#002A46), color-stop(80%, #00416C));
  background: linear-gradient(90deg, #002A46, #00416C 80%);
  border-radius: 50px 10px 50px 10px;
  -webkit-box-shadow: 5px 10px 30px rgba(0, 42, 70, 0.6);
          box-shadow: 5px 10px 30px rgba(0, 42, 70, 0.6);
}

.intro_cnt .combain p {
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.intro_cnt .combain .line1 {
  font-weight: 700;
  font-size: 1.4em;
  margin-left: 0.25em;
  margin-right: 0.25em;
  margin-top: 1em;
  vertical-align: middle;
  color: #FDCF5E;
}

.intro_cnt .combain .line2 {
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
  margin-bottom: 0.8em;
}

.cta_cnt {
  margin: 10px 0 30px 0;
  padding-bottom: 20px;
}

.cta_cnt .bttns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_gift .gift_cnt {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sc_gift .gift_cnt .gift_item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  background-color: white;
  border-radius: 0 0 50px 50px;
  -webkit-box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
  padding: 0px 0px 20px 0px;
  border-left: solid rgba(0, 0, 0, 0.1);
  border-width: 0 1px;
  text-align: center;
  margin: 0 30px;
  -webkit-text-stroke: none;
}

.sc_gift .gift_cnt .gift_item:nth-child(1) {
  border-left: 0;
}

.sc_gift .gift_cnt .gift_item .pic {
  border-radius: 4px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 #ddd;
          box-shadow: 0 #ddd;
}

.sc_gift .gift_cnt .gift_item .pic img {
  display: block;
  margin: 0 auto;
  width: 50%;
}

.sc_gift .gift_cnt .gift_item .tit {
  background: linear-gradient(45deg, #3c91dc, #004989, #3c91dc);
  color: white;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  padding: 5px 0;
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.sc_gift .gift_cnt .gift_item .name {
  font-weight: 700;
  padding: 0px 20px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #004989;
}

.sc_gift .gift_cnt .gift_item .text {
  margin-top: 4px;
}

.highLight {
  display: inline-block;
  font-weight: 700;
  font-size: 3rem;
  color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#499ac5), color-stop(#ffffff), color-stop(#6c97cf), to(#1273bb));
  background: linear-gradient(180deg, #499ac5, #ffffff, #6c97cf, #1273bb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sc_agenda i {
  font-size: 2rem;
}

.sc_agenda .tit {
  font-weight: bold;
}

.sc_agenda .sub_tit {
  margin-top: 1em;
}

.sc_agenda .tit_sub {
  color: #14369A;
}

.sc_agenda .tit_sub span {
  font-size: 1.2rem;
  color: #6E01F9;
}

.sc_agenda .list {
  position: relative;
}

.sc_agenda .list .intro_dec {
  position: absolute;
  z-index: 0;
  top: 17%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.sc_agenda .list-item {
  position: relative;
  z-index: 1;
  list-style-type: none;
  color: #9de8ff;
  text-align: center;
  padding: 0;
}

.sc_agenda .list-item li {
  position: relative;
  margin: 20px 0;
  padding: 5px 25px;
  line-height: 1.3;
  border-bottom: 1px solid #d4f2ff;
  font-size: 1.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sc_agenda .list-item li .time {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
}

.sc_agenda .list-item li .text {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 70%;
          flex: 1 0 70%;
  text-align: justify;
  font-weight: bold;
}

.sc_agenda .list-item li::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 99%;
  background-color: #b9eaff;
}

.sc_agenda .list-item li::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 99%;
  background-color: #b9eaff;
}

.agd_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 4, 60, 0.4);
  border: 2px solid #b9eaff;
  margin-bottom: 20px;
  line-height: 1.3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px;
  border-radius: 15px;
}

.agd_cnt .speaker_container {
  padding: 0;
  text-align: left;
  margin-left: -14px;
}

.agd_cnt .td_time_title {
  color: #14369A !important;
  font-size: initial;
  font-weight: 400 !important;
}

.agd_cnt .tr {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0 2%;
}

.agd_cnt .tr.tr_light {
  background-color: rgba(21, 217, 253, 0.1);
}

.agd_cnt .tr_head {
  border-radius: 10px 10px 0 0;
  color: #14369A;
}

.agd_cnt .td {
  padding: 1.2em 0.8em;
}

.agd_cnt .td_time {
  color: #0B76BC;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8em;
          flex: 0 0 8em;
  font-size: 1.1rem;
  font-weight: 550;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.agd_cnt .td_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 1px 5px 10px rgba(0, 18, 73, 0.5);
          box-shadow: 1px 5px 10px rgba(0, 18, 73, 0.5);
  width: 400px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  color: #14369A;
  text-shadow: 2px 2px 1px white;
  background-color: #d1effc;
  border-bottom: solid 2px #14369A;
  margin: 15px 1%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-radius: 20px 0 20px 0;
}

.agd_cnt .td_title .ag_tit {
  width: 100%;
  font-size: 1.6em;
}

.agd_cnt .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}

.agd_cnt .ag_spk {
  line-height: 1.35;
}

.agd_cnt .ag_spk img {
  width: 150px;
}

.agd_cnt .ag_spk + .ag_spk_tit {
  margin-top: 15px;
}

.agd_cnt .ag_spk + .ag_spk {
  margin-top: 6px;
}

.agd_cnt .ag_spk .job {
  color: #14369A;
}

.agd_cnt .ag_spk .name {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  color: #28ABE2;
  font-weight: 550;
}

.agd_cnt .ag_spk_tit {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.4em;
  padding-bottom: 0.2em;
  font-size: 0.875em;
  color: #343a40;
}

.agd_normal .td_time2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8em;
          flex: 0 0 8em;
}

.agd_normal .td_title2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 0.8rem 0;
  width: 100%;
}

.agd_normal .td_title2 .span1 {
  color: #FF12FB;
  display: none;
}

.agd_normal .td_title2 .span2 {
  color: #ffe700;
  font-size: 1rem;
}

.agd_normal .td_title2 .span3 {
  color: #15d9fd;
}

.agd_normal .td_speaker {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.agd_normal .td_speaker .br_blank {
  display: block;
  content: " ";
  margin-top: 10px;
}

.agd_normal .td_speaker .header {
  color: #F5B317;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.agd_split .tr {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.agd_split .td {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agd_split .topic_toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: 10px 0;
}

.agd_split .tr_split_tit {
  color: #fff;
}

.agd_split .tr_split_tit .td_split {
  border-radius: 20px 20px 0 0;
}

.agd_split .tr_split_tit .td_split.sp1 {
  background-color: #1C1366;
}

.agd_split .tr_split_tit .td_split.sp2 {
  background-color: #FDCF5E;
}

.agd_split .sp1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-left: 5px solid #1C1366;
}

.agd_split .sp2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-left: 5px solid #FDCF5E;
}

.agd_split .ag_spk {
  margin-top: 0.2rem;
  padding: 0.2rem 0;
}

.ag_tip {
  text-align: center;
  color: #14369A;
}

.sc_speaker {
  background-color: #c0e8fa;
}

.sc_speaker .tit {
  margin-top: 3%;
  color: #14369A;
  font-weight: 600;
}

.speaker_items0 .item {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 20% !important;
          flex: 0 0 20% !important;
}

.speaker_items0 .item .pic {
  max-width: 80% !important;
}

.speaker_items2 {
  margin-top: 30px;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.speaker_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.speaker_items .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 50px;
}

.speaker_items .item .pic {
  position: relative;
  max-width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 1px 5px 40px rgba(255, 255, 255, 0.4);
          box-shadow: 1px 5px 40px rgba(255, 255, 255, 0.4);
}

.speaker_items .item .pic img {
  position: relative;
  display: block;
  border-radius: 10px;
  height: auto;
}

.speaker_items .item .pic:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.speaker_items .item .job {
  color: #14369a;
  font-weight: 400;
}

.speaker_items .item .name {
  margin-bottom: 6px;
  color: #28ABE2;
  font-size: 1.25em;
  line-height: 1.2;
  margin-top: 10px;
  font-weight: 550;
}

.speaker_items .item .name span {
  display: inline-block;
}

.sc_sponsor {
  background-color: white;
}

.sc_sponsor .sc_title {
  margin-bottom: 0;
}

.sc_sponsor .container-fluid {
  max-width: 1440px;
}

.sort_cnt .sorts {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sort_cnt .sorts .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 5px;
}

.sort_cnt .sorts .item_link {
  display: block;
  margin: 0 1.5em;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.sort_cnt .sorts .item_link .logo1 {
  width: 200px;
}

.sort_cnt .sorts .item_link img {
  height: auto;
}

.sponsor_cnt {
  padding: 20px 0;
}

.sponsor_cnt .sponsors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sponsor_cnt .spr_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 10px;
}

.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 10px;
  background-color: #fff;
}

.sc_location {
  background-color: rgba(0, 54, 83, 0.9);
}

.slick_area {
  padding: 3% 0;
  background-color: rgba(0, 54, 83, 0.6);
}

.slick_area img {
  max-width: 100%;
}

.slick_area .slick-prev {
  left: 200px;
  z-index: 1;
}

.slick_area .slick-prev:before {
  font-size: 32px;
}

.slick_area .slick-next {
  right: 200px;
}

.slick_area .slick-next:before {
  font-size: 32px;
}

.slick_area .title {
  font-weight: 500;
  letter-spacing: 5px;
  color: #4df2ef;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.slick_area .slider {
  margin-top: 2%;
}

.slick_area .slider .slick-dots li button:before {
  color: white;
}

.slick_area .slider .slide {
  margin: 0 3%;
}

.slick_area .slider .slide a {
  max-width: 100%;
}

.slick_area .slider .slide a img {
  width: 100%;
  max-width: 100%;
}

.slick_area .slider .slide .slide_text {
  color: #FFE700;
  margin-top: 2%;
}

.location_cnt .loc_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.location_cnt .loc_top .loc {
  color: #15d9fd;
  font-size: 1.5em;
  margin: 0 0.5em 10px;
}

.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #fff;
}

.sc_detail {
  background-color: white;
}

.sc_detail .policy_cnt {
  text-align: center;
}

.sc_detail .list {
  padding-left: 1.5em;
}

.sc_detail .list li {
  padding: 0.25em 0;
  line-height: 1.4;
}

.sc_detail .ps {
  font-size: 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px 20px 20px;
}

@media (max-width: 768px) {
  .g_header {
    background-color: #151237;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    padding: 10px 0;
    display: block;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    border-radius: 0;
    padding: 16px 24px;
    color: #767676;
  }
  .g_kv {
    height: 65vh;
    background-color: rgba(0, 18, 73, 0.6);
  }
  .g_kv .tit {
    margin: 0;
    width: 100%;
    padding: 0;
  }
  .g_kv .tit .t1 {
    margin-top: 45%;
    left: 5%;
    width: 90%;
  }
  .g_kv .tit .t2 {
    margin-top: 70%;
    left: 5%;
    width: 65%;
  }
  .g_kv .tit .df_logo {
    margin-top: 20%;
    width: 40%;
    max-width: 80%;
    margin-left: 30%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .g_kv .tit .t3 {
    width: 80%;
    max-width: 80%;
    margin-top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .g_kv .tit .t4 {
    width: 50%;
  }
  .g_kv .date {
    font-size: 1rem;
    bottom: 110px;
  }
  .g_kv .date .d {
    font-size: 1.875rem;
  }
  .g_kv .date .l {
    font-size: .875rem;
  }
  .g_kv .date .n {
    font-size: 1.875rem;
  }
  .g_kv .date .time_glow {
    bottom: -35px;
  }
  .g_kv .timer {
    left: 15%;
    bottom: 20px;
  }
  .cta {
    margin: 20px auto;
    text-align: center;
  }
  .cta .button-sign {
    border-radius: 15px;
    font-size: 1.8rem;
    padding: 5% 15%;
  }
  .main_sc {
    padding: 40px 0;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    color: #14369A;
    font-size: 1.6rem;
    letter-spacing: initial;
    font-weight: 600;
  }
  .intro_cnt2 .intro_part2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10%;
  }
  .intro_cnt2 .intro_part2 .block {
    width: 100%;
    text-align: center;
    margin: 0rem;
    padding: 0.5rem;
  }
  .sc_intro {
    padding: 80px 0 20px 0;
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: justify;
    padding: 0;
  }
  .intro_cnt .activity-intro p {
    padding: 5px 0;
  }
  .intro_cnt .combain {
    display: inline-block;
    margin: 0;
    padding: 1em 0;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
    font-size: 1.2em;
    color: white;
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#002A46), color-stop(80%, #00416C));
    background: linear-gradient(90deg, #002A46, #00416C 80%);
    border-radius: 50px 10px 50px 10px;
    -webkit-box-shadow: 5px 10px 30px rgba(0, 42, 70, 0.6);
            box-shadow: 5px 10px 30px rgba(0, 42, 70, 0.6);
  }
  .intro_cnt .combain p,
  .intro_cnt .combain .line1 {
    font-size: 0.8em;
  }
  .intro_cnt p {
    padding: 0.5em 1em;
    line-height: 1.5;
  }
  .intro_cnt .title1 {
    text-align: center;
  }
  .cta_cnt {
    padding: 0;
    margin: 20px 0 0 0;
  }
  .cta_cnt .bttn {
    margin-bottom: 20px;
  }
  .cta_cnt .bttn:last-child {
    margin-bottom: 0;
  }
  .cta_cnt .bttn .bttn_inner {
    font-size: 1.5em;
  }
  .sc_gift .gift_cnt {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sc_gift .gift_cnt .gift_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    padding: 0px 0px 20px 0px;
    margin: 30px;
    -webkit-text-stroke: none;
  }
  .sc_gift .gift_cnt .gift_item:nth-child(1) {
    border-left: 0;
  }
  .sc_gift .gift_cnt .gift_item .pic {
    border-radius: 4px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 #ddd;
            box-shadow: 0 #ddd;
  }
  .sc_gift .gift_cnt .gift_item .pic img {
    display: block;
    margin: 0 auto;
    width: 50%;
  }
  .sc_gift .gift_cnt .gift_item .tit {
    background: linear-gradient(45deg, #3c91dc, #004989, #3c91dc);
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    font-size: 1.75rem;
    margin-bottom: 4px;
  }
  .sc_gift .gift_cnt .gift_item .name {
    font-weight: 700;
    padding: 0px 20px;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #004989;
  }
  .sc_gift .gift_cnt .gift_item .text {
    margin-top: 4px;
  }
  .slick_area {
    margin-top: 0;
  }
  .slick_area .slick-prev {
    left: 30px;
    z-index: 1;
  }
  .slick_area .slick-prev:before {
    font-size: 20px;
  }
  .slick_area .slick-next {
    right: 30px;
  }
  .slick_area .slick-next:before {
    font-size: 20px;
  }
  .sc_agenda .agd_cnt {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sc_agenda .giftItem {
    max-width: 50%;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .sc_agenda .gift {
    margin-top: 10%;
  }
  .sc_agenda .list-item {
    padding: 0;
  }
  .sc_agenda .list-item li {
    margin: 20px 0;
    padding: 5px 25px 15px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sc_agenda .list-item li .time {
    font-weight: 300;
    margin: 0 0 5px 0;
  }
  .sc_agenda .list-item li .text {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
            flex: 1 0 70%;
    text-align: left;
    font-weight: bold;
  }
  .sc_agenda .list-item li::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 99%;
    background-color: #b9eaff;
  }
  .sc_agenda .list-item li::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 99%;
    background-color: #b9eaff;
  }
  .agd_cnt .speaker_container {
    padding: 0;
    text-align: left;
    margin-left: 0px;
  }
  .agd_cnt .tr {
    display: block;
  }
  .agd_cnt .tr_head {
    display: none;
  }
  .agd_cnt .td {
    padding: 0.2em 1em;
  }
  .agd_cnt .td:first-child {
    padding-top: 1em;
  }
  .agd_cnt .td:last-child {
    padding-bottom: 1em;
  }
  .agd_cnt .td_time {
    text-align: left;
  }
  .agd_cnt .td_title {
    display: block;
  }
  .agd_cnt .topic_toggle {
    margin-top: 0.5em;
  }
  .agd_split .td {
    width: 100%;
  }
  .agd_split .tr_split_tit {
    display: none;
  }
  .agd_split .tr_split_tit .td_split {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    text-align: center;
  }
  .agd_split .tr_split_tit .td_time {
    display: none;
  }
  .agd_split .sp2 {
    border-top: 1px solid;
  }
  .agd_split .td_split.sp1:nth-child(2) {
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  .agd_split .td_time.sp2:nth-child(3) {
    padding-top: 1em;
  }
  .sc_speaker .giftItem {
    max-width: 90%;
    margin: 0 0 0 50% !important;
    padding: 0 !important;
  }
  .sc_speaker .sub_tit {
    letter-spacing: initial;
    margin-top: 0.5rem;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .speaker_items2 img {
    width: 250px;
  }
  .speaker_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .speaker_items img {
    width: 250px;
  }
  .speaker_items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 20px 30px;
  }
  .sort_cnt .sorts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sort_cnt .sorts .tit {
    margin: 1.5em 0;
  }
  .sort_cnt .sorts .item {
    margin: 0;
    padding: 3px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
  .sort_cnt .sorts .item_link {
    text-align: center;
    padding: 0.2em 1.3em 1.5em 1.3em;
  }
  .sort_cnt .sorts .item_link img {
    width: 100%;
  }
  .sponsor_cnt {
    padding: 0;
  }
  .sponsor_cnt .spr_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 3px;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
}
/*# sourceMappingURL=style.css.map */