@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "Lato", "noto sans TC", serif;
  background-color: #013300;
  min-height: 100vh;
  color: #fff;
}

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

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

a:hover {
  color: #fff;
}

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

img {
  max-width: 100%;
}

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

@media screen and (max-width: 1199px) {
  .container {
    max-width: inherit;
  }
}

.banner {
  margin-bottom: 40px;
  overflow: hidden;
}

.banner marquee {
  padding: 10px;
  background-color: #000;
  color: #FFFAD3;
  margin: 0;
}

.banner__swiper {
  margin-top: -5px;
}

.banner__swiper-item {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
}

.banner__swiper-item > 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 .container {
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  .banner marquee {
    font-size: 12px;
    padding: 8px 10px;
  }
  .banner__swiper-item {
    padding-bottom: 60%;
  }
}

.header {
  margin-bottom: 35px;
}

.header__tab {
  gap: 15px;
}

.header__tab .nav-link {
  width: 67px;
  height: 67px;
  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;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  position: relative;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__tab .nav-link::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 12px;
  border-radius: 50%;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: blur(6px);
          filter: blur(6px);
}

.header__tab .nav-link::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__tab .nav-link:hover, .header__tab .nav-link.active {
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.header__tab .nav-link:hover::after, .header__tab .nav-link.active::after {
  opacity: 1;
}

.header__tab .nav-link--blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#405D96), color-stop(50%, #030406), to(#030406));
  background: linear-gradient(to bottom, #405D96 0%, #030406 50%, #030406 100%);
  color: #61F1F2 !important;
}

.header__tab .nav-link--blue::before {
  background: radial-gradient(#EEF4FF 0%, #86A2DA 57%, #5074C0 100%);
}

.header__tab .nav-link--blue::after {
  background-image: url(../img/tab-triangle-blue.svg);
}

.header__tab .nav-link--yellow {
  background: -webkit-gradient(linear, left top, left bottom, from(#82763C), color-stop(50%, #000000), to(#000000));
  background: linear-gradient(to bottom, #82763C 0%, #000000 50%, #000000 100%);
  color: #F7F700 !important;
}

.header__tab .nav-link--yellow::before {
  background: radial-gradient(#E8E3CD 0%, #AC9E4F 57%, #726833 100%);
}

.header__tab .nav-link--yellow::after {
  background-image: url(../img/tab-triangle-yellow.svg);
}

.header__tab .nav-link--orange {
  background: -webkit-gradient(linear, left top, left bottom, from(#36992C), color-stop(50%, #000000), to(#020801));
  background: linear-gradient(to bottom, #36992C 0%, #000000 50%, #020801 100%);
  color: #FF9E00 !important;
}

.header__tab .nav-link--orange::before {
  background: radial-gradient(#C2EBBC 0%, #46C338 57%, #2E8225 100%);
}

.header__tab .nav-link--orange::after {
  background-image: url(../img/tab-triangle-orange.svg);
}

.header__tab .nav-link--green {
  background: -webkit-gradient(linear, left top, left bottom, from(#745268), color-stop(50%, #000000), to(#000000));
  background: linear-gradient(to bottom, #745268 0%, #000000 50%, #000000 100%);
  color: #65FB00 !important;
}

.header__tab .nav-link--green::before {
  background: radial-gradient(#E1D6DE 0%, #926882 57%, #6D4E62 100%);
}

.header__tab .nav-link--green::after {
  background-image: url(../img/tab-triangle-green.svg);
}

.header__tab .nav-link--brightblue {
  background: -webkit-gradient(linear, left top, left bottom, from(#3A7F80), color-stop(50%, #000000), to(#010101));
  background: linear-gradient(to bottom, #3A7F80 0%, #000000 50%, #010101 100%);
  color: #00F8F7 !important;
}

.header__tab .nav-link--brightblue::before {
  background: radial-gradient(#CCE7E7 0%, #64B8B9 57%, #459899 100%);
}

.header__tab .nav-link--brightblue::after {
  background-image: url(../img/tab-triangle-brightblue.svg);
}

.header__tab .nav-link--purple {
  background: -webkit-gradient(linear, left top, left bottom, from(#8000AB), color-stop(50%, #000000), to(#010101));
  background: linear-gradient(to bottom, #8000AB 0%, #000000 50%, #010101 100%);
  color: #FEB7FF !important;
}

.header__tab .nav-link--purple::before {
  background: radial-gradient(#E3CCE7 0%, #B964B8 57%, #884599 100%);
}

.header__tab .nav-link--purple::after {
  background-image: url(../img/tab-triangle-purple.svg);
}

.header__nav {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.header__nav p {
  margin: 0;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__nav-logout {
  text-decoration: underline;
}

.header .c-header-nav-item {
  border: 1px solid #000;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#868079), color-stop(50%, #808080), to(#6A6A69));
  background: linear-gradient(to bottom, #868079 0%, #808080 50%, #6A6A69 100%);
  padding: 3px;
  display: block;
  width: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .c-header-nav-item__wrapper {
  padding: 5px 1px 2px;
  background: linear-gradient(45deg, #393939, #36384E);
  -webkit-box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
}

.header .c-header-nav-item__wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #929292;
  top: 0;
  left: 0;
}

.header .c-header-nav-item__wrapper span {
  display: block;
}

.header .c-header-nav-item__ch {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 2px solid #FFFF00;
  margin-bottom: 2px;
}

.header .c-header-nav-item__en {
  font-size: 14px;
  font-weight: 700;
  color: #52CDCC;
}

.header .c-header-nav-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 991px) {
  .header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__tab {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: block;
    text-align: center;
  }
  .header__nav ul {
    margin: 30px 0;
  }
}

@media screen and (max-width: 575px) {
  .header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header__tab {
    gap: 10px;
  }
  .header__tab .nav-link {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 12px;
  }
  .header__tab .nav-link::before {
    width: 15px;
    height: 6px;
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  .header__tab .nav-link::after {
    width: 10px;
    height: 10px;
    top: calc(100% + 5px);
  }
  .header__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header__nav p {
    width: 100%;
    text-align: center;
  }
  .header__nav ul {
    gap: 12px;
  }
  .header .c-header-nav-item {
    width: 80px;
  }
  .header .c-header-nav-item__ch {
    font-size: 14px;
  }
  .header .c-header-nav-item__en {
    font-size: 12px;
  }
}

@media screen and (max-width: 350px) {
  .header__nav ul {
    gap: 8px;
  }
  .header .c-header-nav-item {
    width: 65px;
  }
  .header .c-header-nav-item__ch {
    font-size: 12px;
  }
  .header .c-header-nav-item__en {
    font-size: 10px;
  }
}

.content {
  margin-bottom: 120px;
  overflow: hidden;
}

.content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.content .main {
  width: calc(100% - 200px - 30px);
}

@media screen and (max-width: 991px) {
  .content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content .main {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .content {
    margin-bottom: 60px;
  }
  .content .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.table {
  width: 100%;
  margin-bottom: 40px;
}

.table th {
  position: relative;
  padding: 5px;
  background-color: #121212;
  height: 70px;
  vertical-align: middle;
  border-color: #C00906;
}

.table th span {
  font-size: 20px;
  font-weight: 700;
  display: block;
  text-align: center;
  width: 100%;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
}

.table th .th-border {
  color: transparent;
  -webkit-text-stroke: 4px #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.table th .th-fill {
  color: #CCCC02;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.table th .th-shadow {
  text-shadow: 0 0 30px #00f00c;
}

.table th .th-highlight {
  padding: 5px 13px;
  border: 1px solid;
}

.table th .th-highlight.th-fill {
  border-color: #739B06;
}

.table th.spread::after {
  position: absolute;
  content: "";
  width: calc((100% - 88px) / 2);
  height: 1px;
  background-color: #739B06;
  top: 50%;
  right: 0;
}

.table th.sell::after, .table th.sell::before {
  position: absolute;
  content: "";
  width: calc((100% - 68px) / 2);
  height: 1px;
  background-color: #739B06;
  top: 50%;
}

.table th.sell::after {
  right: 0;
}

.table th.sell::before {
  left: 0;
}

.table th.receive::before {
  position: absolute;
  content: "";
  width: calc((100% - 88px) / 2);
  height: 1px;
  background-color: #739B06;
  top: 50%;
  left: 0;
}

.table td {
  padding: 12px 5px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  vertical-align: middle;
  border: 0;
}

.table td.td-blue {
  color: #58FFFF;
}

.table td.td-deepblue {
  color: #00CCFF;
}

.table td.td-green {
  color: #99CC01;
}

.table td.td-yellow {
  color: #FFFF00;
}

.table td.td-btn a {
  padding: 6px 20px;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#341F01), color-stop(12%, #4C2E01), color-stop(29%, #B66E01), color-stop(38%, #F49F01), color-stop(49%, #FFBC03), color-stop(61%, #FFE301), color-stop(69%, #FFCE00), color-stop(89%, #FFBA00), to(#FF9900));
  background: linear-gradient(to bottom, #341F01 0%, #4C2E01 12%, #B66E01 29%, #F49F01 38%, #FFBC03 49%, #FFE301 61%, #FFCE00 69%, #FFBA00 89%, #FF9900 100%);
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.table td.td-btn a span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.table td.td-btn a span.text-border {
  color: transparent;
  -webkit-text-stroke: 4px #000000;
}

.table td.td-btn a span.text-fill {
  color: #FFEB03;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.table td.td-btn a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.table td.td-result img {
  width: 105px;
}

.table tr:nth-child(odd) td {
  background-color: #0C0C0C;
}

.table tr:nth-child(even) td {
  background-color: #1F1F1F;
}

@media screen and (max-width: 991px) {
  .table .score {
    display: none;
  }
  .table th {
    height: 60px;
  }
  .table th span {
    font-size: 14px;
  }
  .table th .th-highlight {
    padding: 4px 8px;
  }
  .table th.spread::after {
    width: calc((100% - 60px) / 2);
  }
  .table th.sell::after, .table th.sell::before {
    width: calc((100% - 46px) / 2);
  }
  .table th.receive::before {
    width: calc((100% - 60px) / 2);
  }
  .table td {
    padding: 12px 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    vertical-align: middle;
    border: 0;
  }
  .table td.td-btn a {
    padding: 6px 10px;
  }
  .table td.td-btn a span {
    font-size: 12px;
  }
  .table td.td-result img {
    width: 70px;
  }
}

@media screen and (max-width: 575px) {
  .table th {
    height: 50px;
  }
  .table th span {
    font-size: 11px;
  }
  .table th.spread::after {
    width: calc((100% - 46px) / 2);
  }
  .table th.sell::after, .table th.sell::before {
    width: calc((100% - 34px) / 2);
  }
  .table th.receive::before {
    width: calc((100% - 46px) / 2);
  }
  .table th .th-highlight {
    padding: 4px;
  }
  .table th:first-child {
    padding-left: 10px;
  }
  .table th:last-child {
    padding-right: 10px;
  }
  .table td {
    font-size: 12px;
    padding: 12px 3px;
  }
  .table td.td-btn a {
    padding: 4px;
  }
  .table td.td-btn a span {
    font-size: 8px;
  }
  .table td.td-btn a span.text-border {
    -webkit-text-stroke: 2px #000000;
  }
  .table td.td-btn a span.text-fill {
    -webkit-transform: translate(-50%, calc(-50% + 1px));
            transform: translate(-50%, calc(-50% + 1px));
  }
  .table td.td-result img {
    width: 40px;
  }
  .table td:first-child {
    padding-left: 10px;
  }
  .table td:last-child {
    padding-right: 10px;
  }
}

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

.pagination a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination a:not(.pagination__num):hover {
  color: #4196FF;
}

.pagination__num {
  width: 40px;
  height: 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-color: #1F1F1F;
  font-weight: 700;
}

.pagination__num.active {
  background-color: #4196FF;
}

.pagination__num:hover {
  background-color: #4196FF;
}

@media screen and (max-width: 575px) {
  .pagination a {
    font-size: 14px;
  }
  .pagination__num {
    width: 35px;
    height: 35px;
  }
}

.sidebar {
  width: 200px;
}

.sidebar .c-sidebar-line {
  background-color: #02B902;
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 15px;
}

.sidebar .c-sidebar-line__title {
  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;
  margin-bottom: 10px;
}

.sidebar .c-sidebar-line__title img {
  width: 35px;
}

.sidebar .c-sidebar-line__title h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.sidebar .c-sidebar-line__id {
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  opacity: 0.88;
  margin-top: 5px;
}

.sidebar .c-sidebar-phone {
  padding: 13px 15px;
  border-radius: 10px;
  background-color: #68D8B7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.sidebar .c-sidebar-phone__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  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;
}

.sidebar .c-sidebar-phone__icon img {
  width: 17px;
}

.sidebar .c-sidebar-phone h3 {
  margin: 0;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-size: 16px;
}

.sidebar .c-sidebar-ad {
  width: 100%;
  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);
}

@media screen and (max-width: 991px) {
  .sidebar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
  .sidebar .c-sidebar-line, .sidebar .c-sidebar-phone, .sidebar .c-sidebar-ad {
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  .sidebar {
    gap: 16px;
  }
  .sidebar .c-sidebar-line {
    width: calc(50% - 8px);
    padding: 10px;
  }
  .sidebar .c-sidebar-line__title {
    display: none;
  }
  .sidebar .c-sidebar-phone, .sidebar .c-sidebar-ad {
    width: 100%;
  }
  .sidebar .c-sidebar-phone {
    padding: 10px;
  }
  .sidebar__right {
    width: calc(50% - 8px);
  }
}

.footer {
  padding: 15px;
  border-top: 1px solid #99CC01;
}

.footer p {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

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

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

.modal-member .modal-content {
  border-radius: 10px;
  background-color: #383838;
  border: 0;
  padding: 2px;
}

.modal-member .modal-body {
  padding: 40px 60px;
}

.modal-member .modal-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 35px;
}

.modal-member .modal-btn {
  margin: 25px auto 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-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#96CA17), to(#5D8F14));
  background: linear-gradient(to bottom, #96CA17 0%, #5D8F14 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 1px 4px #518000;
  padding: 8px 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal-member .modal-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.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 input, .modal-member_input select {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  padding: 0 15px;
  color: #fff;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-member_input input::-webkit-input-placeholder, .modal-member_input select::-webkit-input-placeholder {
  color: #FFFF98;
}

.modal-member_input input:-ms-input-placeholder, .modal-member_input select:-ms-input-placeholder {
  color: #FFFF98;
}

.modal-member_input input::-ms-input-placeholder, .modal-member_input select::-ms-input-placeholder {
  color: #FFFF98;
}

.modal-member_input input::placeholder, .modal-member_input select::placeholder {
  color: #FFFF98;
}

.modal-member_x {
  width: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
}

.modal-member_x > img {
  width: 100%;
}

.modal-member_x:hover {
  opacity: 0.7;
}

.modal-member_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}

.modal-member_checkbox input {
  width: 20px;
  height: 20px;
  position: relative;
}

.modal-member_checkbox input::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #383838;
  border: 1px solid #FFFF98;
  z-index: 0;
}

.modal-member_checkbox input:checked::before {
  opacity: 0;
}

.modal-member_checkbox label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.modal-member_checkbox label a {
  text-decoration: underline;
}

@media screen and (max-width: 575px) {
  .modal-member .modal-body {
    padding: 0;
  }
  .modal-member .modal-content_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal-member .modal-dialog {
    margin-top: 30px;
  }
}

.buy_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.buy_content {
  width: calc(100% - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.buy_pic {
  width: 200px;
  padding-bottom: calc(200px * 0.8705);
  position: relative;
}

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

.buy_text {
  width: calc(100% - 200px);
  padding-left: 30px;
}

.buy_name {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.buy_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.buy_select select {
  border-radius: 5px;
  border: 1px solid #739B06;
  background-color: #000;
  padding: 10px 60px 10px 20px;
  color: #fff;
}

.buy_btn {
  width: 130px;
  padding: 8px;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#96CA17), to(#5D8F14));
  background: linear-gradient(to bottom, #96CA17, #5D8F14);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 4px #518000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.buy_btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
  .buy_item {
    display: block;
    padding: 15px;
  }
  .buy_content {
    display: block;
    width: 100%;
  }
  .buy_pic {
    width: 100%;
    padding-bottom: 87.05%;
    margin-bottom: 20px;
  }
  .buy_text {
    width: 100%;
    padding: 0;
  }
  .buy_btn {
    width: 100%;
  }
  .buy_btn_login {
    margin: 0 auto;
  }
  .buy_name {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .buy_select {
    display: block;
  }
  .buy_select select {
    width: 100%;
    margin-bottom: 15px;
    height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    font-size: 14px;
  }
}

.term {
  padding: 30px;
}

.term h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

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

.product {
  border-bottom: 1px solid #8E8E07;
  padding-bottom: 15px;
}

.product .row {
  margin-left: -20px;
  margin-right: -20px;
}

.product .row > div {
  padding-left: 20px;
  padding-right: 20px;
}

.product .c-product-item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product .c-product-item__pic {
  width: 200px;
  padding-bottom: calc(200px * 0.8705);
  position: relative;
}

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

.product .c-product-item__text {
  width: calc(100% - 200px);
  padding-left: 20px;
}

.product .c-product-item__text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product .c-product-item__remain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}

.product .c-product-item__remain p {
  margin: 0;
  line-height: 1;
}

.product .c-product-item__remain-text {
  opacity: 0.7;
}

.product .c-product-item__remain-num {
  color: #FFFF00;
  font-size: 40px;
  font-weight: 700;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

@media screen and (max-width: 575px) {
  .product {
    padding: 0 40px;
  }
  .product .c-product-item__pic {
    width: 100px;
    padding-bottom: calc(100px * 0.8705);
  }
  .product .c-product-item__text {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
  .product .c-product-item__text h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .product .c-product-item__remain-text {
    font-size: 14px;
  }
  .product .c-product-item__remain-num {
    color: #FFFF00;
    font-size: 32px;
  }
}

.record {
  margin-top: 45px;
  background-color: #1F1F1F;
  padding: 30px;
}

.record h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.record_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}

.record_pic {
  width: 150px;
  padding-bottom: calc(150px * 0.8705);
  position: relative;
}

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

.record_text {
  width: calc(100% - 150px);
  padding-left: 25px;
}

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

.record_title h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.record_price {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #FFFF00;
}

.record_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.record_info h3 {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.record_info .code {
  font-size: 16px;
  margin: 0;
  color: #fff;
  opacity: 0.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.record_info .code img {
  width: 8px;
}

.record_info .time {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  opacity: 0.8;
}

.record_status {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
}

.record_status.notpay {
  background-color: #00CCFF;
}

.record_status.paid {
  background-color: #99CC01;
}

@media screen and (max-width: 575px) {
  .record {
    padding: 20px 15px;
  }
  .record h2 {
    font-size: 32px;
  }
  .record_item {
    display: block;
  }
  .record_pic {
    width: 100%;
    padding-bottom: 87.05%;
    margin-bottom: 20px;
  }
  .record_text {
    width: 100%;
    padding: 0;
  }
  .record_title h3 {
    font-size: 20px;
  }
  .record_price {
    font-size: 20px;
  }
  .record_info {
    width: 100%;
    gap: 5px;
  }
  .record_info h3 {
    width: 100%;
    font-size: 14px;
  }
  .record_info p {
    font-size: 14px !important;
  }
}

.news {
  margin-bottom: 40px;
}

.news_item {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_item:nth-child(odd) {
  background-color: #1F1F1F;
}

.news_item:nth-child(even) {
  background-color: #0C0C0C;
}

.news_item_date {
  font-family: "Lato", sans-serif;
  color: #FFFF00;
  font-weight: 700;
  margin-bottom: 8px;
}

.news_item_title {
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.news_item_text {
  width: calc(100% - 16px);
  padding-right: 15px;
}

.news_item_arrow {
  width: 16px;
}

.news-detail_head {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.news-detail_head h1 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 700;
}

.news-detail_date {
  color: #FFFF00;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.news-detail_content {
  padding: 40px 0;
}

.news-detail_content p {
  color: #fff;
  margin: 0;
  text-align: justify;
  line-height: 1.6;
}

.news-detail_back {
  background: -webkit-gradient(linear, left top, left bottom, from(#96CA17), to(#5D8F14));
  background: linear-gradient(to bottom, #96CA17 0%, #5D8F14 100%);
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */