@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
 */
@import url(../iconfont/iconfont.css);
/**
*    @description: 重置样式;
*    @create date: 2023-2-23;
*/
body {
  font-size: 14px;
  font-family: "微软雅黑";
  margin: 0 auto;
  background-color: #f4f5f3;
}

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

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

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

.row {
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}

/* 省略号 */
.text_overflow {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* 多行文本省略号 */
.text_overflow_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 右箭头 */
.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);
}

.grid {
  display: grid !important;
}

.w12_box {
  width: 1200px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 20px;
  background-color: transparent;
}

.modal {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 0;
  background-color: #fff;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.modal.active {
  width: 100%;
  opacity: 1;
  z-index: 1000;
}
.modal.active .modal_content .qsform, .modal.active .modal_content .btn_close {
  opacity: 1;
  transform: translateY(0);
}
.modal .modal_content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
.modal .modal_content .btn_close {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
  background: #000 url(../images/close@.svg) no-repeat center center;
  background-size: 50%;
  opacity: 0;
  transform: translateY(-100%);
}
.modal .modal_content .qsform, .modal .modal_content .btn_close {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.header_template {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #bda0fe;
}
.header_template.scroll {
  background-color: #fff;
}
.header_template.scroll .header_content .menu_box .nav_menu_item .item a {
  color: #999;
}
.header_template.scroll .header_content .right_item .iconfont {
  color: #999;
}
.header_template.sticky {
  position: sticky;
}
.header_template .header_content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  padding: 0 25px;
  height: 100%;
  background-color: transparent;
}
.header_template .header_content .head_logo {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_template .header_content .head_logo img {
  width: 48px;
  height: 48px;
  margin-left: 0;
  object-fit: contain;
}
.header_template .header_content .head_logo span {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
.header_template .header_content .menu_box {
  flex: 3 1 0;
  display: flex;
  justify-content: flex-end;
  height: 70px;
  margin-left: 30px;
}
.header_template .header_content .menu_box .menu_btn_box {
  display: none;
}
.header_template .header_content .menu_box .nav_menu_item {
  display: flex;
  height: 100%;
  text-align: center;
}
.header_template .header_content .menu_box .nav_menu_item .item {
  position: relative;
  height: 100%;
  margin-right: 25px;
}
.header_template .header_content .menu_box .nav_menu_item .item.active a, .header_template .header_content .menu_box .nav_menu_item .item:hover a {
  color: #fff;
}
.header_template .header_content .menu_box .nav_menu_item .item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
}
.header_template .header_content .menu_box .nav_menu_item .item > a span {
  display: inline-block;
  color: currentColor;
  font-size: 16px;
  padding: 0 6px;
}
.header_template .header_content .right_item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_template .header_content .right_item > .iconfont {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.header_template .header_content .right_item > .iconfont:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: -20px 0 0 -20px;
  transform: scale(0.5);
  opacity: 0;
  background-color: rgba(220, 225, 229, 0.3);
  transition: opacity 0.2s ease, transform 0.4s ease;
}
.header_template .header_content .right_item > .iconfont:hover:after {
  transform: scale(1);
  opacity: 1;
}
.header_template .header_content .right_item .menu_icon {
  display: none;
}

.bg_template {
  display: none;
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: rgba(0, 0, 0, 0.6);
}
.bg_template.active {
  display: block;
}

.footer_template {
  position: relative;
  background-color: #232323;
}
.footer_template.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer_template .w12_box {
  background-color: transparent;
}
.footer_template .w12_box .copyright_bar {
  display: grid;
  row-gap: 30px;
  text-align: center;
}
.footer_template .w12_box .copyright_bar p {
  font-size: 15px;
  color: #fff;
}

.question_template {
  margin-top: 20px;
}
.question_template dd {
  height: 42px;
  border: 1px solid #bda0fe;
  margin-bottom: 10px;
  transition: height 0.5s ease;
  overflow: hidden;
}
.question_template dd.active .title:after {
  transform: translateY(-50%) rotate(-45deg);
}
.question_template dd:last-child {
  margin-bottom: 0;
}
.question_template dd.open {
  height: auto;
}
.question_template dd .title {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: #bda0fe;
  cursor: pointer;
  font-size: 18px;
  height: 22px;
  padding: 10px 20px 10px 25px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.question_template dd .title strong {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.question_template dd .title:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 9px;
  height: 9px;
  right: 15px;
  top: 50%;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-135deg);
}
.question_template dd .info {
  box-sizing: border-box;
  padding: 13px 4%;
  line-height: 1.5;
  overflow: hidden;
  margin-top: 0;
}

.content_template {
  font-size: 16px;
  padding-bottom: 30px;
}
.content_template h2, .content_template h3, .content_template h4, .content_template h6 {
  color: #222;
  font-weight: bold;
  font-size: 42px;
  margin-top: 30px;
  position: relative;
  line-height: 1.2;
  text-align: left;
  word-break: break-all;
}
.content_template h2 {
  font-size: 26px;
  text-align: center;
}
.content_template h3 {
  font-size: 24px;
}
.content_template h4 {
  font-size: 22px;
}
.content_template h5 {
  font-size: 20px;
}
.content_template h6 {
  font-size: 20px;
}
.content_template p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #555;
  margin-top: 15px;
  word-break: break-all;
  text-wrap: initial !important;
}
.content_template span {
  word-break: break-all;
  text-wrap: initial !important;
}
.content_template img {
  display: block;
  margin: 15px auto 0;
}
.content_template pre, .content_template code {
  color: #eee;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #333;
}
.content_template ul {
  margin-top: 15px;
  list-style-type: disc;
  margin-left: 15px;
}
.content_template ul li {
  margin-left: 25px;
  text-indent: 0;
  margin-top: 10px;
  word-break: break-all;
}
.content_template table {
  width: 100%;
  text-align: center;
}
.content_template table td, .content_template table th {
  border: 1px solid #ddd;
  padding: 10px;
}
.content_template table thead td, .content_template table thead th {
  color: #fff;
  background-color: #bda0fe;
}
.content_template table tbody tr:nth-child(even) {
  background-color: #eee;
}
.content_template table tbody tr td {
  color: #777;
  word-break: break-all;
}
.content_template table tbody tr td .btn_group_template {
  margin-top: 0;
}
.content_template table tbody tr td .btn_group_template a {
  display: inline-block;
  width: auto;
  margin-top: 0;
  padding: 0 15px;
}
.content_template table tbody tr td .btn_group_template a span {
  display: inline-block;
  padding: 8px 5px;
  font-size: 16px;
}
.content_template a {
  color: #000;
  text-decoration: underline;
}
.content_template .center {
  text-align: center;
}

.content_nav_template {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  margin-top: 15px;
  background: #F5F5F7;
}
.content_nav_template .content {
  width: 0;
  flex: 1;
}
.content_nav_template .content .div_p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
  color: #222;
  word-break: break-all;
}
.content_nav_template .content .nav_list {
  margin-top: 10px;
}
.content_nav_template .content .nav_list a {
  font-size: 16px;
  line-height: 28px;
  color: #bda0fe;
  word-break: break-all;
}
.content_nav_template .content .nav_list a:hover {
  text-decoration: underline;
}

.btn_group_template .btn {
  display: block;
  width: 60%;
  margin: 25px auto 0;
  text-align: center;
  transform: all 0.3s ease;
  box-sizing: border-box;
  border-radius: 20px;
  border-bottom-style: solid;
  border-bottom-width: 6px;
  border-color: #8d6bd9;
  background-color: #bda0fe;
}
.btn_group_template .btn:hover {
  border-bottom-width: 3px;
}
.btn_group_template .btn:hover span {
  transform: translateY(1px);
}
.btn_group_template .btn:nth-child(2) {
  width: 65%;
}
.btn_group_template .btn:nth-child(3) {
  width: 70%;
}
.btn_group_template .btn.c1 {
  border-color: #333;
  background-color: #000;
}
.btn_group_template .btn.c1 span {
  color: #fff;
  border-color: #4d4d4d;
  text-shadow: 0px 0px 0px #000000;
}
.btn_group_template .btn span {
  display: block;
  color: #000000;
  padding: 8px 24px;
  font-size: 18px;
  line-height: 27px;
  border-radius: 20px;
  transform: all 0.3s ease;
  border-color: #f1b657;
  text-shadow: 0px 0px 0px #000000;
}
.btn_group_template .btn span i {
  margin-right: 10px;
}

.back_box {
  width: 50px;
  position: fixed;
  left: calc(50% + 620px);
  bottom: 20%;
  z-index: 999;
  border-radius: 5px;
  display: none;
  overflow: hidden;
}
.back_box.active {
  display: block;
}
.back_box #back_tab li {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 6px;
  background-color: #e9eaea;
}
.back_box #back_tab li i {
  color: #bbb;
  font-weight: 600;
}
.back_box #back_tab li:hover {
  opacity: 0.8;
}

.table_box {
  margin-top: 20px;
}

.link_a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.left_box {
  flex: 1 1;
}

.right_box {
  width: 300px;
}

.index_html {
  background-color: #fff;
}
.index_html .section_box .w12_box {
  background-color: transparent;
}
.index_html .section_box .w12_box .theme_box {
  display: flex;
  gap: 20px;
}
.index_html .section_box .w12_box .theme_box.two {
  display: block;
}
.index_html .section_box .w12_box .theme_box.two .r_item {
  width: 100%;
  margin: 50px 0 40px;
}
.index_html .section_box .w12_box .theme_box.two .r_item figure {
  display: grid;
  margin: 0;
  column-gap: 25px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.index_html .section_box .w12_box .theme_box.two .r_item figure img {
  height: 210px;
}
.index_html .section_box .w12_box .theme_box .l_item {
  flex: 1 1;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box {
  display: flex;
  gap: 25px;
  margin: 80px 0;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box .left {
  flex: 1;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box .left h1, .index_html .section_box .w12_box .theme_box .l_item .top_box .left h3, .index_html .section_box .w12_box .theme_box .l_item .top_box .left h4 {
  margin-bottom: 20px;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box .left h1 {
  font-size: 42px;
  color: #222;
  font-weight: 700;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box .left h3 {
  font-size: 28px;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box .left h4 {
  font-size: 24px;
}
.index_html .section_box .w12_box .theme_box .l_item .top_box .right img {
  width: 400px;
}
.index_html .section_box .w12_box .theme_box .l_item table {
  width: 100%;
  text-align: left;
}
.index_html .section_box .w12_box .theme_box .l_item table td, .index_html .section_box .w12_box .theme_box .l_item table th {
  padding: 10px;
}
.index_html .section_box .w12_box .theme_box .l_item table thead td, .index_html .section_box .w12_box .theme_box .l_item table thead th {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 50%;
  background-color: #bda0fe;
}
.index_html .section_box .w12_box .theme_box .l_item table tbody {
  padding-top: 30px;
}
.index_html .section_box .w12_box .theme_box .l_item table tbody tr:nth-child(odd) {
  background-color: #eee;
}
.index_html .section_box .w12_box .theme_box .l_item table tbody tr td {
  color: #555;
  font-size: 16px;
  word-break: break-all;
}
.index_html .section_box .w12_box .theme_box .r_item {
  width: 345px;
}

.downlaod_html .section_box .w12_box .theme_box {
  margin: 60px 0 20px;
}
.downlaod_html .section_box .w12_box .theme_box h1 {
  font-size: 42px;
  color: #222;
  font-weight: 700;
  text-align: center;
}
.downlaod_html .section_box .w12_box .theme_box figure {
  margin: 20px 0;
}
.downlaod_html .section_box .w12_box .theme_box figure img {
  width: 227px;
}
.downlaod_html .section_box .w12_box .theme_box table {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
.downlaod_html .section_box .w12_box .theme_box table td, .downlaod_html .section_box .w12_box .theme_box table th {
  color: #777;
  border: 1px solid #999;
  padding: 10px;
}
.downlaod_html .section_box .w12_box .theme_box table tbody tr td {
  word-break: break-all;
}

@media (min-width: 1200px) {
  .gap_x6 {
    column-gap: 24px;
  }
  .gap_y6 {
    row-gap: 24px;
  }
  .grid_c1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid_c2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .grid_c2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid_c3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .w12_box {
    width: 1000px;
  }
  .left_box {
    width: 560px;
  }
  .right_box {
    width: 380px;
  }
}
@media screen and (max-width: 1000px) {
  .grid_c2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid_c3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .w12_box {
    width: 100%;
    overflow: hidden;
  }
  .left_box {
    width: 100%;
  }
  .right_box {
    width: 100%;
  }
  .header_template .header_content {
    padding: 0 15px;
    z-index: 99;
  }
  .header_template .header_content .head_logo span {
    font-size: 18px;
  }
  .header_template .header_content .menu_box {
    position: fixed;
    width: 100%;
    height: auto;
    left: -100%;
    right: 0;
    top: 0;
    z-index: 99;
    bottom: 0;
    margin-left: 0;
    overflow: hidden;
    overflow-y: scroll;
    background-color: #fff;
    transition: left 0.3s ease;
  }
  .header_template .header_content .menu_box.active {
    left: 0;
  }
  .header_template .header_content .menu_box .menu_btn_box {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    right: 0;
    z-index: 121;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_template .header_content .menu_box .menu_btn_box .menu_close {
    display: block;
    width: 100px;
    height: 100px;
    background: url(../images/close.svg) no-repeat center center !important;
    background-size: 40% !important;
  }
  .header_template .header_content .menu_box .nav_menu_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 560px;
    margin: 100px auto 0;
    width: 100%;
  }
  .header_template .header_content .menu_box .nav_menu_item .item {
    flex-basis: initial;
    flex-grow: initial;
    max-width: 100%;
    height: auto;
    padding: 0 15px;
    margin-right: 0;
  }
  .header_template .header_content .menu_box .nav_menu_item .item.active a, .header_template .header_content .menu_box .nav_menu_item .item:hover a {
    color: #f20;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a {
    position: relative;
    color: #222;
    line-height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a span:after {
    display: none !important;
  }
  .header_template .header_content .right_item .menu_icon {
    display: block;
  }
  .index_html {
    background-color: #fff;
  }
  .index_html .section_box .w12_box {
    background-color: transparent;
  }
  .index_html .section_box .w12_box .theme_box {
    display: block;
  }
  .index_html .section_box .w12_box .theme_box .l_item .top_box {
    display: block;
    margin: 30px 0 40px;
  }
  .index_html .section_box .w12_box .theme_box .l_item .top_box .right img {
    width: 100%;
  }
  .index_html .section_box .w12_box .theme_box .r_item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .header_template {
    padding: 0;
  }
  .btn_group_template .btn span {
    font-size: 14px;
  }
  .content_template h2 {
    font-size: 20px;
  }
  .content_template h3 {
    font-size: 18px;
  }
  .content_template h4 {
    font-size: 18px;
  }
  .content_template h5 {
    font-size: 18px;
  }
  .content_template h6 {
    font-size: 18px;
  }
  .content_template p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #555;
    margin-top: 15px;
    word-break: break-all;
    text-wrap: initial !important;
  }
  .content_template table {
    table-layout: auto;
    transform: scale(0.8);
    transform-origin: left;
    width: 125%;
  }
  .content_template table thead th {
    font-size: 14px;
  }
  .content_template table tbody tr td {
    font-size: 14px;
  }
  .content_template table tbody tr td .btn_group_template a {
    margin-top: 0;
    padding: 0 10px;
    width: auto !important;
  }
  .content_template table tbody tr td .btn_group_template a span {
    display: none;
  }
  .btn_group_template .btn {
    width: 100% !important;
  }
  .question_template dd .title {
    font-size: 16px;
  }
  .index_html {
    background-color: #fff;
  }
  .index_html .section_box .w12_box .theme_box .l_item .top_box .left h1 {
    font-size: 22px;
  }
  .index_html .section_box .w12_box .theme_box .l_item .top_box .left h3 {
    font-size: 16px;
  }
  .index_html .section_box .w12_box .theme_box .l_item .top_box .left h4 {
    font-size: 16px;
  }
  .index_html .section_box .w12_box .theme_box .l_item .top_box .right img {
    width: 100%;
  }
  .index_html .section_box .w12_box .theme_box .r_item {
    width: 100%;
  }
  .index_html .section_box .w12_box .theme_box .r_item figure {
    row-gap: 20px;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .downlaod_html .section_box .w12_box .theme_box {
    margin: 40px 0 0;
  }
  .downlaod_html .section_box .w12_box .theme_box h1 {
    font-size: 22px;
  }
}

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