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

@keyframes fadeInDown {
  0% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 30px 0;
  transition: all 0.3s rgba(0, 0, 0, 0) linear-gradient(90deg, #160696, #08f9ce) repeat scroll 0 0;
}
header.fixed {
  padding: 15px 0;
  background-color: #fff;
  animation: fadeInDown 500ms linear 0s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
header .w12_box .head_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
header .w12_box .head_content .logo_item {
  display: flex;
  height: 30px;
  line-height: 30px;
}
header .w12_box .head_content .logo_item span {
  font-weight: 500;
  font-size: 24px;
  margin-left: 10px;
}
header .w12_box .head_content .menu_toggle {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 5px;
  font-size: 36px;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.2s;
}
header .w12_box .head_content .menu_toggle span {
  color: #f77ade;
  transform: translateY(-2px);
}
header .w12_box .head_content .nav_menu {
  flex: 1;
  padding: 0 15px;
  overflow-x: auto;
  margin-left: 100px;
}
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(../images/close.svg) no-repeat center center;
  background-size: 50%;
}
header .w12_box .head_content .nav_menu ul {
  display: flex;
  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;
  display: inline-block;
  color: #36324a;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
  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: #f77ade;
}

.row_box {
  padding: 100px 0;
}
.row_box.bg1 {
  background-color: transparent;
}
.row_box.bg2 {
  background-color: #F7F6F9;
}
.row_box.border_b {
  border-bottom: 1px solid #DEE2E6;
}

.group_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.group_btn.lg {
  justify-content: center;
}
.group_btn.lg .btn {
  height: 80px;
  line-height: 80px;
  font-size: 20px;
}
.group_btn.center {
  justify-content: center;
}
.group_btn .btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  color: #5b39c9;
  font-weight: 600;
  font-size: 14px;
  border-radius: 9999px;
  text-align: center;
  padding: 0 45px;
  background: #fff;
  overflow: hidden;
  border: 2px solid #5b39c9;
}
.group_btn .btn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(30);
  -webkit-transform: scale(30);
  background: #5b39c9;
}
.group_btn .btn:hover.red:before {
  background: #36324a;
}
.group_btn .btn:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 10px;
  height: 10px;
  top: 48%;
  left: 48%;
  visibility: hidden;
  opacity: 0;
  border-radius: 50px;
  transition: all 0.5s ease;
}
.group_btn .btn.red {
  color: #fff;
  border: none;
  background-color: #f77ade;
}
.group_btn .btn:hover {
  box-shadow: 0 3px 7px 0 #eee;
  color: #fff;
}

.footer_template .w12_box {
  position: relative;
  padding: 0 30px 30px;
}
.footer_template .w12_box .copyright {
  color: #6f6c7f;
  font-size: 14px;
  padding-top: 15px;
  line-height: 1.8;
  text-align: center;
}
.footer_template .w12_box .copyright a {
  color: #6f6c7f;
}
.footer_template .w12_box .copyright a:hover {
  text-decoration: underline;
}

@-webkit-keyframes effectupdown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes effectupdown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes effectupdown10 {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@-webkit-keyframes rotate2d {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate2d {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate2d {
  -webkit-animation: rotate2d 2s linear infinite;
  animation: rotate2d 1s linear infinite;
}

@-webkit-keyframes rotate-2d {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotate-2d {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.rotate-2d {
  -webkit-animation: rotate-2d 2s linear infinite;
  animation: rotate-2d 1s linear infinite;
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.rotate3d {
  -webkit-animation: rotate3d 2s linear infinite;
  animation: rotate3d 1s linear infinite;
}

.back_box {
  width: 50px;
  position: fixed;
  left: calc(50% + 610px);
  bottom: 10%;
  z-index: 999;
  display: none;
  cursor: pointer;
}
.back_box.active {
  display: block;
}
.back_box #back_tab li {
  position: relative;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 8px 24px -8px #ddd;
  transition: transform 0.2s ease;
}
.back_box #back_tab li.backtop {
  position: relative;
  background-color: #5b39c9;
}
.back_box #back_tab li.backtop:hover {
  box-shadow: 0 5px 5px 2px #eee;
  background-color: #fff;
}
.back_box #back_tab li.backtop:hover i {
  border-right-color: #5b39c9;
  border-top-color: #5b39c9;
}
.back_box #back_tab li.backtop i {
  position: absolute;
  height: 10px;
  width: 10px;
  right: 13px;
  top: 20%;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: translateY(0) rotate(-45deg);
  animation: effectupdown10 2000ms linear 0s infinite;
}

.index_html {
  position: relative;
}
.index_html:before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0%;
  right: 0%;
  position: absolute;
  z-index: -1;
  background: url(../images/main-base.png) no-repeat top right;
}
.index_html .bg1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_html .bg1 .article_template li .row .img_animi {
  max-width: 700px;
  margin-left: 0;
}
.index_html .step1_box {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 150px;
  padding-right: 100px;
}
.index_html .step1_box .l_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 40%;
  flex: 1;
}
.index_html .step1_box .l_item h1 {
  font-size: 30px;
  margin: 80px 0 10px 0;
  font-weight: 600;
  color: #36324a;
  line-height: 1.5;
}
.index_html .step1_box .l_item .desc {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 30px;
}
.index_html .step1_box .l_item .img_anima img {
  position: absolute;
  height: auto;
}
.index_html .step1_box .l_item .img_anima img.shap1 {
  top: 34%;
  left: -18%;
}
.index_html .step1_box .l_item .img_anima img.shap2 {
  top: 31%;
  left: 37%;
}
.index_html .step1_box .l_item .img_anima img.shap3 {
  top: 26%;
  left: 134%;
}
.index_html .step1_box .l_item .img_anima img.shap4 {
  top: 36%;
  right: 10%;
}
.index_html .step1_box .l_item .img_anima img.shap5 {
  top: 51%;
  left: 49%;
}
.index_html .step1_box .l_item .img_anima img.shap6 {
  top: 51%;
  left: -18%;
}
.index_html .step1_box .l_item .img_anima img.shap7 {
  top: 76%;
  right: -10%;
}
.index_html .step1_box .l_item .img_anima img.rotate3d {
  animation: rotate3d 3s linear infinite;
}
.index_html .step1_box .l_item .img_anima img.rotate2d {
  animation: rotate2d 3s linear infinite;
}
.index_html .step1_box .l_item .img_anima img.rotate-2d {
  animation: rotate-2d 3s linear infinite;
}
.index_html .step1_box .r_item {
  max-width: 40%;
}
.index_html .step1_box .r_item .img_item {
  animation: effectupdown 2000ms linear 0s infinite;
}
.index_html .h2_title {
  font-size: 30px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-align: center;
  color: #000;
}
.index_html .h2_text {
  font-size: 20px;
  margin: 0 0 40px 0;
  text-align: center;
  color: #6f6c7f;
  line-height: 1.8;
}
.index_html .h2_text.c9 {
  color: #999;
}
.index_html .article_template {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.index_html .article_template li {
  display: flex;
  gap: 30px;
}
.index_html .article_template li .content_item {
  flex: 1;
}
.index_html .article_template li .row .title {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.index_html .article_template li .row .text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.index_html .article_template li .row .img_animi {
  max-width: 795px;
}
.index_html .article_template li .row .sm_img {
  width: 65px;
  height: 65px;
  margin-bottom: 40px;
}
.index_html .article_template li .row dl dd {
  color: #999;
  font-size: 16px;
}
.index_html .article_template li:nth-child(2) .content_item {
  text-align: right;
}
.index_html .use_box {
  display: grid;
  gap: 30px;
  padding-top: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.index_html .use_box .use_list {
  border-radius: 3px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.index_html .use_box .use_list .img_item {
  width: 100%;
}
.index_html .use_box .use_list .img_item img {
  width: 100%;
}
.index_html .use_box .use_list .content {
  padding: 30px 25px;
}
.index_html .use_box .use_list .content .title {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
}
.index_html .use_box .use_list .content .desc {
  font-size: 14px;
  letter-spacing: 0;
  color: #999;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.8;
}
.index_html .use_box .use_list .content .download {
  color: #5b39c9;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1320px) {
  .back_box {
    left: auto;
    right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .w12_box {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 10px 0;
  }
  header .w12_box {
    width: 100%;
    max-width: auto;
    padding: 0 15px;
  }
  header .w12_box .head_content .logo_item {
    display: flex;
    align-items: center;
  }
  header .w12_box .head_content .logo_item > img {
    margin: 0;
  }
  header .w12_box .head_content .menu_toggle {
    display: flex;
  }
  header .w12_box .head_content .nav_menu {
    position: fixed;
    top: -100%;
    opacity: 0;
    height: 100vh;
    margin-left: 0;
    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 a {
    display: block;
    color: #36324a;
    text-align: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .w12_box .head_content .nav_menu.active ul li a:after {
    bottom: 0;
  }
  .index_html:before {
    display: none;
  }
  .index_html .step1_box .l_item {
    max-width: 66%;
  }
  .index_html .step1_box .l_item h1 {
    font-size: 22px;
  }
  .index_html .step1_box .l_item .desc {
    font-size: 14px;
  }
  .index_html .step1_box .l_item .group_btn {
    justify-content: center;
  }
  .index_html .step1_box .r_item {
    max-width: 33%;
    margin: 0 auto;
  }
  .index_html .bg2 .article_template li, .index_html .bg1 .article_template li {
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
    gap: 50px;
  }
  .index_html .bg2 .article_template li .row .img_animi, .index_html .bg1 .article_template li .row .img_animi {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  header .w12_box .head_content .logo_item > img {
    height: 24px;
  }
  .insert_template.tp4 {
    display: block;
  }
  .footer_template .w12_box .footer_menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .row_box {
    padding-top: 30px;
  }
  .group_btn .btn {
    width: 45%;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 14px !important;
    padding: 0 !important;
  }
  .index_html .step1_box {
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    padding-right: 0;
  }
  .index_html .step1_box .l_item {
    max-width: 100%;
    padding: 130px 0 0;
    overflow: hidden;
  }
  .index_html .step1_box .l_item h1 {
    margin-top: 0;
  }
  .index_html .step1_box .l_item .desc {
    font-size: 14px;
    line-height: 1.8;
  }
  .index_html .step1_box .l_item .img_anima img.rotate2d {
    top: 10%;
  }
  .index_html .step1_box .l_item .img_anima img.shap5 {
    top: 61%;
  }
  .index_html .step1_box .r_item {
    margin: 20px auto 0;
    width: 100%;
    max-width: 100%;
  }
  .index_html .h2_title {
    font-size: 22px;
  }
  .index_html .h2_text {
    font-size: 14px;
  }
  .index_html .article_template li .row .img_animi {
    margin-left: 0;
  }
  .index_html .article_template li .row .sm_img {
    margin-bottom: 20px;
  }
  .index_html .article_template li .row .title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .index_html .use_box {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .index_html .use_box .use_list {
    box-shadow: none;
  }
  .index_html .use_box .use_list .content {
    padding: 15px 0;
  }
  .index_html .use_box .use_list .content .title {
    font-size: 16px;
  }
}

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