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

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

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

a:hover {
  color: #ffffff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

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

button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  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;
  z-index: 100;
  padding: 0 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #171717;
}

.header_logo {
  display: block;
  width: 200px;
}

.header_logo > img {
  width: 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;
  height: 100%;
}

.header_nav ul li {
  height: 100%;
  padding: 0 4px;
  position: relative;
}

.header_nav ul li a {
  padding: 8px 16px;
  border-radius: 100px;
  display: block;
}

.header_nav ul li a:hover {
  opacity: 0.7;
}

.header_nav ul li a.active {
  background-color: #fff;
}

.header_nav ul li a.active .header_nav_text {
  color: #171717;
}

.header_nav_text {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
}

.header_icon {
  width: 28px;
  height: 28px;
  display: none;
}

.header_icon path {
  fill: #ffffff;
}

.header_greet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 14px;
  margin: 0;
}

.header_greet p {
  margin: 0;
}

.header_greet a {
  text-decoration: underline !important;
  color: #b9b9b9;
}

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

@media screen and (max-width: 1399px) {
  .header {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header_nav {
    position: fixed;
    width: 100%;
    height: 70px;
    background: #171717;
    bottom: 0;
    right: 0;
    z-index: 5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_nav ul {
    height: 100%;
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_nav ul li {
    height: 100%;
    width: 25%;
    margin: 0;
  }
  .header_nav ul li::after {
    display: none;
  }
  .header_nav ul li a {
    height: 100%;
    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;
    padding: 0;
    gap: 4px;
    opacity: 0.6;
    border-radius: 0;
  }
  .header_nav ul li a span {
    font-size: 12px;
  }
  .header_nav ul li a::after {
    display: none;
  }
  .header_nav ul li a.active {
    opacity: 1;
    background-color: transparent;
  }
  .header_nav ul li a.active .header_nav_text {
    color: #ffa127;
  }
  .header_nav_item.active .header_icon path {
    fill: #ffa127;
  }
  .header_icon {
    display: block;
  }
  .header_greet {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .header {
    height: 70px;
  }
  .header_logo {
    width: 140px;
  }
  .header .btn {
    padding: 6px 16px;
    font-size: 14px;
  }
  .header_line_text {
    font-size: 12px;
  }
}

main {
  overflow: hidden;
  padding-top: 80px;
}

@media screen and (max-width: 575px) {
  main {
    padding-bottom: 70px;
    padding-top: 70px;
  }
}

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

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

.btn {
  padding: 8px 20px;
  border-radius: 100px;
  color: #171717;
  background-color: #ffa127;
}

.btn:hover {
  color: #ffffff;
}

.btn-border {
  border: 1px solid #ffffff;
  color: #e3a700;
  border-radius: 100px;
  background-color: transparent;
  color: #ffffff;
}

.btn-border:hover {
  background-color: #ffa127;
  border-color: #ffa127;
}

.btn-icon {
  padding: 0;
  width: 44px;
  height: 44px;
  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: #2d2d2d;
  border-radius: 50%;
}

.btn-icon img {
  width: 24px;
}

.btn-icon:hover {
  background-color: #ffa127;
}

.btn-login {
  font-size: 14px;
  text-decoration: underline;
  color: #ffa127;
}

.btn-login:hover {
  color: #ffffff;
}

@media screen and (max-width: 575px) {
  .btn-hasicon {
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .btn-hasicon span {
    display: none;
  }
}

.input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.input-item > label {
  color: #b9b9b9;
  margin: 0;
  display: block;
  font-size: 14px;
}

.input-item_main {
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 16px;
  background-color: #3a3a3a;
}

.input-item_main::-webkit-input-placeholder {
  color: #757575;
}

.input-item_main:-ms-input-placeholder {
  color: #757575;
}

.input-item_main::-ms-input-placeholder {
  color: #757575;
}

.input-item_main::placeholder {
  color: #757575;
}

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

.title > h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffa127;
  margin: 0;
  white-space: nowrap;
}

.title_line {
  width: 100%;
  height: 1px;
  background-color: #515151;
}

@media screen and (max-width: 991px) {
  .title {
    font-size: 28px;
  }
}

.inner-head {
  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: 40px;
  gap: 20px;
}

.inner-head .title {
  margin: 0;
}

.inner-head .btn-icon {
  width: 48px;
  height: 48px;
}

.inner-head .btn-icon svg path {
  stroke: #b9b9b9;
}

.inner-head .news-date {
  width: 76px;
}

.inner-head .title_line {
  width: calc(100% - 76px - 40px - 48px);
}

.sidebar {
  width: 300px;
}

.sidebar_item {
  margin-bottom: 28px;
  border-radius: 24px;
  padding: 24px;
  background-color: #2d2d2d;
}

.sidebar_qrcode img {
  margin-top: 16px;
}

.sidebar_qrcode p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

.sidebar_ad {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.sidebar_news_title {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #ffa127;
}

.sidebar_news .news-item {
  padding: 16px;
}

.sidebar_news .news-title {
  font-size: 16px;
}

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

.qrcode-text {
  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: 8px 16px;
  border-radius: 100px;
  background-color: #ffa127;
  color: #171717;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.qrcode-text_title {
  font-weight: 500;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
}

.qrcode-text_title::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 8px;
  background-color: #2d2d2d;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qrcode-text_content {
  font-weight: 700;
}

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

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

.table-common {
  width: 100%;
}

.table-common th {
  padding: 20px 10px;
  font-size: 16px;
  text-align: center;
  font-weight: 900;
  background-color: #393939;
  border-bottom: 1px solid #515151;
}

.table-common td {
  text-align: center;
  padding: 16px 10px;
  border-bottom: 1px solid #515151;
}

.table-common td.table_date .table_date_big {
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 900;
  line-height: 1;
}

.table-common td.table_date .table_date_small {
  font-size: 12px;
  margin: 0;
}

.table-common td.table_category {
  color: #eb8787;
}

.table-common td.table_give {
  color: #ffff67;
}

.table-common td.table_lines {
  color: #8ee1bf;
}

.table-common td.table_get {
  color: #b48cd4;
}

.table-common td.table_recommend {
  color: #ffa127;
}

.table-common td.table_recommend button {
  font-size: 14px;
  color: #ffa127;
  text-decoration: underline;
}

.table-common td.table_result img {
  width: 70px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .table-common th,
  .table-common td {
    font-size: 10px;
    padding: 10px 3px;
  }
  .table-common th::before {
    width: calc(100% - 6px);
    bottom: 0;
  }
  .table-common td.table_result img {
    width: 25px;
  }
  .table-common td.table_date p {
    margin: 0;
  }
  .table-common td.table_date p.table_date_big {
    font-size: 18px !important;
  }
  .table-common td.table_date p.table_date_small {
    font-size: 8px;
  }
  .table-common td.table_recommend button {
    font-size: 10px;
  }
  .table-common td.table_recommend button span {
    display: none;
  }
  .table-common .btn-border {
    font-size: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    text-decoration: underline;
    font-weight: 500;
  }
}

.banner {
  position: relative;
  padding: 60px 0;
}

.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.banner_bigtext {
  width: 270px;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner_title {
  width: 50%;
  border-radius: 50%;
  background-color: #ffa127;
  overflow: hidden;
  margin-left: 228px;
}

.banner_title .swiper-slide {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

.banner_title_text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #171717;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
}

.banner_title_text.sm {
  font-size: 42px;
}

.banner_title_text.lg {
  font-size: 48px;
}

.banner_pic {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #171717;
}

.banner_pic-wrap {
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  position: absolute;
  z-index: 5;
}

.banner_pic .swiper-slide {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

.banner_pic_inner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner_text_item {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner_text_title {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 28px;
}

.banner_text_title br {
  display: none;
}

.banner_text_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.banner_text_content p {
  padding: 8px 16px;
  font-weight: 700;
  color: #ffa127;
  font-size: 20px;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 16px;
}

.banner_arrow {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1700px) {
  .banner_arrow {
    right: 20px;
  }
}

@media screen and (max-width: 1399px) {
  .banner_title_text {
    padding: 60px;
    font-size: 36px !important;
  }
}

@media screen and (max-width: 1199px) {
  .banner_bigtext {
    width: 180px;
  }
  .banner_title {
    margin-left: 130px;
  }
}

@media screen and (max-width: 991px) {
  .banner .container {
    max-width: inherit;
  }
  .banner_bigtext {
    display: none;
  }
  .banner_title {
    margin: 0;
  }
  .banner_title_text {
    font-size: 32px !important;
  }
  .banner_title, .banner_pic-wrap {
    width: 60%;
  }
  .banner_arrow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    right: 50%;
    top: inherit;
    bottom: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .banner_arrow-prev, .banner_arrow-next {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@media screen and (max-width: 767px) {
  .banner_title_text {
    padding: 40px;
    font-size: 24px !important;
  }
  .banner_pic {
    border-width: 8px;
  }
}

@media screen and (max-width: 575px) {
  .banner {
    padding: 40px 0 60px;
  }
  .banner_title {
    width: 55%;
  }
  .banner_title_text {
    padding: 28px;
    font-size: 16px !important;
  }
  .banner_pic {
    border-width: 4px;
  }
  .banner_pic-wrap {
    width: 55%;
  }
  .banner_arrow {
    gap: 12px;
  }
  .banner .btn-icon {
    width: 32px;
    height: 32px;
  }
  .banner .btn-icon img {
    width: 16px;
  }
}

.footer {
  padding: 12px 0;
  background-color: #ffa127;
}

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

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

.buy_item {
  margin-bottom: 20px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #515151;
}

.buy_select {
  border-radius: 100px;
  padding: 8px 48px 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/chevron-down.svg);
  background-size: 16px;
  background-position: calc(100% - 16px) center;
  background-repeat: no-repeat;
  border: 1px solid #ffffff;
  color: #ffffff;
  width: 150px;
  height: 40px;
}

.buy_select-way {
  width: 180px;
}

.buy-login .btn-icon {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .buy_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .buy_item .btn {
    width: 100%;
  }
  .buy .product-info,
  .buy .product-action {
    width: 100%;
  }
  .buy_select {
    width: 100%;
  }
}

.recored-section {
  padding: 24px;
  border-radius: 24px;
  background-color: #2d2d2d;
  margin-bottom: 40px;
}

.recored-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

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

.product-info_pic {
  width: 80px;
  padding-bottom: 80px;
  border-radius: 50%;
  position: relative;
}

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

.product-info_text p {
  margin: 0;
  color: #b9b9b9;
}

.product-info_name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

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

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

.product_item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #515151;
}

.product_item .product-info {
  width: 70%;
}

.product_remain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  width: 30%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.product_remain p {
  margin: 0;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  color: #b9b9b9;
  font-size: 20px;
  font-weight: 500;
}

.product_remain p.num {
  color: #ffa127;
  font-size: 28px;
  font-weight: 700;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 991px) {
  .product_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product_item .product-info {
    width: 100%;
    margin-bottom: 12px;
  }
  .product_remain {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #2d2d2d;
  }
}

@media screen and (max-width: 767px) {
  .product-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  padding: 20px;
  border: 1px solid #515151;
  border-radius: 16px;
  margin-bottom: 12px;
}

.news-item:last-child {
  margin-bottom: 0;
}

.news-item:hover {
  border-color: #ffa127;
}

.news-item:hover .news-title, .news-item:hover .news-date {
  color: #ffa127;
}

.news-date {
  font-size: 14px;
  color: #b9b9b9;
  width: 44px;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-title {
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 18px;
  width: calc(100% - 16px - 44px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-detail_content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
}

.news-detail_content > p {
  line-height: 2;
  margin: 0;
}

@media screen and (max-width: 575px) {
  .news-detail_content {
    width: 100%;
    padding: 0;
  }
  .news-detail_content h1 {
    font-size: 24px;
  }
}

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

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

.modal-member .modal-head {
  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: 24px;
  gap: 16px;
}

.modal-member .modal-head_line {
  width: 100%;
  height: 1px;
  background-color: #515151;
}

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

.modal-member .modal_title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #ffa127;
  white-space: nowrap;
}

.modal-member_x {
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
}

.modal-member_x path {
  stroke: #b9b9b9;
}

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

.modal-member .input-item {
  margin-bottom: 16px;
}

.modal-member .input-item label {
  white-space: nowrap;
}

.modal-member .input-item_main {
  width: 100%;
}

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

.modal-member_btns .btn {
  padding: 12px 20px;
}

.modal-member .btn-signup {
  color: #ffa127;
  font-size: 14px;
  text-decoration: underline;
  display: block;
}

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

.pagination {
  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: 40px auto 0;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 100px;
  background-color: #393939;
}

.pagination ul a {
  position: relative;
  z-index: 0;
}

.pagination ul a:hover, .pagination ul a.active {
  color: #171717;
  font-weight: 700;
  background-color: #ffa127;
}

.pagination ul a:hover svg path, .pagination ul a.active svg path {
  stroke: #ffa127;
}

.pagination a {
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
}

.pagination_arrow {
  background-color: #393939;
}

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

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

.pagination_arrow svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: #b9b9b9;
  stroke-width: 2px;
}

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

@media screen and (max-width: 575px) {
  .pagination {
    gap: 10px;
  }
  .pagination ul {
    padding: 4px 8px;
  }
  .pagination ul a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination_arrow {
    width: 36px !important;
    height: 36px !important;
  }
  .pagination_arrow svg {
    width: 20px;
    height: 20px;
  }
}

.analyze {
  position: relative;
}

.competition-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  border: 0 !important;
  gap: 16px;
}

.competition-list .nav-link {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid #b9b9b9;
  color: #b9b9b9;
  font-size: 14px;
}
.competition-list .nav-link a {
  display: none;
  color: #ffa127;
}
.competition-list .nav-link br {
  display: none;
}

.competition-list .nav-link.active > img {
  opacity: 1;
}

.competition-list .nav-link:hover {
  opacity: 0.7;
}

.competition-intro {
  position: absolute;
  margin: 0;
  right: 0;
  bottom: calc(100% + 32px);
}

@media screen and (max-width: 767px) {
  .competition-list {
    gap: 12px;
  }
  .competition-list .nav-link {
    width: calc((100% - 36px) / 4);
    border-radius: 16px;
    padding: 8px;
  }
  .competition-list .nav-link br {
    display: block;
  }
  .competition-intro {
    position: static;
    margin-bottom: 16px;
  }
}

.record_item {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #515151;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.record_main {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.record_title {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.record_total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 15%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.record_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.record_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.record_info li {
  font-size: 14px;
  color: #171717;
  padding: 0 8px;
  position: relative;
  color: #b9b9b9;
}

.record_info li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background-color: #616161;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.record_info li:first-child {
  padding-left: 0;
}

.record_info li:last-child {
  padding-right: 0;
}

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

.record_bill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.record_price {
  font-size: 28px;
  color: #ffa127;
  font-weight: 700;
}

.record_num {
  color: #b9b9b9;
}

.record_time {
  font-size: 13px;
  color: #b9b9b9;
  margin-bottom: 4px;
}

.record_status {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.record_status.notpay {
  background-color: #FF5689;
  color: #ffffff;
}

.record_status.paid {
  background-color: #4C95F3;
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .record_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .record_main {
    width: 100%;
    padding-bottom: 12px;
  }
  .record_bill {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

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

.signup-form .input-item {
  margin-bottom: 20px;
}

.signup-form_term {
  margin-top: 40px;
}

.signup-form_term p {
  margin: 0;
}

.signup-form_term_inner {
  margin-bottom: 40px;
  border-radius: 24px;
  background-color: #2d2d2d;
  padding: 24px;
  height: 300px;
  overflow-y: auto;
}

.signup-form_term_inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.signup-form_term_inner p {
  line-height: 2;
  color: #b9b9b9;
}

.signup-form_term_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.signup-form_term_check input {
  position: relative;
  width: 16px;
  height: 16px;
}

.signup-form_term_check input::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #515151;
}

.signup-form_term_check input:checked::before {
  display: none;
}

.signup-form_term_check label {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  width: calc(100% - 16px - 8px);
}

.signup-form .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px 0 0 auto;
  display: block;
  padding: 12px 48px;
}
/*# sourceMappingURL=style.css.map */