@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: -webkit-gradient(linear, left top, left bottom, from(#A37427), to(#703D0D));
  background: linear-gradient(to bottom, #A37427 0%, #703D0D 100%);
  min-height: 100vh;
}

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

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

a:hover {
  color: #fff;
}

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

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

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 35px 40px;
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.63)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.63) 0%, transparent 100%);
  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;
  width: 500px;
  height: 70px;
  background-image: url(../img/nav-big.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.header_nav ul a {
  display: block;
  width: 90px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.header_nav ul a span {
  display: block;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav ul a::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_nav ul a.active span {
  color: #fff;
}

.header_nav ul a.active .header_nav_active {
  opacity: 1;
}

.header_nav ul a.active::after {
  opacity: 0;
}

.header_nav ul a:not(.active):hover span {
  opacity: 0.7;
}

.header_nav ul a.noline::after {
  opacity: 0;
}

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

.header_nav_active {
  position: absolute;
  width: 98px;
  height: 36px;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  opacity: 0;
}

.header_member {
  width: 160px;
  height: 36px;
  background-image: url(../img/nav-small.svg);
  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: 50%;
  right: 40px;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.header_member ul a::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header_member ul a:not(.loginActive):hover {
  opacity: 0.7;
}

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

.header_member.loginActive {
  background-image: url(../img/nav-small-active.svg);
}

.header_member.loginActive ul a {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

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

.header_menu_bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  left: 0;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -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 20px;
  }
  .header_nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(#431800), color-stop(9%, #451500), color-stop(41%, #521F06), color-stop(88%, #7D370B), to(#A07642));
    background: linear-gradient(to bottom, #431800 0%, #451500 9%, #521F06 41%, #7D370B 88%, #A07642 100%);
    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 a::after {
    display: none;
  }
  .header_nav.active {
    right: 0;
  }
  .header_member {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

.banner {
  position: relative;
  margin-bottom: 60px;
}

.banner_item {
  position: relative;
  width: 100%;
  padding-bottom: 42%;
}

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

.banner_text {
  position: absolute;
  width: 85%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner_text p {
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 1.7;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.banner_text_green {
  background: -webkit-gradient(linear, left top, right top, from(#41FF9A), to(#00B97B));
  background: linear-gradient(to right, #41FF9A 0%, #00B97B 100%);
  background-clip: text;
  color: transparent;
}

.banner_text_red {
  background: -webkit-gradient(linear, left top, right top, from(#FF8383), to(#FF4C4C));
  background: linear-gradient(to right, #FF8383 0%, #FF4C4C 100%);
  background-clip: text;
  color: transparent;
}

.banner_text_gold {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
}

.banner_title {
  padding: 5px 30px 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 35px;
}

.banner_title span {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
}

.banner_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: 20px;
  right: 40px;
  z-index: 3;
  position: absolute;
}

.banner_pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin-left: 8px;
}

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

.banner_gradient {
  position: absolute;
  width: 100%;
  padding-bottom: 17.78%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  left: 0;
  bottom: 0;
  z-index: 1;
}

.banner h1 {
  position: absolute;
  bottom: 9%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  background-clip: text;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  z-index: 2;
  width: 100%;
  text-align: center;
}

.banner-inner {
  position: relative;
  width: 100%;
  padding-bottom: 29%;
  margin-bottom: 60px;
}

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

@media screen and (max-width: 991px) {
  .banner_item {
    padding-bottom: 80%;
  }
  .banner_pagination {
    right: 20px;
  }
  .banner_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-width: 1px;
    margin-left: 5px;
  }
  .banner_gradient {
    padding-bottom: 35%;
  }
  .banner h1 {
    font-size: 60px;
  }
  .banner_title {
    margin-bottom: 20px;
  }
  .banner_title span {
    font-size: 18px;
  }
  .banner_text p {
    font-size: 22px;
  }
}

@media screen and (max-width: 575px) {
  .banner h1 {
    font-size: 36px;
  }
  .banner_pagination {
    bottom: 10px;
  }
  .banner_text {
    width: 100%;
    padding: 0 20px;
    top: inherit;
    bottom: 20%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
  .banner_text p {
    font-size: 18px;
  }
  .banner_item {
    padding-bottom: 120%;
  }
  .banner_title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner_title span {
    font-size: 14px;
  }
}

.mainContent {
  padding: 0 55px 150px;
}

@media screen and (max-width: 1300px) {
  .mainContent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 991px) {
  .mainContent {
    padding-bottom: 80px;
  }
}

.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;
}

.sidebar {
  width: 300px;
}

.sidebar_news {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  padding: 2px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.sidebar_news_inner {
  background-color: #402903;
  border-radius: 28px;
  padding: 30px 20px;
}

.sidebar_news_main {
  padding-top: 10px;
  border-top: 1px solid #574312;
  padding-bottom: 20px;
}

.sidebar_news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar_news_item:hover {
  opacity: 0.7;
}

.sidebar_news_title {
  width: calc(100% - 50px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding-right: 15px;
}

.sidebar_news_date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  width: 50px;
}

.sidebar_news_more {
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.05em;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar_news_more:hover {
  padding: 15px;
}

@media screen and (max-width: 1300px) {
  .sidebar {
    width: 250px;
  }
}

@media screen and (max-width: 991px) {
  .sidebar {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.mainbar {
  width: calc(100% - 300px);
  padding-left: 40px;
}

@media screen and (max-width: 1300px) {
  .mainbar {
    width: calc(100% - 250px);
    padding-left: 20px;
  }
}

@media screen and (max-width: 991px) {
  .mainbar {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
    margin-bottom: 40px;
  }
}

.analyze {
  border-radius: 0 0 30px 30px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
}

.analyze-tab {
  border: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
}

.analyze-tab .nav-link {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #392300;
  border: 0;
  border-radius: 0;
  margin: 0;
}

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

.analyze-tab .nav-link.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
}

.analyze-tab .nav-link.active .analyze_icon > img.normal {
  opacity: 0;
}

.analyze-tab .nav-link.active .analyze_icon > img.active {
  opacity: 1;
}

.analyze-tab .nav-link.active span {
  color: #392300;
}

.analyze-tab .nav-item {
  position: relative;
}

.analyze-tab .nav-item:first-child .nav-link {
  border-radius: 20px 0 0 0;
}

.analyze-tab .nav-item:first-child::before {
  display: none;
}

.analyze-tab .nav-item:last-child .nav-link {
  border-radius: 0 20px 0 0;
}

.analyze-tab .nav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #9D7C2C;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.analyze_icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.analyze_icon > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.analyze_icon > img.active {
  opacity: 0;
}

.analyze_inner {
  background-color: #402903;
  border-radius: 0 0 28px 28px;
  padding: 20px 20px 60px;
}

.analyze_tabContent {
  overflow-x: auto;
}

.analyze_table {
  width: 100%;
  min-width: 700px;
}

.analyze_table th {
  padding: 15px 5px;
  font-size: 14px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid #574312;
  text-align: center;
}

.analyze_table td {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
}

.analyze_table_btn {
  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: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.analyze_table_result {
  width: 37px;
}

.analyze_hint {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .analyze_inner {
    padding: 20px 15px 60px;
  }
}

.footer {
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer_info_title {
  margin-bottom: 15px;
  width: 132px;
  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;
  background-image: url(../img/contact-border.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer_info h3 {
  font-size: 20px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
  margin: 0;
}

.footer_info_pic {
  width: 100px;
}

.footer_text {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  .footer_info {
    margin-bottom: 30px;
  }
  .footer_text {
    text-align: left;
    padding-left: 0;
    font-size: 12px;
  }
}

.buy_sport {
  margin-bottom: 45px;
}

.buy_title img {
  width: 40px;
}

.buy_list > .row {
  margin-left: -15px;
  margin-right: -15px;
}

.buy_list > .row > div {
  padding-left: 15px;
  padding-right: 15px;
}

.buy_sport {
  margin-bottom: 45px;
}

.buy_item {
  border-radius: 15px;
  padding: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
}

.buy_item_inner {
  background-color: #402903;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.buy_name {
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 15px;
  border-bottom: 1px solid #574312;
  color: #fff;
}

.buy_price {
  font-family: "Karla", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 36px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
  margin-bottom: 35px;
}

.buy_btn {
  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: 10px;
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.buy_btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  .buy_item {
    margin-bottom: 30px;
  }
}

.page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.page-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  margin-left: 10px;
  color: #fff;
}

.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_title {
  width: 200px;
  height: 75px;
  background-image: url(../img/contact-border.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 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;
}

.contact_title h2 {
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 700;
}

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

.contact_qrcode_item > img {
  width: 190px;
  display: block;
  margin: 0 auto 20px;
}

.contact_qrcode_item > h3 {
  text-align: center;
  color: #fff;
  font-family: "Karla", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

.news {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.news_detail {
  border-radius: 30px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  position: relative;
}

.news_detail_inner {
  background-color: #402903;
  border-radius: 28px;
  padding: 40px;
}

.news_detail h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
  padding-bottom: 30px;
  border-bottom: 1px solid #574312;
  line-height: 1.7;
  text-align: justify;
}

.news_detail_link {
  padding-top: 30px;
}

.news_detail_link .row {
  margin-left: -10px;
  margin-right: -10px;
}

.news_detail_link .row > div {
  padding-left: 10px;
  padding-right: 10px;
}

.news_detail_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_detail_link a span {
  color: #fff;
  width: calc(100% - 24px);
  display: block;
  padding-right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
}

.news_detail_link a svg {
  width: 24px;
  height: 24px;
}

.news_detail_link a svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_detail_link a:hover {
  border-color: #F2C459;
}

.news_detail_link a:hover span {
  color: #F2C459;
}

.news_detail_link a:hover svg path {
  stroke: #F2C459;
}

.news_detail_back {
  position: absolute;
  width: 50px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 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;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  top: 0;
  left: -85px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_detail_back img {
  width: 35px;
}

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

.news .sidebar_news_inner {
  padding-bottom: 60px;
}

@media screen and (max-width: 575px) {
  .news_detail h1 {
    font-size: 20px;
  }
  .news_detail_inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .news_detail_back {
    position: static;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
  }
  .news_detail_back > img {
    width: 60%;
  }
}

.record {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  padding: 2px;
}

.record_inner {
  border-radius: 28px;
  background-color: #402903;
  padding: 30px;
}

.record_main {
  padding-top: 20px;
  border-top: 1px solid #574312;
}

.record_greet {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

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

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

.record_item {
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  padding: 1px;
  margin-bottom: 30px;
}

.record_item_inner {
  border-radius: 14px;
  background-color: #402903;
  padding: 20px 20px 25px;
}

.record_name {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #574312;
}

.record_remain {
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.record_remain span {
  color: #fff;
  line-height: 1;
}

.record_remain_num {
  font-family: "Karla", sans-serif;
  margin: 0 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent !important;
  font-style: italic;
  font-weight: 900;
  font-size: 42px;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.record_btn {
  width: 260px;
  height: 55px;
  border-radius: 15px;
  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: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-weight: 700;
  margin: 20px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.record_btn:hover {
  width: 300px;
}

@media screen and (max-width: 575px) {
  .record_inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

.modal-member .modal-content {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEDBE), to(#E6B538));
  background: linear-gradient(to bottom, #FFEDBE 0%, #E6B538 100%);
  border: 0;
  padding: 2px;
}

.modal-member .modal-content_inner {
  background-color: #402903;
  border-radius: 28px;
  padding: 20px;
}

.modal-member_title {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE3A7), to(#E3A405));
  background: linear-gradient(to bottom, #FFE3A7 0%, #E3A405 100%);
  background-clip: text;
  color: transparent;
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #574312;
  font-weight: 700;
}

.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: 20px;
}

.modal-member_input label {
  color: #fff;
  display: block;
  width: 40px;
  text-align: center;
}

.modal-member_input input, .modal-member_input select {
  width: calc(100% - 40px - 15px);
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 0 10px;
  color: #fff;
}

.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 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;
}

.modal-member_input.lg label {
  width: 80px;
}

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

.modal-member_btn {
  width: 200px;
  height: 48px;
  border-radius: 15px;
  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: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  color: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  margin: 20px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal-member_btn:hover {
  width: 250px;
}

@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 {
  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;
  width: 30px;
  height: 30px;
  font-family: "Karla", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination a.active, .pagination a:hover {
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.pagination a.active span, .pagination a:hover span {
  background: -webkit-gradient(linear, left top, left bottom, from(#FAC131), to(#C27800));
  background: linear-gradient(to bottom, #FAC131 0%, #C27800 100%);
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 900;
}

.pagination_arrow {
  border: 0 !important;
}

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

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

.pagination_arrow:hover svg path {
  stroke: #402903;
}

@media screen and (max-width: 575px) {
  .pagination {
    gap: 10px;
  }
}
/*# sourceMappingURL=style.css.map */