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

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

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

.d_flex {
  display: flex;
}

.flex_1 {
  flex: 1;
}

.flex_column {
  flex-direction: column;
}

.flex_row {
  flex-direction: row;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_nowrap {
  flex-wrap: nowrap;
}

.flex_shrink {
  flex-shrink: 0;
}

.j_start {
  justify-content: flex-start;
}

.j_center {
  justify-content: center;
}

.j_end {
  justify-content: flex-end;
}

.j_sb {
  justify-content: space-between;
}

.a_center {
  align-items: center;
}

.a_start {
  align-items: flex-start;
}

.a_end {
  align-items: flex-end;
}

.a_stretch {
  align-items: stretch;
}

.a_self-start {
  align-self: flex-start;
}

.a_self-auto {
  align-self: auto;
}

.a_self-end {
  align-self: flex-end;
}

.a_self-stretch {
  align-self: stretch;
}

.a_self-baseline {
  align-self: baseline;
}

/* 省略号 */
.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);
}

body {
  font-family: "segoe ui", Verdana, Arial, Helvetica, sans-serif;
}

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

.border_bottom {
  border-bottom: 1px solid #ebebeb;
}

.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;
}

.i_icon {
  color: #22C55E;
  font-size: 24px;
  margin-right: 10px;
  display: inline-flex;
  height: 40px;
  width: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.i_icon img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 20px;
}
.i_icon.lan {
  background-image: linear-gradient(to bottom right, #3796E2, #3796E2);
  box-shadow: 0 10px 16px #3796E2;
}
.i_icon.hong {
  background-image: linear-gradient(to bottom right, #FF8585, #FF0000);
  box-shadow: 0 10px 16px #FF8585;
}
.i_icon.zi {
  background-image: linear-gradient(to bottom right, #DF85FF, #AD00FF);
  box-shadow: 0 10px 16px #DF85FF;
}
.i_icon.huang {
  background-image: linear-gradient(to bottom right, #FFC785, #FF9900);
  box-shadow: 0 10px 16px #FFC785;
}
.i_icon.lv {
  background-image: linear-gradient(to bottom right, #4ccb70, #3dba60);
  box-shadow: 0 10px 16px #45c368;
}
.i_icon.cheng {
  background-image: linear-gradient(to bottom right, #FFA985, #FF2E00);
  box-shadow: 0 10px 16px #FFA985;
}
.i_icon.lan1 {
  background-image: linear-gradient(to bottom right, #9D85FF, #2400FF);
  box-shadow: 0 10px 16px #9D85FF;
}

.header_template {
  position: sticky;
  top: 0;
  z-index: 999;
}
.header_template .header_content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  height: 100%;
  padding: 0;
  border-radius: 0 0 40px 40px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header_template .header_content .menu_icon {
  display: none;
}
.header_template .header_content .head_logo {
  flex: 1 1 0;
}
.header_template .header_content .head_logo img {
  width: 205px;
  height: 50px;
  margin-left: 0;
  object-fit: contain;
}
.header_template .header_content .menu_box {
  flex: 3 1 0;
  height: 90px;
  width: 1200px;
}
.header_template .header_content .menu_box .menu_btn_box {
  display: none;
}
.header_template .header_content .menu_box .nav_menu_item {
  display: flex;
  height: 100%;
  padding: 0 25px;
  column-gap: 15px;
  text-align: center;
}
.header_template .header_content .menu_box .nav_menu_item .item {
  position: relative;
  max-width: 100%;
  height: 100%;
}
.header_template .header_content .menu_box .nav_menu_item .item.active a {
  color: #22C55E;
}
.header_template .header_content .menu_box .nav_menu_item .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #000;
  text-align: center;
}
.header_template .header_content .menu_box .nav_menu_item .item a span {
  display: block;
  color: currentColor;
  font-size: 18px;
  font-weight: 900;
  padding: 0 8px;
}
.header_template .header_content .menu_box .nav_menu_item .item a .arrow {
  display: none;
}
.header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box {
  position: absolute;
  min-width: 100%;
  top: 50px;
  left: 50%;
  z-index: 20;
  padding: 10px 0;
  border-radius: 5px;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.6s ease 0.1s, transform 0.4s ease 0.1s;
  visibility: hidden;
  backface-visibility: hidden;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
}
.header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box .back_menu {
  display: none;
}
.header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box .scroll_box a {
  min-width: 80px;
  height: 35px;
  color: #777;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 24px;
  white-space: nowrap;
}
.header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box .scroll_box a:hover {
  color: #22C55E;
  font-weight: 600;
}
.header_template .header_content .menu_box .nav_menu_item .item:hover {
  cursor: pointer;
  overflow: inherit;
}
.header_template .header_content .menu_box .nav_menu_item .item:hover > a {
  opacity: 0.9;
}
.header_template .header_content .menu_box .nav_menu_item .item:hover > a i {
  transform: scale(0.9);
}
.header_template .header_content .menu_box .nav_menu_item .item:hover .drop_menu_box {
  transform: translateX(-50%) translateY(20px);
  opacity: 1 !important;
  visibility: visible !important;
}
.header_template .header_content .menu_box .nav_menu_item .item:hover .drop_menu_box:before {
  content: " ";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 21;
}
.header_template .header_content .right_item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.router_template {
  position: relative;
  width: 92%;
  top: -10px;
  z-index: 1;
  line-height: 20px;
  color: #fff;
  padding: 50px 10px 10px 5px;
  margin-top: -50px;
  padding-left: 30px;
  word-break: break-all;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 22px;
  background-color: #4ccb70;
  background-image: linear-gradient(90deg, #4ccb70 0%, #008080 100%);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
}
.router_template a, .router_template em {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin: 0 5px;
  font-weight: bold;
}
.router_template a:hover {
  text-decoration: underline;
}
.gsc-control-cse {
  border: none !important;
  border-radius: 10px !important;
  background: #fff !important;
  padding: 0 !important;
  height: 48px !important;
}
.gsc-control-cse .gsc-search-box-tools {
  margin: 0 !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box {
  margin: 0 !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box {
  padding: 0 !important;
  border: none !important;
  background: transparent;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box .gsib_a {
  padding: 0 !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box .gsib_a .gsc-input {
  height: 48px !important;
  padding: 0 15px !important;
  background-position: 20px !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-search-button .gsc-search-button-v2 {
  border: none !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  margin-top: 0px !important;
  border-radius: 10px !important;
  background: #fff url(../images/search.svg) no-repeat center center;
  background-size: 48% !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-search-button .gsc-search-button-v2 svg {
  display: none !important;
}

.search_modal_template {
  background-color: rgba(244, 245, 243, 0.9803921569);
}
.search_modal_template .modal_content .qsform {
  transform: translateY(50%);
  opacity: 0;
}
.search_modal_template .modal_content .qsform form {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 105px;
  border-radius: 2px;
  margin: 100px auto;
  background: #fff;
  overflow: hidden;
}
.search_modal_template .modal_content .qsform form > div {
  width: 100%;
}
.search_modal_template .modal_content .qsform form input {
  flex: 1 1;
  display: inline-block;
  font-size: 20px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 30px;
  color: #4b5563;
}
.search_modal_template .qsform {
  height: calc(100% - 360px);
}
.search_modal_template .qsform > form {
  margin-top: 100px;
}
.search_modal_template .gsc-control-cse {
  height: auto !important;
}
.search_modal_template .gsc-control-cse .gsc-search-box-tools {
  margin: 0 auto !important;
}
.search_modal_template .gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box {
  border: none !important;
  background: transparent;
}
.search_modal_template .gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box .gsc-input {
  height: 105px !important;
  padding: 0 15px !important;
  background-position: 20px !important;
}
.search_modal_template .gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-search-button .gsc-search-button-v2 {
  width: 105px !important;
  height: 105px !important;
}

.title_template {
  margin-bottom: 25px;
}
.title_template.arrow_link {
  display: flex;
  justify-content: space-between;
}
.title_template.arrow_link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #45c368;
  background-image: linear-gradient(180deg, #4ccb70 0%, #3dba60 100%);
  box-shadow: 0 1px 2px #45c368;
  transition: all 0.15s ease;
}
.title_template.arrow_link a:hover {
  box-shadow: 0 0 0px 5px #45c369;
}
.title_template.arrow_link a:hover i:after {
  opacity: 1;
  transform: translateX(0px);
}
.title_template.arrow_link a:hover i:before {
  opacity: 0;
  transform: translateX(6px);
}
.title_template.arrow_link a i {
  display: none;
  position: relative;
  margin-left: 5px;
  height: 10px;
  width: 10px;
  left: -2px;
  top: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-135deg);
}
.title_template .title {
  font-size: 26px;
  font-weight: 700;
  color: #4b5563;
  position: relative;
  display: flex;
  align-items: center;
}
.title_template .title.sm {
  font-size: 20px;
}
.title_template .title.arrow:hover {
  color: #22C55E;
}
.title_template .title.arrow:after {
  content: "";
  display: inline-block;
  position: relative;
  margin-left: 5px;
  height: 6px;
  width: 6px;
  left: 0;
  top: 2px;
  border-left: 2px solid #999;
  border-bottom: 2px solid #999;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-135deg);
}
.title_template .title .i_icon {
  width: 50px;
  height: 50px;
}
.title_template .title .i_icon img {
  height: 30px;
}

.rate_star {
  display: flex;
  font-size: 13px;
  color: rgba(30, 30, 30, 0.6);
  line-height: 16px;
  pointer-events: none;
  user-select: none;
}
.rate_star:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  mask-image: url("../images/star_rate.svg");
  -webkit-mask-image: url("../images/star_rate.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #FFD058;
}

.cover_img_template {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex-grow: 1;
}
.cover_img_template.app_img {
  border-radius: 12px;
}
.cover_img_template.app_img:after {
  content: "";
  margin-left: -1px;
  width: 1px;
  height: 0;
  padding-top: 100%;
}

.cover_img_template img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  min-width: 100%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center center;
  -o-object-position: center center;
  -o-object-fit: cover;
  pointer-events: none;
}

.card6_template_box {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 20px;
  gap: 30px;
}
.card6_template_box .item {
  position: relative;
  cursor: pointer;
  padding: 25px 15px 15px;
  border-radius: 12px;
  background-color: #fff;
}
.card6_template_box .item:hover .img_item {
  transform: scale(1.05);
}
.card6_template_box .item .type {
  position: absolute;
  z-index: 9;
  left: 15px;
  top: 8px;
  display: flex;
  align-items: center;
  color: #37b6e5;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}
.card6_template_box .item .type:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: #37b6e5;
}
.card6_template_box .item .img_item {
  transition: transform 0.3s ease;
}
.card6_template_box .item .content {
  margin-top: 12px;
}
.card6_template_box .item .content .title {
  font-size: 16px;
  color: #333;
  height: 40px;
  font-weight: 600;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.card6_template_box .item .content .cate {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #438bd3;
  margin-top: 10px;
}
.card6_template_box .item .content .other {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  column-gap: 15px;
}
.card6_template_box .item .content .other .list img {
  width: auto;
  height: 20px;
}
.card6_template_box .item .content .other .list i {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 3px;
  background: url(../images/android.svg) no-repeat center center;
  background-size: contain;
}
.card6_template_box .item .content .other .list i.size {
  background: url(../images/version.svg) no-repeat center center;
  background-size: contain;
}
.card6_template_box .item .content .other .list span {
  font-size: 14px;
  color: #999;
  font-weight: 600;
  word-break: break-all;
}

.cate_list_box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cate_list_box li:hover a, .cate_list_box li.active a {
  background-color: #172B3D;
}
.cate_list_box li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  word-break: break-all;
  background-color: #008080;
}

.cate4_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cate4_list li {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #008080;
}
.cate4_list li:hover {
  background-color: #172B3E;
}
.cate4_list li a {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  height: 100%;
  line-height: 1.3;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
}

.question_box {
  padding: 15px 0;
  margin-top: 20px;
  border-radius: 12px;
  background-color: #FCF6DC;
}
.question_box .question_title {
  color: #4b5563;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.question_template .item.active .title:after {
  transform: translateY(-50%) rotate(-225deg);
}
.question_template .item.active .cate_list {
  display: block;
  transform: translateY(0px);
  margin-bottom: 15px;
}
.question_template .item .title {
  position: relative;
  color: #0C0E21;
  font-size: 16px;
  padding: 10px 25px 10px 25px;
  word-break: break-all;
  cursor: pointer;
}
.question_template .item .title i {
  color: #22C55E;
  margin-right: 5px;
}
.question_template .item .title:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  right: 25px;
  top: 50%;
  border-left: 2px solid #22C55E;
  border-bottom: 2px solid #22C55E;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.question_template .item .cate_list {
  display: none;
  padding: 0 25px;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.question_template .item .cate_list p {
  height: auto;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 4px;
  text-align: left;
  font-weight: 400;
  padding: 0 5px;
  color: #4b5563;
  word-break: break-all;
}
.question_template .item .cate_list p a {
  color: #999;
  text-decoration: underline;
  word-break: break-all;
}
.question_template .item .cate_list p a:hover {
  text-decoration: underline;
  color: #22C55E !important;
}
.question_template .item .cate_list ul {
  padding-left: 20px;
}
.question_template .item .cate_list ul li {
  list-style: disc;
  color: #4b5563;
}

.language_select_template {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
}
.language_select_template .text {
  display: block;
}
.language_select_template .text span {
  color: #000;
  font-size: 14px;
  text-align: center;
}
.language_select_template .drop_menu_box {
  position: absolute;
  top: 45px;
  right: -20px;
  z-index: 20;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: transform 0.3s, visibility 0.1s 0.3s;
  visibility: hidden;
  backface-visibility: hidden;
}
.language_select_template .drop_menu_box .language_close {
  display: none;
}
.language_select_template .drop_menu_box a {
  display: block;
  color: #666;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 7px 10px;
  white-space: nowrap;
}
.language_select_template .drop_menu_box a:hover, .language_select_template .drop_menu_box a.active {
  color: #22C55E;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
}
.language_select_template.active {
  overflow: inherit;
}
.language_select_template.active .drop_menu_box {
  transform: rotateX(0) !important;
  transition: all 0.3s !important;
  visibility: visible !important;
}

.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;
  z-index: 99;
  text-align: left;
  background-color: #142636;
}
.footer_template.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer_template .w12_box {
  display: flex;
  align-items: center;
  padding: 32px 0;
  margin-bottom: 0 !important;
  background-color: #142636;
}
.footer_template .w12_box .copyright {
  margin-right: 100px;
}
.footer_template .w12_box .copyright img {
  display: inline-block;
  width: auto;
  height: 60px;
}
.footer_template .w12_box .footer_menu {
  display: flex;
  column-gap: 40px;
  align-items: center;
}
.footer_template .w12_box .footer_menu a {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 40px;
  opacity: 0.7;
}
.footer_template .w12_box .footer_menu a:hover {
  color: #22C55E;
}

.content_template {
  line-height: 2.6;
}
.content_template h2, .content_template h3, .content_template h4, .content_template h5 {
  color: #4b5563;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  position: relative;
  line-height: 28px;
  word-break: break-all;
  border-left: 4px solid #22C55E;
  padding: 10px 15px;
  background: #fafafa;
}
.content_template p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #555;
  margin-top: 25px;
  word-break: break-all;
  text-wrap: initial !important;
}
.content_template p strong a {
  color: #777;
  font-size: 14px;
  font-weight: bold;
}
.content_template p strong a:hover {
  color: #22C55E;
}
.content_template span {
  word-break: break-all;
  text-wrap: initial !important;
}
.content_template img {
  display: block;
  margin: 15px auto 0;
}
.content_template embed {
  width: 100% !important;
}
.content_template video {
  width: 100% !important;
}
.content_template pre, .content_template code {
  color: #eee;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #333;
}
.content_template ul, .content_template ol {
  margin-top: 15px;
  list-style-type: disc;
}
.content_template ul li, .content_template ol li {
  margin-left: 25px;
  text-indent: 0;
  word-break: break-all;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}
.content_template table {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.content_template table td, .content_template table th {
  border: 1px solid #ddd;
  padding: 5px;
}
.content_template table td sup, .content_template table th sup {
  color: #999;
}
.content_template table thead td, .content_template table thead th {
  color: #4b5563;
  background-color: #eee;
}
.content_template table tbody tr:nth-child(even) {
  background-color: #eee;
}
.content_template table tbody tr td {
  color: #777;
  word-break: break-all;
}

.laypage_template {
  text-align: center;
  line-height: 50px;
  margin-top: 30px;
  background-color: #fff;
}
.laypage_template a, .laypage_template span {
  display: inline-block;
  font-size: 18px;
  min-width: 24px;
  padding: 0 15px;
  text-align: center;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 8px;
  border-radius: 12px;
}
.laypage_template a.currentPage, .laypage_template span.currentPage {
  color: #22C55E;
  background-color: #F9FAF9;
}
.laypage_template a:hover {
  color: #22C55E;
}

.star_template {
  display: flex;
  width: 175px;
  height: 35px;
  margin-top: 10px;
  text-indent: -9999px;
  position: relative;
  mask-image: url("../images/star.svg");
  -webkit-mask-image: url("../images/star.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #eee;
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
  mask-size: auto 100%;
  -webkit-mask-size: auto 100%;
}
.star_template dt {
  position: absolute;
  height: 100%;
  z-index: 1;
  background-color: #22C55E;
}
.star_template dd {
  text-indent: -9000px;
  width: 20%;
  height: 100%;
}

@keyframes text-movey {
  0% {
    opacity: 0.3;
    transform: translate3d(0, -5px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.cat_bar_template a {
  display: inline-block;
  color: #22C55E;
  font-weight: 800;
  font-size: 18px;
}
.cat_bar_template a:not(:last-child):after {
  content: "/";
  opacity: 0.4;
  margin: 0 10px;
  color: #4b5563;
}
.cat_bar_template a:hover {
  text-decoration: underline;
}

.more_version_btn {
  display: flex;
  align-items: center;
  color: #22C55E;
  font-size: 18px;
  font-weight: 800;
  height: 40px;
  line-height: 40px;
}
.more_version_btn:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  background: url(../images/collapse_icon.svg) no-repeat center center;
  background-size: contain;
}

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

.left_box {
  float: left;
  width: 700px;
}

.right_box {
  float: right;
  width: 380px;
}

.back_box {
  width: 50px;
  position: fixed;
  left: calc(50% + 610px);
  bottom: 20%;
  z-index: 999;
  display: none;
  cursor: pointer;
}
.back_box.active {
  display: block;
}
.back_box #back_tab li {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 9999px;
  text-align: center;
  background-color: #00bd7c;
  box-shadow: 0 8px 24px -8px #00bd7c;
  transition: transform 0.2s ease;
}
.back_box #back_tab li:hover {
  transform: scale(1.05);
}
.back_box #back_tab li i {
  color: #fff;
  font-size: 24px;
}

.download_template {
  width: 100%;
  margin-top: 32px;
  gap: 12px;
  order: 13;
}
.download_template a {
  display: block;
  font-size: 20px;
  padding: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 8px 20px -4px rgba(0, 189, 124, 0.25);
  background-color: #00ab71;
}
.download_template a img {
  display: inline-block;
  width: auto;
  height: 24px;
  vertical-align: sub;
  margin-right: 8px;
}
.download_template a:hover {
  background-color: #22C55E;
}

.background {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
.background > i {
  position: absolute;
  z-index: -1;
  display: block;
  width: 1500px;
}
.background .bg_purple {
  height: 1500px;
  top: 70%;
  left: 70%;
  transform: translate(0%, -50%);
}
.background .bg_yellow {
  height: 1500px;
  top: 0;
  right: 50%;
  transform: translate(10%, -60%);
  background-image: radial-gradient(closest-side, rgba(254, 222, 74, 0.2) 0, rgba(254, 222, 74, 0) 100%);
}
.background .bg_yellow2 {
  height: 1500px;
  top: 50%;
  right: 50%;
  transform: translate(-5%, -50%);
  background-image: radial-gradient(closest-side, rgba(254, 222, 74, 0.2) 0, rgba(254, 222, 74, 0) 100%);
}
.background .bg_green {
  height: 1500px;
  top: 5%;
  left: 75%;
  transform: translate(0%, 0%);
  background-image: radial-gradient(closest-side, var(--color_bg_cloud_dw_1) 0, var(--color_bg_cloud_dw_2) 100%) !important;
}
.background .bg_clouds {
  width: 100%;
  display: flex !important;
  justify-content: center;
}
.background .bg_clouds svg {
  max-width: 2880px;
  min-width: 2880px;
  height: auto;
}
.background .bg_clouds .cloud-c1 {
  fill: #79c970;
  opacity: 0.1;
}
.background .bg_clouds .cloud-c2 {
  fill: #fbfcf3;
}

.recom_post_bg {
  position: absolute;
  z-index: -1;
  background-color: #fff;
  overflow: hidden;
  border-radius: 20px;
  top: 30px;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recom_post_bg svg {
  height: auto;
  transform: translateY(-40%);
  transition: transform 0.3s ease;
}

.anima_img_box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  gap: 30px;
}
.anima_img_box li {
  position: relative;
  padding: 0 20px 20px;
}
.anima_img_box li:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 100%;
  left: 0;
  top: -12px;
  z-index: -1;
  background-size: 20px 20px;
  opacity: 0.2;
}
.anima_img_box li:nth-child(1n):before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbD0nIzJCOURENScgZD0nTTIsOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwyLDhabTgtOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwxMCwwWicvPjwvc3ZnPg==);
}
.anima_img_box li:nth-child(2n):before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbD0nIzRDQ0I3MCcgZD0nTTIsOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwyLDhabTgtOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwxMCwwWicvPjwvc3ZnPg==);
}
.anima_img_box li:nth-child(3n):before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbD0nIzc4NENDQicgZD0nTTIsOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwyLDhabTgtOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwxMCwwWicvPjwvc3ZnPg==);
}
.anima_img_box li:nth-child(4n):before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbD0nI0ZFREU0QScgZD0nTTIsOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwyLDhabTgtOGEyLDIsMCwxLDAsMiwyQTIsMiwwLDAsMCwxMCwwWicvPjwvc3ZnPg==);
}
.anima_img_box li:hover .img_item {
  transform: translateY(-10px);
}
.anima_img_box li:hover .recom_post_bg svg {
  transform: translateY(-40%) scale(1.2);
}
.anima_img_box li .img_item {
  width: 170px;
  margin: 10px auto 0;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px -10px #2b9dd5;
}
.anima_img_box li .title {
  font-size: 20px;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}
.anima_img_box li .icon {
  position: absolute;
  top: 30px;
  right: 0;
  width: 40px;
  margin: 15px;
  padding: 5px;
  padding-bottom: 7px;
  box-sizing: border-box;
  background-color: #fff;
  pointer-events: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: #8b959e;
}
.anima_img_box li .icon i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/android.svg) no-repeat center center;
  background-size: contain;
}

.yx_bg {
  position: relative;
  z-index: 0;
  margin-top: -110px;
  padding-top: 110px;
  padding-bottom: 100px;
  color: #fff;
  background-color: #3bb375;
  background-image: linear-gradient(0deg, #3bb375 0%, #289b7f 100%);
}
.yx_bg .bg_clouds {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.4;
  background-image: url(../images/yx_bg.svg);
  background-size: 2560px auto;
  background-repeat: repeat-y;
  background-position: 50% 100%;
}
.yx_bg .w12_box .title_template {
  margin-top: 20px;
}
.yx_bg .w12_box .title_template .title {
  color: #fff;
  font-size: 40px;
}

.index_html .w12_box {
  margin-bottom: 30px;
}
.index_html .head_bg {
  position: relative;
  padding-top: 90px;
  margin-top: -120px;
  overflow: hidden;
}
.index_html .head_bg h1 {
  position: relative;
  z-index: 1;
  font-size: 46px;
  color: #289b7f;
  word-break: break-all;
  font-weight: bold;
  text-transform: capitalize;
  max-width: 500px;
  margin: 80px auto;
}
.index_html .head_bg img {
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 0;
  transform: translate(-50%, -7%);
  width: 130%;
  max-width: initial;
  height: 100%;
  pointer-events: none;
}

.yx_html .section_box {
  margin-top: -100px;
}

.yxxq_html .yx_bg {
  background-image: none;
  background-color: #172b3d;
}
.yxxq_html .yx_bg .bg_clouds {
  opacity: 0.1;
}
.yxxq_html .yx_bg .bg_circle .bg_blur {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 50%;
  width: 1360px;
  height: 1360px;
  padding: 5px;
  border-radius: 50%;
  overflow: hidden;
}
.yxxq_html .yx_bg .bg_circle .bg_blur i {
  opacity: 0.2;
}
.yxxq_html .yx_bg .bg_circle .bg_blur i img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  min-width: calc(100% + 1px);
  height: 100%;
  opacity: 0.4;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center center;
}
.yxxq_html .yx_bg h1 {
  font-size: 28px;
  font-weight: bold;
}
.yxxq_html .yx_bg .theme_box {
  margin-top: 35px;
}
.yxxq_html .yx_bg .theme_box .img_item {
  width: 176px;
  float: left;
  overflow: initial;
}
.yxxq_html .yx_bg .theme_box .img_item img {
  border-radius: 12px;
}
.yxxq_html .yx_bg .theme_box .img_item:before {
  position: absolute;
  z-index: 0;
  content: "";
  width: 100%;
  height: 80%;
  margin-left: 40px;
  left: 0;
  top: 50%;
  background-size: 20px 20px;
  opacity: 0.5;
  background-image: url(../images/bg_img.svg);
}
.yxxq_html .yx_bg .theme_box .content {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 0 35px;
}
.yxxq_html .yx_bg .theme_box .content dd {
  display: flex;
  column-gap: 35px;
  margin-bottom: 25px;
}
.yxxq_html .yx_bg .theme_box .content dd .title {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  min-width: 160px;
}
.yxxq_html .yx_bg .theme_box .content dd .title img {
  display: inline-block;
  width: auto;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.yxxq_html .yx_bg .theme_box .content dd a {
  color: #22C55E;
  font-weight: 500;
}
.yxxq_html .yx_bg .theme_box .content dd .text {
  color: #fff;
  font-size: 16px;
}
.yxxq_html .yx_bg .theme_box .score_box {
  float: right;
  width: 30%;
}
.yxxq_html .yx_bg .theme_box .score_box p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  text-indent: 5px;
}
.yxxq_html .yx_bg .download_template {
  display: inline-block;
}
.yxxq_html .yx_bg .download_template a {
  display: inline-block;
  margin-left: 211px;
  box-shadow: 0 5px 10px #45c369;
}
.yxxq_html .section_box {
  margin: 30px 0;
}
.yxxq_html .section_box .w12_box {
  padding: 40px;
  border-radius: 12px;
  background-color: #fff;
}
.yxxq_html .section_box .w12_box .card6_template_box {
  padding-bottom: 15px;
}
.yxxq_html .section_box .w12_box .card6_template_box .item {
  border: 1px solid #E6E7EB;
  box-shadow: 0 15px 10px #eee;
}
.yxxq_html .section_box .w12_box .swiper_xw {
  height: 230px;
  margin-top: 30px;
}
.yxxq_html .section_box .w12_box .swiper_xw .swiper-wrapper {
  overflow: initial;
}
.yxxq_html .section_box .w12_box .swiper_xw .swiper-wrapper .swiper-slide {
  width: auto;
}
.yxxq_html .section_box .w12_box .swiper_xw .swiper-wrapper .swiper-slide a {
  display: block;
  height: 100%;
}
.yxxq_html .section_box .w12_box .swiper_xw .swiper-wrapper .swiper-slide a .img_item {
  width: 100%;
  height: 100%;
}
.yxxq_html .section_box .w12_box .swiper_xw .swiper-wrapper .swiper-slide a .img_item img {
  border-radius: 12px;
}
.yxxq_html .section_box .w12_box .bg_pj {
  height: 80px;
  opacity: 0.05;
  background: url(../images/bg_img.svg);
  background-size: 20px 20px;
}
.yxxq_html .section_box .w12_box .download_template a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}
.yxxq_html .section_box .w12_box .download_template a .size {
  font-size: 18px;
  height: 40px;
  line-height: 30px;
  padding: 5px 15px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2);
}

.wz_html .section_box {
  margin-top: -100px;
}
.wz_html .section_box .w12_box .blog_box .item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: #fff;
}
.wz_html .section_box .w12_box .blog_box .item:hover {
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.15);
}
.wz_html .section_box .w12_box .blog_box .item .img_item {
  position: absolute;
  left: 0;
  right: 0;
  width: 250px;
  height: 100%;
  border-radius: 12px 0 0 12px;
}
.wz_html .section_box .w12_box .blog_box .item .content {
  padding: 20px 20px 20px 280px;
}
.wz_html .section_box .w12_box .blog_box .item .content h3 a {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  height: 58px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wz_html .section_box .w12_box .blog_box .item .content p {
  font-size: 16px;
  color: #4b5563;
  height: 84px;
  line-height: 1.3;
  margin: 20px 0;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.wz_html .section_box .w12_box .blog_box .item .content .more {
  color: #22C55E;
  font-size: 18px;
  font-weight: bold;
}

.wzxq_html .section_box {
  margin: -100px auto 30px;
  border-radius: 12px;
}
.wzxq_html .section_box .w12_box {
  background-color: #fff;
}
.wzxq_html .section_box .w12_box h1 {
  font-size: 30px;
  color: #4b5563;
  font-weight: bold;
}
.wzxq_html .section_box .w12_box .ai_type {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wzxq_html .section_box .w12_box .ai_type span {
  color: #999;
  font-size: 14px;
  margin-right: 25px;
}

@media screen and (min-width: 1000px) and (max-width: 1280px) {
  .grid_c2 {
    grid-template-columns: repeat(2, minmax(0, minmax(0, 1fr)));
  }
  .grid_c3 {
    grid-template-columns: repeat(3, minmax(0, minmax(0, 1fr)));
  }
  .grid_c4 {
    grid-template-columns: repeat(4, minmax(0, minmax(0, 1fr)));
  }
  .left_box {
    width: 560px;
  }
  .right_box {
    width: 380px;
  }
  .back_box {
    left: calc(100% - 60px);
  }
  .card6_template_box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .header_template .header_content {
    width: 100%;
  }
  .w12_box {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .back_box {
    left: calc(100% - 60px);
  }
  .w12_box {
    width: 100%;
  }
  .left_box {
    width: 100%;
  }
  .right_box {
    width: 100%;
  }
  .laypage_template {
    padding: 15px 0;
    height: auto;
  }
  .card6_template_box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .cate4_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .anima_img_box {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
  }
  .anima_img_box li {
    min-width: 360px;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .anima_img_box li .img_item {
    width: 140px;
    height: 140px;
  }
  .language_select_template {
    float: left;
  }
  .language_select_template .text {
    padding-right: 0;
  }
  .language_select_template .text:before {
    background: url(../images/language@.svg) no-repeat center center;
    background-size: contain;
  }
  .language_select_template .text span {
    display: none;
  }
  .language_select_template .drop_menu_box {
    left: -100px;
    right: 0;
  }
  .title_template .title {
    font-size: 20px;
  }
  .search_modal_template .modal_content .btn_close {
    background: transparent url(../images/close.svg) no-repeat center center;
    background-size: 50%;
  }
  .search_modal_template .modal_content .qsform form {
    max-width: 90%;
  }
  .header_template .header_content {
    width: 100%;
    padding: 15px;
    z-index: 99;
  }
  .header_template .header_content .head_logo {
    width: 140px;
  }
  .header_template .header_content .menu_box {
    position: fixed;
    width: 100%;
    left: -100%;
    right: 0;
    top: 0;
    z-index: 99;
    bottom: 0;
    overflow: hidden;
    overflow-y: scroll;
    background-color: #fff;
    transition: left 0.3s ease;
  }
  .header_template .header_content .menu_box.active {
    left: 0;
    height: 100%;
  }
  .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;
    background-size: 40%;
  }
  .header_template .header_content .menu_box .nav_menu_item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    max-width: 560px;
    margin: 100px auto 0;
    height: auto;
  }
  .header_template .header_content .menu_box .nav_menu_item .item {
    flex-basis: initial;
    flex-grow: initial;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .header_template .header_content .menu_box .nav_menu_item .item:nth-child(1) {
    background-color: rgba(133, 182, 255, 0.1254901961);
  }
  .header_template .header_content .menu_box .nav_menu_item .item:nth-child(2) {
    background-color: rgba(255, 133, 133, 0.1254901961);
  }
  .header_template .header_content .menu_box .nav_menu_item .item:nth-child(3) {
    background-color: rgba(223, 133, 255, 0.1254901961);
  }
  .header_template .header_content .menu_box .nav_menu_item .item:nth-child(4) {
    background-color: rgba(255, 199, 133, 0.1254901961);
  }
  .header_template .header_content .menu_box .nav_menu_item .item:nth-child(5) {
    background-color: rgba(22, 211, 0, 0.1254901961);
  }
  .header_template .header_content .menu_box .nav_menu_item .item:nth-child(6) {
    background-color: rgba(255, 169, 133, 0.1254901961);
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a {
    position: relative;
    height: auto;
    line-height: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a .arrow {
    display: inline-block;
    height: 30px;
    width: 64px;
    position: relative;
    background: url(../images/arrow-right.svg) no-repeat center center;
    background-size: contain;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a span {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a .arrow {
    display: none;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box {
    display: none;
    position: fixed;
    left: calc((100% - 560px) / 2);
    right: calc((100% - 560px) / 2);
    top: 0;
    padding-top: 0;
    min-width: auto;
    height: 100vh;
    z-index: 122;
    text-align: left;
    overflow: hidden;
    overflow-y: scroll;
    background-color: #fff;
    filter: none;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box.active {
    display: block;
    opacity: 1 !important;
    transform: rotateX(0) !important;
    transition: opacity 0.1s, transform 0.3s !important;
    visibility: visible !important;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box .back_menu {
    display: block;
    width: 100px;
    height: 100px;
    z-index: 1;
    cursor: pointer;
    background: url(../images/arrow-left.svg) no-repeat center center;
    background-size: 30%;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box .scroll_box {
    padding-bottom: 100px;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box .scroll_box a {
    color: #343a40;
    font-weight: 400;
    font-size: 20px;
    padding-left: 50px;
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
  }
  .header_template .header_content .right_item .menu_icon {
    display: block;
  }
  .footer_template .w12_box {
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer_template .w12_box .footer_menu {
    justify-content: center;
    flex-wrap: wrap;
  }
  .yxxq_html .section_box .w12_box {
    padding: 20px;
  }
  .yxxq_html .section_box .w12_box .router_template {
    margin-top: 0;
  }
  .yxxq_html .section_box .w12_box h1 {
    font-size: 20px;
  }
  .yxxq_html .section_box .w12_box .theme_box {
    text-align: center;
    overflow: hidden;
    margin-top: 35px;
  }
  .yxxq_html .section_box .w12_box .theme_box .img_item {
    display: inline-block;
    width: 176px;
    height: 176px;
    float: inherit;
  }
  .yxxq_html .section_box .w12_box .theme_box .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    float: inherit;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin-top: 25px;
  }
  .yxxq_html .section_box .w12_box .theme_box .content dd {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .yxxq_html .section_box .w12_box .theme_box .content dd .title {
    margin-bottom: 10px;
  }
  .yxxq_html .section_box .w12_box .theme_box .content dd .title img {
    display: block;
    margin: 0 auto;
  }
  .yxxq_html .section_box .w12_box .theme_box .score_box {
    float: inherit;
    text-align: center;
    width: 100%;
  }
  .yxxq_html .section_box .w12_box .theme_box .score_box .star_template {
    margin-left: auto;
    margin-right: auto;
  }
  .wz_html .section_box .w12_box .blog_box .item .img_item {
    width: 180px;
  }
  .wz_html .section_box .w12_box .blog_box .item .content {
    padding: 20px 20px 20px 190px;
  }
  .wz_html .section_box .w12_box .blog_box .item .content h3 .title {
    height: auto;
  }
  .wz_html .section_box .w12_box .blog_box .item .content p {
    height: auto;
    margin: 15px 0;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  .w12_box {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .content_template img {
    width: 100%;
  }
  .background .bg_clouds svg {
    max-width: 2000px;
    min-width: 2000px;
    height: 570px;
    margin-left: 500px;
  }
  .background .bg_clouds .cloud-c1 {
    fill: #79c970;
    opacity: 0.1;
  }
  .background .bg_clouds .cloud-c2 {
    fill: #fbfcf3;
  }
  .router_template {
    width: auto;
    padding: 50px 20px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .download_template a {
    font-size: 16px;
  }
  .card6_template_box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cate4_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .title_template {
    line-height: 32px;
  }
  .title_template.arrow_link {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .title_template.arrow_link a {
    width: 40px;
  }
  .title_template.arrow_link a span {
    display: none;
  }
  .title_template.arrow_link a i {
    display: inline-block;
  }
  .title_template .title .i_icon {
    width: 40px;
    height: 40px;
  }
  .laypage_template {
    line-height: 40px;
  }
  .laypage_template a, .laypage_template span {
    font-size: 14px;
    padding: 0 10px;
  }
  .language_select_template.active .drop_menu_box {
    left: 0;
  }
  .language_select_template .drop_menu_box {
    position: fixed;
    width: 100%;
    left: -100%;
    right: 0;
    top: 0;
    z-index: 99;
    bottom: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    overflow-y: scroll;
    background-color: #fff;
    transition: left 0.3s ease;
  }
  .language_select_template .drop_menu_box .language_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100px;
    height: 100px;
    background: url(../images/close.svg) no-repeat center center;
    background-size: 40%;
  }
  .header_template {
    padding: 0;
  }
  .header_template .header_content {
    padding: 15px;
  }
  .header_template .header_content .menu_icon {
    display: block;
  }
  .header_template .header_content .head_logo img {
    width: 164px;
    height: 40px;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box {
    left: 0;
    right: 0;
  }
  .header_template .header_content .menu_box .nav_menu_item .item .drop_menu_box a {
    font-size: 20px;
  }
  .header_template .header_content .right_item .i_icon {
    background-color: #dcfce7;
  }
  .footer_template .w12_box .copyright {
    margin-right: 0;
  }
  .footer_template .w12_box .footer_menu {
    gap: 10px;
  }
  .index_html .head_bg {
    margin-top: -100px;
  }
  .index_html .head_bg h1 {
    font-size: 26px;
    text-align: center;
    max-width: 70%;
    margin: 40px auto;
  }
  .wz_html .title_template .title {
    font-size: 28px !important;
  }
  .wz_html .section_box .w12_box .blog_box .item .img_item {
    width: 120px;
  }
  .wz_html .section_box .w12_box .blog_box .item .content {
    padding: 10px 10px 10px 135px;
  }
  .wz_html .section_box .w12_box .blog_box .item .content h3 .title {
    height: auto;
    font-size: 18px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .wz_html .section_box .w12_box .blog_box .item .content p {
    margin: 10px 0;
    font-size: 14px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .wz_html .section_box .w12_box .blog_box .item .content .more {
    font-size: 14px;
  }
  .wzxq_html .section_box .w12_box h1 {
    font-size: 24px;
  }
  .yxxq_html .yx_bg .w12_box h1 {
    font-size: 24px;
  }
  .yxxq_html .yx_bg .w12_box .theme_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .yxxq_html .yx_bg .w12_box .theme_box .img_item {
    float: initial;
  }
  .yxxq_html .yx_bg .w12_box .theme_box .content {
    position: relative;
    z-index: 1;
    float: initial;
    padding: 0 10px;
    width: 100%;
    margin-top: 20px;
  }
  .yxxq_html .yx_bg .w12_box .theme_box .score_box {
    float: initial;
    width: 100%;
    text-align: center;
  }
  .yxxq_html .yx_bg .w12_box .theme_box .score_box .star_template {
    margin: 10px auto 0;
  }
  .yxxq_html .yx_bg .w12_box .download_template {
    text-align: center;
  }
  .yxxq_html .yx_bg .w12_box .download_template a {
    margin: 0;
  }
  .yxxq_html .section_box .w12_box .download_template a {
    flex-direction: column;
    border-radius: 12px;
  }
  .yxxq_html .section_box .w12_box .download_template a .size {
    background-color: transparent;
  }
}

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