/**
 * 
 * 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: #FFFFFF;
}

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

.fl {
  float: left;
}

.fr {
  float: right;
}

.right-arrow:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  right: 5px;
  top: 12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(0, -50%) rotate(-135deg);
  -webkit-transform: translate(0, -50%) rotate(-135deg);
}

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

header {
  background-color: #000000;
}
header .w12_box {
  padding: 0 30px;
}
header .w12_box .head_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 84px;
}
header .w12_box .head_content .logo_item {
  height: 40px;
}
header .w12_box .head_content .logo_item .logo_group {
  display: flex;
  align-items: center;
}
header .w12_box .head_content .logo_item .logo_group .text {
  font-size: 24px;
  font-weight: 600;
  color: #FFC20A;
  margin-left: 20px;
}
header .w12_box .head_content .logo_item .logo_group img {
  width: 40px;
  height: 40px;
}
header .w12_box .head_content .logo_item .menu_toggle {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  background: #FFC20A;
  color: white;
  border-radius: 5px;
  font-size: 36px;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.2s;
}
header .w12_box .head_content .logo_item .menu_toggle span {
  color: #151424;
  transform: translateY(-2px);
}
header .w12_box .head_content .nav_menu {
  flex: 1;
  padding: 12px;
  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: 0;
  right: 0;
  z-index: 99;
}
header .w12_box .head_content .nav_menu .menu_close span {
  display: block;
  width: 80px;
  height: 80px;
  background: url(/statics/webjscss10/images/close.svg) no-repeat center center;
  background-size: 50%;
}
header .w12_box .head_content .nav_menu ul {
  display: flex;
  justify-content: end;
}
header .w12_box .head_content .nav_menu ul li {
  flex: none;
}
header .w12_box .head_content .nav_menu ul li a {
  position: relative;
  display: block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  min-width: 80px;
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 2px;
  transition: color 0.3s ease;
}
header .w12_box .head_content .nav_menu ul li a:hover, header .w12_box .head_content .nav_menu ul li a.active {
  color: #000;
  background-color: #FFC20A;
}

.row_box {
  padding: 35px 0 50px;
}
.row_box.bg1 {
  padding: 80px 0 80px;
}
.row_box.bg2 {
  padding: 120px;
}
.group_btn {
  display: flex;
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 20px;
}
.group_btn .btn {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  border-radius: 5px;
  text-align: center;
  padding: 10px 25px 10px 10px;
  background: #000;
  box-sizing: border-box;
  transition: 0.3s ease;
}
.group_btn .btn:hover {
  opacity: 0.5;
}
.group_btn .btn.register {
  background-color: #FFC20A;
}
.group_btn .btn.download {
  background-color: #000;
}
.group_btn .btn.download:hover {
  background-color: #2D3B4F;
}
.group_btn .btn img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.cate_template {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cate_template li {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 50px;
  background-color: #000000;
}
.cate_template li .title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  padding: 8px 0;
}
.cate_template li .text {
  color: #6C757D;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 8px;
}
.cate_template li .bg_video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}
.cate_template li .bg_video video {
  width: 99%;
}

.footer_template {
  background-color: #000000;
}
.footer_template .w12_box {
  position: relative;
  padding: 70px 0 30px;
}
.footer_template .w12_box .content {
  text-align: center;
}
.footer_template .w12_box .content .h2_title {
  color: #fff;
  margin-bottom: 30px;
}
.footer_template .w12_box .content .h2_text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0 0;
}
.footer_template .w12_box .content .group_btn {
  justify-content: center;
}
.footer_template .w12_box .content .group_btn .btn {
  padding: 10px 45px;
  color: #000;
  font-weight: 400;
}

.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 !important;
  gap: 20px;
  margin-top: 20px;
}
.mobile_fixed_download .group_btn .btn {
  display: block;
  height: auto;
  line-height: initial;
  padding: 10px 0;
  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/webjscss10/images/user.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  vertical-align: text-bottom;
}
.mobile_fixed_download .group_btn .btn.download {
  color: #fff;
  border-color: #FFC20A;
  background-color: #25221F;
}
.mobile_fixed_download .group_btn .btn.download i {
  background: url(./statics/webjscss10/images/download.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.title_template {
  position: relative;
  margin-bottom: 15px;
}
.title_template.arrow_link {
  display: flex;
  justify-content: space-between;
}
.title_template.arrow_link a {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 16px;
  box-sizing: border-box;
}
.title_template.arrow_link a:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 6px;
  width: 6px;
  left: 4px;
  top: 4px;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.title_template .title {
  position: relative;
  font-size: 20px;
  color: #151424;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.title_template .title.bottom:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 70%;
  height: 3px;
  border-radius: 3px;
  background-color: #FFC20A;
}
.title_template .title span {
  font-size: 80%;
  opacity: 0.7;
  margin-left: 10px;
}

.question_template {
  row-gap: 15px;
  column-gap: 30px;
  margin-top: 40px;
}
.question_template .item {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}
.question_template .item.active .title {
  border-radius: 5px 5px 0 0;
}
.question_template .item.active .title .add:after {
  content: "-";
}
.question_template .item.active .cate_list {
  display: block;
}
.question_template .item:hover .title {
  background-color: rgb(248, 249, 250);
}
.question_template .item:hover .title .add {
  background-color: #FFC20A;
}
.question_template .item .title {
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: bold;
  font-size: 28px;
  padding: 15px 50px 15px 15px;
  word-break: break-all;
  cursor: pointer;
}
.question_template .item .title .add {
  position: absolute;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  text-align: center;
  border-radius: 50%;
  background-color: #EBECEF;
}
.question_template .item .title .add:after {
  content: "+";
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 16px;
  color: #000;
}
.question_template .item .title .num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  font-weight: 500;
  margin-right: 10px;
  text-align: center;
  border-radius: 5px;
  background-color: #EBECEF;
}
.question_template .item .cate_list {
  position: relative;
  padding: 15px 15px 15px 50px;
  overflow: hidden;
  display: none;
}
.question_template .item .cate_list p {
  height: auto;
  font-size: 18px;
  text-align: left;
  font-weight: 400;
  color: #333;
  line-height: 28px;
  text-align: justify;
  position: relative;
}
.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 #fff;
  background-color: #fff;
}
.question_template .item .cate_list p.active:after {
  display: none;
}
.question_template .item .cate_list .collapse {
  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: #FFC20A;
}
.question_template .item .cate_list .collapse:hover {
  border-color: #3C3223;
}

.index_html .h2_title {
  font-size: 60px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}
.index_html .bg1 .step1_box {
  display: flex;
}
.index_html .bg1 .step1_box .l_item {
  max-width: 700px;
  flex: 1;
  padding: 0 20px;
}
.index_html .bg1 .step1_box .l_item .t1 {
  font-size: 40px;
  color: #151424;
  font-weight: bold;
}
.index_html .bg1 .step1_box .l_item .t2 {
  font-size: 104px;
  font-weight: bold;
  color: #FFC20A;
  margin: 15px 0;
  word-break: break-word;
}
.index_html .bg1 .step1_box .l_item .title {
  font-size: 94px;
  margin: 0 0 30px 0;
  font-weight: bold;
  color: #151424;
  line-height: 1.5;
}
.index_html .bg1 .step1_box .l_item .t3 {
  font-size: 40px;
  color: #FFC20A;
  font-weight: bold;
}
.index_html .bg1 .step1_box .r_item {
  width: 370px;
}
.index_html .bg1 .step1_box .r_item .bg_video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 750px;
  background: url(/statics/webjscss10/images/phone-wrap.png) no-repeat 100% 100%;
  background-size: contain;
  border-radius: 30px;
  padding: 60px 0;
  overflow: hidden;
}
.index_html .bg1 .step1_box .r_item .bg_video video {
  width: 99%;
  height: 685px;
  border-radius: 42px;
}
.index_html .bg2 .border_box {
  display: flex;
  align-items: center;
  gap: 80px;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
  padding: 50px 80px;
}
.index_html .bg2 .border_box .l_item {
  width: 40%;
}
.index_html .bg2 .border_box .l_item .info_box {
  padding: 30px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #F8F9FA;
}
.index_html .bg2 .border_box .l_item .info_box .price_box {
  display: grid;
  row-gap: 20px;
  margin-top: 30px;
}
.index_html .bg2 .border_box .l_item .info_box .price_box li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.index_html .bg2 .border_box .l_item .info_box .price_box li img {
  width: 22px;
  height: 22px;
  margin: 0;
}
.index_html .bg2 .border_box .l_item .info_box .price_box li .c1 {
  flex-basis: 40%;
  color: #999;
  font-size: 18px;
}
.index_html .bg2 .border_box .l_item .info_box .price_box li .c1 strong {
  color: #151424;
}
.index_html .bg2 .border_box .l_item .info_box .price_box li .percentage {
  font-size: 18px;
  color: #0ecc81;
  font-weight: bold;
}
.index_html .bg2 .border_box .l_item .info_box .price_box li .percentage.red {
  color: #f20;
}
.index_html .bg2 .border_box .l_item .new_box {
  margin-top: 30px;
}
.index_html .bg2 .border_box .l_item .new_box li {
  margin-top: 15px;
}
.index_html .bg2 .border_box .l_item .new_box li a {
  font-size: 18px;
  font-weight: 500;
  color: #151424;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index_html .bg2 .border_box .l_item .new_box li a:hover {
  color: #FFC20A;
}
.index_html .bg2 .border_box .r_item {
  width: 60%;
}
.index_html .bg2 .border_box .r_item img {
  height: auto;
}
@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%;
  }
  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;
  }
  header .w12_box .head_content .nav_menu.active {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 1;
    background-color: #fff;
  }
  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: 0;
    margin-top: 80px;
  }
  header .w12_box .head_content .nav_menu.active ul li {
    margin-bottom: 25px;
    text-align: center;
  }
  header .w12_box .head_content .nav_menu.active ul li a {
    display: inline-block;
    color: #151424;
    text-align: center;
  }
  .cate_template {
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cate_template.col4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .question_template .item .title {
    font-size: 20px;
  }
  .index_html .bg1 .step1_box {
    display: block;
  }
  .index_html .bg1 .step1_box .l_item {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .index_html .bg1 .step1_box .l_item .t1 {
    font-size: 30px;
    color: #151424;
    font-weight: bold;
  }
  .index_html .bg1 .step1_box .l_item .t2 {
    font-size: 44px;
    font-weight: bold;
    color: #FFC20A;
    margin: 15px 0;
    word-break: break-word;
  }
  .index_html .bg1 .step1_box .l_item .title {
    font-size: 34px;
    margin: 0 0 30px 0;
    font-weight: bold;
    color: #151424;
    line-height: 1.5;
  }
  .index_html .bg1 .step1_box .l_item .t3 {
    font-size: 20px;
    color: #FFC20A;
    font-weight: bold;
  }
  .index_html .bg1 .step1_box .l_item .group_btn {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .index_html .bg1 .step1_box .r_item {
    margin: 0 auto;
  }
  .index_html .bg2 .border_box {
    display: block;
    padding: 10px;
  }
  .index_html .bg2 .border_box .l_item {
    width: 100%;
  }
  .index_html .bg2 .border_box .r_item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header .w12_box .head_content .logo_item a {
    font-size: 30px;
  }
  .footer_template {
    padding: 50px 0;
  }
  .footer_template .w12_box {
    padding: 0 15px;
  }
  .footer_template .w12_box .content {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  .footer_template .w12_box .content .l_item {
    width: auto;
  }
  .footer_template .w12_box .content .l_item img {
    margin: 0 auto;
  }
  .footer_template .w12_box .content dl {
    width: auto;
    flex-basis: 40%;
  }
  .footer_template .w12_box .text {
    display: ruby-text;
  }
  .row_box {
    padding: 30px 10px !important;
  }
  .row_box.bg2 {
    padding: 30px 0;
  }
  .row_box.bg3 {
    padding: 30px;
  }
  .cate_template {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cate_template li {
    padding: 20px;
  }
  .cate_template li .title {
    font-size: 30px;
  }
  .cate_template li .text {
    font-size: 18px;
    line-height: 1.5;
  }
  .group_btn a {
    width: 48%;
  }
  .index_html .h2_title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .index_html .h2_text {
    max-width: 100% !important;
    font-size: 22px;
  }
}

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