@charset "UTF-8";
/**
 * 
 * npm install -g sass
 * // 转换
 * sass index.scss index.css
 * // 监听 
 * sass --watch index.scss:index.css
 * // 编译格式
 * sass --watch input.scss:index.css --style compact
 */
/**
*    @description: 变量;
*    @create date: 2024-06-04;
*/
:root {
  --headheight: 60px;
  --tooltop: calc(var(--headheight) + 20);
  --layout-padding: 100px;
  --fz12: 12px;
  --fz14: 14px;
  --fz16: 16px;
  --fz18: 18px;
  --fz20: 20px;
  --fz22: 22px;
  --fz24: 24px;
  --fz26: 26px;
  --fz28: 28px;
  --fz30: 30px;
  --fz32: 32px;
  --title-fz: 20px;
  --app-left-w: 360px;
}

.w12_box {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.common_box {
  margin-top: 48px;
}

@media (max-width: 680px) {
  :root {
    --layout-padding: 20px;
    --layout-width: calc(100% - var(--layout-padding));
  }
  .index_swiper_banner .index_banner_template {
    height: 310px !important;
    margin-top: 30px;
  }
  .index_swiper_banner .index_banner_template .swiper-wrapper {
    height: 280px !important;
  }
  .index_swiper_banner .index_banner_template .swiper-wrapper .swiper-slide-active .info {
    opacity: 1 !important;
    transform: scaleY(1) translateY(0px) !important;
    transform-origin: bottom;
  }
}
@media (max-width: 480px) {
  :root {
    --fz12: 0.24rem;
    --fz14: 0.24rem;
    --fz16: 0.28rem;
    --fz18: 0.32rem;
    --fz20: 0.36rem;
    --fz22: 0.4rem;
    --fz24: 0.44rem;
    --fz26: 0.48rem;
    --fz28: 0.52rem;
    --fz30: 0.56rem;
    --fz32: 0.60rem;
    --title-fz: 0.32rem;
  }
  .w12_box {
    max-width: 7.5rem;
    min-width: 320px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
  }
}
/**
*    @description: 重置样式;
*    @create date: 2023-2-23;
*/
body {
  font-size: 14px;
  font-family: "微软雅黑";
  margin: 0 auto;
  background-color: #fff;
}
body.active {
  overflow: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

em, i {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

img {
  border: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}

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

.text_overflow_4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* 右箭头 */
.right-arrow:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  right: 5px;
  top: 12px;
  border-left: 2px solid #6b5eff;
  border-bottom: 2px solid #6b5eff;
  transform: translate(0, -50%) rotate(-135deg);
}

.header_template {
  height: var(--headheight);
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 1px 0.833vw rgba(0, 0, 0, 0.05);
}
.header_template .w12_box {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_template .w12_box.active .mobile_search {
  display: none;
}
.header_template .w12_box.active .input_search {
  display: block;
}
.header_template .left_box {
  display: flex;
}
.header_template .left_box .logo {
  display: flex;
  align-items: center;
}
.header_template .left_box .logo img {
  display: inline-block;
}
.header_template .left_box .logo .left img {
  width: 102px;
  height: 24px;
}
.header_template .left_box .logo .right img {
  width: 54px;
  height: 36px;
}
.header_template .left_box .nav_menu_item {
  margin-left: 25px;
  display: flex;
  flex: 0 0 auto;
}
.header_template .left_box .nav_menu_item .item {
  position: relative;
  margin-right: 24px;
}
.header_template .left_box .nav_menu_item .item > a, .header_template .left_box .nav_menu_item .item > span {
  position: relative;
  color: #000;
  font-size: 14px;
  display: inline-block;
  line-height: var(--headheight);
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}
.header_template .left_box .nav_menu_item .item.active {
  overflow: initial;
}
.header_template .left_box .nav_menu_item .item.active > a {
  border-bottom: 2px solid #6b5eff;
}
.header_template .left_box .nav_menu_item .item .drop_menu_cate {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  left: 0;
  top: var(--headheight);
  right: -600%;
  opacity: 0;
  border-radius: 6px;
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: all 0.2s;
}
.header_template .left_box .nav_menu_item .item .drop_menu_cate a {
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 24px;
  padding: 7px 10px;
  border-radius: 6px;
  text-align: center;
}
.header_template .left_box .nav_menu_item .item .drop_menu_cate a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.header_template .right_box {
  display: flex;
  align-items: center;
}
.header_template .mobile_search {
  display: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  right: 55px;
  top: 25px;
  z-index: 2;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  background: url(https://images.verydown.com/new/images/search.svg) no-repeat center center;
  background-size: 100%;
}
.header_template .input_search {
  width: 240px;
  height: 32px;
  position: relative;
  margin: 0 30px;
  box-sizing: border-box;
  border-radius: 6px;
  z-index: 1;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.header_template .input_search:hover {
  border-color: #6b5eff;
  overflow: inherit;
}
.header_template .input_search:hover .search_list {
  display: block;
}
.header_template .input_search input {
  display: inline-block;
  font-size: 14px;
  width: 100%;
  height: 32px;
  line-height: 32px;
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 30px;
  color: #000;
  box-sizing: border-box;
}
.header_template .input_search button {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  position: absolute;
  left: 5px;
  top: 0;
  z-index: 2;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  background: url(https://images.verydown.com/new/images/search.svg) no-repeat center center;
  background-size: 60%;
}
.header_template .input_search button:hover {
  opacity: 0.8;
}
.header_template .input_search .cancel_btn {
  display: none;
}
.header_template .input_search .search_list {
  display: none;
  position: absolute;
  top: 32px;
  left: 0;
  width: 450px;
  border-radius: 6px;
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header_template .input_search .search_list dl dt {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}
.header_template .input_search .search_list dl dd {
  color: #333;
  font-size: 14px;
  padding: 10px 5px;
  font-weight: 500;
}
.header_template .input_search .search_list dl dd:hover {
  cursor: pointer;
  background-color: #F7F7F7;
}
.header_template .mobile_menu_icon {
  display: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  right: 55px;
  top: 25px;
  z-index: 2;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  background: url(https://images.verydown.com/new/images/menu_icon.jpg) no-repeat center center;
  background-size: 100%;
}
.header_template .mobile_menu_icon.active {
  background: url(https://images.verydown.com/new/images/menu_close.svg) no-repeat center center;
  background-size: 100%;
}

.hide {
  display: none !important;
}

.language_select_box {
  position: relative;
  height: 32px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
}
.language_select_box .text {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 20px 0 10px;
}
.language_select_box .text:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  background: url(https://images.verydown.com/new/images/language.svg) no-repeat center center;
  background-size: contain;
  vertical-align: text-bottom;
}
.language_select_box .text span {
  color: rgba(0, 0, 0, 0.5019607843);
  font-size: 14px;
  text-align: center;
}
.language_select_box .drop_menu_box {
  position: absolute;
  top: 32px;
  left: -20px;
  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.2s, visibility 0.1s 0.3s;
  visibility: hidden;
  backface-visibility: hidden;
}
.language_select_box .drop_menu_box .language_close {
  display: none;
}
.language_select_box .drop_menu_box a {
  display: block;
  color: #333;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  padding: 7px 10px;
}
.language_select_box .drop_menu_box a:hover, .language_select_box .drop_menu_box a.active {
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
}
.language_select_box.active {
  overflow: inherit;
}
.language_select_box.active .drop_menu_box {
  transform: rotateX(0) !important;
  transition: all 0.3s !important;
  visibility: visible !important;
}

.drop_menu_arrow_icon:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 0;
  width: 0;
  left: 3px;
  top: -2px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid #000;
}

.common_bg_template {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 899;
  background-color: rgba(0, 0, 0, 0.3);
}
.common_bg_template.transparent {
  background-color: rgba(0, 0, 0, 0);
}

.title_template {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.title_template .title {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}
.title_template .link {
  display: inline-block;
  color: #6b5eff;
  font-size: 14px;
}

.footer_template {
  margin-top: 30px;
  padding: 25px;
  background-color: #fff;
  text-align: center;
}
.footer_template.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer_template .w12_box {
  padding: 30px 0;
  border-top: 1px solid #ddd;
}
.footer_template .w12_box a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  padding: 0 15px;
  position: relative;
}
.footer_template .w12_box a:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #999;
  position: absolute;
  left: -1px;
  top: 50%;
  margin-top: -6px;
}
.footer_template .w12_box a:first-child:after {
  display: none;
}
.footer_template .w12_box a:hover {
  text-decoration: underline;
}
.footer_template .w12_box p {
  margin-top: 15px;
  color: #999;
  font-size: 14px;
}

.img_text_template.transparent .swiper-container .swiper-slide, .img_text_template.transparent .swiper-container li, .img_text_template.transparent ul .swiper-slide, .img_text_template.transparent ul li {
  padding: 10px 5px;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.img_text_template.transparent .swiper-container .swiper-slide > a:hover, .img_text_template.transparent .swiper-container li > a:hover, .img_text_template.transparent ul .swiper-slide > a:hover, .img_text_template.transparent ul li > a:hover {
  background-color: #EAEAEA;
}
.img_text_template .swiper-container .swiper-wrapper, .img_text_template ul .swiper-wrapper {
  overflow: hidden;
  overflow-x: auto;
}
.img_text_template .swiper-container .swiper-wrapper .swiper-slide, .img_text_template ul .swiper-wrapper .swiper-slide {
  min-width: 360px;
  width: auto;
}
.img_text_template .swiper-container .swiper-slide .title_template, .img_text_template .swiper-container li .title_template, .img_text_template ul .swiper-slide .title_template, .img_text_template ul li .title_template {
  padding: 0 10px;
}
.img_text_template .swiper-container .swiper-slide .title_template .title, .img_text_template .swiper-container li .title_template .title, .img_text_template ul .swiper-slide .title_template .title, .img_text_template ul li .title_template .title {
  font-size: 14px;
}
.img_text_template .swiper-container .swiper-slide > a, .img_text_template .swiper-container .swiper-slide .list_box, .img_text_template .swiper-container li > a, .img_text_template .swiper-container li .list_box, .img_text_template ul .swiper-slide > a, .img_text_template ul .swiper-slide .list_box, .img_text_template ul li > a, .img_text_template ul li .list_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.img_text_template .swiper-container .swiper-slide > a:hover, .img_text_template .swiper-container .swiper-slide .list_box:hover, .img_text_template .swiper-container li > a:hover, .img_text_template .swiper-container li .list_box:hover, .img_text_template ul .swiper-slide > a:hover, .img_text_template ul .swiper-slide .list_box:hover, .img_text_template ul li > a:hover, .img_text_template ul li .list_box:hover {
  background-color: #F7F7F7;
}
.img_text_template .swiper-container .swiper-slide > a:nth-child(2) .sort, .img_text_template .swiper-container .swiper-slide .list_box:nth-child(2) .sort, .img_text_template .swiper-container li > a:nth-child(2) .sort, .img_text_template .swiper-container li .list_box:nth-child(2) .sort, .img_text_template ul .swiper-slide > a:nth-child(2) .sort, .img_text_template ul .swiper-slide .list_box:nth-child(2) .sort, .img_text_template ul li > a:nth-child(2) .sort, .img_text_template ul li .list_box:nth-child(2) .sort {
  background-color: #ffd914;
}
.img_text_template .swiper-container .swiper-slide > a:nth-child(3) .sort, .img_text_template .swiper-container .swiper-slide .list_box:nth-child(3) .sort, .img_text_template .swiper-container li > a:nth-child(3) .sort, .img_text_template .swiper-container li .list_box:nth-child(3) .sort, .img_text_template ul .swiper-slide > a:nth-child(3) .sort, .img_text_template ul .swiper-slide .list_box:nth-child(3) .sort, .img_text_template ul li > a:nth-child(3) .sort, .img_text_template ul li .list_box:nth-child(3) .sort {
  background-color: rgba(0, 0, 0, 0.1019607843);
}
.img_text_template .swiper-container .swiper-slide > a:nth-child(4) .sort, .img_text_template .swiper-container .swiper-slide .list_box:nth-child(4) .sort, .img_text_template .swiper-container li > a:nth-child(4) .sort, .img_text_template .swiper-container li .list_box:nth-child(4) .sort, .img_text_template ul .swiper-slide > a:nth-child(4) .sort, .img_text_template ul .swiper-slide .list_box:nth-child(4) .sort, .img_text_template ul li > a:nth-child(4) .sort, .img_text_template ul li .list_box:nth-child(4) .sort {
  background-color: #ffa800;
}
.img_text_template .swiper-container .swiper-slide > a .sort, .img_text_template .swiper-container .swiper-slide .list_box .sort, .img_text_template .swiper-container li > a .sort, .img_text_template .swiper-container li .list_box .sort, .img_text_template ul .swiper-slide > a .sort, .img_text_template ul .swiper-slide .list_box .sort, .img_text_template ul li > a .sort, .img_text_template ul li .list_box .sort {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.img_text_template .swiper-container .swiper-slide > a img, .img_text_template .swiper-container .swiper-slide .list_box img, .img_text_template .swiper-container li > a img, .img_text_template .swiper-container li .list_box img, .img_text_template ul .swiper-slide > a img, .img_text_template ul .swiper-slide .list_box img, .img_text_template ul li > a img, .img_text_template ul li .list_box img {
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 12px;
}
.img_text_template .swiper-container .swiper-slide > a .box, .img_text_template .swiper-container .swiper-slide .list_box .box, .img_text_template .swiper-container li > a .box, .img_text_template .swiper-container li .list_box .box, .img_text_template ul .swiper-slide > a .box, .img_text_template ul .swiper-slide .list_box .box, .img_text_template ul li > a .box, .img_text_template ul li .list_box .box {
  width: 0;
  flex: 1 1;
  margin-left: 10px;
}
.img_text_template .swiper-container .swiper-slide > a .box .title, .img_text_template .swiper-container .swiper-slide .list_box .box .title, .img_text_template .swiper-container li > a .box .title, .img_text_template .swiper-container li .list_box .box .title, .img_text_template ul .swiper-slide > a .box .title, .img_text_template ul .swiper-slide .list_box .box .title, .img_text_template ul li > a .box .title, .img_text_template ul li .list_box .box .title {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  margin-top: 5px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.img_text_template .swiper-container .swiper-slide > a .box .info, .img_text_template .swiper-container .swiper-slide .list_box .box .info, .img_text_template .swiper-container li > a .box .info, .img_text_template .swiper-container li .list_box .box .info, .img_text_template ul .swiper-slide > a .box .info, .img_text_template ul .swiper-slide .list_box .box .info, .img_text_template ul li > a .box .info, .img_text_template ul li .list_box .box .info {
  display: block;
  color: #666;
  font-size: 14px;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
}
.img_text_template .swiper-container .swiper-slide > a .box .info span, .img_text_template .swiper-container .swiper-slide .list_box .box .info span, .img_text_template .swiper-container li > a .box .info span, .img_text_template .swiper-container li .list_box .box .info span, .img_text_template ul .swiper-slide > a .box .info span, .img_text_template ul .swiper-slide .list_box .box .info span, .img_text_template ul li > a .box .info span, .img_text_template ul li .list_box .box .info span {
  padding-right: 8px;
  position: relative;
  color: #666;
  font-size: 14px;
}
.img_text_template .swiper-container .swiper-slide > a .box .info span:after, .img_text_template .swiper-container .swiper-slide .list_box .box .info span:after, .img_text_template .swiper-container li > a .box .info span:after, .img_text_template .swiper-container li .list_box .box .info span:after, .img_text_template ul .swiper-slide > a .box .info span:after, .img_text_template ul .swiper-slide .list_box .box .info span:after, .img_text_template ul li > a .box .info span:after, .img_text_template ul li .list_box .box .info span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #999;
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -6px;
}
.img_text_template .swiper-container .swiper-slide > a .box .info span:last-child:after, .img_text_template .swiper-container .swiper-slide .list_box .box .info span:last-child:after, .img_text_template .swiper-container li > a .box .info span:last-child:after, .img_text_template .swiper-container li .list_box .box .info span:last-child:after, .img_text_template ul .swiper-slide > a .box .info span:last-child:after, .img_text_template ul .swiper-slide .list_box .box .info span:last-child:after, .img_text_template ul li > a .box .info span:last-child:after, .img_text_template ul li .list_box .box .info span:last-child:after {
  display: none;
}
.img_text_template .swiper-container .swiper-slide > a .box .text, .img_text_template .swiper-container .swiper-slide .list_box .box .text, .img_text_template .swiper-container li > a .box .text, .img_text_template .swiper-container li .list_box .box .text, .img_text_template ul .swiper-slide > a .box .text, .img_text_template ul .swiper-slide .list_box .box .text, .img_text_template ul li > a .box .text, .img_text_template ul li .list_box .box .text {
  display: flex;
  align-items: center;
  margin-top: 8px;
  color: #666;
}
.img_text_template .swiper-container .swiper-slide > a .box .text em, .img_text_template .swiper-container .swiper-slide .list_box .box .text em, .img_text_template .swiper-container li > a .box .text em, .img_text_template .swiper-container li .list_box .box .text em, .img_text_template ul .swiper-slide > a .box .text em, .img_text_template ul .swiper-slide .list_box .box .text em, .img_text_template ul li > a .box .text em, .img_text_template ul li .list_box .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  vertical-align: baseline;
  background-image: url(https://images.verydown.com/new/images/star.svg);
  background-size: contain;
}
.img_text_template .swiper-container .swiper-slide > a .box .text .score, .img_text_template .swiper-container .swiper-slide .list_box .box .text .score, .img_text_template .swiper-container li > a .box .text .score, .img_text_template .swiper-container li .list_box .box .text .score, .img_text_template ul .swiper-slide > a .box .text .score, .img_text_template ul .swiper-slide .list_box .box .text .score, .img_text_template ul li > a .box .text .score, .img_text_template ul li .list_box .box .text .score {
  color: #666;
  font-size: 14px;
}
.img_text_template .swiper-container .swiper-slide > a .download_btn, .img_text_template .swiper-container .swiper-slide .list_box .download_btn, .img_text_template .swiper-container li > a .download_btn, .img_text_template .swiper-container li .list_box .download_btn, .img_text_template ul .swiper-slide > a .download_btn, .img_text_template ul .swiper-slide .list_box .download_btn, .img_text_template ul li > a .download_btn, .img_text_template ul li .list_box .download_btn {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 4px;
  width: 40px;
  font-weight: 500;
  color: transparent;
  text-align: center;
  overflow: hidden;
  background: url(https://images.verydown.com/new/images/download.svg) no-repeat center center;
  background-size: contain;
}

.article_img_template ul li {
  margin-bottom: 10px;
}
.article_img_template ul li a {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  border-radius: 8px;
}
.article_img_template ul li a:hover {
  background-color: #EAEAEA;
}
.article_img_template ul li a .box {
  position: relative;
  width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  flex: 1;
}
.article_img_template ul li a .box .title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.article_img_template ul li a .box .info {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #999;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.article_img_template ul li a .box .time {
  color: #999;
  font-size: 14px;
}
.article_img_template ul li a .img_item {
  width: 144px;
  height: 80px;
  border-radius: 6px;
  margin-left: 20px;
  overflow: hidden;
}

.sc_template .card_template .swiper-slide, .sc_template .card_template .card_list {
  height: var(--card4-height);
  margin-right: 20px;
}
.sc_template .card_template .swiper-slide a, .sc_template .card_template .card_list a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.sc_template .card_template .swiper-slide a .bg, .sc_template .card_template .card_list a .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.sc_template .card_template .swiper-slide a .desc, .sc_template .card_template .card_list a .desc {
  position: absolute;
  width: 80%;
  height: 86px;
  left: 10%;
  z-index: 1;
  bottom: 0;
  text-align: center;
}
.sc_template .card_template .swiper-slide a .desc .title, .sc_template .card_template .card_list a .desc .title {
  font-size: 22px;
  color: #fff;
  transform: translateY(30px);
  transition: all 0.2s ease-out;
}
.sc_template .card_template .swiper-slide a .desc .info, .sc_template .card_template .card_list a .desc .info {
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0) translateY(30px);
  transition: all 0.2s ease-out;
}
.sc_template .card_template .swiper-slide:hover a img, .sc_template .card_template .card_list:hover a img {
  transition: all 0.5s ease;
  filter: blur(5px);
}
.sc_template .card_template .swiper-slide:hover a .desc .title, .sc_template .card_template .card_list:hover a .desc .title {
  transform: translateY(0px);
}
.sc_template .card_template .swiper-slide:hover a .desc .info, .sc_template .card_template .card_list:hover a .desc .info {
  opacity: 1;
  transform: scaleY(1) translateY(0px);
  transform-origin: bottom;
}

.triangle_template {
  display: none;
  position: absolute;
  z-index: 999;
  color: #fff;
  height: max-content;
  line-height: 22px;
  padding: 10px;
  left: 50%;
  top: -110%;
  font-size: 16px;
  transform: translateX(-50%);
  border-radius: 5px;
  box-shadow: 0 1px 3px #1a6ebd;
  background-color: #092845;
}
.triangle_template:before {
  content: "";
  border-right: 10px solid transparent;
  border-top: 10px solid #1a6ebd;
  border-bottom: 0;
  border-left: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
  margin-top: -10px;
}

.article_box_template {
  display: flex;
  gap: 24px;
}
.article_box_template .article_list {
  width: 528px;
}
.article_box_template .article_list .list a {
  display: block;
  line-height: 26px;
  color: #666;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.article_box_template .article_list .list a:hover {
  color: #6b5eff;
}

.row_img_text_template {
  padding: 8px;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.row_img_text_template ul {
  display: flex;
  overflow: hidden;
}
.row_img_text_template ul li > a, .row_img_text_template ul li .list_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 128px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 6px;
  transition: background-color 0.14s ease-in;
}
.row_img_text_template ul li > a:hover, .row_img_text_template ul li .list_box:hover {
  background: #EAEAEA;
}
.row_img_text_template ul li > a:hover .download_btn, .row_img_text_template ul li .list_box:hover .download_btn {
  color: #fff;
  background-color: #6b5eff;
}
.row_img_text_template ul li > a .img_item, .row_img_text_template ul li .list_box .img_item {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
}
.row_img_text_template ul li > a .info, .row_img_text_template ul li .list_box .info {
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  margin: 8px 0 16px;
  text-align: center;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.row_img_text_template ul li > a .download_btn, .row_img_text_template ul li .list_box .download_btn {
  display: inline-block;
  width: 72px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
  color: #6b5eff;
  text-align: center;
  border: 1px solid rgba(107, 94, 255, 0.5);
}

.bg_template, .bg_template_scale {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.bg_template .bg_blur_bot, .bg_template_scale .bg_blur_bot {
  position: absolute;
  inset: -46.47% 0% 0%;
  background-position: center bottom;
  background-blend-mode: luminosity, normal;
  --filter-params: blur(25px) contrast(0.5) saturate(1.2);
  filter: var(--filter-params);
  transform: translate3d(0px, 0px, 0px);
}
.bg_template .bg_blur, .bg_template_scale .bg_blur {
  position: absolute;
  inset: 0;
  background-blend-mode: luminosity, overlay, normal;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  --filter-params: blur(64px) saturate(1.4) contrast(90%);
  filter: var(--filter-params);
  transform: scale(1.5) translate3d(0, 0, 0);
}

.card_template {
  display: flex;
}
.card_template .swiper-slide, .card_template .card_list {
  height: 290px;
  padding-top: 10px;
}
.card_template .swiper-slide a, .card_template .card_list a {
  position: relative;
  display: block;
  height: 100%;
  background-color: #F7F7F7;
  border-radius: 12px;
  overflow: hidden;
}
.card_template .swiper-slide a .bg_template_scale, .card_template .card_list a .bg_template_scale {
  position: absolute;
  height: 100%;
}
.card_template .swiper-slide a .img_app, .card_template .card_list a .img_app {
  position: absolute;
  opacity: 0.8;
  height: calc(100% - 102px);
  mask-image: linear-gradient(to top, transparent, white 16%, black);
}
.card_template .swiper-slide a .img_box, .card_template .card_list a .img_box {
  width: 100%;
  height: calc(100% - 102px);
  padding: 0 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  mask-image: linear-gradient(to top, transparent, white 16%, black);
}
.card_template .swiper-slide a .img_box .img_app, .card_template .card_list a .img_box .img_app {
  position: relative;
  border-radius: 25px;
  mask-image: none;
}
.card_template .swiper-slide a .desc, .card_template .card_list a .desc {
  padding: 0 20px 40px;
  text-align: center;
}
.card_template .swiper-slide a .desc .title, .card_template .card_list a .desc .title {
  color: #000;
  font-size: 16px;
  height: 36px;
  line-height: 18px;
  font-weight: bold;
  text-align: center;
}
.card_template .swiper-slide a .desc .download, .card_template .card_list a .desc .download {
  display: inline-block;
  color: #f2f2f2;
  border-radius: 5px;
  width: 76px;
  height: 28px;
  line-height: 28px;
  margin: 6px auto;
  text-align: center;
  font-size: 14px;
  background-color: #6b5eff;
}

.more_img_template .swiper-container .swiper-slide a, .more_img_template .swiper-container li a, .more_img_template ul .swiper-slide a, .more_img_template ul li a {
  position: relative;
  display: block;
  height: 272px;
  border-radius: 12px;
  overflow: hidden;
}
.more_img_template .swiper-container .swiper-slide a .img_item img, .more_img_template .swiper-container li a .img_item img, .more_img_template ul .swiper-slide a .img_item img, .more_img_template ul li a .img_item img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.more_img_template .swiper-container .swiper-slide a .bg, .more_img_template .swiper-container li a .bg, .more_img_template ul .swiper-slide a .bg, .more_img_template ul li a .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(45, 44, 47, 0) 44.58%, #2d2c2f);
}
.more_img_template .swiper-container .swiper-slide a .box, .more_img_template .swiper-container li a .box, .more_img_template ul .swiper-slide a .box, .more_img_template ul li a .box {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.more_img_template .swiper-container .swiper-slide a .box .title, .more_img_template .swiper-container li a .box .title, .more_img_template ul .swiper-slide a .box .title, .more_img_template ul li a .box .title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.more_img_template .swiper-container .swiper-slide a .box .img_list, .more_img_template .swiper-container li a .box .img_list, .more_img_template ul .swiper-slide a .box .img_list, .more_img_template ul li a .box .img_list {
  display: flex;
  justify-content: space-between;
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .img_span, .more_img_template .swiper-container li a .box .img_list .img_span, .more_img_template ul .swiper-slide a .box .img_list .img_span, .more_img_template ul li a .box .img_list .img_span {
  display: inline-block;
  width: 56px;
  height: 56px;
  transition: transform 0.2s ease-in;
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .img_span img, .more_img_template .swiper-container li a .box .img_list .img_span img, .more_img_template ul .swiper-slide a .box .img_list .img_span img, .more_img_template ul li a .box .img_list .img_span img {
  border-radius: 12px;
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .img_span:hover, .more_img_template .swiper-container li a .box .img_list .img_span:hover, .more_img_template ul .swiper-slide a .box .img_list .img_span:hover, .more_img_template ul li a .box .img_list .img_span:hover {
  transform: scale(1.08);
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .more_img, .more_img_template .swiper-container li a .box .img_list .more_img, .more_img_template ul .swiper-slide a .box .img_list .more_img, .more_img_template ul li a .box .img_list .more_img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: hsla(0, 0%, 100%, 0.3);
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-in;
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .more_img span, .more_img_template .swiper-container li a .box .img_list .more_img span, .more_img_template ul .swiper-slide a .box .img_list .more_img span, .more_img_template ul li a .box .img_list .more_img span {
  display: block;
  flex: 1;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  transition: transform 0.2s ease-in;
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .more_img:hover, .more_img_template .swiper-container li a .box .img_list .more_img:hover, .more_img_template ul .swiper-slide a .box .img_list .more_img:hover, .more_img_template ul li a .box .img_list .more_img:hover {
  transform: scale(1.08);
}
.more_img_template .swiper-container .swiper-slide a .box .img_list .more_img:hover span, .more_img_template .swiper-container li a .box .img_list .more_img:hover span, .more_img_template ul .swiper-slide a .box .img_list .more_img:hover span, .more_img_template ul li a .box .img_list .more_img:hover span {
  transform: scale(0.92);
}

.index_html .swiper_box {
  height: 400px;
  margin-top: 30px;
  position: relative;
  display: flex;
}
.index_html .swiper_box .gallery_main {
  height: 100%;
  width: calc(100% - 344px);
  border-radius: 12px 0 0 12px;
}
.index_html .swiper_box .gallery_main .swiper-slide {
  position: relative;
}
.index_html .swiper_box .gallery_main .swiper-slide a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.index_html .swiper_box .gallery_main .swiper-slide a .m_bg {
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, transparent, #000 84.62%);
}
.index_html .swiper_box .gallery_main .swiper-slide a .content {
  position: absolute;
  width: 60%;
  left: 30px;
  bottom: 30px;
  right: 15px;
}
.index_html .swiper_box .gallery_main .swiper-slide a .content .img_item {
  display: none;
}
.index_html .swiper_box .gallery_main .swiper-slide a .content .info h3 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index_html .swiper_box .gallery_main .swiper-slide a .content .info p {
  color: #fff;
  font-size: 16px;
  margin: 20px 0;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index_html .swiper_box .gallery_main .swiper-slide a .content .download_btn {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  border-radius: 4px;
  min-width: 178px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #6b5eff;
}
.index_html .swiper_box .gallery_main .swiper-pagination {
  display: none;
}
.index_html .swiper_box .gallery_main .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.index_html .swiper_box .gallery_main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6b5eff;
}
.index_html .swiper_box .realtion_main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 344px;
  height: 400px;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 0 12px 12px 0;
  background-color: #6b5eff;
  overflow: hidden;
}
.index_html .swiper_box .realtion_main:before, .index_html .swiper_box .realtion_main:after {
  content: "";
  position: absolute;
  width: 224px;
  height: 224px;
  z-index: 0;
  background: #99e6f9;
  filter: blur(70px);
}
.index_html .swiper_box .realtion_main:before {
  left: -112px;
  top: -112px;
}
.index_html .swiper_box .realtion_main:after {
  right: -112px;
  bottom: -112px;
}
.index_html .swiper_box .realtion_main .realtion_main_list {
  position: relative;
  display: flex;
  align-items: center;
  height: 82px;
  padding: 0 16px;
  border-radius: 8px;
  z-index: 1;
  opacity: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}
.index_html .swiper_box .realtion_main .realtion_main_list.active .bg_animate {
  width: 100%;
}
.index_html .swiper_box .realtion_main .realtion_main_list .bg_animate {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(270deg, hsla(0, 0%, 100%, 0.2), hsla(0, 0%, 100%, 0));
}
.index_html .swiper_box .realtion_main .realtion_main_list .img_item {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  overflow: hidden;
}
.index_html .swiper_box .realtion_main .realtion_main_list p {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-left: 10px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index_html .swiper_box .realtion_main .realtion_main_list:hover, .index_html .swiper_box .realtion_main .realtion_main_list.active {
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.index_html .card_template {
  display: flex;
}
.index_html .card_template .swiper-wrapper {
  overflow: hidden;
  overflow-x: auto;
}
.index_html .card_template .swiper-wrapper .swiper-slide {
  min-width: 167px;
  width: auto;
  margin-right: 15px;
}
.index_html .card_template .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0;
}
.index_html .yy_box .card_template .swiper-slide a .bg_template_scale .bg_blur {
  filter: blur(50px);
  opacity: 0.5;
  height: 100%;
}
.index_html .yy_box .card_template .swiper-slide a .img_app {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.index_html .yy_box .card_template .swiper-slide a .desc {
  position: absolute;
  height: 62px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.index_html .yy_box .card_template .swiper-slide a .desc .download:hover {
  opacity: 0.8;
}
.index_html .category_box {
  overflow: hidden;
}
.index_html .category_box .category_list {
  width: 528px;
  float: left;
  margin-top: 24px;
}
.index_html .category_box .category_list:nth-child(odd) {
  margin-right: 24px;
}

.game_cate_html .cate_box {
  display: flex;
  justify-content: space-between;
}
.game_cate_html .cate_box .left_box {
  width: 344px;
}
.game_cate_html .cate_box .left_box .cate_menu_box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 30px;
  background: #F7F7F7;
}
.game_cate_html .cate_box .left_box .cate_menu_box dt {
  width: 100%;
  color: #666;
  font-size: 14px;
  padding: 10px 0;
  margin-bottom: 5px;
  border-bottom: 1px solid #DEDEDE;
}
.game_cate_html .cate_box .left_box .cate_menu_box dd {
  width: 50%;
  padding: 5px 0;
  flex: 1 1 auto;
  padding-right: 15px;
  box-sizing: border-box;
}
.game_cate_html .cate_box .left_box .cate_menu_box dd.active a {
  color: #6b5eff;
}
.game_cate_html .cate_box .left_box .cate_menu_box dd a {
  display: block;
  font-size: 14px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.game_cate_html .cate_box .left_box .cate_menu_box dd a:hover {
  color: #6b5eff;
}
.game_cate_html .cate_box .right_box {
  width: 712px;
}
.game_cate_html .cate_box .right_box .title_template .switch_list .list {
  cursor: pointer;
  margin-left: 10px;
}
.game_cate_html .cate_box .right_box .title_template .switch_list .list:hover, .game_cate_html .cate_box .right_box .title_template .switch_list .list.active {
  color: #6b5eff;
}
.game_cate_html .cate_box .right_box .img_text_template {
  padding: 16px 16px 8px;
  border-radius: 12px;
  background: #F7F7F7;
}
.game_cate_html .cate_box .right_box .img_text_template ul {
  display: flex;
  flex-wrap: wrap;
}
.game_cate_html .cate_box .right_box .img_text_template ul li {
  width: 47%;
  flex: 1 1 auto;
  margin-bottom: 8px;
}
.game_cate_html .cate_box .right_box .img_text_template ul li:nth-child(odd) {
  margin-right: 6%;
}
.game_cate_html .cate_box .right_box .img_text_template ul li > a:hover, .game_cate_html .cate_box .right_box .img_text_template ul li .list_box:hover {
  background-color: #EAEAEA;
}

.strategy_html .cate_box {
  display: flex;
  justify-content: space-between;
}
.strategy_html .cate_box .left_box {
  width: 712px;
}
.strategy_html .cate_box .left_box .scroll_text .switch_box .switch_list {
  display: inline-block;
  margin: 0 16px;
  padding: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  height: 28px;
  color: #000;
}
.strategy_html .cate_box .left_box .scroll_text .switch_box .switch_list.active {
  border-bottom: 2px solid #6b5eff;
}
.strategy_html .cate_box .left_box .zt_box {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 50px;
}
.strategy_html .cate_box .left_box .zt_box a {
  display: inline-block;
  width: 344px;
  border-radius: 12px;
  background-color: #F7F7F7;
  overflow: hidden;
}
.strategy_html .cate_box .left_box .zt_box a:hover {
  background-color: #EAEAEA;
}
.strategy_html .cate_box .left_box .zt_box a .img_item {
  width: 100%;
  height: 194px;
}
.strategy_html .cate_box .left_box .zt_box a .title {
  margin: 0 16px;
  line-height: 24px;
  color: #000;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.strategy_html .cate_box .left_box .zt_box a .info {
  font-size: 14px;
  color: #999;
  margin: 0 16px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.strategy_html .cate_box .left_box .zt_box a .time {
  font-size: 14px;
  color: #999;
  margin: 15px 16px;
}
.strategy_html .cate_box .left_box .link_box a {
  display: inline-block;
  color: #777;
  font-size: 18px;
  border-radius: 4px;
  padding: 0 8px;
  line-height: 30px;
  margin-right: 15px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
}
.strategy_html .cate_box .left_box .link_box a:hover {
  background-color: #EAEAEA;
}
.strategy_html .cate_box .left_box .link_box a em {
  color: #6b5eff;
  margin-right: 3px;
}
.strategy_html .cate_box .right_box {
  width: 344px;
}
.strategy_html .cate_box .right_box .img_text_template {
  padding: 16px 16px 8px;
  border-radius: 12px;
  background: #F7F7F7;
}
.strategy_html .cate_box .right_box .img_text_template ul li {
  margin-bottom: 8px;
}
.strategy_html .cate_box .right_box .img_text_template ul li > a:hover, .strategy_html .cate_box .right_box .img_text_template ul li .list_box:hover {
  background-color: #EAEAEA;
}

.download_html .cate_box {
  display: flex;
  justify-content: space-between;
}
.download_html .cate_box .left_box {
  width: 712px;
}
.download_html .cate_box .left_box h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #000;
}
.download_html .cate_box .left_box .date {
  color: #999;
  font-size: 14px;
  margin-top: 10px;
  text-align: right;
}
.download_html .cate_box .left_box .img_text_template {
  margin: 30px 0;
}
.download_html .cate_box .left_box .img_text_template ul li > a, .download_html .cate_box .left_box .img_text_template ul li .list_box {
  align-items: flex-start;
}
.download_html .cate_box .left_box .img_text_template ul li > a > img, .download_html .cate_box .left_box .img_text_template ul li .list_box > img {
  width: 96px;
  height: 96px;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box, .download_html .cate_box .left_box .img_text_template ul li .list_box .box {
  margin-left: 15px;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .title, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .title {
  margin-top: 0;
  font-weight: 500;
  font-size: 20px;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .info, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .info {
  margin-top: 5px;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .info span, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .info span {
  color: #999;
  font-size: 14px;
  padding: 0 3px;
  position: relative;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .info span:after, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .info span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #999;
  position: absolute;
  left: -2px;
  top: 50%;
  margin-top: -6px;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .info span:first-child, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .info span:first-child {
  padding-left: 0;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .info span:first-child:after, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .info span:first-child:after {
  display: none;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .text, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .text {
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: #666;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .text em, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  vertical-align: baseline;
  background-image: url(https://images.verydown.com/new/images/star.svg);
  background-size: contain;
}
.download_html .cate_box .left_box .img_text_template ul li > a .box .text .score, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .text .score {
  color: #666;
  font-size: 14px;
}
.download_html .cate_box .left_box .img_text_template ul li > a .download_btn, .download_html .cate_box .left_box .img_text_template ul li .list_box .download_btn {
  position: relative;
  margin-top: 30px;
  width: 116px;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
  font-size: 16px;
}
.download_html .cate_box .left_box .link_box {
  margin-bottom: 30px;
}
.download_html .cate_box .left_box .link_box a {
  display: inline-block;
  color: #777;
  font-size: 20px;
  border-radius: 4px;
  padding: 0 8px;
  line-height: 30px;
  margin-right: 15px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
}
.download_html .cate_box .left_box .link_box a:hover {
  background-color: #EAEAEA;
}
.download_html .cate_box .left_box .link_box a em {
  color: #6b5eff;
  margin-right: 3px;
}
.download_html .cate_box .left_box .sm_content {
  padding-top: 20px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}
.download_html .cate_box .left_box .sm_content.active {
  max-height: 100%;
}
.download_html .cate_box .left_box .sm_content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
  text-wrap: initial !important;
}
.download_html .cate_box .left_box .sm_content span {
  text-wrap: initial !important;
}
.download_html .cate_box .left_box .sm_content ul, .download_html .cate_box .left_box .sm_content ol {
  margin-bottom: 15px;
}
.download_html .cate_box .left_box .sm_content ul li, .download_html .cate_box .left_box .sm_content ol li {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
  text-wrap: initial !important;
}
.download_html .cate_box .left_box .sm_content h2, .download_html .cate_box .left_box .sm_content h3, .download_html .cate_box .left_box .sm_content h4, .download_html .cate_box .left_box .sm_content h5, .download_html .cate_box .left_box .sm_content h6 {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 10px;
  color: #000;
  line-height: normal !important;
}
.download_html .cate_box .left_box .sm_content img {
  max-width: 100% !important;
  width: revert-layer;
  height: revert-layer;
  display: block;
  margin: 15px auto 0;
}
.download_html .cate_box .left_box .sm_content table {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}
.download_html .cate_box .left_box .sm_content table tr {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.download_html .cate_box .left_box .sm_content table tr td, .download_html .cate_box .left_box .sm_content table tr th {
  font-size: 14px;
  flex: 1;
  text-align: left;
  border: 1px solid #000;
  background-color: #F2F3F5;
}
.download_html .cate_box .left_box .show_more {
  cursor: pointer;
  color: #60cdff;
  font-size: 16px;
  margin: 20px 0;
}
.download_html .cate_box .left_box .article_img_template {
  margin-bottom: 40px;
}
.download_html .cate_box .left_box .row_img_text_template ul li {
  padding-right: 14px;
}
.download_html .cate_box .right_box {
  width: 344px;
}
.download_html .cate_box .right_box .article_img_template {
  padding: 16px 0 8px;
  border-radius: 12px;
  background: #F7F7F7;
}
.download_html .cate_box .right_box .article_img_template ul li a {
  border-radius: 0;
  padding: 8px 16px;
}
.download_html .cate_box .right_box .article_img_template ul li a:hover {
  background-color: #EAEAEA;
}
.download_html .cate_box .right_box .article_img_template ul li a .title {
  font-size: 14px;
  white-space: normal;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.download_html .cate_box .right_box .article_img_template ul li a .img_item {
  width: 114px;
  height: 64px;
}

.download1_html .cate_box {
  display: flex;
  justify-content: space-between;
}
.download1_html .cate_box .left_box {
  width: 712px;
}
.download1_html .cate_box .left_box .img_text_template {
  margin: 10px 0;
}
.download1_html .cate_box .left_box .img_text_template ul li > a, .download1_html .cate_box .left_box .img_text_template ul li .list_box {
  position: relative;
  align-items: flex-start;
}
.download1_html .cate_box .left_box .img_text_template ul li > a > img, .download1_html .cate_box .left_box .img_text_template ul li .list_box > img {
  width: 144px;
  height: 144px;
  border-radius: 24px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box {
  margin-left: 15px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .title, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .title {
  margin-top: 10px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .info, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .info {
  margin-top: 5px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .info span, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .info span {
  color: #999;
  font-size: 14px;
  padding: 0 3px;
  position: relative;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .info span:after, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .info span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #999;
  position: absolute;
  left: -2px;
  top: 50%;
  margin-top: -6px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .info span:first-child, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .info span:first-child {
  padding-left: 0;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .info span:first-child:after, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .info span:first-child:after {
  display: none;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .text, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text {
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: #666;
  font-weight: 500;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .text em, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  vertical-align: baseline;
  background-image: url(https://images.verydown.com/new/images/star.svg);
  background-size: contain;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .text .score, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text .score {
  color: #666;
  font-size: 14px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .text .version, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text .version {
  position: relative;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  margin-left: 12px;
  padding-left: 8px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .text .version:before, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text .version:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #999;
  position: absolute;
  left: -2px;
  top: 50%;
  margin-top: -6px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .box .content, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .content {
  margin-top: 8px;
}
.download1_html .cate_box .left_box .img_text_template ul li > a .download_btn, .download1_html .cate_box .left_box .img_text_template ul li .list_box .download_btn {
  position: relative;
  width: 116px;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transform: translateY(50px);
  background-color: #6b5eff;
}
.download1_html .cate_box .left_box h1 {
  font-weight: 500;
  font-size: 20px;
  line-height: 48px;
  color: #000;
}
.download1_html .cate_box .left_box .sm_content {
  position: relative;
  padding-top: 0;
  margin-bottom: 20px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}
.download1_html .cate_box .left_box .sm_content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, #aaa 300%);
}
.download1_html .cate_box .left_box .sm_content.active {
  display: block;
}
.download1_html .cate_box .left_box .sm_content.active:after {
  display: none;
}
.download1_html .cate_box .left_box .sm_content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
  text-wrap: initial !important;
}
.download1_html .cate_box .left_box .sm_content ul, .download1_html .cate_box .left_box .sm_content ol {
  margin-bottom: 15px;
}
.download1_html .cate_box .left_box .sm_content ul li, .download1_html .cate_box .left_box .sm_content ol li {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
  text-wrap: initial !important;
}
.download1_html .cate_box .left_box .sm_content span {
  text-wrap: initial !important;
}
.download1_html .cate_box .left_box .sm_content h2, .download1_html .cate_box .left_box .sm_content h3, .download1_html .cate_box .left_box .sm_content h4, .download1_html .cate_box .left_box .sm_content h5, .download1_html .cate_box .left_box .sm_content h6 {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 10px;
  color: #000;
  line-height: 1.6;
  line-height: normal !important;
}
.download1_html .cate_box .left_box .sm_content img {
  max-width: 100% !important;
  width: revert-layer;
  height: revert-layer;
  display: block;
  margin: 15px auto 0;
}
.download1_html .cate_box .left_box .sm_content table {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}
.download1_html .cate_box .left_box .sm_content table tr {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.download1_html .cate_box .left_box .sm_content table tr td, .download1_html .cate_box .left_box .sm_content table tr th {
  font-size: 14px;
  flex: 1;
  text-align: left;
  border: 1px solid #000;
  background-color: #F2F3F5;
}
.download1_html .cate_box .left_box .show_more {
  cursor: pointer;
  color: #60cdff;
  font-size: 16px;
  margin: 20px 0;
}
.download1_html .cate_box .left_box .yl_box {
  margin-bottom: 30px;
}
.download1_html .cate_box .left_box .yl_box .card_template .swiper-slide {
  width: auto;
  height: 288px;
  padding-top: 10px;
  transition: all 0.3s ease;
}
.download1_html .cate_box .left_box .yl_box .card_template .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
  background-color: #1C1C1C;
  border-radius: 10px;
  overflow: hidden;
}
@keyframes up-to-down {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.download1_html .cate_box .left_box .start_download {
  padding: 20px 16px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(64, 135, 247, 0.05);
}
.download1_html .cate_box .left_box .start_download .download_title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.download1_html .cate_box .left_box .start_download .download_title .download_icon {
  display: flex;
  width: 16px;
  height: 16px;
  position: relative;
}
.download1_html .cate_box .left_box .start_download .download_title .download_icon .img {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  fill: #c0c0c0;
  background: url(https://images.verydown.com/new/images/download@.png) no-repeat center center;
  background-size: contain;
}
.download1_html .cate_box .left_box .start_download .download_title .download_icon .img_anima {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  animation: up-to-down 1s linear infinite;
  background: url(https://images.verydown.com/new/images/download.png) no-repeat center center;
  background-size: contain;
}
.download1_html .cate_box .left_box .start_download .download_title .text {
  font-size: 18px;
  line-height: 1.5;
  color: #00A6ED;
  font-weight: bold;
}
.download1_html .cate_box .left_box .start_download .download_title .text .dotting {
  display: inline-block;
  min-width: 3px;
  min-height: 3px;
  box-shadow: 3px 0 currentColor, 8px 0 currentColor, 13px 0 currentColor;
  animation: dot 2.8s infinite step-start both;
}
.download1_html .cate_box .left_box .start_download h2 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 20px 0 0;
  text-align: center;
  color: #5E5E5E;
  word-break: break-all;
}
.download1_html .cate_box .left_box .start_download .download_back {
  color: #8B8B8B;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 15px 0;
}
.download1_html .cate_box .left_box .start_download .download_back a {
  text-decoration: underline;
}
.download1_html .cate_box .left_box .download_group_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.download1_html .cate_box .left_box .download_group_box .download {
  display: block;
  box-sizing: border-box;
  padding: 0;
  min-width: 280px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border: none;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background-color: #32487b;
}
.download1_html .cate_box .left_box .download_group_box .download i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(https://images.verydown.com/new/images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.download1_html .cate_box .left_box .download_group_box .download:hover {
  opacity: 0.9;
}
.download1_html .cate_box .left_box .download_group_box .download_info {
  width: 200px;
  height: 40px;
  line-height: 20px;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}
.download1_html .cate_box .left_box .download_group_box .download_info a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #32487b;
}
.download1_html .cate_box .left_box .download_group_box .download_info a:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(https://images.verydown.com/new/images/fx.svg) no-repeat center center;
  background-size: contain;
}
.download1_html .cate_box .left_box .link_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.download1_html .cate_box .left_box .link_box a {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  color: #666;
  border-radius: 6px;
  padding: 0 5px;
  margin-right: 8px;
  margin-bottom: 6px;
  background-color: #F2F2F2;
}
.download1_html .cate_box .left_box .link_box a:hover {
  background-color: #EAEAEA;
}
.download1_html .cate_box .left_box .history_version .version_info {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.download1_html .cate_box .left_box .history_version ul li {
  border-bottom: 1px solid #f2f2f2;
}
.download1_html .cate_box .left_box .history_version ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.download1_html .cate_box .left_box .history_version ul li a:hover .box .title {
  color: #6b5eff;
}
.download1_html .cate_box .left_box .history_version ul li a:hover .download_btn {
  color: #fff;
  background-color: #6b5eff;
}
.download1_html .cate_box .left_box .history_version ul li a .box {
  width: 0;
  flex: 1 1;
}
.download1_html .cate_box .left_box .history_version ul li a .box .title {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.download1_html .cate_box .left_box .history_version ul li a .box .text {
  display: flex;
  align-items: center;
  color: #666;
}
.download1_html .cate_box .left_box .history_version ul li a .box .text .size {
  font-size: 14px;
  margin-right: 20px;
}
.download1_html .cate_box .left_box .history_version ul li a .box .text .time {
  font-size: 14px;
}
.download1_html .cate_box .left_box .history_version ul li a .download_btn {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 4px;
  min-width: 68px;
  font-weight: 500;
  color: #6b5eff;
  text-align: center;
  border: 1px solid rgba(107, 94, 255, 0.5);
  overflow: hidden;
}
.download1_html .cate_box .left_box .history_version .all_version, .download1_html .cate_box .left_box .history_version .more_version_btn {
  display: block;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  border-radius: 4px;
  width: 208px;
  font-weight: 500;
  color: #6b5eff;
  text-align: center;
  margin: 20px auto 30px;
  border: 1px solid rgba(107, 94, 255, 0.5);
  overflow: hidden;
}
.download1_html .cate_box .left_box .history_version .all_version:hover, .download1_html .cate_box .left_box .history_version .more_version_btn:hover {
  cursor: pointer;
  color: #fff;
  background-color: #6b5eff;
}
.download1_html .cate_box .left_box .xx_box ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.download1_html .cate_box .left_box .xx_box ul li {
  display: flex;
  flex-direction: column;
  width: 33%;
  padding-bottom: 10px;
}
.download1_html .cate_box .left_box .xx_box ul li .title {
  color: #999;
  font-size: 14px;
}
.download1_html .cate_box .left_box .xx_box ul li .info {
  color: #333;
  font-size: 14px;
  word-wrap: break-word;
}
.download1_html .cate_box .left_box .article_img_template {
  margin-bottom: 40px;
}
.download1_html .cate_box .left_box .row_img_text_template ul li {
  padding-right: 14px;
}
.download1_html .cate_box .right_box {
  width: 344px;
}
.download1_html .cate_box .right_box .img_text_template ul {
  padding: 10px 0;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.download1_html .cate_box .right_box .img_text_template ul li {
  padding: 0;
  border-radius: 0;
}
.download1_html .cate_box .right_box .img_text_template ul li > a, .download1_html .cate_box .right_box .img_text_template ul li .list_box {
  border-radius: 0;
}
.download1_html .cate_box .right_box .img_text_template ul li > a img, .download1_html .cate_box .right_box .img_text_template ul li .list_box img {
  width: 56px;
  height: 56px;
}
.download1_html .cate_box .right_box .img_text_template ul li > a .box .title, .download1_html .cate_box .right_box .img_text_template ul li .list_box .box .title {
  margin-top: 0;
}
.download1_html .cate_box .right_box .img_text_template ul li > a .box .text, .download1_html .cate_box .right_box .img_text_template ul li .list_box .box .text {
  margin-top: 0;
}
.download1_html .cate_box .right_box .img_text_template ul li > a .download_btn, .download1_html .cate_box .right_box .img_text_template ul li .list_box .download_btn {
  height: 24px;
  line-height: 24px;
  padding: 0;
}

.download_version_html .cate_box .left_box .img_text_template ul li > a img, .download_version_html .cate_box .left_box .img_text_template ul li .list_box img {
  width: 110px;
  height: 110px;
}
.download_version_html .cate_box .left_box .img_text_template ul li > a .box .type_info, .download_version_html .cate_box .left_box .img_text_template ul li .list_box .box .type_info {
  margin-top: 10px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.download_version_html .cate_box .left_box .img_text_template ul li > a .box .content, .download_version_html .cate_box .left_box .img_text_template ul li .list_box .box .content {
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.download_version_html .cate_box .left_box .img_text_template ul li > a .download_btn, .download_version_html .cate_box .left_box .img_text_template ul li .list_box .download_btn {
  height: 34px;
  line-height: 34px;
}
.download_version_html .cate_box .left_box .history_version ul.active li {
  display: block !important;
}
.download_version_html .cate_box .left_box .history_version ul li:nth-child(n+6) {
  display: none;
}

.version_detail_html .cate_box .left_box .download_info {
  padding-bottom: 18px;
}
.version_detail_html .cate_box .left_box .download_info ul li a .box {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.version_detail_html .cate_box .left_box .download_info ul li a .box .text .size {
  margin-left: 15px;
  color: #333;
}
.version_detail_html .cate_box .left_box .download_info ul li a .box .time_info .time {
  font-size: 14px;
  color: #333;
  margin-right: 10px;
}
.version_detail_html .cate_box .left_box .version_log_box {
  padding-bottom: 48px;
}
.version_detail_html .cate_box .left_box .version_log_box p {
  font-size: 16px;
  color: #333;
  line-height: 22px;
  margin-top: 8px;
}
.version_detail_html .cate_box .left_box .other_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.version_detail_html .cate_box .left_box .other_box li {
  display: flex;
  width: 50%;
  padding: 10px 0 0;
}
.version_detail_html .cate_box .left_box .other_box li .content {
  flex: 1;
  overflow: auto;
  position: relative;
}
.version_detail_html .cate_box .left_box .other_box li .content .text {
  color: #333;
  font-size: 16px;
}
.version_detail_html .cate_box .left_box .other_box li .content span, .version_detail_html .cate_box .left_box .other_box li .content a {
  display: block;
  margin-top: 8px;
  color: #8B8B8B;
  font-size: 14px;
  word-wrap: break-word;
}
.version_detail_html .cate_box .left_box .other_box li .content a {
  color: #6b5eff;
}

.download_colunm_html .img_text_template ul {
  margin: 0 -10px;
}
.download_colunm_html .img_text_template ul li {
  padding: 0;
  margin-bottom: 25px;
}
.download_colunm_html .img_text_template ul li > img, .download_colunm_html .img_text_template ul li .list_box img {
  width: 96px;
  height: 96px;
}
.download_colunm_html .img_text_template ul li > .box .title, .download_colunm_html .img_text_template ul li .list_box .box .title {
  margin-top: 0;
}
.download_colunm_html .img_text_template ul li > .box .info, .download_colunm_html .img_text_template ul li .list_box .box .info {
  font-size: 14px;
  margin-top: 10px;
}
.download_colunm_html .img_text_template ul li > .box .text, .download_colunm_html .img_text_template ul li .list_box .box .text {
  margin-top: 20px;
}
.download_colunm_html .img_text_template ul li > .box .text em, .download_colunm_html .img_text_template ul li .list_box .box .text em {
  width: 16px;
  height: 16px;
}
.download_colunm_html .img_text_template ul li > .box .text .score, .download_colunm_html .img_text_template ul li .list_box .box .text .score {
  font-size: 14px;
}
.download_colunm_html .img_text_template ul li > .download_btn, .download_colunm_html .img_text_template ul li .list_box .download_btn {
  height: 40px;
  line-height: 40px;
  min-width: 116px;
  font-size: 16px;
}

.download_colunm_sort_html .img_text_template ul {
  margin: 0 -10px;
}
.download_colunm_sort_html .img_text_template ul li {
  padding: 0;
  margin-bottom: 25px;
}
.download_colunm_sort_html .img_text_template ul li:nth-child(1) .sort {
  background-color: #ffd914;
}
.download_colunm_sort_html .img_text_template ul li:nth-child(2) .sort {
  background-color: rgba(0, 0, 0, 0.1019607843);
}
.download_colunm_sort_html .img_text_template ul li:nth-child(3) .sort {
  background-color: #ffa800;
}
.download_colunm_sort_html .img_text_template ul li:nth-child(n+4) .sort {
  box-shadow: none;
}
.download_colunm_sort_html .img_text_template ul li > a .sort, .download_colunm_sort_html .img_text_template ul li .list_box .sort {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.download_colunm_sort_html .img_text_template ul li > a img, .download_colunm_sort_html .img_text_template ul li .list_box img {
  width: 96px;
  height: 96px;
}
.download_colunm_sort_html .img_text_template ul li > a .box .title, .download_colunm_sort_html .img_text_template ul li .list_box .box .title {
  margin-top: 0;
}
.download_colunm_sort_html .img_text_template ul li > a .box .info, .download_colunm_sort_html .img_text_template ul li .list_box .box .info {
  font-size: 14px;
  margin-top: 10px;
}
.download_colunm_sort_html .img_text_template ul li > a .box .text, .download_colunm_sort_html .img_text_template ul li .list_box .box .text {
  margin-top: 20px;
}
.download_colunm_sort_html .img_text_template ul li > a .box .text em, .download_colunm_sort_html .img_text_template ul li .list_box .box .text em {
  width: 16px;
  height: 16px;
}
.download_colunm_sort_html .img_text_template ul li > a .box .text .score, .download_colunm_sort_html .img_text_template ul li .list_box .box .text .score {
  font-size: 14px;
}

@keyframes loadwidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.common_model {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.common_model.active {
  opacity: 1;
  z-index: 999;
}
.common_model.active .model_content {
  transform: scale(1);
}
.common_model .model_bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.common_model .model_content {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 480px;
  background-color: #202020;
  border-radius: 8px;
  z-index: 1;
  transform: scale(0.7);
  transition: all 0.3s ease;
}
.common_model .model_content .model_header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0823529412);
}
.common_model .model_content .model_header h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  padding: 12px 32px;
}
.common_model .model_content .model_header h3.center {
  text-align: center;
}
.common_model .model_content .model_header .close {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  background-image: url(https://images.verydown.com/new/images/close.svg);
  background-size: contain;
}
.common_model .model_content .model_header .close:hover {
  background-image: url(https://images.verydown.com/new/images/close@.svg);
  background-size: contain;
}
.common_model .model_content .model_body {
  height: 260px;
  padding: 0 30px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  overflow: auto;
  /* 定制滚动条滑块样式 */
}
.common_model .model_content .model_body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.common_model .model_content .model_body::-webkit-scrollbar-track {
  background-color: #202020;
}
.common_model .model_content .model_body::-webkit-scrollbar-thumb {
  background-color: #505050;
}
.common_model .model_content .model_body p {
  font-size: 22px;
  color: #fff;
  line-height: var(--fz30);
  padding-top: 20px;
  overflow: hidden;
}
.common_model .model_content .model_body p.center {
  text-align: center;
}
.common_model .model_content .model_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  text-align: center;
  background-color: #202020;
}
.common_model .model_content .model_footer .btn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #008746;
}

.router_template {
  padding: 16px 0;
}
.router_template span, .router_template a {
  position: relative;
  display: inline;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.router_template a {
  padding-right: 14px;
}
.router_template a:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: url(https://images.verydown.com/new/images/arrow.png) no-repeat center center;
  background-size: contain;
}
.router_template a:last-child:after {
  display: none;
}
.router_template a:hover {
  color: #6b5eff;
}

.article_html .article_box {
  padding: 15px;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.article_html .article_box h1 {
  color: #fff;
  font-size: 22px;
}
.article_html .article_box p.time {
  margin-top: 25px;
}
.article_html .article_box p.time span {
  display: inline;
  color: #CECECE;
  font-size: 14px;
  margin-right: 50px;
}
.article_html .article_box .content {
  padding-bottom: 40px;
  border-bottom: 1px solid #43434B;
}
.article_html .article_box .content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
  text-wrap: initial !important;
}
.article_html .article_box .content span {
  text-wrap: initial !important;
}
.article_html .article_box .content h2, .article_html .article_box .content h3, .article_html .article_box .content h4, .article_html .article_box .content h5, .article_html .article_box .content h6 {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 10px;
  line-height: normal !important;
  color: #6b5eff;
}
.article_html .article_box .content h2:before, .article_html .article_box .content h2:after, .article_html .article_box .content h3:before, .article_html .article_box .content h3:after, .article_html .article_box .content h4:before, .article_html .article_box .content h4:after, .article_html .article_box .content h5:before, .article_html .article_box .content h5:after, .article_html .article_box .content h6:before, .article_html .article_box .content h6:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.article_html .article_box .content h2:before, .article_html .article_box .content h3:before, .article_html .article_box .content h4:before, .article_html .article_box .content h5:before, .article_html .article_box .content h6:before {
  top: 0px;
  left: 0px;
  border-left: 4px solid #6b5eff;
  border-top: 4px solid #6b5eff;
}
.article_html .article_box .content h2:after, .article_html .article_box .content h3:after, .article_html .article_box .content h4:after, .article_html .article_box .content h5:after, .article_html .article_box .content h6:after {
  bottom: 0px;
  right: 0px;
  border-right: 4px solid #6b5eff;
  border-bottom: 4px solid #6b5eff;
}
.article_html .article_box .content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 15px auto 0;
}
.article_html .article_box .title_template {
  padding-top: 40px;
}
.article_html .article_box .xgnr_box {
  padding: 30px;
  margin-top: 25px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 12px;
  background-color: #F7F7F7;
}
.article_html .article_box .xgnr_box:hover {
  background-color: #242428;
}
.article_html .article_box .xgnr_box:hover a .content_box .box .title {
  color: #6b5eff;
}
.article_html .article_box .xgnr_box .content_box {
  position: relative;
  display: flex;
  border-radius: 12px;
  justify-content: start;
}
.article_html .article_box .xgnr_box .content_box img {
  display: inline-block;
  width: 30%;
  min-width: 70px;
  min-height: 70px;
  max-width: 120px;
  max-height: 120px;
  border-radius: 12px;
}
.article_html .article_box .xgnr_box .content_box:hover .box .title {
  color: #6b5eff;
}
.article_html .article_box .xgnr_box .content_box .box {
  position: relative;
  margin-left: 20px;
  overflow: hidden;
}
.article_html .article_box .xgnr_box .content_box .box .title {
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  margin: 10px 0;
}
.article_html .article_box .xgnr_box .content_box .box .title .text {
  display: inline-block;
  font-size: 18px;
  color: #CC7120;
  font-weight: bold;
}
.article_html .article_box .xgnr_box .content_box .box .title .text em {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url(https://images.verydown.com/new/images/star@.png) no-repeat center center;
}
.article_html .article_box .xgnr_box .content_box .box .tips {
  color: #CECECE;
  font-size: 16px;
}
.article_html .article_box .xgnr_box .content_box .box .tips span:not(:last-child):after {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: #CECECE;
}
.article_html .article_box .xgnr_box .content_box .box .type {
  color: #CECECE;
  font-size: 16px;
  margin-top: 10px;
}
.article_html .article_box .xgnr_box .content_box .box .type span {
  margin-left: 10px;
  color: #6b5eff;
}
.article_html .article_box .xgnr_box .content_box .download {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  color: #f2f2f2;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  padding: 0 35px;
  margin-left: 10px;
  background-color: #000;
}
.article_html .zx_box {
  display: var(--w2-external);
  justify-content: flex-start;
  gap: 15px;
  box-sizing: border-box;
}
.article_html .zx_box .common_box {
  width: var(--w2);
  padding: 30px;
  margin: 30px 0 0;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #1C1C1C;
}
.article_html .zx_box .common_box ul li {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.article_html .zx_box .common_box ul li a {
  flex: 1;
  display: inline-block;
  color: #333;
  font-size: 16px;
  height: 20px;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.article_html .zx_box .common_box ul li a:hover {
  color: #6b5eff;
}
.article_html .zx_box .common_box ul li .time {
  color: #999;
  font-size: 16px;
}

.laypage {
  text-align: center;
  padding: 10px 0 5px;
}
.laypage a, .laypage span {
  display: inline-block;
  font-size: 14px;
  height: 34px;
  min-width: 24px;
  padding: 0 5px;
  margin-right: 10px;
  text-align: center;
  line-height: 34px;
  border-radius: 6px;
  border: thin solid #CECECE;
  color: #666;
  font-weight: 400;
}
.laypage a.currentPage, .laypage span.currentPage {
  color: #fff;
  border-color: #6b5eff;
  background-color: #6b5eff;
}

@media (min-width: 828px) {
  .w12_box {
    max-width: 712px;
  }
  .header_template .w12_box {
    padding: 0 10px 0 0;
  }
  .header_template .w12_box .left_box .nav_menu_item .item:hover > a, .header_template .w12_box .left_box .nav_menu_item .item:hover > span {
    cursor: pointer;
    overflow: inherit;
    color: #6b5eff;
  }
  .header_template .w12_box .left_box .nav_menu_item .item:hover .drop_menu_arrow_icon:after {
    transform: rotate(180deg);
  }
  .header_template .w12_box .left_box .nav_menu_item .item:hover .drop_menu_cate {
    opacity: 1;
    z-index: 99;
    transform: rotateX(0);
  }
}
@media (min-width: 1197px) {
  .w12_box {
    max-width: 1080px;
  }
  .banner_template {
    position: relative;
  }
  .banner_template .swiper-button-next,
  .banner_template .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 1196px) {
  :root {
    --modal-width:240px;
  }
  .banner_template {
    position: relative;
  }
  .banner_template .swiper-button-next,
  .banner_template .swiper-button-prev {
    display: none;
    opacity: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-image: none;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  }
  .banner_template .swiper-button-next:after, .banner_template .swiper-button-next:before,
  .banner_template .swiper-button-prev:after,
  .banner_template .swiper-button-prev:before {
    content: "";
    height: 4px;
    width: 16px;
    border-radius: 2px;
    background: #b2b2b2;
    position: absolute;
  }
  .banner_template .swiper-button-next {
    right: -20px;
  }
  .banner_template .swiper-button-next:before {
    transform: rotate(45deg);
    top: 18px;
    left: 18px;
  }
  .banner_template .swiper-button-next:after {
    transform: rotate(135deg);
    top: 27px;
    left: 18px;
  }
  .banner_template .swiper-button-next:hover {
    background-color: #333;
  }
  .banner_template .swiper-button-prev {
    left: -20px;
  }
  .banner_template .swiper-button-prev:before {
    transform: rotate(135deg);
    top: 18px;
    left: 15px;
  }
  .banner_template .swiper-button-prev:after {
    transform: rotate(45deg);
    top: 27px;
    left: 15px;
  }
  .banner_template .swiper-button-prev:hover {
    background-image: url(https://images.verydown.com/new/images/banner_l_icon@.png);
    background-size: 60%;
    background-color: #333;
  }
  .header_template {
    padding: 0;
  }
  .header_template .w12_box {
    padding: 0 15px;
  }
  .header_template .w12_box .left_box .nav_menu_item {
    position: fixed;
    width: var(--modal-width);
    top: var(--headheight);
    right: -240px;
    bottom: 0;
    display: block;
    z-index: 1001;
    transition: all 0.5s;
    padding-top: 30px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header_template .w12_box .left_box .nav_menu_item.active {
    right: 0;
    overflow-y: scroll;
  }
  .header_template .w12_box .left_box .nav_menu_item .item {
    margin: 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .header_template .w12_box .left_box .nav_menu_item .item > span, .header_template .w12_box .left_box .nav_menu_item .item > a {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    border-bottom: none;
  }
  .header_template .w12_box .left_box .nav_menu_item .item .drop_menu_arrow_icon:after {
    left: -8px;
    top: 3px;
    height: 8px;
    width: 8px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    border-right: 0;
    border-top: 0;
    transform-origin: 4px 0;
    transform: rotate(-45deg);
  }
  .header_template .w12_box .left_box .nav_menu_item .item.active .drop_menu_arrow_icon:after {
    left: 0;
    top: 8px;
    transform: rotate(135deg);
  }
  .header_template .w12_box .left_box .nav_menu_item .item.active .drop_menu_cate {
    position: relative;
    display: block;
    box-shadow: none;
  }
  .header_template .w12_box .left_box .nav_menu_item .item.active .drop_menu_cate a {
    text-align: left;
    color: rgba(0, 0, 0, 0.5);
  }
  .header_template .w12_box .left_box .nav_menu_item .item .drop_menu_cate {
    position: relative;
    display: none;
    top: 0;
    transform: rotateX(0);
    opacity: 1;
  }
  .header_template .w12_box .right_box {
    gap: 10px;
  }
  .header_template .w12_box .right_box .mobile_search, .header_template .w12_box .right_box .mobile_menu_icon {
    display: block;
  }
  .header_template .w12_box .right_box .input_search {
    display: none;
  }
  .article_box_template {
    display: block;
  }
  .article_box_template .article_list {
    width: 100%;
    margin-top: 24px;
  }
  .article_box_template .article_list .list a {
    display: block;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.7019607843);
  }
  .article_box_template .article_list .list a:hover {
    color: #6b5eff;
  }
  .row_img_text_template ul li {
    padding-right: 14px;
  }
  .index_html .swiper_box .gallery_main {
    width: 100%;
  }
  .index_html .swiper_box .gallery_main .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
  }
  .index_html .swiper_box .gallery_main .swiper-pagination {
    display: block;
    bottom: -20px;
  }
  .index_html .swiper_box .realtion_main {
    display: none;
  }
  .index_html .category_box {
    display: block;
  }
  .index_html .category_box .category_list {
    width: 100%;
  }
  .game_cate_html.fixed {
    position: fixed;
    right: 0;
    left: 0;
  }
  .game_cate_html .cate_box {
    position: relative;
  }
  .game_cate_html .cate_box .left_box {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 45px;
    height: 432px;
    overflow: auto;
    z-index: 999;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
  }
  .game_cate_html .cate_box .left_box.fixed {
    display: block;
  }
  .game_cate_html .cate_box .left_box .title_template {
    display: none;
  }
  .game_cate_html .cate_box .left_box .cate_menu_box {
    border-radius: 0;
    margin-bottom: 0;
    background-color: #fff;
  }
  .game_cate_html .cate_box .left_box .cate_menu_box:last-child {
    margin-top: -30px;
  }
  .game_cate_html .cate_box .right_box .title_template .title:after {
    content: "";
    display: inline-block;
    position: relative;
    height: 5px;
    width: 5px;
    left: 7px;
    top: 0px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transition: all 0.3s;
    transform: translateY(-50%) rotate(-45deg);
  }
  .game_cate_html .cate_box .right_box .title_template .title.active:after {
    top: 3px;
    transform: translateY(-50%) rotate(135deg);
  }
  .strategy_html .cate_box {
    display: block;
  }
  .strategy_html .cate_box .left_box {
    width: auto;
  }
  .strategy_html .cate_box .left_box .scroll_text, .strategy_html .cate_box .left_box .zt_box {
    display: none;
  }
  .strategy_html .cate_box .right_box {
    display: none;
  }
  .download_html .cate_box {
    display: block;
  }
  .download_html .cate_box .left_box {
    width: auto;
  }
  .download_html .cate_box .left_box .scroll_text, .download_html .cate_box .left_box .zt_box {
    display: none;
  }
  .download_html .cate_box .right_box {
    display: none;
  }
  .download1_html .cate_box {
    display: block;
  }
  .download1_html .cate_box .left_box {
    width: auto;
  }
  .download1_html .cate_box .left_box .scroll_text, .download1_html .cate_box .left_box .zt_box {
    display: none;
  }
  .download1_html .cate_box .right_box {
    display: none;
  }
  .common_bg_template.active {
    display: block !important;
    background-color: rgba(0, 0, 0, 0);
  }
}
@media (max-width: 827px) {
  .common_box {
    margin-top: 30px;
  }
  .router_template {
    padding-left: 15px;
  }
  .router_template a, .router_template span {
    white-space: pre;
  }
  .mobile_padding {
    padding: 0 20px;
  }
  .header_template {
    padding: 0;
  }
  .header_template .w12_box .language_select_box {
    height: auto;
    background-color: transparent;
  }
  .header_template .w12_box .language_select_box.active .drop_menu_box {
    right: 0px;
    width: 100%;
  }
  .header_template .w12_box .language_select_box .text {
    height: auto;
    line-height: normal;
    padding: 0;
  }
  .header_template .w12_box .language_select_box .text:before {
    width: 30px;
    height: 30px;
    vertical-align: middle;
  }
  .header_template .w12_box .language_select_box .text:after {
    display: none;
  }
  .header_template .w12_box .language_select_box .text span {
    display: none;
  }
  .header_template .w12_box .language_select_box .drop_menu_box {
    width: 100%;
    position: fixed;
    top: 0;
    padding-top: 70px;
    left: auto;
    right: -100%;
    bottom: 0;
    z-index: 1001;
    border-radius: 0;
    transform: rotateX(0deg);
    transform-origin: initial;
    transition: all 0.5s;
  }
  .header_template .w12_box .language_select_box .drop_menu_box .language_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 80px;
    height: 80px;
    background: url(https://images.verydown.com/new/images/menu_close.svg) no-repeat center center;
    background-size: 40%;
  }
  .header_template .w12_box .language_select_box .drop_menu_box a {
    width: 100% !important;
    font-size: 16px;
  }
  .img_text_template .swiper-container .swiper-wrapper, .img_text_template ul .swiper-wrapper {
    overflow: hidden;
    overflow-x: auto;
  }
  .img_text_template .swiper-container .swiper-wrapper .swiper-slide, .img_text_template ul .swiper-wrapper .swiper-slide {
    min-width: 280px;
  }
  .img_text_template .swiper-container .swiper-slide > a .box .text em, .img_text_template .swiper-container .swiper-slide .list_box .box .text em, .img_text_template .swiper-container li > a .box .text em, .img_text_template .swiper-container li .list_box .box .text em, .img_text_template ul .swiper-slide > a .box .text em, .img_text_template ul .swiper-slide .list_box .box .text em, .img_text_template ul li > a .box .text em, .img_text_template ul li .list_box .box .text em {
    margin-left: 0;
  }
  .img_text_template .swiper-container .swiper-slide > a .download_btn, .img_text_template .swiper-container .swiper-slide .list_box .download_btn, .img_text_template .swiper-container li > a .download_btn, .img_text_template .swiper-container li .list_box .download_btn, .img_text_template ul .swiper-slide > a .download_btn, .img_text_template ul .swiper-slide .list_box .download_btn, .img_text_template ul li > a .download_btn, .img_text_template ul li .list_box .download_btn {
    width: 50px;
    min-width: auto;
  }
  .title_template {
    padding: 0 20px;
  }
  .title_template .title {
    font-size: 18px;
  }
  .banner_template {
    padding-left: 10px;
  }
  .banner_template .swiper-button-next,
  .banner_template .swiper-button-prev {
    display: none;
  }
  .article_box_template .article_list .list {
    padding-left: 20px;
  }
  .article_box_template .article_list .list li {
    margin-bottom: 12px;
  }
  .article_box_template .article_list .list li a {
    white-space: normal;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .common_bg_template.active {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .row_img_text_template {
    overflow-x: scroll;
    background-color: #fff;
  }
  .row_img_text_template::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .row_img_text_template ul {
    overflow: initial;
  }
  .row_img_text_template ul li {
    padding-right: 14px;
  }
  .row_img_text_template ul li a {
    width: 98px;
  }
  .row_img_text_template ul li a .img_item {
    width: 65px;
    height: 65px;
  }
  .row_img_text_template ul li a .download_btn {
    min-width: 50px;
  }
  .more_img_template {
    padding-left: 20px;
  }
  .index_html .swiper_box {
    width: calc(100% - 40px);
    height: 180px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .m_bg {
    height: 28%;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .content {
    width: auto;
    left: 15px;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .content .img_item {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    max-width: 70px;
    max-height: 70px;
    border-radius: 12px;
    margin-right: 8px;
    overflow: hidden;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .content .info {
    width: 0;
    flex: 1 1;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .content .info h3 {
    font-size: 16px;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .content .info p {
    font-size: 14px;
    margin: 0;
    margin-top: 8px;
  }
  .index_html .swiper_box .gallery_main .swiper-slide a .content .download_btn {
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: 14px;
    border-radius: 0.08rem;
    padding: 0 0.16rem;
    min-width: 1.36rem;
  }
  .index_html .swiper_box .gallery_main .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .index_html .card_template .swiper-wrapper .swiper-slide {
    min-width: 110px;
  }
  .index_html .yxfl_box .swiper-container .swiper-slide .title_template .title, .index_html .yxfl_box .swiper-container li .title_template .title, .index_html .yxfl_box ul .swiper-slide .title_template .title, .index_html .yxfl_box ul li .title_template .title {
    font-size: 20px;
  }
  .index_html .yy_box .card_template .swiper-slide {
    height: 200px;
  }
  .index_html .yy_box .card_template .swiper-slide a .desc {
    padding: 15px 20px 25px;
  }
  .index_html .category_box {
    display: block;
  }
  .index_html .category_box .title_template {
    margin-bottom: 0;
  }
  .index_html .category_box .row_img_text_template ul li a .download_btn {
    display: block;
    min-width: auto;
    margin: 0 auto;
  }
  .game_cate_html.fixed .router_template {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
  }
  .game_cate_html .cate_box {
    background-color: #fff;
  }
  .game_cate_html .cate_box .left_box {
    border-radius: 0;
    filter: none;
    top: 112px;
    position: fixed;
    z-index: 998;
    left: 0;
    right: 0;
  }
  .game_cate_html .cate_box .left_box .cate_menu_box {
    padding-top: 30px;
  }
  .game_cate_html .cate_box .right_box .title_template.fixed {
    position: fixed;
    z-index: 999;
    top: 110px;
    left: 0;
    right: 0;
    padding: 0 20px 10px;
    background-color: #fff;
  }
  .game_cate_html .cate_box .right_box .title_template.fixed .switch_list {
    display: none;
  }
  .game_cate_html .cate_box .right_box .title_template .title {
    font-size: 14px;
  }
  .game_cate_html .cate_box .right_box .title_template .title:after {
    top: 0px;
  }
  .game_cate_html .cate_box .right_box .title_template .title.active:after {
    top: 2px;
  }
  .game_cate_html .cate_box .right_box .img_text_template {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff;
  }
  .game_cate_html .cate_box .right_box .img_text_template ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0;
  }
  .strategy_html .cate_box {
    display: block;
  }
  .strategy_html .cate_box .left_box .link_box {
    margin: 15px 16px 0;
  }
  .strategy_html .cate_box .left_box .link_box a {
    font-size: 16px;
  }
  .strategy_html .cate_box .left_box .article_img_template {
    padding: 0 10px;
  }
  .strategy_html .cate_box .left_box .article_img_template ul li {
    margin-bottom: 0;
  }
  .strategy_html .cate_box .left_box .article_img_template ul li a .box .title {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .strategy_html .cate_box .left_box .article_img_template ul li a .box .info {
    display: none;
  }
  .download_html .cate_box .left_box h1 {
    font-size: 22px;
    margin: 0 16px;
    line-height: 30px;
  }
  .download_html .cate_box .left_box .date {
    margin: 20px 16px 0;
  }
  .download_html .cate_box .left_box .link_box {
    margin: 15px 16px 0;
  }
  .download_html .cate_box .left_box .link_box a {
    font-size: 16px;
  }
  .download_html .cate_box .left_box .sm_content {
    margin: 0 16px;
  }
  .download_html .cate_box .left_box .article_img_template {
    margin: 0 16px 30px;
  }
  .download_html .cate_box .left_box .show_more {
    margin: 20px 16px;
  }
  .download_html .cate_box .left_box .img_text_template {
    margin: 20px 8px;
  }
  .download_html .cate_box .left_box .img_text_template ul li > a img, .download_html .cate_box .left_box .img_text_template ul li .list_box img {
    width: 65px;
    height: 65px;
  }
  .download_html .cate_box .left_box .img_text_template ul li > a .box .title, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .title {
    font-size: 18px;
  }
  .download_html .cate_box .left_box .img_text_template ul li > a .box .info span, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .info span {
    font-size: 14px;
  }
  .download_html .cate_box .left_box .img_text_template ul li > a .box .text, .download_html .cate_box .left_box .img_text_template ul li .list_box .box .text {
    margin-top: 0;
  }
  .download_html .cate_box .left_box .img_text_template ul li > a .download_btn, .download_html .cate_box .left_box .img_text_template ul li .list_box .download_btn {
    height: 30px;
    line-height: 30px;
    width: 50px;
    min-width: auto;
  }
  .download_html .cate_box .left_box .img_text_template.fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    margin: 0;
    padding: 15px 0;
  }
  .download1_html .cate_box .left_box .content_title {
    font-size: 18px;
    margin: 0 16px;
    line-height: 30px;
    margin-top: 15px;
  }
  .download1_html .cate_box .left_box .img_text_template {
    margin: 0 8px 0;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    margin: 0;
    padding: 15px 0;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed ul li > a {
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed ul li > a > img {
    width: 60px;
    height: 60px;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed ul li > a .box {
    height: 60px;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed ul li > a .box .title {
    text-align: left;
    font-size: 16px;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed ul li > a .box .info, .download1_html .cate_box .left_box .img_text_template.fixed ul li > a .box .text, .download1_html .cate_box .left_box .img_text_template.fixed ul li > a .box .content {
    display: none;
  }
  .download1_html .cate_box .left_box .img_text_template.fixed ul li > a .download_btn {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: 106px;
    font-size: 16px;
    line-height: 32px;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a, .download1_html .cate_box .left_box .img_text_template ul li .list_box {
    display: block;
    position: relative;
    text-align: center;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a > img, .download1_html .cate_box .left_box .img_text_template ul li .list_box > img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a .box, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box {
    width: auto;
    margin-top: 15px;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a .box .title, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .title {
    margin-top: 0px;
    font-size: 20px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a .box .info span, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .info span {
    font-size: 14px;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a .box .text, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text {
    justify-content: center;
    margin-top: 15px;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a .box .text .version, .download1_html .cate_box .left_box .img_text_template ul li .list_box .box .text .version {
    display: block;
  }
  .download1_html .cate_box .left_box .img_text_template ul li > a .download_btn, .download1_html .cate_box .left_box .img_text_template ul li .list_box .download_btn {
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
    transform: translateY(0px);
  }
  .download1_html .cate_box .left_box .sm_content {
    margin: 0 16px 20px;
  }
  .download1_html .cate_box .left_box .yl_box {
    padding: 0 20px;
  }
  .download1_html .cate_box .left_box .yl_box .card_template .swiper-slide {
    height: 200px;
  }
  .download1_html .cate_box .left_box .link_box {
    margin: 0 20px 30px;
  }
  .download1_html .cate_box .left_box .history_version {
    margin: 0 20px;
  }
  .download1_html .cate_box .left_box .xx_box ul li {
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
  }
  .download1_html .cate_box .left_box .xx_box ul li .title {
    font-size: 16px;
  }
  .download1_html .cate_box .left_box .article_img_template {
    margin: 0 16px 30px;
  }
  .download1_html .cate_box .left_box .show_more {
    margin: 20px 16px;
    font-size: 14px;
  }
  .download_colunm_html .img_text_template {
    padding: 0 20px;
  }
  .download_colunm_html .img_text_template ul li {
    margin-bottom: 0;
  }
  .download_colunm_html .img_text_template ul li > a img, .download_colunm_html .img_text_template ul li .list_box img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .download_colunm_html .img_text_template ul li > a .box .title, .download_colunm_html .img_text_template ul li .list_box .box .title {
    margin-top: 0;
    font-size: 16px;
  }
  .download_colunm_html .img_text_template ul li > a .box .info, .download_colunm_html .img_text_template ul li .list_box .box .info {
    margin-top: 0;
    font-size: 14px;
  }
  .download_colunm_html .img_text_template ul li > a .box .text, .download_colunm_html .img_text_template ul li .list_box .box .text {
    margin-top: 0;
  }
  .download_colunm_html .img_text_template ul li > a .box .text .score, .download_colunm_html .img_text_template ul li .list_box .box .text .score {
    font-size: 14px;
  }
  .download_colunm_html .img_text_template ul li > a .download_btn, .download_colunm_html .img_text_template ul li .list_box .download_btn {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    min-width: 48px;
  }
  .download_colunm_sort_html .img_text_template {
    padding: 0 20px;
  }
  .download_colunm_sort_html .img_text_template ul li {
    margin-bottom: 0;
  }
  .download_colunm_sort_html .img_text_template ul li > a img, .download_colunm_sort_html .img_text_template ul li .list_box img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .download_colunm_sort_html .img_text_template ul li > a .box .title, .download_colunm_sort_html .img_text_template ul li .list_box .box .title {
    margin-top: 0;
    font-size: 16px;
  }
  .download_colunm_sort_html .img_text_template ul li > a .box .info, .download_colunm_sort_html .img_text_template ul li .list_box .box .info {
    margin-top: 0;
    font-size: 14px;
  }
  .download_colunm_sort_html .img_text_template ul li > a .box .text, .download_colunm_sort_html .img_text_template ul li .list_box .box .text {
    margin-top: 0;
  }
  .download_colunm_sort_html .img_text_template ul li > a .box .text .score, .download_colunm_sort_html .img_text_template ul li .list_box .box .text .score {
    font-size: 14px;
  }
  .download_colunm_sort_html .img_text_template ul li > a .download_btn, .download_colunm_sort_html .img_text_template ul li .list_box .download_btn {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    min-width: 48px;
  }
  .download_version_html .cate_box .left_box .img_text_template ul li > a .box .type_info, .download_version_html .cate_box .left_box .img_text_template ul li .list_box .box .type_info {
    font-size: 16px;
  }
  .download_version_html .cate_box .left_box .img_text_template ul li > a .box .content, .download_version_html .cate_box .left_box .img_text_template ul li .list_box .box .content {
    font-size: 16px;
  }
}

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