@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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0 auto;
  background-color: #fff;
}

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

.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;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.header_template .header_content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  height: 100%;
  padding: 0;
}
.header_template .header_content .menu_icon {
  display: none;
}
.header_template .header_content .head_logo {
  flex: 1 1 0;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
.header_template .header_content .head_logo img {
  width: 250px;
  height: 50px;
  margin-left: 0;
  object-fit: contain;
}
.header_template .header_content .menu_box {
  height: 64px;
  margin-left: auto;
}
.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;
  flex: 1 1 auto;
  text-align: center;
}
.header_template .header_content .menu_box .nav_menu_item .item {
  flex: 1 1 auto;
  position: relative;
  height: 100%;
}
.header_template .header_content .menu_box .nav_menu_item .item.active > a {
  color: #1a73d6;
}
.header_template .header_content .menu_box .nav_menu_item .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 25px;
  color: #212121;
  text-align: center;
}
.header_template .header_content .menu_box .nav_menu_item .item a i img {
  transform: scale(1.4);
}
.header_template .header_content .menu_box .nav_menu_item .item a span {
  display: block;
  color: currentColor;
  font-size: 18px;
  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: #1a73d6;
  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(10px);
  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 .search_icon img {
  height: 24px;
}
.header_template .header_content .right_item .language_select_template .drop_menu_arrow_icon img {
  height: 24px;
}

.router_template {
  position: relative;
  line-height: 20px;
  color: #fff;
  display: inline-block;
  padding: 0 0 0 5px;
  border-radius: 5px;
  font-weight: bold;
}
.router_template a, .router_template em {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #212121;
  margin: 0 5px;
}
.router_template a {
  margin-right: 0;
}
.router_template a:after {
  content: "/";
  opacity: 0.6;
  margin-left: 8px;
  color: #646f78;
}
.router_template a:hover {
  text-decoration: underline;
}
.router_template .home {
  color: transparent;
  background: url(../images/head_icon1.svg) no-repeat center center;
  background-size: 70% 70%;
}

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

.qsform_temolate.bg {
  margin: 15px 8px;
}
.qsform_temolate.bg form {
  margin: 0 auto;
}
.qsform_temolate form {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 44px;
  margin: 30px auto;
  border-radius: 22px;
  box-shadow: 0 2px 5px 5px #eee;
  
  overflow: hidden;
}
.qsform_temolate form > div {
  width: 100%;
}
.qsform_temolate form input {
  flex: 1 1;
  display: inline-block;
  font-size: 20px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  color: #333;
  border: 1px solid #a9a9a9;
  border-radius: 22px;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}

.title_template {
  margin-bottom: 20px;
}
.title_template.arrow_link {
  display: flex;
  justify-content: space-between;
}
.title_template.arrow_link a {
  display: flex;
  align-items: center;
  color: #1a73d6;
  font-size: 14px;
  box-sizing: border-box;
}
.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 {
  position: relative;
  margin-left: 5px;
  height: 6px;
  width: 6px;
  left: -2px;
  top: 4px;
  border-left: 2px solid #1a73d6;
  border-bottom: 2px solid #1a73d6;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-135deg);
}
.title_template .title {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
  position: relative;
  display: flex;
  align-items: center;
}
.title_template .title.sm {
  font-size: 20px;
}
.title_template .title.arrow:hover {
  color: #1a73d6;
}
.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: 3px;
  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;
}

.star_template {
  width: 100px;
  height: 20px;
  margin-top: 10px;
}
.star_template dl {
  position: relative;
  height: 100%;
  display: flex;
  background: url(../images/star.svg);
  background-size: auto 100%;
}
.star_template dl dt {
  position: absolute;
  height: 100%;
  text-indent: -9000px;
  z-index: 1;
  background-image: url(../images/star@.svg);
  background-size: auto 100%;
}
.star_template dl dd {
  text-indent: -9000px;
  padding: 0;
  margin: 0;
  float: left;
  width: 20px;
  height: 100%;
}

.cover_img_template {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex-grow: 1;
}
.cover_img_template.app_img {
  border-radius: 10px;
}
.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;
}

.lr_img_template {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 15px;
  row-gap: 25px;
}
.lr_img_template.hover li:hover {
  opacity: 0.75;
}
.lr_img_template.hover li:hover a, .lr_img_template.hover li:hover .content_box {
  background: #f5f7fa;
}
.lr_img_template.hover li:hover a .img_item, .lr_img_template.hover li:hover .content_box .img_item {
  transform: scale(1.1);
}
.lr_img_template.hover li:hover a .content h2, .lr_img_template.hover li:hover .content_box .content h2 {
  color: #1a73d6;
}
.lr_img_template li {
  position: relative;
  transition: all 0.5s ease;
}
.lr_img_template li a, .lr_img_template li .content_box {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px;
}
.lr_img_template li a .img_item, .lr_img_template li .content_box .img_item {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.lr_img_template li a .img_item img, .lr_img_template li .content_box .img_item img {
  border: 1px solid #EFF3F9;
  box-sizing: border-box;
}
.lr_img_template li a .content, .lr_img_template li .content_box .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0;
  height: 80px;
  flex: 1 1;
  margin-left: 10px;
  margin-right: 10px;
}
.lr_img_template li a .content h2, .lr_img_template li .content_box .content h2 {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.lr_img_template li a .content .info, .lr_img_template li .content_box .content .info {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #6c757d;
  line-height: 20px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.lr_img_template li a .content .other, .lr_img_template li .content_box .content .other {
  display: flex;
  column-gap: 10px;
}
.lr_img_template li a .content .other .size, .lr_img_template li .content_box .content .other .size {
  font-size: 12px;
  font-weight: 400;
  color: #6c757d;
}
.lr_img_template li a .content .tag_box, .lr_img_template li .content_box .content .tag_box {
  margin-top: 8px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.lr_img_template li a .content .tag_box .tag_list, .lr_img_template li .content_box .content .tag_box .tag_list {
  position: relative;
  display: inline-block;
  color: #fff;
  height: 18px;
  line-height: 18px;
  padding: 0 8px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 12px;
  background: #4caf50;
  cursor: pointer;
}

.cate6_list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}
.cate6_list li {
  border-radius: 5px;
  background-color: #fff;
}
.cate6_list li a {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  line-height: 1.3;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
}

.cate_list_box {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 5px;
}
.cate_list_box.border li a {
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 0 1px;
}
.cate_list_box li:hover a {
  background: #f5f7fa;
}
.cate_list_box li.hot a i {
  background: url(../images/icon_hot.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.rm a i {
  background: url(../images/icon_rm.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.gx a i {
  background: url(../images/icon_gx.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.bq a i {
  background: url(../images/icon_bq.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.cs a i {
  background: url(../images/icon_cs.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.xsx a i {
  background: url(../images/icon_xsx.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.mf a i {
  background: url(../images/icon_mf.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.search a i {
  background: url(../images/icon_search.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active a {
  background-color: #1a73d6 !important;
}
.cate_list_box li.active a span {
  color: #fff;
}
.cate_list_box li.active.hot a i {
  background: url(../images/icon_hot@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.rm a i {
  background: url(../images/icon_rm@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.gx a i {
  background: url(../images/icon_gx@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.bq a i {
  background: url(../images/icon_bq@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.cs a i {
  background: url(../images/icon_cs@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.xsx a i {
  background: url(../images/icon_xsx@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.mf a i {
  background: url(../images/icon_mf@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li.active.search a i {
  background: url(../images/icon_search@.svg) no-repeat center center;
  background-size: contain;
}
.cate_list_box li a {
  display: flex;
  align-items: center;
  padding: 5px;
  background-color: #fff;
}
.cate_list_box li a i {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 3px;
}
.cate_list_box li a img {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 5px;
  margin-left: 0;
}
.cate_list_box li a span {
  color: #333;
  font-size: 13px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.img_list_box {
  display: flex;
  overflow: hidden;
  column-gap: 15px;
  overflow-x: auto;
}
.img_list_box li {
  position: relative;
  max-width: 75px;
  flex: 0 0 75px;
  overflow: hidden;
}
.img_list_box li:hover .img_item:after {
  opacity: 0;
}
.img_list_box li .img_item {
  width: 75px;
  height: 75px;
}
.img_list_box li .img_item img {
  border-radius: 10px;
}
.img_list_box li .content {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.img_list_box li .content .title a {
  font-size: 14px;
  line-height: 1.3;
  color: #212121;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.img_list_box li .content .info {
  color: #737373;
  font-size: 12px;
  margin-top: 5px;
}

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

.question_template {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 15px;
  column-gap: 30px;
}
.question_template .item.active .title {
  background: #ddd;
  border-radius: 5px 5px 0 0;
}
.question_template .item.active .title:after {
  content: "-";
}
.question_template .item.active .cate_list {
  background: #eee;
}
.question_template .item .title {
  position: relative;
  color: #0C0E21;
  font-size: 16px;
  padding: 10px 15px;
  word-break: break-all;
  cursor: pointer;
  border-radius: 10px;
  background: #eee;
}
.question_template .item .title i {
  color: #1a73d6;
  margin-right: 5px;
}
.question_template .item .title:after {
  content: "+";
  position: absolute;
  display: inline-block;
  right: 15px;
}
.question_template .item .cate_list {
  display: none;
  padding: 10px 15px;
}
.question_template .item .cate_list p {
  height: auto;
  line-height: 1.8;
  font-size: 14px;
  text-align: left;
  font-weight: 400;
  padding: 0 5px;
  color: #212121;
  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: #1a73d6 !important;
}
.question_template .item .cate_list ul {
  padding-left: 20px;
}
.question_template .item .cate_list ul li {
  list-style: disc;
  color: #212121;
}

.language_select_template {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  margin-left: 8px;
}
.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: #1a73d6;
  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: #fff;
}
.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: transparent;
}
.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: #212121;
  font-weight: 600;
  line-height: 40px;
}
.footer_template .w12_box .footer_menu a:hover {
  color: #f2f2f2;
}
.footer_template .bg {
  background-color: #63aa1f;
}
.footer_template .bg .w12_box {
  display: block;
  padding: 0;
  background-color: transparent;
}
.footer_template .bg .w12_box p {
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  line-height: 1.4;
  text-align: center;
}

.content_template {
  line-height: 2.6;
}
.content_template h2, .content_template h3, .content_template h4, .content_template h5 {
  color: #212121;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  position: relative;
  line-height: 28px;
  word-break: break-all;
  border-left: 4px solid #1a73d6;
  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: #1a73d6;
}
.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: #212121;
  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: 42px;
  margin-top: 30px;
  padding-top: 8px;
  background-color: #fff;
}
.laypage_template a, .laypage_template span {
  display: inline-block;
  font-size: 16px;
  min-width: 24px;
  padding: 0 10px;
  text-align: center;
  color: #212121;
  font-weight: 500;
  margin-bottom: 8px;
  border-radius: 10px;
}
.laypage_template a.currentPage, .laypage_template span.currentPage {
  color: #fff;
  background-color: #1a73d6;
}
.laypage_template a:hover {
  color: #1a73d6;
}

@keyframes text-movey {
  0% {
    opacity: 0.3;
    transform: translate3d(0, -5px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.more_version_btn {
  display: flex;
  align-items: center;
  color: #1a73d6;
  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: 850px;
}

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

.scale_img_template {
  height: 230px;
  margin: 30px 0;
  padding: 10px 0;
  overflow-x: auto;
  /* 滚动条滑块 */
  /* 滚动条轨道 */
}
.scale_img_template::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}
.scale_img_template::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 4px;
}
.scale_img_template::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3) inset;
  border-radius: 8px;
}
.scale_img_template .scale_img {
  display: flex;
  height: 100%;
  column-gap: 15px;
}
.scale_img_template .scale_img .list {
  flex: none;
}
.scale_img_template .scale_img .list .img_item {
  width: 100%;
  height: 100%;
}
.scale_img_template .scale_img .list .img_item img {
  border-radius: 10px;
}

.download_template {
  width: 100%;
  margin-top: 15px;
}
.download_template a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 30px;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  box-sizing: border-box;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  margin: 0 auto;
  padding: 5px 12px;
  user-select: none;
  background-color: #1a73d6;
  background-image: none;
}
.download_template a img {
  display: inline-block;
  width: auto;
  height: 24px;
  vertical-align: sub;
  margin-right: 8px;
}
.download_template a:hover {
  opacity: 0.85;
}

.index_html .w12_box .left_box .section_box {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.index_html .w12_box .left_box .section_box .img_list_box {
  display: flex;
  overflow-x: auto;
}
.index_html .w12_box .right_box .section_box {
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.index_html .w12_box .right_box .section_box .cate_list_box li {
  flex: 0 0 48%;
}
.index_html .w12_box .right_box .section_box .cate_list_box li a img {
  width: 32px;
  height: 32px;
}

.yx_html .w12_box .left_box .section_box {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.yx_html .w12_box .left_box .section_box .cate_list_box li a {
  background-color: #f8f9fa;
}
.yx_html .w12_box .left_box .section_box .cate_list_box li a:hover {
  background-color: #eee;
}
.yx_html .w12_box .left_box .section_box .img_list_box {
  display: flex;
  overflow-x: auto;
}
.yx_html .w12_box .right_box .section_box {
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.yx_html .w12_box .right_box .section_box .cate_list_box li {
  flex: 0 0 48%;
}
.yx_html .w12_box .right_box .section_box .cate_list_box li a img {
  width: 32px;
  height: 32px;
}

.yxz_html .w12_box .left_box .section_box {
  padding-bottom: 15px;
}
.yxz_html .w12_box .left_box .section_box .cate_list_box li a {
  background-color: #f8f9fa;
}
.yxz_html .w12_box .left_box .section_box .cate_list_box li a:hover {
  background-color: #eee;
}
.yxz_html .w12_box .left_box .section_box .lr_img_template {
  row-gap: 0;
}
.yxz_html .w12_box .right_box .section_box {
  padding-bottom: 15px;
}
.yxz_html .w12_box .right_box .section_box .cate_list_box li {
  flex: 0 0 48%;
}
.yxz_html .w12_box .right_box .section_box .cate_list_box li a img {
  width: 32px;
  height: 32px;
}

.yxxq_html > .w12_box {
  overflow: hidden;
}
.yxxq_html .w12_box .left_box .section_box {
  padding: 15px 0;
  margin-bottom: 20px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.yxxq_html .w12_box .left_box .section_box:last-child {
  margin-bottom: 0;
}
.yxxq_html .w12_box .left_box .section_box:first-child {
  padding-top: 0;
}
.yxxq_html .w12_box .left_box .section_box .theme_box {
  display: block !important;
}
.yxxq_html .w12_box .left_box .section_box .theme_box li .content_box .img_item {
  width: 75px;
  height: 75px;
}
.yxxq_html .w12_box .left_box .section_box .theme_box li .content_box .content {
  height: 75px;
}
.yxxq_html .w12_box .left_box .section_box .theme_box li .content_box .content .title {
  font-size: 18px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.yxxq_html .w12_box .left_box .section_box .theme_box li .download_template {
  width: auto;
}
.yxxq_html .w12_box .left_box .section_box .theme_box li .download_template a {
  font-size: 14px;
  justify-content: center;
}
.yxxq_html .w12_box .left_box .section_box .theme_box li .download_template a img {
  margin: 0;
}
.yxxq_html .w12_box .left_box .section_box .theme_detail {
  display: grid;
  row-gap: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.yxxq_html .w12_box .left_box .section_box .theme_detail li span {
  display: block;
  padding: 5px 0;
}
.yxxq_html .w12_box .left_box .section_box .theme_detail li .name {
  color: #323232;
  font-size: 14px;
  font-weight: 600;
}
.yxxq_html .w12_box .left_box .section_box .theme_detail li .text {
  font-size: 14px;
  color: #6f6f6f;
  overflow: unset;
  white-space: wrap;
  overflow-x: auto;
}
.yxxq_html .w12_box .left_box .section_box .theme_detail li .text a {
  color: #1a73d6;
}
.yxxq_html .w12_box .left_box .section_box .content_template {
  margin-bottom: 20px;
}
.yxxq_html .w12_box .left_box .section_box > .download_template {
  margin: 20px 0;
}
.yxxq_html .w12_box .left_box .section_box > .download_template a img {
  height: 20px;
  margin-left: 0;
}
.yxxq_html .w12_box .left_box .section_box .title_template {
  margin-bottom: 10px;
}
.yxxq_html .w12_box .left_box .section_box .history_box {
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding-top: 10px;
}
.yxxq_html .w12_box .left_box .section_box .history_box li a {
  background: #fafbfd;
  border: 1px solid #ececec;
  border-radius: 10px;
}
.yxxq_html .w12_box .left_box .section_box .history_box li a .content {
  height: auto;
  row-gap: 15px;
}
.yxxq_html .w12_box .left_box .section_box .history_box li a .content .title {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.yxxq_html .w12_box .left_box .section_box .history_box li a .download {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.yxxq_html .w12_box .left_box .section_box .cate_list_box {
  padding-top: 10px;
}
.yxxq_html .w12_box .right_box.fixed {
  position: fixed;
}
.yxxq_html .w12_box .right_box .section_box {
  padding: 15px 0;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.yxxq_html .w12_box .right_box .section_box:first-child {
  padding-top: 0;
}
.yxxq_html .w12_box .right_box .section_box .title_template {
  margin-bottom: 10px;
}
.yxxq_html .w12_box .right_box .section_box .lr_img_template {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 0;
}
.yxxq_html .w12_box .right_box .section_box .lr_img_template li a .img_item {
  width: 56px;
  height: 56px;
}
.yxxq_html .w12_box .right_box .section_box .lr_img_template li a .content {
  height: 56px;
}

.wzlb_html .w12_box h1 {
  font-size: 34px;
  color: #212121;
  margin-bottom: 20px;
}
.wzlb_html .w12_box .blog_box .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}
.wzlb_html .w12_box .blog_box .item:hover {
  opacity: 0.75;
}
.wzlb_html .w12_box .blog_box .item .img_item {
  flex-grow: initial;
  width: 220px;
  height: 140px;
  border-radius: 10px;
}
.wzlb_html .w12_box .blog_box .item .content {
  flex: 1;
  padding: 10px 15px;
  height: 140px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wzlb_html .w12_box .blog_box .item .content .title a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.wzlb_html .w12_box .blog_box .item .content p {
  font-size: 16px;
  color: #212121;
  line-height: 1.4;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wzlb_html .w12_box .blog_box .item .content .other_box {
  display: flex;
  gap: 15px;
}
.wzlb_html .w12_box .blog_box .item .content .other_box span {
  font-size: 14px;
  color: #999;
}
.wzlb_html .w12_box .blog_box .item .content .other_box span.reader {
  display: flex;
  align-items: center;
}
.wzlb_html .w12_box .blog_box .item .content .other_box span.reader i {
  color: #1a73d6;
  margin-right: 5px;
}

.wzxq_html > .w12_box {
  overflow: hidden;
}
.wzxq_html .w12_box h1 {
  font-size: 30px;
  color: #212121;
  font-weight: bold;
}
.wzxq_html .w12_box .ai_type {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wzxq_html .w12_box .ai_type span {
  color: #999;
  font-size: 14px;
  margin-right: 25px;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .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: 610px;
  }
  .right_box {
    width: 330px;
  }
  .header_template .header_content {
    width: 100%;
    padding: 0 15px;
  }
  .w12_box {
    width: 1000px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .w12_box {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .left_box {
    width: 100%;
  }
  .right_box {
    width: 100%;
  }
  .laypage_template {
    padding: 15px 0;
    height: auto;
  }
  .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;
  }
  .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: 15px;
    z-index: 99;
  }
  .header_template .header_content .menu_icon {
    display: block;
  }
  .header_template .header_content .menu_icon img {
    height: 28px;
  }
  .header_template .header_content .logo_box .head_logo {
    font-size: 28px;
  }
  .header_template .header_content .menu_box {
    position: fixed;
    width: 100%;
    left: -100%;
    right: 0;
    top: 0;
    z-index: 99;
    bottom: 0;
    margin: 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.active a {
    background-color: transparent;
  }
  .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;
    color: #000;
    padding: 0;
  }
  .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 .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;
  }
  .footer_template .w12_box {
    flex-direction: column;
    row-gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer_template .w12_box .footer_menu {
    justify-content: center;
    flex-wrap: wrap;
  }
  .scroll_mobile {
    overflow: hidden;
    overflow-x: auto;
  }
  .cate6_list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .img_list_box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .question_box {
    padding-top: 0;
  }
  .question_box .question_template .item {
    margin-bottom: 10px;
  }
  .question_box .question_template .item .title {
    font-size: 16px;
    padding: 8px 55px 8px 15px;
    display: flex;
  }
  .question_box .question_template .item .title i {
    flex-shrink: 0;
  }
  .question_box .question_template .item .cate_list p {
    font-size: 14px;
  }
  .question_box .question_template .item .cate_list ul li {
    font-size: 14px;
  }
  .index_html .section_box .w12_box .img_list_box li {
    flex: 0 0 33%;
  }
  .index_html .section_box .w12_box .lr_img_template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .yxxq_html .w12_box .left_box {
    width: 100%;
  }
  .yxxq_html .w12_box .right_box {
    width: 100%;
    margin-top: 20px;
  }
  .yxxq_html .w12_box .right_box.fixed {
    position: initial;
  }
  .wzlb_html .w12_box .blog_box .item {
    margin-bottom: 10px;
  }
  .wzlb_html .w12_box .blog_box .item .img_item {
    width: 240px;
    height: 130px;
  }
  .wzlb_html .w12_box .blog_box .item .content {
    height: 130px;
    padding: 0 0 0 10px;
  }
  .wzlb_html .w12_box .blog_box .item .content .title a {
    font-size: 16px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .wzlb_html .w12_box .blog_box .item .content .other_box {
    row-gap: 2px;
    flex-wrap: wrap;
  }
  .wzlb_html .w12_box .blog_box .item .content .other_box span {
    font-size: 13px;
  }
  .wzxq_html .w12_box .left_box {
    width: 100%;
  }
  .wzxq_html .w12_box .right_box {
    width: 100%;
    margin-top: 30px;
  }
  .wzxq_html .w12_box .right_box.fixed {
    position: initial;
  }
}
@media screen and (max-width: 600px) {
  .w12_box {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .content_template img {
    width: 100%;
  }
  .download_template a {
    font-size: 16px;
  }
  .title_template.arrow_link {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .title_template.arrow_link a {
    padding: 8px;
    font-size: 12px;
  }
  .title_template.arrow_link a span {
    display: none;
  }
  .laypage_template {
    line-height: 40px;
    margin-top: 15px;
  }
  .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;
    box-sizing: border-box;
    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 .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;
  }
  .question_template {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cover_img_template.app_img:after {
    padding-top: 60%;
  }
  .lr_img_template {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .cate6_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .img_list_box {
    row-gap: 15px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .index_html .section_box.bg_odd {
    padding: 0;
  }
  .index_html .section_box .w12_box .img_list_box li {
    flex: 0 0 70%;
  }
  .index_html .section_box .w12_box .lr_img_template {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wzlb_html .w12_box h1 {
    font-size: 20px;
  }
  .wzlb_html .w12_box .blog_box .item {
    flex-direction: column;
    padding-bottom: 10px;
  }
  .wzlb_html .w12_box .blog_box .item .img_item {
    width: auto;
    height: auto;
    max-height: 180px;
  }
  .wzlb_html .w12_box .blog_box .item .content {
    height: auto;
    row-gap: 6px;
  }
  .wzlb_html .w12_box .blog_box .item .content .title {
    margin-top: 10px;
  }
  .wzlb_html .w12_box .blog_box .item .content p {
    font-size: 14px;
  }
  .wzxq_html .section_box .w12_box h1 {
    font-size: 20px;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_box li .content_box {
    display: block;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_box li .content_box .img_item {
    display: block;
    margin: 0 auto 20px;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_box li .content_box .content {
    width: auto;
    height: auto;
    margin: 0;
    row-gap: 10px;
    justify-content: start;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_box li .content_box .content .title {
    font-size: 18px;
  }
  .yxxq_html .w12_box .left_box .section_box > .download_template a {
    width: 100%;
    height: auto;
    padding: 6px;
    line-height: 1.3;
    font-size: 16px;
  }
  .yxxq_html .w12_box .left_box .section_box > .download_template a img {
    height: 34px;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .yxxq_html .w12_box .left_box .section_box .theme_detail li {
    padding: 10px 0;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_detail li .icon {
    width: auto;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_detail li .icon img {
    height: 16px;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_detail li .name {
    font-size: 14px;
  }
  .yxxq_html .w12_box .left_box .section_box .theme_detail li .text {
    font-size: 14px;
  }
}

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