@charset "UTF-8";
/**
 * 
 * npm install -g sass
 * sass index.scss index.css
 * sass --watch index.scss:index.css
 * sass --watch index.scss:index.css --style compact
 */
body {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0 auto;
  background-color: #1B1814;
}

* {
  box-sizing: border-box;
}

dl, dd, p, form, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

em, i {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

img {
  border: 0;
  display: inline-block;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.img_common img {
  width: 100%;
}

img:hover {
  opacity: 0.98;
}

span {
  display: inline-block;
}

input, select, button, textarea {
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

.w12_box {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #3C3223;
  background-color: #272320;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
header .w12_box .head_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
header .w12_box .head_content .logo_item {
  height: 60px;
  line-height: 60px;
}
header .w12_box .head_content .logo_item .title {
  font-size: 26px;
  font-weight: 700;
  color: #F3BA2F;
  background: #F3BA2F;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .w12_box .head_content .logo_item .menu_toggle {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.2s;
}
header .w12_box .head_content .logo_item .menu_toggle span {
  color: #fff;
  transform: translateY(-2px);
}
header .w12_box .head_content .nav_menu {
  flex: 1;
  padding: 12px 0 12px 0;
  overflow-x: auto;
}
header .w12_box .head_content .nav_menu::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}
header .w12_box .head_content .nav_menu:hover::-webkit-scrollbar-thumb {
  background: #ccc;
}
header .w12_box .head_content .nav_menu:hover::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #eee;
}
header .w12_box .head_content .nav_menu .menu_close {
  display: none;
  position: absolute;
  top: 30px;
  right: 15px;
  z-index: 99;
}
header .w12_box .head_content .nav_menu .menu_close span {
  display: block;
  width: 50px;
  height: 50px;
  background: url(/statics/webjscss5/images/close.svg) no-repeat center center;
  background-size: 50%;
}
header .w12_box .head_content .nav_menu ul {
  display: flex;
  justify-content: end;
  gap: 40px;
}
header .w12_box .head_content .nav_menu ul li {
  flex: none;
}
header .w12_box .head_content .nav_menu ul li a {
  position: relative;
  color: #151424;
  font-size: 20px;
  padding: 10px 30px;
  transition: color 0.3s ease;
  border-radius: 4px;
  background-color: #F3BA2F;
}
header .w12_box .head_content .nav_menu ul li a:hover, header .w12_box .head_content .nav_menu ul li a.active {
  opacity: 0.9;
}
header .w12_box .head_content .nav_menu ul li a i {
  display: inline-block;
  width: 20px;
  height: 24px;
  vertical-align: text-top;
  margin-right: 5px;
}
header .w12_box .head_content .nav_menu ul li a i.bian {
  background: url(/statics/webjscss5/images/bian.svg) no-repeat center center;
  background-size: contain;
}
header .w12_box .head_content .nav_menu ul li a i.okx {
  background: url(/statics/webjscss5/images/okx.webp) no-repeat center center;
  background-size: contain;
}

.row_box {
  padding: 50px 0;
}
.row_box .bg1 {
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #3C3223;
  background: #272320;
}

.group_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.group_btn .btn {
  display: block;
  width: auto;
  flex: 1;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 13px;
  border-radius: 3px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.group_btn .btn.register {
  background-color: #F3BB2F;
}
.group_btn .btn.register:hover {
  opacity: 0.8;
}
.group_btn .btn.download {
  border: 1px solid #34383C;
  background-color: #1F293B;
}
.group_btn .btn.download:hover {
  background-color: #2D3B4F;
}

.cate_template {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cate_template li {
  position: relative;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #3C3223;
  background-color: #1B1814;
}
.cate_template li .title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.cate_template li .title img {
  height: 24px;
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: text-bottom;
}
.cate_template li .text {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.5;
}

.footer_template {
  border-top: 1px solid #3C3223;
  background-color: #272320;
}
.footer_template .w12_box {
  position: relative;
  padding: 40px 0;
}
.footer_template .w12_box .title {
  color: #F3BA2F;
  font-size: 24px;
  font-weight: bold;
}
.footer_template .w12_box .text {
  color: #b8a994;
  font-size: 16px;
  margin-top: 10px;
}
.footer_template .w12_box .copyright {
  margin-top: 30px;
  border-top: 1px solid #3C3223;
}
.footer_template .w12_box .copyright p {
  color: #b8a994;
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
}

.question_template {
  row-gap: 15px;
  column-gap: 30px;
  margin-top: 40px;
}
.question_template .item {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3C3223;
}
.question_template .item.active .title {
  border-radius: 5px 5px 0 0;
}
.question_template .item.active .title:after {
  content: "-";
}
.question_template .item.active .cate_list {
  display: block;
  padding: 10px 15px;
}
.question_template .item .title {
  position: relative;
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 20px 50px 20px 40px;
  word-break: break-all;
  cursor: pointer;
  background-color: #272320;
}
.question_template .item .title .num {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  top: 0;
  left: 0;
  bottom: 0;
  font-weight: bold;
}
.question_template .item .title .time {
  position: absolute;
  display: inline-block;
  height: 18px;
  font-size: 14px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
.question_template .item .cate_list {
  position: relative;
  padding: 15px;
  background: #1B1814;
  overflow: hidden;
}
.question_template .item .cate_list.active p {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 100;
  overflow: hidden;
}
.question_template .item .cate_list.active p::after {
  display: none;
}
.question_template .item .cate_list p {
  height: auto;
  font-size: 15px;
  text-align: left;
  font-weight: 400;
  color: #b8a994;
  line-height: 28px;
  text-align: justify;
  position: relative;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.question_template .item .cate_list p::after {
  content: "...";
  color: #b8a994;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12em;
  height: 26px;
  line-height: 16px;
  box-shadow: 0 2px 5px 5px #1B1814;
  background-color: #1B1814;
}
.question_template .item .cate_list p.active:after {
  display: none;
}
.question_template .item .cate_list span {
  display: none;
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 3px 12px;
  text-align: center;
  color: #fff;
  border: 1px solid transparent;
  font-size: 13px;
  border-radius: 5px;
  background-color: #F3BA2F;
}
.question_template .item .cate_list span:hover {
  border-color: #3C3223;
}

.mobile_fixed_download {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 20px;
  border-top: 1px solid #3C3223;
  background-color: #272320;
}
.mobile_fixed_download .group_btn {
  justify-content: center;
  gap: 20px;
}
.mobile_fixed_download .group_btn .btn {
  display: block;
  width: auto;
  max-width: 190px;
  height: auto;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 16px;
}
.mobile_fixed_download .group_btn .btn i {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.mobile_fixed_download .group_btn .btn.register i {
  width: 16px;
  background: url(/statics/webjscss5/images/user.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  vertical-align: text-bottom;
}
.mobile_fixed_download .group_btn .btn.download {
  border-color: #F3BA2F;
  background-color: #25221F;
}
.mobile_fixed_download .group_btn .btn.download i {
  background: url(/statics/webjscss5/images/download.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.index_html .step1_box {
  position: relative;
  display: flex;
  align-items: center;
  height: 300px;
  padding: 0 45px;
  gap: 80px;
}
.index_html .step1_box:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/statics/webjscss5/images/banner.jpg) no-repeat center center;
  background-size: cover;
  filter: blur(5px);
}
.index_html .step1_box:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 40px;
  width: 5px;
  height: 70px;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom, #F3BA2F, transparent);
}
.index_html .step1_box .l_item {
  position: relative;
  z-index: 1;
  max-width: 380px;
  flex: 1;
  padding: 0 20px 0 0;
}
.index_html .step1_box .l_item h1, .index_html .step1_box .l_item h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.index_html .step1_box .l_item h1 strong, .index_html .step1_box .l_item h2 strong {
  color: #F3BA2F;
  margin-left: 10px;
}
.index_html .step1_box .l_item h2 {
  margin-top: 0;
  color: #F3BA2F;
}
.index_html .step1_box .l_item .desc {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.6;
  margin: 15px 0;
}
.index_html .step1_box .l_item .desc strong {
  color: #F3BA2F;
}
.index_html .step1_box .l_item .tips_box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.index_html .step1_box .l_item .tips_box span {
  display: inline-block;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 9999px;
}
.index_html .step1_box .l_item .tips_box span:nth-child(1) {
  color: #F3BA2F;
  background-color: #272320;
}
.index_html .step1_box .l_item .tips_box span:nth-child(2) {
  color: #2078FF;
  background-color: #182E55;
}
.index_html .step1_box .l_item .tips_box span:nth-child(3) {
  color: #00D5AA;
  background-color: #153C36;
}
.index_html .step1_box .r_item {
  position: relative;
  z-index: 1;
  flex: 1;
}
.index_html .step1_box .r_item .currency_box {
  display: flex;
  gap: 30px;
}
.index_html .step1_box .r_item .currency_box .currency_list {
  flex: 1;
}
.index_html .step1_box .r_item .currency_box .currency_list:nth-child(2) .content p, .index_html .step1_box .r_item .currency_box .currency_list:nth-child(2) .content span {
  color: #00b812;
}
.index_html .step1_box .r_item .currency_box .currency_list:nth-child(2) .group_btn .register {
  background-color: #2078FF;
}
.index_html .step1_box .r_item .currency_box .currency_list .content {
  padding: 15px 4px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #3C3223;
  flex-direction: column;
  background-color: #1B1814;
  transition: 0.3s ease;
  cursor: pointer;
}
.index_html .step1_box .r_item .currency_box .currency_list .content:hover {
  transform: scale(0.98) translateY(-2px);
  background-color: #48404a;
}
.index_html .step1_box .r_item .currency_box .currency_list .content img {
  width: 40px;
  height: 40px;
}
.index_html .step1_box .r_item .currency_box .currency_list .content p {
  font-size: 16px;
  color: #fff;
  margin: 10px 0 5px;
}
.index_html .step1_box .r_item .currency_box .currency_list .content span {
  color: #9ca3af;
  font-size: 14px;
}
.index_html .h2_title {
  font-size: 30px;
  margin: 0 0 15px 0;
  font-weight: 500;
  color: #fff;
}
.index_html .h2_text {
  font-size: 18px;
  margin: 0 0 40px 0;
  color: #b8a994;
  line-height: 1.8;
}
.index_html .h2_text.c9 {
  color: #999;
}
.index_html .table_box {
  border-radius: 12px;
  border: 1px solid #3C3223;
  margin-top: 40px;
  overflow: hidden;
}
.index_html .table_box table {
  width: 100%;
}
.index_html .table_box table td, .index_html .table_box table th {
  padding: 15px;
  text-align: left;
}
.index_html .table_box table thead {
  background-color: #272320;
  border-bottom: 2px solid #F3BA2F;
}
.index_html .table_box table thead td, .index_html .table_box table thead th {
  color: #fff;
  font-size: 20px;
}
.index_html .table_box table tbody {
  background-color: #1B1814;
}
.index_html .table_box table tbody tr {
  border: 1px solid #3C3223;
}
.index_html .table_box table tbody tr td {
  color: #d1d5db;
  font-size: 18px;
}
.index_html .table_box table tbody tr td:nth-child(3) {
  color: #2178ff;
}
.index_html .cate_tab .cate_template li {
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #3C3223;
  background-color: #272320;
  transition: 0.3s ease;
}
.index_html .cate_tab .cate_template li:hover {
  border-color: #F3BA2F;
}
.index_html .cate_tab .cate_template li .title {
  font-size: 24px;
  margin-bottom: 20px;
}
.index_html .cate_tab .cate_template li .text {
  font-size: 18px;
}
.index_html .cate_tab .cate_template li .tips_box {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}
.index_html .cate_tab .cate_template li .tips_box span {
  display: inline-block;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 3px;
  color: #F3BA2F;
  border: 1px solid #3C3223;
  background-color: #1B1814;
}
.index_html .sale_box {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}
.index_html .sale_box .currency_list {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 65px 25px 15px;
  transition: 0.3s ease;
  border-radius: 3px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.302);
  background-color: #292928;
}
.index_html .sale_box .currency_list:hover {
  transform: scale(1.06);
}
.index_html .sale_box .currency_list:nth-child(1) p, .index_html .sale_box .currency_list:nth-child(1) .text {
  color: #00b812;
}
.index_html .sale_box .currency_list:nth-child(1):after {
  position: absolute;
  top: 10px;
  left: -10px;
  content: "推荐";
  padding: 4px 20px;
  width: 185px;
  margin: 20px 0 0 -10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: center;
  color: #fff;
  background-color: #66b659;
}
.index_html .sale_box .currency_list img {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}
.index_html .sale_box .currency_list h3 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-top: 25px;
}
.index_html .sale_box .currency_list .grey {
  font-size: 16px;
  color: #9b9b9b;
  margin: 10px 0 35px;
}
.index_html .sale_box .currency_list .text {
  color: #f90;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  margin-top: 20px;
  text-align: center;
}
.index_html .sale_box .currency_list span.text {
  font-size: 22px;
}
.index_html .sale_box .currency_list .group_btn {
  margin: 25px 0 15px;
  gap: 50px;
}
.index_html .sale_box .currency_list .group_btn .btn {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .w12_box {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1000px) {
  header .w12_box {
    padding: 0 15px;
  }
  header .w12_box .head_content .logo_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 30%;
  }
  header .w12_box .head_content .logo_item img {
    margin: 0;
  }
  header .w12_box .head_content .logo_item .menu_toggle {
    display: flex;
  }
  header .w12_box .head_content .nav_menu {
    position: fixed;
    top: -100%;
    opacity: 0;
    height: 100vh;
    padding-bottom: 30px;
    transition: top 0.3s ease;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .w12_box .head_content .nav_menu.active {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 1;
    background-color: #1B1814;
  }
  header .w12_box .head_content .nav_menu.active .menu_close {
    display: block;
  }
  header .w12_box .head_content .nav_menu.active ul {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }
  header .w12_box .head_content .nav_menu.active ul li {
    width: 240px;
  }
  header .w12_box .head_content .nav_menu.active ul li a {
    display: block;
    color: #151424;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .w12_box .head_content .nav_menu.active ul li a:after {
    bottom: 0;
  }
  .cate_template {
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cate_template.col4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .row_box {
    padding: 25px 0;
  }
  .row_box .bg1 {
    margin: 0 15px;
    padding: 15px;
  }
  .mobile_fixed_download {
    display: block;
  }
  .index_html .step1_box {
    height: auto;
    padding: 15px;
    flex-direction: column;
    justify-content: center;
    background-color: #272320;
  }
  .index_html .step1_box:before, .index_html .step1_box:after {
    display: none;
  }
  .index_html .step1_box .l_item {
    display: none;
  }
  .index_html .step1_box .r_item {
    width: 100%;
  }
  .index_html .step1_box .r_item .currency_box {
    flex-direction: column;
  }
  .index_html .step1_box .r_item .currency_box .currency_list {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #3C3223;
  }
  .index_html .step1_box .r_item .currency_box .currency_list:hover {
    border-color: #F3BA2F;
    background-color: #3C3223;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .content {
    display: block;
    border: none;
    background-color: transparent;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .content:hover {
    transform: initial;
    background-color: transparent;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .content div {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .content img {
    margin: 0;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .content p {
    display: inline-block;
    font-size: 20px;
    color: #fff !important;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .content span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #9ca3af !important;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .group_btn {
    justify-content: space-between;
  }
  .index_html .step1_box .r_item .currency_box .currency_list .group_btn .btn {
    display: block;
    width: auto;
    height: auto;
    flex: 1;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 16px;
  }
  .footer_template {
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 768px) {
  header .w12_box .head_content .logo_item .title {
    font-size: 22px;
  }
  .footer_template .w12_box {
    padding: 40px 20px;
    text-align: center;
  }
  .cate_template {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cate_template.col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cate_template li .text {
    font-size: 14px;
    line-height: 1.5;
  }
  .question_template .item .title {
    font-size: 16px;
  }
  .question_template .item .title .time {
    position: relative;
    margin-top: 10px;
    transform: none;
    right: auto;
  }
  .index_html .h2_title {
    font-size: 22px;
  }
  .index_html .step1_box {
    gap: 40px;
  }
  .index_html .step1_box .l_item {
    padding: 0;
  }
  .index_html .step1_box .l_item h1 {
    margin-top: 0;
    font-size: 40px;
  }
  .index_html .step1_box .l_item .subtitle {
    font-size: 24px;
    line-height: 1.5;
  }
  .index_html .cate_tab .cate_template li .title {
    font-size: 20px;
  }
  .index_html .sale_box {
    flex-direction: column;
  }
  .index_html .sale_box .currency_list .group_btn {
    gap: 10px;
  }
}

/*# sourceMappingURL=index.css.map */
