@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;
*/
@import url(/new/iconfont/iconfont.css);
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, 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);
}

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

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

.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 25px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}
.header_template .header_content .head_logo {
  flex: 1 1 0;
}
.header_template .header_content .head_logo img {
  width: 128px;
  height: 64px;
  margin-left: 0;
  object-fit: contain;
}
.header_template .header_content .menu_box {
  flex: 3 1 0;
  height: 70px;
  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%;
  gap: 30px;
  justify-content: center;
  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: #00bd7c;
}
.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 i {
  color: #00bd7c;
  font-size: 24px;
}
.header_template .header_content .menu_box .nav_menu_item .item a span {
  display: block;
  color: currentColor;
  font-size: 16px;
  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: #00bd7c;
  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.5;
}
.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;
}
.header_template .header_content .right_item .icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 60px;
  cursor: pointer;
}
.header_template .header_content .right_item .icon: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 .icon:hover:after {
  transform: scale(1);
  opacity: 1;
}
.header_template .header_content .right_item .search_icon {
  background: url(../images/search.svg) no-repeat center center;
  background-size: 60%;
}
.header_template .header_content .right_item .day_icon {
  display: none;
  background: url(../images/day.svg) no-repeat center center;
  background-size: 60%;
}
.header_template .header_content .right_item .menu_icon {
  background: url(../images/menu.svg) no-repeat center center;
  background-size: 60%;
  display: none;
}

.router_template {
  position: relative;
  line-height: 22px;
  color: #666;
}
.router_template a, .router_template em {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #999;
  margin-right: 5px;
}
.router_template a {
  color: #00bd7c;
}
.router_template a:hover {
  text-decoration: underline;
}
.router_template .router_right {
  position: absolute;
  right: 20px;
  top: 11px;
}
.router_template .router_right .router_submenu {
  position: relative;
  height: 40px;
  line-height: 40px;
  padding-right: 15px;
  color: #222;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.router_template .router_right .router_submenu::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222;
}

.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: #222;
}
.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;
}

body.active {
  background-color: #202124;
}
body.active .header_template {
  border: none;
  background-color: transparent;
}
body.active .header_template .header_content {
  background-color: transparent;
  background: linear-gradient(180deg, #202124 0%, rgba(32, 33, 36, 0.8) 100%);
}
body.active .header_template .menu_box .menu_btn_box .menu_close {
  background: url(../images/close@.svg) no-repeat center center;
  background-size: 40%;
}
body.active .header_template .menu_box .nav_menu_item .item a {
  color: #fff;
}
body.active .header_template .menu_box .nav_menu_item .item a i svg {
  color: #fff;
  opacity: 0.3;
}
body.active .header_template .menu_box .nav_menu_item .item.active a i svg {
  color: #00bd7c;
  opacity: 1;
}
body.active .header_template .menu_box .nav_menu_item .item.active a span {
  color: #00bd7c !important;
}
body.active .header_template .menu_box .nav_menu_item .item .drop_menu_box {
  background-color: #121416;
}
body.active .header_template .menu_box .nav_menu_item .item .drop_menu_box:before {
  border-bottom-color: #121416 !important;
}
body.active .header_template .menu_box .nav_menu_item .item .drop_menu_box a {
  color: #fff !important;
}
body.active .header_template .right_item .icon svg {
  color: #fff;
}
body.active .header_template .right_item .search_icon {
  background: url(../images/search@.svg) no-repeat center center;
  background-size: 40%;
}
body.active .header_template .right_item .day_icon {
  background: url(../images/day@.svg) no-repeat center center;
  background-size: 40%;
}
body.active .header_template .right_item .menu_icon {
  background: url(../images/menu@.svg) no-repeat center center;
  background-size: 40%;
}
body.active .router_template {
  border-color: #333;
}
body.active .router_template .router_right .router_submenu {
  color: #999;
}
body.active .search_modal_template {
  background-color: #121416;
}
body.active .search_modal_template .modal_content .btn_close {
  background: url(../images/close@.svg) no-repeat center center;
  background-size: 50%;
}
body.active .search_modal_template .modal_content .qsform form {
  background: #292c2f;
}
body.active .search_modal_template .modal_content .qsform form input {
  color: #fff;
}
body.active .search_modal_template .modal_content .qsform form .search_icon {
  background: url(../images/search@.svg) no-repeat center center;
  background-size: contain;
}
body.active .w12_box {
  background-color: #202124 !important;
}
body.active .language_select_template .text:before {
  background: url(../images/language.svg) no-repeat center center;
  background-size: contain;
}
body.active .language_select_template .text span {
  color: #fff;
}
body.active .language_select_template .drop_menu_box {
  background-color: #121416;
}
body.active .language_select_template .drop_menu_box .language_close {
  background: url(../images/close@.svg) no-repeat center center;
  background-size: 40%;
}
body.active .language_select_template .drop_menu_box a {
  color: #fff;
}
body.active .language_select_template .drop_menu_box a:hover {
  background-color: #999;
}
body.active .auto_color, body.active .auto_color a {
  color: #fff !important;
}
body.active .auto_author {
  color: #cdcee1 !important;
}
body.active .carousel_template .item {
  background-color: #292c2f !important;
}
body.active .seo_title, body.active .seo_text {
  color: rgba(255, 255, 255, 0.5) !important;
}
body.active .auth_bg li {
  background-color: #292c2f !important;
}
body.active .cat_bar_template a:after {
  color: currentColor;
}
body.active .star_template .score {
  color: #777;
}
body.active .content_template h2, body.active .content_template h3, body.active .content_template h4, body.active .content_template h5 {
  color: #eee;
}
body.active .content_template p {
  color: #ddd;
}
body.active .content_template span {
  color: #ddd;
}
body.active .content_template pre, body.active .content_template code {
  color: #eee;
  background-color: #333;
}
body.active .content_template ul li {
  color: #ddd;
}
body.active .content_template table td, body.active .content_template table th {
  border-color: #555;
}
body.active .content_template table td sup, body.active .content_template table th sup {
  color: #ddd;
}
body.active .content_template table thead td, body.active .content_template table thead th {
  color: #ddd;
  background-color: transparent;
}
body.active .content_template table tbody tr:nth-child(even) {
  background-color: #333;
}
body.active .content_template table tbody tr td {
  color: #777;
}
body.active .question_box {
  background-color: #292c2f !important;
}
body.active .question_box .cat_bar a:not(:last-child):after {
  color: #eee !important;
}
body.active .question_box .question_template .item .title:after {
  border-color: #fff;
}
body.active .question_box .question_template .item .cate_list p {
  color: #eee;
}
body.active .laypage_template {
  background-color: #292c2f !important;
}
body.active .laypage_template a, body.active .laypage_template span {
  color: #fff;
}
body.active .laypage_template .currentPage {
  background-color: #434546;
}
body.active .back_box #back_tab li {
  background-color: #232323;
}

.title_template {
  line-height: 40px;
  overflow: hidden;
}
.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: #00bd7c;
  font-size: 14px;
  font-weight: 700;
  padding: 0 10px;
  box-sizing: border-box;
}
.title_template.arrow_link a.bg {
  border-radius: 9999px;
  background-color: rgba(0, 189, 124, 0.1);
}
.title_template.arrow_link a:hover {
  color: #00bd7c;
}
.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: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #00bd7c;
  position: relative;
}
.title_template.arrow_link a i:before, .title_template.arrow_link a i:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -4px 0 0 -4px;
  display: inline-block;
  width: 8px;
  height: 8px;
  mask-image: url("../images/k_arrow_mini.svg");
  -webkit-mask-image: url("../images/k_arrow_mini.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #00bd7c;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.title_template.arrow_link a i:after {
  opacity: 0;
  transform: translateX(-6px);
}
.title_template .title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  display: inline-block;
  position: relative;
}
.title_template .title.sm {
  font-size: 20px;
}
.title_template .title.arrow:hover {
  color: #00bd7c;
}
.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);
}

.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/k_star_rate.svg");
  -webkit-mask-image: url("../images/k_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;
}

.card4_template_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  column-gap: 24px;
}
.card4_template_box.f122 .item {
  background-color: #F1F2F2;
}
.card4_template_box .item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  background-color: #F6F6F7;
  overflow: hidden;
}
.card4_template_box .item:hover .content .icon_rate {
  transform: translateY(-5px);
}
.card4_template_box .item:hover .content .foot i {
  color: #00bd7c;
}
.card4_template_box .item:hover .content .foot i:after {
  opacity: 0.4;
  transform: scale(1);
}
.card4_template_box .item .img_item {
  position: relative;
}
.card4_template_box .item .img_item:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(246, 246, 247, 0.8) 0%, #F6F6F7 100%);
  backdrop-filter: blur(30px);
}
.card4_template_box .item .img_item:after {
  content: "";
  display: block;
  height: 0;
  width: 1px;
  padding-top: 188px;
}
.card4_template_box .item .content {
  padding: 20px;
  margin-top: -40px;
}
.card4_template_box .item .content .icon_rate {
  position: relative;
  z-index: 1;
  display: flex;
  width: 96px;
  height: 56px;
  padding: 4px;
  margin-top: -48px;
  margin-bottom: 16px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.card4_template_box .item .content .icon_rate figure {
  margin: 0;
  padding: 0;
  flex: 0 0 48px;
}
.card4_template_box .item .content .icon_rate span {
  flex: 1 1 auto;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card4_template_box .item .content .title {
  font-weight: 700;
  font-size: 16px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.card4_template_box .item .content .title a {
  color: #333;
}
.card4_template_box .item .content .foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.card4_template_box .item .content .foot span {
  flex: 1 1 auto;
  font-size: 14px;
  color: #999;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.card4_template_box .item .content .foot i {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  color: #333;
  font-size: 24px;
  margin-left: 12px;
  transition: color 0.2s ease;
}
.card4_template_box .item .content .foot i:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid;
  width: 94px;
  height: 94px;
  margin: -47px 0 0 -47px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.card4row2_template_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  gap: 24px;
}
.card4row2_template_box .item {
  position: relative;
  display: flex;
  align-items: center;
}
.card4row2_template_box .item:hover .sort {
  transform: translateX(-6px);
}
.card4row2_template_box .item:hover .sort:before {
  background-image: linear-gradient(194deg, #FFD058 3.93%, #00BD7C 89.9%);
  opacity: 0.3;
}
.card4row2_template_box .item .sort {
  position: relative;
  max-width: 36px;
  min-width: 36px;
  height: 92px;
  transition: transform 0.2s ease;
}
.card4row2_template_box .item .sort:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -46px;
  height: 92px;
  width: 66px;
  mask-image: url("../images/k_rate_nums.svg");
  -webkit-mask-image: url("../images/k_rate_nums.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  background-color: rgba(30, 30, 30, 0.07);
}
.card4row2_template_box .item:nth-child(2) .sort:before {
  mask-position: left -92px;
  -webkit-mask-position: left -92px;
}
.card4row2_template_box .item:nth-child(3) .sort:before {
  mask-position: left -184px;
  -webkit-mask-position: left -184px;
}
.card4row2_template_box .item:nth-child(4) .sort:before {
  mask-position: left -276px;
  -webkit-mask-position: left -276px;
}
.card4row2_template_box .item:nth-child(5) .sort:before {
  mask-position: left -368px;
  -webkit-mask-position: left -368px;
}
.card4row2_template_box .item:nth-child(6) .sort:before {
  mask-position: left -460px;
  -webkit-mask-position: left -460px;
}
.card4row2_template_box .item:nth-child(7) .sort:before {
  mask-position: left -552px;
  -webkit-mask-position: left -552px;
}
.card4row2_template_box .item:nth-child(8) .sort:before {
  mask-position: left -644px;
  -webkit-mask-position: left -644px;
}
.card4row2_template_box .item .app_img {
  width: 92px;
  height: 92px;
  flex: auto 0 0;
}
.card4row2_template_box .item .content {
  padding: 12px 0 12px 16px;
}
.card4row2_template_box .item .content .title a {
  font-size: 14px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.card4row2_template_box .item .content .rate_star {
  margin-top: 5px;
}

.card8_template_box {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 20px;
  column-gap: 24px;
}
.card8_template_box.card6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
.card8_template_box .item {
  position: relative;
  border-radius: 12px;
}
.card8_template_box .item:hover .img_item {
  transform: translateY(-5px);
}
.card8_template_box .item .img_item {
  transition: transform 0.3s ease;
}
.card8_template_box .item .content {
  margin-top: 12px;
}
.card8_template_box .item .content .title {
  font-size: 14px;
  color: #666;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.card8_template_box .item .content .title:hover {
  color: #00bd7c;
}

.img_hover_template {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  column-gap: 24px;
}
.img_hover_template .item {
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
}
.img_hover_template .item:hover .img_item:after {
  opacity: 0.1;
}
.img_hover_template .item .img_item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.img_hover_template .item .img_item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}
.img_hover_template .item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  padding-top: 100px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.img_hover_template .item .content .title {
  margin-bottom: 15px;
}
.img_hover_template .item .content .title a {
  font-size: 20px;
  color: #222;
  color: #fff;
  line-height: 1.5;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.img_hover_template .item .content .time {
  color: #999;
}

.tags_expand_template {
  position: relative;
  display: flex;
  margin-top: 20px;
}
.tags_expand_template .input_checked {
  position: absolute;
  right: 0;
  z-index: 1;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.tags_expand_template .input_checked:checked ~ .label {
  transform: rotate(180deg);
  box-shadow: inset 0 0 0 1px rgba(0, 189, 124, 0.3);
}
.tags_expand_template .input_checked:checked ~ .label i {
  color: #00bd7c;
}
.tags_expand_template .input_checked:checked ~ .cate_box {
  flex-wrap: wrap;
  overflow: visible;
}
.tags_expand_template .input_checked:checked ~ .cate_box:after {
  display: none;
}
.tags_expand_template .input_checked:hover ~ .label {
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 189, 124, 0.3);
}
.tags_expand_template .input_checked:hover ~ .label i {
  color: #00bd7c;
}
.tags_expand_template .label {
  display: inline-block;
  flex: none;
  vertical-align: top;
  white-space: nowrap;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 0 0 8px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.1);
  transition: box-shadow 0.2s ease, color 0.2s ease, transform 0.3s ease;
}
.tags_expand_template .cate_box {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 8px;
  overflow: hidden;
  position: relative;
}
.tags_expand_template .cate_box:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(248, 249, 249, 0), rgb(248, 249, 249));
}
.tags_expand_template .cate_box a {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  line-height: 20px;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.1);
  font-size: 14px;
  transition: box-shadow 0.2s ease, color 0.2s ease;
}
.tags_expand_template .cate_box a:hover {
  color: #00bd7c;
  box-shadow: inset 0 0 0 1px rgba(0, 189, 124, 0.3);
}

.img_list_box {
  display: grid;
  column-gap: 24px;
  margin-top: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.img_list_box li {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
}
.img_list_box li:hover .img_item:after {
  opacity: 0;
}
.img_list_box li .img_item {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  z-index: 0;
}
.img_list_box li .img_item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.1;
  transition: opacity 0.2s ease;
}
.img_list_box li .content {
  position: static;
  z-index: 1;
  flex: 1 1 auto;
  padding: 24px;
  padding-top: 100px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.img_list_box li .content .title {
  margin-bottom: 15px;
}
.img_list_box li .content .title a {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.img_list_box li .content .time {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
}

.theme_head {
  position: relative;
  overflow: hidden;
}
.theme_head .bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f8f9f9;
}
.theme_head .bg:before, .theme_head .bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}
.theme_head .bg:before {
  transform: translate(-20%, -50%);
  background-image: radial-gradient(closest-side, #ffd058 0%, rgba(255, 208, 88, 0) 100%);
}
.theme_head .bg:after {
  transform: translate(-80%, -50%);
  background-image: radial-gradient(closest-side, #00bd7c 0%, rgba(0, 189, 124, 0) 100%);
}
.theme_head .w12_box {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: transparent;
}
.theme_head .router_template {
  border-bottom: none;
  box-shadow: none;
}
.theme_head h1 {
  font-size: 40px;
  color: #222;
  font-weight: bold;
  margin-top: 15px;
}

.cate_list_box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cate_list_box li {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
}
.cate_list_box li:hover {
  border-color: rgba(43, 157, 253, 0.2);
}
.cate_list_box li:hover a {
  color: #00bd7c;
}
.cate_list_box li a {
  display: block;
  color: #222;
  font-size: 14px;
  padding: 10px 15px;
  word-break: break-all;
}

.question_box {
  padding: 15px 0 0;
  margin-top: 20px;
  border-radius: 5px;
}
.question_box .question_title {
  color: #222;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.question_template .item {
  display: block;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
}
.question_template .item .title {
  position: relative;
  color: #0C0E21;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 25px 10px 0;
  word-break: break-all;
  cursor: pointer;
}
.question_template .item .cate_list {
  margin-bottom: 15px;
}
.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: #999;
  word-break: break-all;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.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: #00bd7c !important;
}

.language_select_template {
  position: relative;
  height: 32px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}
.language_select_template .text {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 0 0 10px;
}
.language_select_template .text:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 5px;
  background: url(../images/language@.svg) no-repeat center center;
  background-size: contain;
  vertical-align: text-bottom;
}
.language_select_template .text span {
  color: #000;
  font-size: 14px;
  text-align: center;
}
.language_select_template .drop_menu_box {
  position: absolute;
  top: 32px;
  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: #00bd7c;
  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;
}

.img_overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.img_overlay:after, .img_overlay:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}
.img_overlay:before {
  width: 96px;
  height: 96px;
  border: 1px solid;
  margin-left: -48px;
  margin-top: -48px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
}
.img_overlay:after {
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  mask-image: url("../images/k_arrow.svg");
  -webkit-mask-image: url("../images/k_arrow.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  opacity: 0;
  transform: translateX(-8px);
  background-color: #fff;
}

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

.img_text_template.lr {
  display: grid;
  row-gap: 16px;
}
.img_text_template.lr li {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.img_text_template.lr li:hover .arrow {
  opacity: 1;
  transform: scale(1);
}
.img_text_template.lr li .img_item {
  width: 120px;
  height: 68px;
}
.img_text_template.lr li .content {
  flex: 1;
}
.img_text_template.lr li .content .title a {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.img_text_template.lr li .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40px;
  min-width: 40px;
  height: 40px;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.1);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.img_text_template.lr li .arrow:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("../images/k_arrow_mini.svg");
  -webkit-mask-image: url("../images/k_arrow_mini.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #1e1e1e;
}
.img_text_template li {
  position: relative;
  display: grid;
  row-gap: 15px;
}
.img_text_template li .img_item {
  border-radius: 12px;
  overflow: hidden;
}
.img_text_template li .img_item:hover {
  opacity: 0.9;
}
.img_text_template li .img_item img {
  border-radius: 20px;
}
.img_text_template li .content {
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: space-between;
}
.img_text_template li .content .title a {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  color: #222;
  width: 100%;
  font-weight: 600;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.img_text_template li .content .title a:hover {
  color: #00bd7c;
}
.img_text_template li .content .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #334681;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.img_text_template li .content .info .author {
  color: #00bd7c;
  font-size: 12px;
  font-weight: 500;
}
.img_text_template li .content .info .time {
  color: #4d5a91;
  font-size: 12px;
  font-weight: 500;
}

.footer_template {
  position: relative;
  z-index: 99;
  text-align: left;
  background-color: #fff;
}
.footer_template.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer_template .w12_box {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  background-color: #fff;
}
.footer_template .w12_box .copyright {
  display: flex;
  align-items: center;
  color: #999;
}
.footer_template .w12_box .copyright img {
  width: 100px;
  height: 24px;
}
.footer_template .w12_box .footer_menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer_template .w12_box .footer_menu a {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  line-height: 40px;
  opacity: 0.7;
}
.footer_template .w12_box .footer_menu a:hover {
  color: #00bd7c;
}
.footer_template .w12_box .f_icon {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.footer_template .w12_box .f_icon a {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  margin-top: 4px;
}
.footer_template .w12_box .f_icon a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background-color: #1e1e1e;
  transform: scale(0.9);
  opacity: 0.04;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer_template .w12_box .f_icon a:hover:after {
  transform: scale(1);
  opacity: 0.2;
}

.content_template {
  line-height: 2.6;
}
.content_template h2, .content_template h3, .content_template h4, .content_template h5 {
  color: #222;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  position: relative;
  line-height: 28px;
  word-break: break-all;
}
.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: #00bd7c;
}
.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: #222;
  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;
  height: 50px;
  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: #222;
  font-weight: 500;
  margin-bottom: 8px;
  border-radius: 12px;
}
.laypage_template a.currentPage, .laypage_template span.currentPage {
  color: #00bd7c;
  background-color: #F9FAF9;
}
.laypage_template a:hover {
  color: #00bd7c;
}

.star_template {
  display: flex;
  width: 240px;
  height: 48px;
  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: #FFD058;
}
.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: #00bd7c;
  font-weight: 800;
  font-size: 18px;
}
.cat_bar_template a:not(:last-child):after {
  content: "/";
  opacity: 0.4;
  margin: 0 10px;
  color: #222;
}
.cat_bar_template a:hover {
  text-decoration: underline;
}

.more_version_btn {
  display: flex;
  align-items: center;
  color: #00bd7c;
  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;
}

.star_shine {
  display: block;
  height: 32px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  line-height: 24px;
  padding: 4px 12px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  font-style: normal;
  color: #fff;
  pointer-events: none;
}
.star_shine:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  margin: -30px 0 0 -30px;
  width: 60px;
  height: 60px;
  mask-image: url("../images/star_shine.svg");
  -webkit-mask-image: url("../images/star_shine.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: auto 100%;
  -webkit-mask-size: auto 100%;
  mask-position: left 0%;
  -webkit-mask-position: left 0%;
  background-color: rgba(0, 0, 0, 0.5);
  background: linear-gradient(225deg, #ffd058 22.84%, #00bd7c 88.96%);
}

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

.index_html .main_box1 {
  background-color: #fff;
}
.index_html .main_box1 .section_box {
  padding-bottom: 20px;
}
.index_html .main_box1 .section_box .w12_box {
  background-color: #fff;
}
.index_html .main_box2 .section_box {
  padding-bottom: 20px;
}
.index_html .main_box2 .section_box .w12_box {
  background-color: transparent;
}

.yyfl_html .main_box1 {
  background-color: #fff;
}
.yyfl_html .main_box1 .section_box {
  padding-bottom: 20px;
}
.yyfl_html .main_box1 .section_box .w12_box {
  background-color: #fff;
}
.yyfl_html .main_box1 .section_box .w12_box .card6 .item:nth-child(n+4) .star_shine:before {
  background: rgba(0, 0, 0, 0.5);
}

.yxxq_html {
  background-color: #fff;
}
.yxxq_html .download_template {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32px;
  gap: 12px;
  order: 13;
}
.yxxq_html .download_template a {
  display: flex;
  align-items: center;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  font-weight: bold;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px -4px rgba(0, 189, 124, 0.25);
  background-color: #00bd7c;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.yxxq_html .download_template a i {
  font-size: 26px;
  vertical-align: sub;
}
.yxxq_html .download_template a.free {
  text-transform: uppercase;
  color: #00bd7c;
  background-color: #D8F3E5;
}
.yxxq_html .download_template a:hover {
  background-color: #00ab71;
}
.yxxq_html .theme_head .w12_box .theme_box {
  position: relative;
  padding-right: 350px;
}
.yxxq_html .theme_head .w12_box .theme_box .img_item {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
}
.yxxq_html .theme_head .w12_box .theme_box .img_item .cover_img_template {
  width: 210px;
  margin: 0 auto;
  overflow: initial;
}
.yxxq_html .theme_head .w12_box .theme_box .img_item .cover_img_template img {
  border-radius: 12px;
}
.yxxq_html .theme_head .w12_box .theme_box .img_item .cover_img_template .badge {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  border-radius: 24px;
  padding: 2px 8px;
  color: var(--color-white);
  background: linear-gradient(270deg, #FFA858 0%, #9EC966 50%, #00BD7C 100%);
  box-shadow: 0 6px 8px -4px rgba(175, 196, 100, 0.4);
}
.yxxq_html .theme_head .w12_box .theme_box .img_item .cover_bg {
  display: block;
  user-select: none;
  pointer-events: none;
  width: 471px;
  height: 548px;
  position: absolute;
  top: -40px;
  right: 12px;
  z-index: -1;
  mask-image: url("../images/k_cover_bg.svg");
  -webkit-mask-image: url("../images/k_cover_bg.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
.yxxq_html .theme_head .w12_box .theme_box .img_item .cover_bg img {
  width: 100%;
  height: auto;
  filter: blur(12px);
  opacity: 0.3;
}
.yxxq_html .theme_head .w12_box .theme_box .content .content_item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.yxxq_html .theme_head .w12_box .theme_box .content .content_item .type {
  font-size: 16px;
  max-width: 50%;
  font-weight: bold;
  opacity: 0.6;
  color: #222;
  line-height: 24px;
  margin-right: 15px;
}
.yxxq_html .theme_head .w12_box .theme_box .content .content_item .other {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 14px;
  gap: 15px;
}
.yxxq_html .theme_head .w12_box .theme_box .content .content_item .other .auto_color {
  line-height: 24px;
  color: rgba(30, 30, 30, 0.6);
}
.yxxq_html .theme_head .w12_box .theme_box .content .content_item .other .auto_color i {
  color: #ffd058;
  margin-right: 5px;
}
.yxxq_html .section_box .w12_box {
  overflow: hidden;
  background-color: transparent;
}
.yxxq_html .section_box .w12_box .left_box .desc h2 {
  font-weight: bold;
}
.yxxq_html .section_box .w12_box .left_box .desc .content_template {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
  overflow: hidden;
}
.yxxq_html .section_box .w12_box .left_box .desc .content_template.active {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1000;
  overflow: hidden;
}
.yxxq_html .section_box .w12_box .left_box .swiper_xw {
  height: 230px;
  margin-top: 30px;
}
.yxxq_html .section_box .w12_box .left_box .swiper_xw .swiper-wrapper {
  overflow: initial;
}
.yxxq_html .section_box .w12_box .left_box .swiper_xw .swiper-wrapper .swiper-slide {
  width: auto;
}
.yxxq_html .section_box .w12_box .left_box .swiper_xw .swiper-wrapper .swiper-slide a {
  display: block;
  height: 100%;
}
.yxxq_html .section_box .w12_box .left_box .swiper_xw .swiper-wrapper .swiper-slide a .img_item {
  width: 100%;
  height: 100%;
}
.yxxq_html .section_box .w12_box .left_box .swiper_xw .swiper-wrapper .swiper-slide a .img_item img {
  border-radius: 12px;
}
.yxxq_html .section_box .w12_box .left_box .more_version {
  position: relative;
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.yxxq_html .section_box .w12_box .left_box .more_version:before, .yxxq_html .section_box .w12_box .left_box .more_version:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 932px;
  min-width: 600px;
  aspect-ratio: 1/1;
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}
.yxxq_html .section_box .w12_box .left_box .more_version:before {
  transform: translate(-80%, -20%);
  background-image: radial-gradient(closest-side, #ffd058 0%, rgba(0, 189, 124, 0) 100%);
}
.yxxq_html .section_box .w12_box .left_box .more_version:after {
  transform: translate(-20%, -20%);
  background-image: radial-gradient(closest-side, #00bd7c 0%, rgba(0, 189, 124, 0) 100%);
}
.yxxq_html .section_box .w12_box .left_box .more_version .bg {
  position: absolute;
  right: -200px;
  top: -200px;
  width: 400px;
  height: 400px;
  z-index: 9;
  mask-image: url("../images/k_cover_flashlight.svg");
  -webkit-mask-image: url("../images/k_cover_flashlight.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #00bd7c;
  opacity: 0.1;
}
.yxxq_html .section_box .w12_box .left_box .more_version .content {
  display: flex;
  gap: 20px;
}
.yxxq_html .section_box .w12_box .left_box .more_version .content img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
}
.yxxq_html .section_box .w12_box .left_box .more_version .content .text {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
  word-wrap: break-word;
}
.yxxq_html .section_box .w12_box .left_box .more_version .download_template {
  display: block;
  margin-top: 20px;
}
.yxxq_html .section_box .w12_box .left_box .more_version .download_template a {
  display: flex;
  justify-content: space-between;
  height: auto;
  line-height: initial;
  padding: 8px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
}
.yxxq_html .section_box .w12_box .left_box .more_version .download_template a i {
  margin-right: 5px;
}
.yxxq_html .section_box .w12_box .left_box .more_version .download_template a .size {
  display: flex;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  padding: 5px 16px;
  font-weight: 400;
  box-sizing: border-box;
  border-radius: 18px;
}
.yxxq_html .section_box .w12_box .left_box .more_version .download_template a .size span {
  color: #fff;
  font-weight: bold;
  flex: none;
}
.yxxq_html .section_box .w12_box .right_box.fixed {
  position: fixed;
}
.yxxq_html .section_box .w12_box .right_box .score_content {
  display: flex;
  margin-bottom: 32px;
}
.yxxq_html .section_box .w12_box .right_box .score_content .left {
  min-width: 120px;
  margin-right: 10px;
  color: #222;
  text-align: center;
}
.yxxq_html .section_box .w12_box .right_box .score_content .left .score {
  font-size: 64px;
  line-height: 56px;
  margin-bottom: 4px;
}
.yxxq_html .section_box .w12_box .right_box .score_content .left span {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.5;
}
.yxxq_html .section_box .w12_box .right_box .score_content .right {
  text-align: center;
}
.yxxq_html .section_box .w12_box .right_box .score_content .right .title {
  font-size: 16px;
  font-weight: bold;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.yxxq_html .section_box .w12_box .right_box .safety {
  text-align: center;
}
.yxxq_html .section_box .w12_box .right_box .safety:before, .yxxq_html .section_box .w12_box .right_box .safety:after {
  content: "";
  display: block;
  height: 6px;
  opacity: 0.3;
  mask-image: url("../images/k_wave.svg");
  -webkit-mask-image: url("../images/k_wave.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  background-image: linear-gradient(270deg, #ffd058 0%, #00bd7c 100%);
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
  mask-size: auto 100%;
  -webkit-mask-size: auto 100%;
}
.yxxq_html .section_box .w12_box .right_box .safety:before {
  margin-bottom: 24px;
}
.yxxq_html .section_box .w12_box .right_box .safety:after {
  margin-top: 24px;
}
.yxxq_html .section_box .w12_box .right_box .safety .title {
  font-size: 16px;
  font-weight: bold;
}
.yxxq_html .section_box .w12_box .right_box .safety p {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  line-height: 1.4;
}
.yxxq_html .section_box .w12_box .right_box .spec_box {
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.yxxq_html .section_box .w12_box .right_box .spec_box li span {
  display: block;
  text-align: left;
  font-size: 16px;
  color: #222;
}
.yxxq_html .section_box .w12_box .right_box .spec_box li span.label {
  opacity: 0.5;
}
.yxxq_html .section_box .w12_box .right_box .img_text_template {
  margin-top: 16px;
}
.yxxq_html .section_box .w12_box .right_box .img_text_template li {
  gap: 16px;
}
.yxxq_html .section_box .w12_box .right_box .img_text_template li .img_item {
  width: 64px;
  height: 64px;
}
.yxxq_html .section_box .w12_box .right_box .img_text_template li .content {
  justify-content: center;
}
.yxxq_html .tjyx_box .w12_box {
  padding-top: 0;
}

.bk_html {
  background-color: #fff;
}
.bk_html .section_box .w12_box {
  background-color: #fff;
}
.bk_html .section_box .w12_box .blog_box {
  display: grid;
  row-gap: 32px;
  margin-top: 10px;
}
.bk_html .section_box .w12_box .blog_box .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 30, 30, 0.1);
  transition: border-color 0.2s ease;
}
.bk_html .section_box .w12_box .blog_box .item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 118px;
  z-index: -1;
  background-image: repeating-linear-gradient(-45deg, rgba(30, 30, 30, 0.1), rgba(30, 30, 30, 0.1) 1px, transparent 1px, transparent 16px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.bk_html .section_box .w12_box .blog_box .item:hover:after {
  opacity: 1;
  z-index: 0;
}
.bk_html .section_box .w12_box .blog_box .item:hover .img_overlay:before {
  opacity: 1;
}
.bk_html .section_box .w12_box .blog_box .item:hover .img_overlay:after {
  opacity: 1;
  transform: translateX(0);
}
.bk_html .section_box .w12_box .blog_box .item:hover .content .title a {
  color: #00bd7c;
}
.bk_html .section_box .w12_box .blog_box .item:hover .content .title_template a {
  color: #00bd7c;
}
.bk_html .section_box .w12_box .blog_box .item:hover .content .title_template a i:after {
  opacity: 1;
  transform: translateX(0px);
}
.bk_html .section_box .w12_box .blog_box .item:hover .content .title_template a i:before {
  opacity: 0;
  transform: translateX(6px);
}
.bk_html .section_box .w12_box .blog_box .item .img_item {
  position: relative;
  z-index: 1;
  height: 276px;
  order: 1;
  border-radius: 12px;
  overflow: hidden;
}
.bk_html .section_box .w12_box .blog_box .item .content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 16px;
}
.bk_html .section_box .w12_box .blog_box .item .content .time {
  font-size: 14px;
  color: #999;
}
.bk_html .section_box .w12_box .blog_box .item .content .title a {
  font-size: 20px;
  color: #222;
  font-weight: bold;
  line-height: 1.5;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.bk_html .section_box .w12_box .blog_box .item .content .text {
  font-size: 14px;
  color: #999;
  lighting-color: 1.5;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.bk_html .section_box .w12_box .blog_box .item .title_template {
  margin-top: auto;
}

.wzxq_html .w12_box {
  background-color: #fff;
}
.wzxq_html .section_box {
  margin-bottom: 30px;
}
.wzxq_html .section_box .w12_box h1 {
  font-size: 30px;
  color: #222;
  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 (max-width: 1320px) {
  .back_box {
    left: auto;
    right: 10px;
  }
}
@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));
  }
  .grid_c3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid_c4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid_c5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid_c6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid_none {
    grid-template-columns: none;
  }
  .py_30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pt_60 {
    padding-top: 60px;
  }
}
@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));
  }
  .grid_c4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .w12_box {
    width: 1000px;
  }
  .left_box {
    width: 560px;
  }
  .right_box {
    width: 380px;
  }
  .back_box {
    left: calc(100% - 60px);
  }
  .card8_template_box.card6 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .card8_template_box.card6 .item:nth-child(n+5) {
    display: none;
  }
  .card8_template_box.card6_more .item:nth-child(n+5) {
    display: block;
  }
}
@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;
  }
  .card8_template_box.card6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card8_template_box.card6 .item:nth-child(n+5) {
    display: block;
  }
  .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 {
    margin-bottom: 15px;
  }
  .title_template .title {
    font-size: 24px;
  }
  .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 {
    padding: 0 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: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    max-width: 560px;
    margin: 100px auto 0;
  }
  .header_template .header_content .menu_box .nav_menu_item .item {
    flex-basis: initial;
    flex-grow: initial;
    max-width: 100%;
    height: auto;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a {
    position: relative;
    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 .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;
  }
  .header_template .header_content .menu_box .nav_menu_item .item > a i {
    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;
  }
  .footer_template .w12_box .copyright {
    justify-content: center;
  }
  .footer_template .w12_box .copyright img {
    margin: 0;
  }
  .footer_template .w12_box .footer_menu {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer_template .w12_box .f_icon {
    justify-content: center;
  }
  .scroll_mobile {
    overflow: hidden;
    overflow-x: auto;
    column-gap: 12px;
  }
  .scroll_mobile.w296 .item {
    min-width: 296px;
  }
  .scroll_mobile.w272 .item {
    min-width: 272px;
  }
  .scroll_mobile.w138 .item {
    min-width: 138px;
  }
  .scroll_mobile.tags_expand_template .label {
    display: none;
  }
  .scroll_mobile.tags_expand_template .cate_box {
    overflow: initial;
  }
  .scroll_mobile.tags_expand_template .cate_box:after {
    display: none;
  }
  .yxxq_html {
    background-color: #fff;
  }
  .yxxq_html .theme_head .w12_box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .yxxq_html .theme_head .w12_box .theme_box {
    padding-right: 0px;
    margin-top: 20px;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content {
    text-align: center;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .img_item {
    display: block;
    position: relative;
    margin: 0 auto;
    width: auto;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .img_item .cover_img_template {
    width: 132px;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .title {
    font-size: 24px;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .content_item {
    display: block;
    text-align: center;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .content_item .type {
    max-width: 100%;
    font-size: 14px;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .content_item .other {
    margin-top: 24px;
    justify-content: center;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .content_item .download_template {
    display: block;
  }
  .yxxq_html .theme_head .w12_box .theme_box .content .content_item .download_template .free {
    margin-top: 15px;
  }
  .yxxq_html .section_box .w12_box .left_box .more_version {
    margin: 30px -20px 0;
  }
  .yxxq_html .section_box .w12_box .left_box .more_version .content img {
    display: none;
  }
  .yxxq_html .section_box .w12_box .left_box .more_version .download_template a {
    display: flex;
    flex-direction: column;
    padding: 8px 15px;
  }
  .yxxq_html .section_box .w12_box .left_box .more_version .download_template a .size {
    font-weight: bold;
    box-shadow: none;
  }
  .yxxq_html .section_box .w12_box .right_box .score_content .left {
    min-width: auto;
  }
  .yxxq_html .section_box .w12_box .right_box .score_content .left .score {
    font-size: 52px;
  }
  .yxxq_html .section_box .w12_box .right_box .score_content .right .star_template {
    width: 200px;
    height: 40px;
  }
  .bk_html .section_box .w12_box .blog_box {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .bk_html .section_box .w12_box .blog_box .item {
    padding: 0;
    border: none;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
  .bk_html .section_box .w12_box .blog_box .item:after {
    display: none;
  }
  .bk_html .section_box .w12_box .blog_box .item .img_item {
    order: 0;
    height: 192px;
  }
  .bk_html .section_box .w12_box .blog_box .item .content {
    padding: 0 0 24px;
  }
  .bk_html .section_box .w12_box .blog_box .item .content .title a {
    font-size: 16px;
  }
  .bk_html .section_box .w12_box .blog_box .item .content .text, .bk_html .section_box .w12_box .blog_box .item .content .title_template {
    display: none;
  }
  .wzxq_html .section_box .w12_box h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .content_template img {
    width: 100%;
  }
  .card8_template_box.card6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .title_template {
    line-height: 32px;
  }
  .title_template.arrow_link a.bg i {
    display: none;
  }
  .laypage_template {
    height: 40px;
    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 .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;
  }
  .footer_template .flex_box {
    text-align: center;
  }
  .yyfl_html .theme_head .w12_box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .yyfl_html .theme_head .w12_box h1 {
    font-size: 24px;
  }
  .bk_html .section_box .w12_box .blog_box {
    gap: 25px;
    grid-template-columns: repeat(1, 1fr);
  }
  .bk_html .section_box .w12_box .blog_box .item {
    overflow: initial;
  }
  .bk_html .section_box .w12_box .blog_box .item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: rgba(30, 30, 30, 0.1019607843);
  }
  .bk_html .section_box .w12_box .blog_box .item:last-child:before {
    display: none;
  }
  .bk_html .section_box .w12_box .blog_box .item .content {
    padding-bottom: 10px;
  }
  .bk_html .section_box .w12_box .blog_box .item .content .title_template {
    display: flex;
  }
  .bk_html .section_box .w12_box .blog_box .item .content .title_template.arrow_link a.bg i {
    display: inline-block;
  }
  .wzxq_html .section_box .w12_box h1 {
    font-size: 20px;
  }
}

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