/**
 * 
 * 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 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #222833;
  box-shadow: 0 0 5px 0 rgba(26, 26, 26, 0.361);
}
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: 60px;
}
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: #fcd535;
}
header .w12_box .head_content .logo_item .logo_group img {
  width: 60px;
  height: 60px;
}
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: #fcd535;
  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/webjscss8/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: #fcd535;
}

.row_box {
  padding: 35px 0 50px;
}
.row_box.bg1 {
  padding: 0;
  background: #191A1F;
}
.row_box.bg3 {
  padding-top: 50px;
  background: #191A1F;
}
.row_box.bg3 .h2_title {
  color: #fff;
}
.row_box.bg4 {
  padding: 70px 20px 50px;
  background: #000000;
}
.row_box.bg4 .h2_title {
  color: #fff;
  text-align: center;
}
.row_box.bg5 {
  padding: 65px 0 50px;
}
.row_box.bg9 {
  padding: 70px 20px 50px;
  background: #000000;
}

.group_btn {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.group_btn .btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  color: #151424;
  font-weight: 600;
  font-size: 16px;
  border-radius: 9999px;
  text-align: center;
  min-width: 120px;
  background: #fcd535;
  box-sizing: border-box;
  transition: 0.3s ease;
}
.group_btn .btn.register {
  background-color: #fcd535;
}
.group_btn .btn.register:hover {
  opacity: 0.8;
}
.group_btn .btn.download {
  border: 1px solid #34383C;
  background-color: #fff;
}
.group_btn .btn.download:hover {
  background-color: #2D3B4F;
}

.cate_template {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  row-gap: 50px;
}
.cate_template li {
  position: relative;
  padding: 15px;
  display: flex;
  gap: 30px;
  border-radius: 10px;
  text-align: left;
}
.cate_template li img {
  width: 100px;
  height: 115px;
  transition: all 1s ease;
}
.cate_template li img:hover {
  transform: rotate(360deg);
}
.cate_template li .content .title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #505050;
}
.cate_template li .content .text {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.footer_template {
  background-color: #212833;
}
.footer_template .w12_box {
  position: relative;
  padding: 70px 0;
  display: flex;
  gap: 20px;
}
.footer_template .w12_box .l_item {
  width: 40%;
}
.footer_template .w12_box .l_item img {
  width: 72px;
  height: 72px;
}
.footer_template .w12_box .l_item .copyright {
  color: #767385;
  font-size: 14px;
  padding-top: 15px;
  line-height: 1.8;
}
.footer_template .w12_box dl {
  flex-basis: 20%;
  flex-grow: 1;
}
.footer_template .w12_box dl:last-child {
  flex-grow: 2;
}
.footer_template .w12_box dl dt {
  position: relative;
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}
.footer_template .w12_box dl dd span, .footer_template .w12_box dl dd a {
  display: block;
  font-size: 14px;
  color: #767385;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.footer_template .w12_box dl dd span:hover, .footer_template .w12_box dl dd a:hover {
  color: #fff;
}

.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 #ccc;
}
.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: #000;
  font-size: 18px;
  padding: 10px 50px 10px 15px;
  word-break: break-all;
  cursor: pointer;
  background-color: #f2f2f2;
}
.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: #fff;
  overflow: hidden;
}
.question_template .item .cate_list.active {
  display: block !important;
}
.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.none {
  display: none;
}
.question_template .item .cate_list p {
  height: auto;
  font-size: 15px;
  text-align: left;
  font-weight: 400;
  color: #333;
  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 #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: #fcd535;
}
.question_template .item .cate_list .collapse: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 !important;
  gap: 20px;
  margin-top: 20px;
}
.mobile_fixed_download .group_btn .btn {
  display: block;
  height: auto;
  padding: 8px 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/webjscss8/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: #fcd535;
  background-color: #25221F;
}
.mobile_fixed_download .group_btn .btn.download i {
  background: url(/statics/webjscss8/images/download.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.index_html .step1_box {
  position: relative;
}
.index_html .step1_box .group_btn {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  justify-content: center;
}
.index_html .step2_box h2 {
  font-size: 24px;
  color: #767676;
  margin-bottom: -12px;
}
.index_html .step2_box .line {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #fcd535;
  gap: 8px;
  padding-right: 7px;
  margin-top: 15px;
  position: relative;
}
.index_html .step2_box .line i {
  display: inline-block;
  height: 1px;
  flex: 1;
  background-color: #eaeaea;
}
.index_html .step2_box .content {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}
.index_html .step2_box .content img {
  width: 420px;
}
.index_html .step2_box .content p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
}
.index_html .step4_box {
  display: flex;
  gap: 20px;
}
.index_html .step4_box .l_item {
  width: 320px;
  flex: none;
}
.index_html .step4_box .l_item img {
  height: auto;
}
.index_html .step4_box .r_item h3 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
.index_html .step4_box .r_item .h2_text {
  color: #e2e2e2;
  line-height: 32px;
  margin-top: 30px;
  font-size: 18px;
  text-align: left;
}
.index_html .step4_box .r_item .group_btn {
  justify-content: start;
}
.index_html .h2_title {
  font-size: 40px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-align: center;
  color: #000;
}
.index_html .h2_text {
  font-size: 24px;
  margin: 0 0 40px 0;
  text-align: center;
  color: #fff;
  line-height: 1.8;
}
.index_html .h2_text.c9 {
  color: #999;
}
.index_html .bg5 .title_border {
  margin-bottom: 30px;
  text-align: center;
  background: url(/statics/webjscss8/images/line.gif) no-repeat center center;
  background-size: contain;
}
.index_html .bg5 .title_border .title {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: #fcd535;
  font-weight: 500;
  margin: 10px 0;
}
.index_html .bg5 .use_box {
  display: grid;
  gap: 30px;
  padding-top: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.index_html .bg5 .use_box .use_list {
  border-radius: 3px;
  overflow: hidden;
  background-color: #fff;
}
.index_html .bg5 .use_box .use_list .img_item {
  width: 100%;
  height: 200px;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid #ddd;
}
.index_html .bg5 .use_box .use_list .img_item:hover img {
  opacity: 0.8;
}
.index_html .bg5 .use_box .use_list .img_item img {
  width: 100%;
}
.index_html .bg5 .use_box .use_list .content .title {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
  color: #444;
  margin-top: 20px;
}
.index_html .bg6 .h2_title {
  font-size: 30px;
}
.index_html .bg6 .download_list {
  margin-top: 20px;
}
.index_html .bg6 .download_list li {
  position: relative;
  margin-bottom: 20px;
  padding: 25px 15px 25px 60px;
  min-height: 70px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.index_html .bg6 .download_list li .tips {
  position: absolute;
  z-index: 10;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px;
  border-radius: 3px;
  text-align: center;
  background-color: #212833;
}
.index_html .bg6 .download_list li .tips .tips_title {
  color: #fff;
  font-size: 24px;
}
.index_html .bg6 .download_list li .tips .tips_text {
  color: #fff;
  font-size: 12px;
}
.index_html .bg6 .download_list li .title {
  font-size: 16px;
  color: #000;
}
.index_html .bg6 .download_list li p {
  font-size: 14px;
  font-style: normal;
  display: inline-block;
  line-height: 18px;
  color: #777;
  padding-top: 10px;
}
.index_html .bg9 .h2_title {
  color: #fff;
}
.index_html .bg9 .group_btn {
  justify-content: center;
}
.index_html .bg9 .group_btn a {
  min-width: 100px;
}

@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%;
    height: 50px;
  }
  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: 20px;
    font-weight: 600;
    color: #fcd535;
  }
  header .w12_box .head_content .logo_item .logo_group img {
    width: 50px;
    height: 50px;
  }
  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 {
    margin-top: 0;
  }
  .question_template .item .title {
    font-size: 16px;
  }
  .question_template .item .title .time {
    position: relative;
    margin-top: 10px;
    transform: none;
    right: auto;
  }
  .index_html .step2_box .content {
    flex-direction: column;
  }
  .index_html .step4_box {
    flex-direction: column;
  }
  .index_html .bg6 {
    padding: 35px 0px 50px;
  }
}
@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 {
    flex-direction: column;
    padding: 0 15px;
    justify-content: center;
  }
  .footer_template .w12_box .l_item {
    width: auto;
  }
  .footer_template .w12_box dl {
    width: auto;
  }
  .row_box {
    padding-top: 0px !important;
  }
  .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;
  }
  .group_btn {
    left: 25px !important;
    right: 25px !important;
    justify-content: space-between !important;
    transform: translateX(0) !important;
  }
  .group_btn a {
    width: 48%;
  }
  .index_html .step1_box .group_btn {
    bottom: 20px;
  }
  .index_html .bg1 {
    margin-bottom: 50px;
  }
  .index_html .h2_title {
    font-size: 28px;
  }
  .index_html .bg3 {
    padding-bottom: 25px;
  }
  .index_html .bg3 .cate_template li {
    gap: 20px;
    flex-direction: column;
  }
  .index_html .bg3 .cate_template li .content {
    text-align: center;
  }
  .index_html .step4_box .l_item {
    width: auto;
  }
  .index_html .step4_box .r_item h3 {
    font-size: 20px;
  }
  .index_html .bg4 {
    padding: 70px 0 50px !important;
  }
  .index_html .bg5 {
    margin-top: 50px;
  }
  .index_html .bg5 .use_box {
    display: block;
  }
  .index_html .bg5 .use_box .use_list {
    margin-bottom: 15px;
  }
  .index_html .bg3, .index_html .bg9 {
    padding-top: 70px !important;
  }
}

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