﻿
/*=============== VARIABLES CSS ===============*/
:root {

  /*========== Colors ==========*/
  --first-color: #018fe4;
  --body-color: #151d29;
  --menu-blue: #2882ff;
  --light-blue: #d0edff;

  /*========== z index ==========*/
  --z-fixed: 100;
}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Microsoft YaHei", "Arial";
}

html{
  scroll-behavior: smooth;
  height: 100%;
}

body,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  outline: 0;
}

body{
  height: 100%;
  /* margin: var(--header-height) 0 0 0; */
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s;
}

button{
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
}

h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  /* max-width: 100%; */
  height: auto;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center{
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

.section__title-center{
  text-align: center;
}

.grid{
  display: grid;
}

.main{
  overflow: hidden;
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background: #f1f1f1;
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb{
  background: #c1c1c1;
  border-radius: .5rem;
}

/*=============== HEADER ===============*/
.header{
  width: 100%;
  background-color: #151d29;
  z-index: var(--z-fixed);
  transition: .4s;
  /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); */
  position: relative;
}

/*=============== NAV ===============*/
.nav.container {
  width: 1400px;
  margin: 0 auto;
}

.nav{
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 130px;
  margin-right: 130px;
}

.nav__list{
  display: flex;
  column-gap: 0.4rem;
}

.nav__list li a {
  color: #32a8ff;
  font-size: 1.3vw;
  line-height: 2vw;
  display: inline-block;
  height: 48px;
  width: 144px;
  transition: .1s;
}

.nav__list li:nth-child(1) a {
  background: url(../img/nav1.png) 0% 50% no-repeat;
  background-size: 144px 48px;
  margin-right: 16px;
}

.nav__list li:nth-child(1) a:hover {
  background: url(../img/nav1_h.png) 0% 50% no-repeat;
  background-size: contain;
}

.nav__list li:nth-child(2) a {
  background: url(../img/nav2.png) 0% 50% no-repeat;
  background-size: 144px 48px;
}

.nav__list li:nth-child(2) a:hover {
  background: url(../img/nav2_h.png) 0% 50% no-repeat;
  background-size: contain;
}

.nav__list li:nth-child(3) a {
  background: url(../img/nav3.png) 0% 50% no-repeat;
  background-size: 144px 48px;
}

.nav__list li:nth-child(3) a:hover {
  background: url(../img/nav3_h.png) 0% 50% no-repeat;
  background-size: contain;
}

.nav__list li:nth-child(4) a {
  background: url(../img/nav4.png) 0% 50% no-repeat;
  background-size: 144px 48px;
}

.nav__list li:nth-child(4) a:hover {
  background: url(../img/nav4_h.png) 0% 50% no-repeat;
  background-size: contain;
}

.nav__list li:nth-child(5) a {
  background: url(../img/nav5.png) 0% 50% no-repeat;
  background-size: 144px 48px;
}

.nav__list li:nth-child(5) a:hover {
  background: url(../img/nav5_h.png) 0% 50% no-repeat;
  background-size: contain;
}

.nav__list li:nth-child(6) a {
  background: url(../img/nav6.png) 0% 50% no-repeat;
  background-size: 144px 48px;
}

.nav__list li:nth-child(6) a:hover {
  background: url(../img/nav6_h.png) 0% 50% no-repeat;
  background-size: contain;
}

.nav__list li:nth-child(7) a {
  background: url(../img/nav7.png) 0% 50% no-repeat;
  background-size: 144px 48px;
}

.nav__list li:nth-child(7) a:hover {
  background: url(../img/nav7_h.png) 0% 50% no-repeat;
  background-size: contain;
}

/*=============== HOME ===============*/
.main {
  height: calc(100vh - 100px);
  width: 100%;
  background: url(../img/bg1.jpg) center top no-repeat;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5vh;
}

.title{
  height: calc((100vh - 160px) / 2 + 2vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.title-img{
  height: 100%;
}

.card_content {
  height: calc((100vh - 160px) / 2 - 5vh);
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  /* width: 500px; */
  margin-bottom: 2vh;
}

.card_box{
  height: 100%;
  width: 600px;
  background: url(../img/vip.png) 50% 0% no-repeat;
  background-size: contain;
}

.card_content img{
  width: 440px;
  margin-bottom: 1vh;
  margin-top: 6.3vh;
}

.input_box input {
  width: 440px;
  border-radius: 5px; 
  padding: 6px;
  outline: none;
  text-align: center;
  font-weight: normal;
  color: #8c4c2f;
  font-size: 1.2rem;
  border: 1px solid #D1AE52;
  margin-bottom: 2vh;
}

.vip-btn{
  white-space: nowrap;
  display: flex;
  justify-content: center;
}

.search_btn-1,
.search_btn-2{
  width: 218px;
  height: 52px;
}

.search_btn-1 {
  display: block;
  background: url(../img/btn-1.png) 50% 50% no-repeat;
  background-size: 100% auto;
  margin-left: 40px;
  margin-right: 5px;
  transition: .1s;
}

.search_btn-1:hover{
  background: url(../img/btn-1_h.png) 50% 50% no-repeat;
  background-size: 100% auto;
}

.search_btn-2 {
  display: block;
  background: url(../img/btn-2.png) 50% 50% no-repeat;
  background-size: 100% auto;
  margin-right: 40px;
  transition: .1s;
}

.search_btn-2:hover{
  background: url(../img/btn-2_h.png) 50% 50% no-repeat;
  background-size: 100% auto;
}


/*=============== FOOTER ===============*/
.footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 15px;
  color: #7d541b;
  padding: 8px 0px;
  text-align: center;
  text-transform: uppercase;
}


/*=============== NO教程 彈窗1 lightbox-1 ===============*/

/* Lightbox background */
#lightbox-1_lightboxbg {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

/* Lightbox panel with some content */
#lightbox-1 {
  display: none;
  position: fixed;
  min-width: 400px;
  background: linear-gradient(351deg, rgb(255,232,125) 0%, rgb(176,123,59) 17%, rgb(176,123,59) 27%, rgb(176,123,59) 68%, rgb(255,232,125) 80%, rgb(176,123,59) 91%, rgb(255,232,125) 100%);
  padding: 3px;
  border-radius: 29px;
  z-index: 1001;

  width: 800px;
}

#lightbox-1 .lightbox1_lightbox-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  background: #fff 50% 50% no-repeat;
  border-radius: 27px;
}

#lightbox-1 .lightbox1_lightbox-close {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  position: absolute;
  top: -34px;
  right: -34px;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  border-radius: 100%;
  text-align: center;
  font-size: 3rem;
}

/*=============== 購寶教程 彈窗3 lightbox-3 ===============*/

/* Lightbox background */
#lightbox-1_lightboxbg {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

/* Lightbox panel with some content */
#lightbox-3 {
  display: none;
  position: fixed;
  min-width: 400px;
  background: linear-gradient(351deg, rgb(255,232,125) 0%, rgb(176,123,59) 17%, rgb(176,123,59) 27%, rgb(176,123,59) 68%, rgb(255,232,125) 80%, rgb(176,123,59) 91%, rgb(255,232,125) 100%);
  padding: 3px;
  border-radius: 29px;
  z-index: 1001;

  width: 800px;
}

#lightbox-3 .lightbox1_lightbox-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  background: #fff 50% 50% no-repeat;
  border-radius: 27px;
}

#lightbox-3 .lightbox1_lightbox-close {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  position: absolute;
  top: -34px;
  right: -34px;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  border-radius: 100%;
  text-align: center;
  font-size: 3rem;
}

/*=============== CGP教程 彈窗4 lightbox-4 ===============*/

/* Lightbox background */
#lightbox-1_lightboxbg {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

/* Lightbox panel with some content */
#lightbox-4 {
  display: none;
  position: fixed;
  min-width: 400px;
  background: linear-gradient(351deg, rgb(255,232,125) 0%, rgb(176,123,59) 17%, rgb(176,123,59) 27%, rgb(176,123,59) 68%, rgb(255,232,125) 80%, rgb(176,123,59) 91%, rgb(255,232,125) 100%);
  padding: 3px;
  border-radius: 29px;
  z-index: 1001;

  width: 800px;
}

#lightbox-4 .lightbox1_lightbox-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  background: #fff 50% 50% no-repeat;
  border-radius: 27px;
}

#lightbox-4 .lightbox1_lightbox-close {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  position: absolute;
  top: -34px;
  right: -34px;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  border-radius: 100%;
  text-align: center;
  font-size: 3rem;
}

/*=============== USDT教程 彈窗5 lightbox-5 ===============*/

/* Lightbox background */
#lightbox-1_lightboxbg {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

/* Lightbox panel with some content */
#lightbox-5 {
  display: none;
  position: fixed;
  min-width: 400px;
  background: linear-gradient(351deg, rgb(255,232,125) 0%, rgb(176,123,59) 17%, rgb(176,123,59) 27%, rgb(176,123,59) 68%, rgb(255,232,125) 80%, rgb(176,123,59) 91%, rgb(255,232,125) 100%);
  padding: 3px;
  border-radius: 29px;
  z-index: 1001;

  width: 800px;
}

#lightbox-5 .lightbox1_lightbox-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  max-height: 90vh;
  background: #fff 50% 50% no-repeat;
  border-radius: 27px;
}

#lightbox-5 .lightbox1_lightbox-close {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  position: absolute;
  top: -34px;
  right: -34px;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  border-radius: 100%;
  text-align: center;
  font-size: 3rem;
}


/*=============== 等級查詢 彈窗2 lightbox-2 ===============*/

/* Lightbox background */
#lightbox-2_lightboxbg {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

/* Lightbox panel with some content */
#lightbox-2 {
  display: none;
  position: fixed;
  min-width: 400px;
  background: linear-gradient(351deg, rgb(255,232,125) 0%, rgb(176,123,59) 17%, rgb(176,123,59) 27%, rgb(176,123,59) 68%, rgb(255,232,125) 80%, rgb(176,123,59) 91%, rgb(255,232,125) 100%);
  padding: 3px;
  border-radius: 20px;
  z-index: 1001;
  width: 1000px;
}

#lightbox-2 .lightbox1_lightbox-content {
  background: #fff;
  height: 100%;
  width: 100%;
  /* overflow-y: auto;
  overflow-x: hidden; */
  max-height: 82vh;
  border-radius: 17px;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
  min-width: 600px;
  overflow: hidden;
}

#lightbox-2 .lightbox1_lightbox-close {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  position: absolute;
  top: -34px;
  right: -34px;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  border-radius: 100%;
  text-align: center;
  font-size: 3rem;
}

/* lightbox 標題部分 */
.search_title {
  background: url(../img/level-title.png) 50% 50% no-repeat;
  background-size: auto 100%;
  height: 71px;
  margin: 0 auto;
}

.level-center-title{
  margin-top: 7px;
  height: 75px;
}

.account-title{
  padding-bottom: 10px;
}

.lightbox_content{
  text-align: left;
  /* margin: 0 40px; */
  font-size: 15px;
  max-height: 550px;
  overflow-y: auto;
  padding: 0 30px;
}

.lightbox_content_img{
  max-height: 800px;
  overflow: auto;
  padding: 20px;
}

table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border: 1px solid #65420a;
}

table, td, th {
  height: 45px;
  font-size: 15px;
}

td, th {
  border-right: 1px solid #65420a;
  font-weight: normal;
}

th {
  background: #bc8f53;
  color: #fff;
}

.zebra-table tr{
  background: #f5ede0;
}

.zebra-table tr:nth-child(even){
  background: #fff;
  border: none;
}

.lightbox-bottom-center{
  text-align: center;
  padding-top: 20px;
}

.quotes{
  padding-bottom: 20px;
}

.page-center{
  display: flex;
  justify-content: center;
}

.card-pagination{
  overflow: hidden;
  display: flex;
  width: fit-content;
  border: 1px solid rgb(213, 213, 213);
  border-radius: 0.5em;
  font-size: 12px;
}

.card-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.card-pagination button {
  cursor: pointer;
  /* border: 1px solid #e7eaea; */
  padding: 0.5em;
  background: #fff;
  padding: 5px 14px;
}

.card-pagination button:nth-child(2){
  background-color: #bc8f53;
  color: #fff;
}

/*=============== VIP特權 彈窗6 lightbox-6 ===============*/

/* Lightbox background */
#lightbox-6_lightboxbg {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

/* Lightbox panel with some content */
#lightbox-6 {
  display: none;
  position: fixed;
  min-width: 400px;
  background: linear-gradient(351deg, rgb(255,232,125) 0%, rgb(176,123,59) 17%, rgb(176,123,59) 27%, rgb(176,123,59) 68%, rgb(255,232,125) 80%, rgb(176,123,59) 91%, rgb(255,232,125) 100%);
  padding: 3px;
  border-radius: 20px;
  z-index: 1001;
  width: 1000px;
}

#lightbox-6 .lightbox1_lightbox-content {
  background: #fff;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 82vh;
  border-radius: 17px;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
  min-width: 600px;
  overflow: hidden;
}

#lightbox-6 .lightbox1_lightbox-close {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  position: absolute;
  top: -34px;
  right: -34px;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  border-radius: 100%;
  text-align: center;
  font-size: 3rem;
}

.border-bottom{
  border-bottom: 1px solid #65420a;
}

.zebra-table-two tr{
  background: #fff;
}

.zebra-table-two tr:nth-child(even){
  background: #f5ede0;
  border: none;
}

.lightbox_content p {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.7;
}

.vip-detail-ul {
  font-size: 16px;
  line-height: 1.7;
}

.vip-detail-title{
  display: flex; justify-content: center; margin: 30px 0;
}

.vip-center-title{
  margin-top: 7px;
    height: 35px;
}


/*=============== 進入網域 ===============*/
.nav__list{
  position: relative;
}

.nav__list .jsBox {
  margin-left: -282px;
  padding-bottom: 2px;
  width: 578px;
  position: absolute;
  left: 288px;
  top: 648px;
  box-sizing: border-box;
  display: none;
  transform: translateY(-100%);
}

.nav__list > li:hover .jsBox {
  display: block;
}

.jsBox ul {
  padding: 25px 25px 16px;
  border-radius: 5px;
  border: 2px solid #A37C3C;
  background: #fff;
}

.jsBox li {
  margin-bottom: 10px;
  overflow: hidden;
  zoom: 1;
  color: #414755;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
}

.jsBox li .url {
  width: 253px;
  float: left;
  display: block;
  box-sizing: border-box;
  border: 1px solid #C8C8C8;
  background: #F0F0F0;
}

.jsBox li a {
  width: 136px;
  display: block;
  float: right;
  color: #000;
  font-size: 17px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  border: 1px solid #A37C3C;
  background: #A37C3C;
}

.jsBox li a:hover{
  border: 1px solid #d4a14e;
    background: #d4a14e;
}

.jsBox li .ms {
  margin-right: 11px;
  width: 72px;
  display: block;
  float: left;
  border: 1px solid #C8C8C8;
  background: #F0F0F0;
}

.jsBox li > img {
  margin: 13px 10px 0 0;
  display: block;
  float: left;
}
.jsBox img {
  vertical-align: unset;
  width: auto;
  margin-right: 10px;
}

