@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "noto sans TC", serif;
  background-color: #F2F9F9;
  min-height: 100vh;
  color: #3C3C3C;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #3C3C3C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #3C3C3C;
}

input, button, select {
  background-color: transparent;
  border: 0;
  outline: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/chevron-down.svg);
  background-size: 20px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

.header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #009698;
  z-index: 100;
}

.header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_nav ul li {
  padding: 0 20px;
  position: relative;
}

.header_nav ul li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_nav ul li:last-child::after {
  display: none;
}

.header_nav ul a {
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav ul a.active, .header_nav ul a:hover {
  color: #F0DB01;
  font-weight: 700;
}

.header_member {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_member > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.header_member > ul a {
  display: block;
  text-align: center;
  position: relative;
  font-weight: 700;
  color: #fff !important;
  cursor: pointer;
}

.header_member > ul a::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  top: 50%;
  right: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header_member > ul a:hover {
  color: #F0DB01 !important;
}

.header_member > ul li:last-child a::after {
  display: none;
}

.header_member_name {
  color: #fff;
  margin: 0;
}

.header_member.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.header_member.login button {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  position: relative;
}

.header_member.login button svg {
  width: 24px;
  height: 24px;
}

.header_member.login button ul {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  top: calc(100% + 9px);
  right: 0;
  padding: 15px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_member.login button ul li {
  margin-bottom: 14px;
}

.header_member.login button ul li:last-child {
  margin-bottom: 0;
}

.header_member.login button ul li a {
  white-space: nowrap;
  display: block;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_member.login button ul li a:hover {
  color: #009698;
}

.header_member.login button:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.header_menu {
  position: relative;
  width: 27px;
  height: 20px;
  margin-left: 20px;
  z-index: 10;
}

.header_menu_bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #F0DB01;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_menu_bar.bar-top {
  top: 0;
}

.header_menu_bar.bar-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_menu_bar.bar-bottom {
  bottom: 0;
}

.header_menu.active .header_menu_bar {
  top: 50%;
  left: 50%;
}

.header_menu.active .header_menu_bar.bar-top, .header_menu.active .header_menu_bar.bar-middle {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header_menu.active .header_menu_bar.bar-bottom {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 991px) {
  .header {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 15px;
  }
  .header_nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #009698;
    top: 0;
    right: 0;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: -100vw;
  }
  .header_nav ul {
    background-image: none;
    display: block;
    height: auto;
    width: auto;
    padding-top: 80px;
  }
  .header_nav ul li {
    margin: 20px 0;
  }
  .header_nav ul li::after {
    display: none;
  }
  .header_nav ul a {
    text-align: center;
    display: block;
  }
  .header_nav.active {
    right: 0;
  }
  .header_member {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .header_member > ul {
    position: static;
  }
}

main {
  padding-top: 70px;
}

.banner {
  padding: 40px 75px 135px;
  position: relative;
  margin-bottom: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFBE4), to(#F3E684));
  background: linear-gradient(to bottom, #FFFBE4 0%, #F3E684 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
}

.banner_mask {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.banner_swiper {
  width: calc(100% - 300px);
}

.banner_item {
  position: relative;
  width: 100%;
  padding-bottom: 41%;
  border-radius: 40px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.banner_item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.banner_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 3;
  position: absolute;
  gap: 5px;
}

.banner_pagination .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.banner_pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.banner_side {
  width: 300px;
  padding-left: 32px;
}

.banner_contact {
  border-radius: 16px;
  background-color: #fff;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner_contact_pic {
  width: 100px;
}

.banner_contact_text {
  width: calc(100% - 100px);
  padding-left: 16px;
}

.banner_contact_text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner_contact_text p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 14px 5px;
  border-radius: 100px;
  background-color: #E1F2F3;
  font-family: "Fugaz One", sans-serif;
  color: #084D4B;
  margin: 0;
}

.banner_ad {
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.banner-inner {
  padding-bottom: 110px;
}

.banner-inner_main {
  width: calc(100% - 300px);
  padding-bottom: calc((100% - 300px) * 0.27);
  position: relative;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  overflow: hidden;
}

.banner-inner_main > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.banner-inner .banner_contact:last-child {
  margin: 0;
}

.banner-member {
  padding: 2.78vw 0 9.38vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFBE4), to(#F3E684));
  background: linear-gradient(to bottom, #FFFBE4 0%, #F3E684 100%);
  position: relative;
  margin-bottom: 60px;
}

.banner-member h1 {
  max-width: 1040px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  color: #009698;
}

.banner-member_mask {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1199px) {
  .banner-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner-inner_main {
    width: 100%;
    padding-bottom: 27%;
    border-radius: 20px;
  }
  .banner-inner .banner_side {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
    padding: 0;
  }
  .banner-inner .banner_contact {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }
}

@media screen and (max-width: 991px) {
  .banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner_swiper {
    width: 100%;
    margin-bottom: 20px;
  }
  .banner_side {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding: 0;
  }
  .banner_contact {
    width: calc((100% - 40px) / 3);
    margin: 0;
  }
  .banner_contact_pic {
    width: 70px;
  }
  .banner_contact_text {
    width: calc(100% - 70px);
  }
  .banner_contact_text h3 {
    font-size: 16px;
  }
  .banner_contact_text p {
    font-size: 14px;
  }
  .banner_ad {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .banner_item {
    padding-bottom: 100%;
    border-radius: 20px;
  }
  .banner_title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner_title span {
    font-size: 14px;
  }
  .banner_side {
    display: block;
  }
  .banner_contact {
    width: 100%;
    margin-bottom: 20px;
  }
  .banner_ad {
    width: 100%;
  }
  .banner-member {
    padding: 10vw 0 20vw;
  }
  .banner-member h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 575px) {
  .banner-inner_main {
    padding-bottom: 60%;
  }
  .banner-inner .banner_side {
    display: block;
  }
  .banner-inner .banner_contact {
    width: 100%;
    margin-bottom: 20px;
  }
}

.title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 0 26px;
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.title::before, .title::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 77px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
}

.title::before {
  background-image: url(../img/title-left.svg);
  left: -44px;
}

.title::after {
  background-image: url(../img/title-right.svg);
  right: -44px;
}

.mainbar {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto 100px;
}

.mainbar_sec {
  padding: 30px;
  background-color: #fff;
  border-radius: 32px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media screen and (max-width: 575px) {
  .mainbar {
    padding-left: 15px;
    padding-right: 15px;
  }
  .mainbar_sec {
    border-radius: 20px;
    padding: 15px;
  }
}

.analyze-tab {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.analyze-tab .nav-link {
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFBE4;
  border: 2px solid #F0DB01;
  border-radius: 100px;
  margin: 0;
}

.analyze-tab .nav-link span {
  color: #572800;
  font-size: 20px;
  margin-left: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}

.analyze-tab .nav-link.active, .analyze-tab .nav-link:hover {
  background: #28A5AB;
  border-color: #28A5AB;
}

.analyze-tab .nav-link.active .analyze_icon, .analyze-tab .nav-link:hover .analyze_icon {
  width: 24px;
  margin-right: 8px;
}

.analyze-tab .nav-link.active span, .analyze-tab .nav-link:hover span {
  color: #fff;
}

.analyze_icon {
  width: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.analyze_icon svg {
  width: 24px;
  height: 24px;
}

.analyze_table {
  width: 100%;
}

.analyze_table th, .analyze_table td {
  padding: 0 0 10px;
}

.analyze_table th > span, .analyze_table td > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 5px;
  width: 100%;
  height: 70px;
  text-align: center;
}

.analyze_table th > span br, .analyze_table td > span br {
  display: none;
}

.analyze_table th:first-child > span, .analyze_table td:first-child > span {
  border-radius: 16px 0 0 16px;
}

.analyze_table th:last-child > span, .analyze_table td:last-child > span {
  border-radius: 0 16px 16px 0;
}

.analyze_table th > span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #4DB5BB;
}

.analyze_table td > span {
  font-size: 18px;
  color: #3C3C3C;
  background-color: #F7F7F7;
}

.analyze_table_result {
  width: 37px;
}

@media screen and (max-width: 991px) {
  .analyze {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .analyze-tab {
    gap: 15px;
    margin-bottom: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .analyze-tab .nav-link {
    padding: 10px 15px;
  }
  .analyze-tab .nav-link span {
    font-size: 16px;
  }
  .analyze_table th, .analyze_table td {
    padding: 0;
  }
  .analyze_table th > span, .analyze_table td > span {
    padding: 15px 2px;
    height: 60px;
  }
  .analyze_table th > span br, .analyze_table td > span br {
    display: block;
  }
  .analyze_table th:first-child > span, .analyze_table td:first-child > span {
    border-radius: 12px 0 0 12px;
  }
  .analyze_table th:last-child > span, .analyze_table td:last-child > span {
    border-radius: 0 12px 12px 0;
  }
  .analyze_table th > span {
    font-size: 14px;
  }
  .analyze_table td > span {
    font-size: 12px;
    background-color: transparent;
  }
  .analyze_table_result {
    width: 25px;
  }
}

@media screen and (max-width: 575px) {
  .analyze_table td .btn-common {
    padding: 7px 15px;
  }
}

.footer {
  padding: 15px 10px;
  background-color: #F0DB01;
}

.footer p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #084D4B;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .footer p {
    font-size: 12px;
  }
}

.buy_item {
  padding: 25px;
  border-radius: 28px;
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}

.buy_item:last-child {
  margin-bottom: 0;
}

.buy_pic {
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 16px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 180px;
}

.buy_pic img {
  width: 80px;
}

.buy_pic h3 {
  text-align: center;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #084D4B;
}

.buy_text {
  width: calc(100% - 180px - 20px);
  border: 1px solid #4DB5BB;
  border-radius: 16px;
  padding: 20px 25px;
}

.buy_text select {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 16px;
}

.buy_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.buy_title h2 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

.buy_title p {
  position: relative;
  margin: 0;
  color: #759091;
}

.buy_title p::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 13px;
  background-color: #759091;
  top: 50%;
  left: -8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.buy_pay {
  gap: 20px;
}

.buy_pay_item {
  gap: 8px;
}

.buy_pay_item input {
  width: 16px;
  height: 16px;
  position: relative;
}

.buy_pay_item input::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.buy_pay_item input::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4DB5BB;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.buy_pay_item input:checked::after {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .buy_item {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    display: block;
  }
  .buy_pic {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
  }
  .buy_pic img {
    width: 40px;
  }
  .buy_pic h3 {
    font-size: 20px;
  }
  .buy_text {
    width: 100%;
    padding: 20px;
  }
  .buy_text select {
    background-color: #F7F7F7;
  }
  .buy_title {
    display: block;
    margin-bottom: 15px;
  }
  .buy_title h2 {
    margin-bottom: 10px;
  }
  .buy_title p::before {
    display: none;
  }
  .buy_pay_item input::before {
    border: 1px solid #81CBCF;
  }
}

@media screen and (max-width: 575px) {
  .buy_pay_item {
    margin-bottom: 5px;
  }
  .buy_pay_item:last-child {
    margin-bottom: 0;
  }
}

.flow_store {
  margin-bottom: 60px;
}

.flow_title img {
  height: 40px;
}

@media screen and (max-width: 575px) {
  .flow_title {
    display: block;
  }
  .flow_title img {
    height: 30px;
  }
  .flow_title h2 {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contact {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact_qrcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}

.contact_qrcode_item {
  padding: 32px 16px;
  border-radius: 16px;
  background-color: #F2F9F9;
  width: 250px;
}

.contact_qrcode_item > img {
  width: 150px;
  display: block;
  margin: 0 auto 16px;
}

.contact_qrcode_item > h3 {
  color: #084D4B;
  font-family: "Fugaz One", sans-serif;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 15px;
  border-radius: 100px;
  background-color: #fff;
}

.contact_qrcode_item > h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .contact_qrcode {
    display: block;
  }
  .contact_qrcode_item {
    margin-bottom: 60px;
    margin: 0 auto 60px;
  }
  .contact_qrcode_item > img {
    margin-bottom: 10px;
  }
}

.news {
  position: relative;
  padding-top: 70px;
}

.news_title {
  width: 346px;
  height: 86px;
  background-image: url(../img/title.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.news_title h2 {
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-size: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #DEDEDE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_item h3 {
  width: calc(100% - 85px);
  padding-left: 15px;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_item:hover {
  background-color: #E1F2F3;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 20px;
  border: 0;
}

.news_item:hover h3 {
  color: #084D4B;
}

.news_item:hover .news_date {
  background-color: #fff;
}

.news_item:hover .news_date p {
  color: #009698;
}

.news_item:hover .news_arrow {
  background-color: #fff;
}

.news_item:hover .news_arrow svg path {
  stroke: #037979;
}

.news_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  background-color: #FFFBE4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_arrow svg {
  width: 20px;
  height: 20px;
}

.news_arrow svg path {
  stroke: #E96D01;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_text {
  width: calc(100% - 35px);
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_date {
  background-color: #4DB5BB;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  width: 85px;
  padding: 10px 0;
}

.news_date p {
  margin: 0;
  line-height: 1;
}

.news_date p.day {
  font-family: "Fugaz One", sans-serif;
  font-size: 40px;
}

.news_date p.month {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 14px;
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .news_title {
    width: 220px;
    height: 55px;
    top: -13px;
  }
  .news_title h2 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }
  .news_arrow {
    display: none;
  }
  .news_item {
    padding: 15px 0;
  }
  .news_item h3 {
    width: calc(100% - 65px);
    font-size: 16px;
  }
  .news_text {
    width: 100%;
  }
  .news_date {
    border-radius: 10px;
    width: 65px;
  }
  .news_date p.day {
    font-size: 32px;
  }
  .news_date p.month {
    font-size: 12px;
  }
}

.record {
  padding: 30px;
  margin-bottom: 50px;
}

.record .row {
  margin-left: -5px;
  margin-right: -5px;
}

.record .row > div {
  padding-left: 5px;
  padding-right: 5px;
}

.record_item {
  border-radius: 16px;
  background-color: #F7F7F7;
  padding: 10px 5px;
}

.record_item.record_title {
  background-color: #009698;
}

.record_item.record_title p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.record_name {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.record_name span {
  color: #04898A;
  line-height: 1;
  font-weight: 700;
}

.record_name svg {
  width: 24px;
  height: 24px;
}

.record_name svg path {
  fill: #04898A;
}

.record_remain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
}

.record_remain_text {
  font-size: 12px;
  display: none;
}

.record_remain_num {
  font-family: "Fugaz One", sans-serif;
  margin: 0 10px;
  font-size: 24px;
}

@media screen and (max-width: 991px) {
  .record_item {
    margin-bottom: 10px;
  }
  .record_remain_text {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .record {
    padding: 20px;
  }
}

.modal-member .modal-dialog {
  margin-top: 100px;
}

.modal-member .modal-content {
  border-radius: 20px;
  background: #fff;
  padding: 30px;
}

.modal-member .modal-body {
  position: static;
}

.modal-member_title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #DEDEDE;
  font-weight: 700;
}

.modal-member_x {
  width: 24px;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
}

.modal-member_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-member_checkbox input {
  width: 16px;
  height: 16px;
}

.modal-member_checkbox label a {
  color: #E96D01;
  font-weight: 700;
  text-decoration: underline;
}

.modal-member_intro {
  margin-bottom: 25px;
  text-align: center;
}

.modal-member_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  padding: 12px 15px;
  background-color: #F7F7F7;
  border-radius: 12px;
}

.modal-member_input label {
  display: block;
  width: 45px;
  font-weight: 700;
  color: #084D4B;
  position: relative;
}

.modal-member_input label::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #DBDBDB;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.modal-member_input input, .modal-member_input select {
  width: calc(100% - 45px);
  padding: 0 10px;
}

.modal-member_input input::-webkit-input-placeholder, .modal-member_input select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal-member_input input:-ms-input-placeholder, .modal-member_input select:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal-member_input input::-ms-input-placeholder, .modal-member_input select::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal-member_input input::placeholder, .modal-member_input select::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.modal-member_input.lg label {
  width: 90px;
  text-align: center;
}

.modal-member_input.lg input, .modal-member_input.lg select {
  width: calc(100% - 90px);
}

.modal-member .btn-common {
  margin: 25px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 575px) {
  .modal-member .modal-body {
    padding: 0;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  gap: 15px;
}

.pagination a {
  font-family: "Fugaz One", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
}

.pagination a span {
  color: #3C3C3C;
}

.pagination a.active span, .pagination a:hover span {
  color: #009698;
}

.pagination_arrow {
  border: 0 !important;
}

.pagination_arrow svg {
  width: 18px;
  height: 12px;
}

.pagination_arrow svg path {
  stroke: #4DB5BB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination_arrow:hover svg path {
  stroke: #084D4B;
}

.pagination_arrow-prev {
  margin-right: 27px;
}

.pagination_arrow-next {
  padding-left: 27px;
}

@media screen and (max-width: 575px) {
  .pagination {
    gap: 10px;
  }
}

.btn-common {
  padding: 10px 30px;
  border-radius: 100px;
  background-color: #4DB5BB;
  font-weight: 500;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-common:hover {
  background-color: #EDB206;
}

.btn-back {
  position: absolute;
  padding: 15px 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FD9A9B), color-stop(47%, #EB5854), to(#DE2522));
  background: linear-gradient(to bottom, #FD9A9B 0%, #EB5854 47%, #DE2522 100%);
  border-radius: 16px 0 0 16px;
  top: 40px;
  right: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-back svg {
  display: block;
  width: 18px;
  height: 12px;
  -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
  margin: 0 auto 10px;
}

.btn-back svg path {
  stroke: #fff;
}

.btn-back p {
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  margin: 0;
}

.btn-back:hover {
  padding-right: 20px;
}

@media screen and (max-width: 1199px) {
  .btn-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 16px 16px 0 0;
    left: 30px;
    right: inherit;
    top: inherit;
    bottom: 100%;
    gap: 14px;
    padding: 10px 15px;
  }
  .btn-back svg {
    margin: 0;
  }
  .btn-back p {
    line-height: 1.5;
    white-space: nowrap;
  }
  .btn-back p br {
    display: none;
  }
}

.buy-record h2 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  border-bottom: 1px solid #DEDEDE;
}

.buy-record_item {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.buy-record_item:last-child {
  margin-bottom: 0;
}

.buy-record_title {
  gap: 15px;
}

.buy-record_title .title-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.buy-record_title .title-num {
  font-weight: 700;
  font-family: "Merriweather Sans", sans-serif;
  margin: 0;
}

.buy-record_price {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #04898A;
  margin: 0;
}

.buy-record_way {
  border-radius: 100px;
  background-color: #28A5AB;
  color: #fff;
  padding: 7px 15px;
  font-weight: 700;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.buy-record_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 100px;
  padding: 7px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.buy-record_detail .detail-title {
  font-weight: 700;
  color: #084D4B;
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}

.buy-record_detail .detail-title::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background-color: #084D4B;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.buy-record_detail .detail-content {
  color: #798E8F;
  font-weight: 700;
  font-family: "Merriweather Sans", sans-serif;
}

.buy-record_time {
  font-size: 12px;
  color: #798E8F;
  font-family: "Merriweather Sans", sans-serif;
  margin: 0;
}

.buy-record_status {
  padding: 5px 7px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
}

.buy-record_status.notpay {
  background-color: #EDB206;
}

.buy-record_status.paid {
  background-color: #4DB5BB;
}

@media screen and (max-width: 575px) {
  .buy-record h2 {
    font-size: 28px;
  }
  .buy-record_detail {
    margin-top: 10px;
  }
  .buy-record_item {
    padding: 15px;
  }
}

.detail {
  position: relative;
}

.detail h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #084D4B;
  padding-bottom: 35px;
  border-bottom: 1px solid #DEDEDE;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 35px;
}

.detail_content p {
  font-size: 18px;
  margin: 0;
  line-height: 1.8;
}

.detail_content a {
  color: #E96D01;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.detail_content a:hover {
  color: #009698;
}

@media screen and (max-width: 575px) {
  .detail h1 {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.term .detail_content p {
  line-height: 2.2;
  font-size: 16px;
}
/*# sourceMappingURL=style.css.map */