<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: 70px;
  --tooltop: calc(var(--headheight) + 20);
  --layout-padding: 100px;
  --layout-width: calc(100% - var(--layout-padding));
  --fz12: 12px;
  --fz14: 14px;
  --fz16: 16px;
  --fz18: 18px;
  --fz20: 20px;
  --fz22: 22px;
  --fz24: 24px;
  --fz26: 26px;
  --fz28: 28px;
  --fz30: 30px;
  --fz32: 32px;
  --title-fz: 24px;
  --fz18_2: calc(var(--fz18)*2);
  --card8-hegiht: 288px;
  --card4-hegiht: 184px;
  --spacing: 20px;
  --card4: 4;
  --space-w4: calc((100% - var(--spacing) * (var(--card4) - 1)) / var(--card4));
  --card8: 4;
  --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  --w2: 100%;
  --w2-external: block;
  --w3: calc(100% / 2 );
  --w4: calc(100% / 4 );
  --w-left: calc(100% / 3);
  --w6: calc(100% / 6 );
  --w9: calc(100% / 9 );
  --w11: calc(100% / 11 );
  --app-left-w: 360px;
}

.w12_box {
  width: var(--layout-width);
  max-width: 2000px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.common_box {
  margin: 50px 30px 0;
}

@media (min-width: 961px) {
  :root {
    --w2-external: flex;
    --w6: calc(100% / 4 - 10px );
    --w9: calc(100% / 7 );
    --w11: calc(100% / 9 );
    --card8: 4;
    --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  }
}
@media (min-width: 1300px) {
  :root {
    --card8-hegiht: 318px;
    --card4-hegiht: 204px;
    --w2: calc(100% / 2 );
    --w3: calc(100% / 3 );
    --w-left: calc(100% / 3);
    --w6: calc(100% / 6 );
    --w9: calc(100% / 9 );
    --w11: calc(100% / 11 );
    --app-left-w: 300px;
    --card8: 5;
    --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  }
}
@media (min-width: 1500px) {
  :root {
    --w4: calc(100% / 5 );
    --w-left: calc(100% / 4);
    --card8-hegiht: 348px;
    --card4-hegiht: 224px;
    --app-left-w: 360px;
    --card8: 6;
    --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  }
}
@media (min-width: 2000px) {
  :root {
    --w4: calc(100% / 5 );
    --w-left: calc(100% / 4);
    --card8-hegiht: 378px;
    --card4-hegiht: 244px;
    --app-left-w: 420px;
    --card8: 8;
    --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  }
}
@media (min-width: 2200px) {
  :root {
    --w4: calc(100% / 5 );
    --w-left: calc(100% / 4);
    --card8-hegiht: 408px;
    --card4-hegiht: 264px;
  }
}
@media (max-width: 1200px) {
  :root {
    --w-left: calc(100% / 3);
  }
  .detail_html .common_box .theme_box {
    display: block !important;
    text-align: center;
  }
  .detail_html .common_box .sticky_box {
    width: 100% !important;
  }
  .detail_html .common_box .detail_content {
    display: block !important;
  }
  .detail_html .common_box .detail_content .left_box, .detail_html .common_box .detail_content .right_box {
    width: 100% !important;
  }
}
@media (min-width: 961px) {
  .header_template .w12_box .left_box .nav_menu_item .item:hover {
    background-color: #3e4142 !important;
  }
  .header_template .w12_box .left_box .nav_menu_item .item:hover &gt; a, .header_template .w12_box .left_box .nav_menu_item .item:hover &gt; span {
    cursor: pointer !important;
    overflow: inherit !important;
    color: #60cdff !important;
  }
  .header_template .w12_box .left_box .nav_menu_item .item:hover .drop_menu_arrow_icon:after {
    border-left: 2px solid #60cdff !important;
    border-bottom: 2px solid #60cdff !important;
    top: 6px;
    transform: translateY(-50%) rotate(135deg) !important;
  }
  .header_template .w12_box .left_box .nav_menu_item .item:hover .drop_menu_cate {
    opacity: 1 !important;
    z-index: 99 !important;
    transform: rotateX(0) !important;
  }
}
@media (max-width: 960px) {
  :root {
    --w3: 100%;
    --w4: calc(100% / 2 );
    --w-left: calc(100% / 2);
    --w6: calc(100% / 3 - 10px );
    --w9: calc(100% / 4 );
    --w11: calc(100% / 5 );
    --app-left-w: 300px;
    --card8: 3;
    --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  }
  .header_template {
    padding: 0;
  }
  .header_template .w12_box .left_box .nav_menu_item {
    position: fixed;
    top: 0;
    right: -220px;
    bottom: 0;
    display: block;
    width: 200px;
    z-index: 1001;
    transition: all 0.5s;
    padding-top: 30px;
    background-color: #3e4142;
  }
  .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 {
    padding: 0 10px;
    text-align: center;
  }
  .header_template .w12_box .left_box .nav_menu_item .item &gt; span, .header_template .w12_box .left_box .nav_menu_item .item &gt; a {
    display: block;
    line-height: 50px;
    color: #fff;
  }
  .header_template .w12_box .left_box .nav_menu_item .item.active .drop_menu_arrow_icon:after {
    border-left: 2px solid #60cdff !important;
    border-bottom: 2px solid #60cdff !important;
    top: 8px;
    transform: translateY(-50%) rotate(135deg) !important;
  }
  .header_template .w12_box .left_box .nav_menu_item .item.active .drop_menu_cate {
    position: relative;
    display: block;
  }
  .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 .mobile_search, .header_template .w12_box .mobile_menu_icon {
    display: block;
  }
  .header_template .w12_box .input_search {
    display: none;
    width: 100%;
	height: var(--headheight);
    position: absolute;
    left: 0;
    top: 0;
	right: 0;
    z-index: 99;
	background-color: #000;
  }
   .header_template .w12_box .input_search  form{
	   border-color: #60cdff;
	   margin-top: 20px;
	   margin-left: 0;
	   margin-right: 70px;
	   overflow: initial;
   }
  .header_template .w12_box .input_search .cancel_btn {
    position: relative;
    z-index: 100;
    display: block;
    color: #60cdff;
    font-weight: 500;
    font-size: var(--fz16);
    float: right;
    margin-right: -60px;
    margin-top: 5px;
  }
  .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;
  }
  .header_template .w12_box .language_select_box .text {
    height: auto;
    line-height: normal;
    padding: 0 10px;
  }
  .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: 140px;
    position: fixed;
    top: 0;
    left: auto;
    right: -160px;
    bottom: 0;
    z-index: 1001;
    transform: rotateX(0deg);
    transform-origin: initial;
    transition: all 0.5s;
  }
  .header_template .w12_box .language_select_box .drop_menu_box a {
    width: 100% !important;
  }
  .common_bg_template.active {
    display: block !important;
  }
}
@media (max-width: 680px) {
  :root {
    --layout-padding: 20px;
    --layout-width: calc(100% - var(--layout-padding));
    --w4: 100%;
    --w-left: 100%;
    --w6: calc(100% / 2 - 10px );
    --w9: calc(100% / 3 );
    --w11: calc(100% / 3 );
    --app-left-w: 90%;
    --card8: 2;
    --space-w8: calc((100% - var(--spacing) * (var(--card8) - 1)) / var(--card8));
  }
  .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;
  }
  .index_html .zjbb_box {
    padding: 10px 0 !important;
  }
  .index_html .zjbb_box .common_box li {
    padding: 0 !important;
  }
  .game_html .rmmf_box {
    padding: 0 !important;
  }
  .game_html .rmmf_box .common_box {
    padding: 10px 0 0 !important;
  }
  .game_html .rmmf_box .common_box .title_template {
    margin: 0 10px !important;
  }
  .game_html .rmmf_box .common_box .content {
    padding: 20px 0 0 !important;
  }
  .game_html .rmmf_box .common_box .content:before {
    left: 15px !important;
    right: 0 !important;
  }
  .game_html .rmmf_box .common_box .content li {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
  }
  .game_html .rmmf_box .common_box .content li &gt; a {
    padding: 10px !important;
  }
  .common_box {
    margin: 30px 0 0 !important;
  }
  .text_overflow_4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3 !important;
    overflow: hidden;
  }
  .app_left {
    margin-top: 60px;
  }
  .app_left .banner_template .swiper_banner {
    display: none;
  }
  .tool_html .tool_content .left_box {
    z-index: 99;
    top: var(--headheight) !important;
    left: 0;
    right: 0;
    display: flex;
    width: 100% !important;
    overflow-y: inherit !important;
    height: auto !important;
  }
  .tool_html .tool_content .left_box dl {
    white-space: nowrap;
    overflow: scroll;
    padding: 10px;
  }
  .tool_html .tool_content .left_box dl::-webkit-scrollbar {
    height: 0;
  }
  .tool_html .tool_content .left_box dl dt {
    display: none;
  }
  .tool_html .tool_content .left_box dl dd {
    margin-top: 0 !important;
    display: inline-block;
  }
  .tool_html .tool_content .left_box dl dd a {
    padding: 0 15px !important;
  }
  .tool_html .tool_content .right_box {
    margin-left: 0 !important;
  }
  .tool_html .tool_content .right_box .switch_box .switch_list {
    margin-bottom: 10px;
  }
  .category_html .card_template {
    margin: 80px auto 0 !important;
  }
  .zdyw_html .card_bg_box .text {
    bottom: 36% !important;
    width: 80% !important;
    text-align: center;
  }
  .tjyx_template {
    padding: 0 !important;
  }
  .tjyx_template .common_box {
    padding: 10px 0 0 !important;
  }
  .tjyx_template .common_box .title_template {
    margin: 0 10px !important;
  }
  .tjyx_template .common_box .content {
    padding: 20px 0 0 !important;
  }
  .tjyx_template .common_box .content:before {
    left: 15px !important;
    right: 0 !important;
  }
  .tjyx_template .common_box .content li {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
  }
  .tjyx_template .common_box .content li &gt; a {
    padding: 10px !important;
  }
  .zx_template {
    padding: 0 !important;
  }
  .article_html .article_box .xgnr_box {
    padding: 0 0 20px !important;
  }
  .article_html .article_box .xgnr_box a .box .title {
    margin: 4px 0 !important;
    font-size: var(--fz18) !important;
  }
  .sc_template .card_template .swiper-slide.swiper-slide-active a img {
    transition: all 0.5s ease;
    filter: blur(5px);
  }
  .sc_template .card_template .swiper-slide.swiper-slide-active a .desc .title {
    transform: translateY(0px);
  }
  .sc_template .card_template .swiper-slide.swiper-slide-active a .desc .info {
    opacity: 1;
    transform: scaleY(1) translateY(0px);
    transform-origin: bottom;
  }
  .footer_template .w12_box .common_box {
    padding: 0 40px;
  }
}
@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.4rem;
    --w9: calc(100% / 2 );
    --w11: calc(100% / 2 );
    --space-w8: calc(94% / 2 );
  }
  .w12_box {
    max-width: 7.5rem;
    min-width: 320px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
  }
  .index_html .zjbb_box .title_template {
    display: block;
  }
  .index_html .zjbb_box .title_template .switch_box {
    margin-top: 20px;
    justify-content: center;
  }
  .index_html .zjbb_box .title_template .switch_box .switch_list {
    font-size: var(--fz14);
  }
}
/**
*    @description: 重置样式;
*    @create date: 2023-2-23;
*/
body {
  font-size: var(--fz14);
  font-family: "微软雅黑";
  margin: 0 auto;
  background-color: #101010;
}
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 #60cdff;
  border-bottom: 2px solid #60cdff;
  transform: translate(0, -50%) rotate(-135deg);
}

.header_template {
  height: var(--headheight);
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #000;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.15);
}
.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: 120px;
  height: 36px;
  margin-right: 10px;
}
.header_template .left_box .logo .right img {
  width: 54px;
  height: 36px;
}
.header_template .left_box .nav_menu_item {
  margin-left: 20px;
  display: flex;
  flex: 0 0 auto;
}
.header_template .left_box .nav_menu_item .item {
  position: relative;
  padding: 0 25px;
}
.header_template .left_box .nav_menu_item .item &gt; a, .header_template .left_box .nav_menu_item .item &gt; span {
  position: relative;
  color: #8e8e9a;
  font-size: var(--fz16);
  display: inline-block;
  line-height: 70px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}
.header_template .left_box .nav_menu_item .item.active {
  overflow: inherit;
}
.header_template .left_box .nav_menu_item .item.active &gt; a {
  color: #60cdff;
  font-weight: bold;
  border-bottom: 2px solid #60cdff;
}
.header_template .left_box .nav_menu_item .item .drop_menu_cate {
  position: absolute;
  left: 0%;
  top: 70px;
  right: -300%;
  padding-bottom: 10px;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: all 0.5s;
  display: flex;
  flex-wrap: wrap;
  background-color: #3e4142;
}
.header_template .left_box .nav_menu_item .item .drop_menu_cate a {
	flex: 0 0 33%;
  display: block;
  color: #fff;
  font-size: var(--fz14);
  line-height: 24px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
.header_template .left_box .nav_menu_item .item .drop_menu_cate a:hover {
  color: #60cdff;
}
.header_template .right_box {
  display: flex;
}
.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(/newapp/images/search.png) no-repeat center center;
  background-size: 100%;
}
.header_template .input_search {
  flex: 1;
  z-index: 1;
}
.header_template .input_search&gt;form{
	position: relative;
	height: 30px;
	margin: 0 30px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #43434B;
	background: #1A1A1D;
	overflow: hidden;
}
.header_template .input_search input {
  display: inline-block;
  font-size: var(--fz14);
  width: 90%;
  height: 30px;
  line-height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 40px;
  color: #ccc;
}
.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(/newapp/images/search.png) 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 .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(/newapp/images/menu_icon.png) no-repeat center center;
  background-size: 100%;
}

.footer_template {
  margin-top: 70px;
  padding-bottom: 40px;
  background-color: #1C1C1C;
}
.footer_template.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer_template .w12_box .common_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer_template .w12_box .common_box dl {
  width: var(--w-left);
  margin-top: 30px;
  text-align: center;
}
.footer_template .w12_box .common_box dl dt {
  font-size: var(--fz20);
  color: #fff;
  font-weight: bold;
}
.footer_template .w12_box .common_box dl dd {
  margin-top: 15px;
}
.footer_template .w12_box .common_box dl dd a {
  color: #8e8e9a;
  font-size: var(--fz16);
}
.footer_template .w12_box .common_box dl dd a:hover {
  text-decoration: underline;
}
.footer_template .w12_box .common_box .info {
  color: #8e8e9a;
  font-size: var(--fz16);
  text-align: center;
}
.footer_template .w12_box .common_box .info a {
  display: inline-block;
  color: #fff;
  font-size: var(--fz16);
  padding: 0 5px;
}
.footer_template .w12_box .common_box .info a:hover {
  text-decoration: underline;
}

.title_template {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  overflow: hidden;
}
.title_template &gt; a {
  display: inline-block;
  padding: 0 40px 0 0px;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.title_template &gt; a:hover {
  background-color: #2D2C33;
}
.title_template &gt; a:hover .title {
  color: #60cdff;
  transform: translateX(20px);
}
.title_template .title {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  font-size: var(--title-fz);
  font-weight: bold;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
}
.title_template .title.arrow:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background: url(/newapp/images/title_arrow.png) no-repeat center center;
  background-size: contain;
}

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

.banner_template {
  position: relative;
}
.banner_template .swiper-button-next {
  display: none;
  width: 40px;
  height: 55px;
  border-radius: 40px/55px;
  background-image: url(/newapp/images/banner_r_icon.png);
  background-size: 60%;
  background-color: #444;
  border: 1px solid #666;
  right: -20px;
  pointer-events: auto;
}
.banner_template .swiper-button-next:hover {
  background-image: url(/newapp/images/banner_r_icon@.png);
  background-size: 60%;
  background-color: #333;
}
.banner_template .swiper-button-prev {
  display: none;
  width: 40px;
  height: 55px;
  border-radius: 40px/55px;
  background-image: url(/newapp/images/banner_l_icon.png);
  background-size: 60%;
  background-color: #444;
  border: 1px solid #666;
  left: -20px;
  pointer-events: auto;
}
.banner_template .swiper-button-prev:hover {
  background-image: url(/newapp/images/banner_l_icon@.png);
  background-size: 60%;
  background-color: #333;
}
.banner_template:hover .swiper-button-prev, .banner_template:hover .swiper-button-next {
  display: block;
  z-index: 90;
}

.card_template {
  display: flex;
}
.card_template .swiper-slide, .card_template .card_list {
  height: var(--card8-hegiht);
  padding-top: 10px;
  transition: all 0.3s ease;
}
.card_template .swiper-slide:hover, .card_template .card_list:hover {
  transform: translateY(-5px);
}
.card_template .swiper-slide:hover .img_app, .card_template .card_list:hover .img_app {
  opacity: 1;
}
.card_template .swiper-slide a, .card_template .card_list a {
  position: relative;
  display: block;
  height: 100%;
  background-color: #1C1C1C;
  border-radius: 10px;
  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;
  height: auto;
  border-radius: 25px;
  mask-image: none;
}
.card_template .swiper-slide a .desc, .card_template .card_list a .desc {
  padding: 20px;
}
.card_template .swiper-slide a .desc .title, .card_template .card_list a .desc .title {
  color: #fff;
  font-size: var(--fz16);
  line-height: var(--fz18);
  height: var(--fz18_2);
  font-weight: bold;
  text-align: center;
}
.card_template .swiper-slide a .desc .text, .card_template .card_list a .desc .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
  overflow: hidden;
}
.card_template .swiper-slide a .desc .text em, .card_template .card_list a .desc .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.card_template .swiper-slide a .desc .text .download, .card_template .card_list a .desc .text .download {
  float: right;
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz12);
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  padding: 0 3px;
  background-color: #000;
}
.card_template .swiper-slide a .desc .price_item, .card_template .card_list a .desc .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.card_template .swiper-slide a .desc .price_item span, .card_template .card_list a .desc .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.card_template .swiper-slide a .desc .price_item .preferential, .card_template .card_list a .desc .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.card_template .swiper-slide a .desc .price_item .line, .card_template .card_list a .desc .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.card_template .swiper-slide a .desc .price_item .price, .card_template .card_list a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.card_template .swiper-slide a .desc .price_item, .card_template .card_list a .desc .price_item {
  border-radius: 5px;
}
.card_template .swiper-slide a .desc .price_item .preferential, .card_template .card_list a .desc .price_item .preferential {
  border-radius: 5px 0 0 5px;
}
.card_template .swiper-slide a .desc .download_row, .card_template .card_list a .desc .download_row {
  text-align: center;
  color: #fff;
  font-size: var(--fz14);
  border-radius: 5px;
  height: 28px;
  line-height: 28px;
  margin-top: 5px;
  background-color: #000;
}

.index_banner_template {
  height: 460px;
  margin-top: 50px;
  border-radius: 10px;
}
.index_banner_template .swiper-wrapper {
  height: 410px;
}
.index_banner_template .swiper-wrapper .swiper-slide.swiper-slide-active a &gt; img {
  transform: scale(1);
}
.index_banner_template .swiper-wrapper .swiper-slide a {
  display: block;
  position: relative;
  height: 100%;
}
.index_banner_template .swiper-wrapper .swiper-slide a &gt; img {
  transform: scale(0.9);
  transition: all 0.3s ease;
  border-radius: 10px;
}
.index_banner_template .swiper-wrapper .swiper-slide a .info {
  position: absolute;
  width: 50%;
  bottom: 35%;
  left: 50px;
  margin-top: 10px;
  color: #fff;
  font-size: var(--fz20);
  font-weight: bold;
  opacity: 0;
  transform: scaleY(0) translateY(30px);
  transition: all 0.4s ease-out;
}
.index_banner_template .swiper-wrapper .swiper-slide a .btn_item {
  content: "";
  display: inline-block;
  font-size: var(--fz16);
  position: absolute;
  bottom: 20%;
  left: 50px;
  padding: 0 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  filter: drop-shadow(rgba(255, 255, 255, 0.8) 0px 0px 6px);
}
.index_banner_template .swiper-wrapper .swiper-slide a .btn_item:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  width: 18px;
  height: 18px;
  background: url(/newapp/images/arrow_icon.png) no-repeat center center;
  background-size: contain;
}
.index_banner_template .swiper-pagination {
  display: block;
  bottom: 0;
}
.index_banner_template .swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  opacity: 1;
  background-color: #565660;
}
.index_banner_template .swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
}

@media (max-width: 680px) {
  .index_banner_template .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 100% !important;
  }
}
.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: 10px;
  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: var(--fz24);
  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: var(--fz14);
  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: var(--fz22);
  padding: 10px;
  left: 50%;
  top: -110%;
  font-size: var(--fz16);
  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;
}

.index_html .zjbb_box {
  padding: 30px;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.index_html .zjbb_box .title_template {
  margin: 0 40px;
}
.index_html .zjbb_box .title_template .switch_box {
  display: flex;
}
.index_html .zjbb_box .title_template .switch_box .switch_list {
  display: inline-block;
  font-size: var(--fz16);
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  margin-left: 20px;
  color: #fff;
  background-color: #292929;
  border-radius: 20px;
  cursor: pointer;
}
.index_html .zjbb_box .title_template .switch_box .switch_list.active, .index_html .zjbb_box .title_template .switch_box .switch_list:hover {
  color: #000;
  background-color: #60cdff;
}
.index_html .zjbb_box .content {
  margin: 20px 0 0;
  padding: 30px 0 0;
  position: relative;
}
.index_html .zjbb_box .content:before {
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  background-color: #292929;
}
.index_html .zjbb_box .content .content_list {
  display: none;
  margin: 0 20px;
  overflow: hidden;
}
.index_html .zjbb_box .content .content_list.active {
  display: block;
}
.index_html .zjbb_box .content .content_list li {
  float: left;
  width: var(--w3);
  padding: 0 20px 0 10px;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.index_html .zjbb_box .content .content_list li:hover a {
  border-radius: 10px;
  background-color: #2D2C33;
}
.index_html .zjbb_box .content .content_list li:hover a .info .download {
  padding: 2px 10px !important;
  background-color: #000;
}
.index_html .zjbb_box .content .content_list li:nth-child(1) a .num {
  left: 22px;
}
.index_html .zjbb_box .content .content_list li a {
  display: flex;
  align-content: center;
  padding: 10px 0 10px 15px;
}
.index_html .zjbb_box .content .content_list li a .num {
  position: relative;
  z-index: 0;
  width: 52px;
  left: 14px;
  color: #294A78;
  font-size: 94px;
  font-weight: bold;
  line-height: 108px;
  flex-shrink: 0;
}
.index_html .zjbb_box .content .content_list li a img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 10px;
}
.index_html .zjbb_box .content .content_list li a .info {
  margin-left: 15px;
  width: 220px;
}
.index_html .zjbb_box .content .content_list li a .info .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.index_html .zjbb_box .content .content_list li a .info .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0 0;
}
.index_html .zjbb_box .content .content_list li a .info .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.index_html .zjbb_box .content .content_list li a .info .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  padding: 2px 0;
  transition: 0.5s all ease;
}
.index_html .zjbb_box .content .content_list li a .info .price_item span {
  font-size: var(--fz14);
}
.index_html .zjbb_box .content .content_list li a .info .price_item .bg {
  display: inline-block;
  width: 56px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 12px 0 0 12px;
  color: #666;
  background-color: #FCE101;
}
.index_html .zjbb_box .content .content_list li a .info .price_item .line {
  color: #CECECE;
  text-decoration-line: line-through;
  text-decoration-color: #CECECE;
  text-decoration-style: solid;
}
.index_html .zjbb_box .content .content_list li a .info .price_item .price {
  color: #fff;
}
.row2_template .swiper_banner .swiper-slide {
  padding-top: 5px;
}
.row2_template .swiper_banner .swiper-slide a {
  display: flex;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  justify-content: start;
  transition: all 0.3s ease;
  opacity: 0.8;
  background-color: #242428;
}
.row2_template .swiper_banner .swiper-slide a:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.row2_template .swiper_banner .swiper-slide a img {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 10px;
}
.row2_template .swiper_banner .swiper-slide a .box {
  max-width: calc(100% - 190px);
  margin-left: 20px;
}
.row2_template .swiper_banner .swiper-slide a .box .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.row2_template .swiper_banner .swiper-slide a .box .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
}
.row2_template .swiper_banner .swiper-slide a .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.row2_template .swiper_banner .swiper-slide a .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  background-color: #000;
}
.index_html .scl_box .card_template .swiper-slide {
  height: 234px;
}
.index_html .scl_box .card_template .swiper-slide a .bg_template {
  height: 128px;
}
.index_html .scl_box .card_template .swiper-slide a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.index_html .scl_box .card_template .swiper-slide a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.index_html .scl_box .card_template .swiper-slide a .desc .text .download {
  float: right;
}
.index_html .cyyy_box .swiper-slide {
  height: 200px;
  border: 1px solid #1A1A1D;
}
.index_html .cyyy_box .swiper-slide:hover {
  background-color: #1C1C1C;
}
.index_html .cyyy_box .swiper-slide:hover a {
  transform: translateY(-3px);
}
.index_html .cyyy_box .swiper-slide a {
  display: flex;
  padding: 10px;
  transition: all 0.3s ease;
}
.index_html .cyyy_box .swiper-slide a .left {
  position: relative;
  width: 116px;
  height: 178px;
}
.index_html .cyyy_box .swiper-slide a .left .bg_template {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
}
.index_html .cyyy_box .swiper-slide a .left .bg_template .bg_blur {
  --filter-params: blur(25px) saturate(4) contrast(90%);
  filter: var(--filter-params);
}
.index_html .cyyy_box .swiper-slide a .left .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  border-radius: 10px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}
.index_html .cyyy_box .swiper-slide a .desc {
  flex: 1;
  margin-left: 20px;
}
.index_html .cyyy_box .swiper-slide a .desc .title {
  color: #CECECE;
  font-size: var(--fz24);
  line-height: var(--fz24);
}
.index_html .cyyy_box .swiper-slide a .desc .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
}
.index_html .cyyy_box .swiper-slide a .desc .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.index_html .cyyy_box .swiper-slide a .desc .info {
  color: #CECECE;
  font-size: var(--fz14);
  margin-top: 15px;
}
.index_html .dnyx_box .card_template .swiper-slide a .desc {
  position: absolute;
  height: 62px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.index_html .dnyx_box .card_template .swiper-slide a .desc .download {
  background-color: rgba(0, 0, 0, 0.8);
}
.index_html .zjyx_box .card_template .swiper-slide a .desc {
  position: absolute;
  height: 82px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.index_html .zjyx_box .card_template .swiper-slide a .desc .price_item {
  margin-top: 10px;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
}
.index_html .zjyx_box .card_template .swiper-slide a .desc .price_item span {
  font-size: var(--fz14);
}
.index_html .zjyx_box .card_template .swiper-slide a .desc .price_item .preferential {
  display: block;
  width: 100%;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  color: #666;
  background-color: #FCE101;
}
.index_html .zjyx_box .card_template .swiper-slide a .desc .price_item .line {
  font-size: var(--fz12);
  color: #fff;
  text-decoration-line: line-through;
  text-decoration-color: #fff;
  text-decoration-style: solid;
}
.index_html .zjyx_box .card_template .swiper-slide a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.index_html .zxsc_box .card_template .swiper-slide {
  height: 234px;
}
.index_html .zxsc_box .card_template .swiper-slide a .bg_template {
  height: 128px;
}
.index_html .zxsc_box .card_template .swiper-slide a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .text .download {
  float: right;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item {
  border-radius: 5px;
}
.index_html .zxsc_box .card_template .swiper-slide a .desc .price_item .preferential {
  border-radius: 5px 0 0 5px;
}
.index_html .zxxx_box .card_template .swiper-slide a .img_app {
  position: relative;
  z-index: 0;
  height: 100%;
  object-fit: cover;
}
.index_html .zxxx_box .card_template .swiper-slide a .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #242428;
}
.index_html .zxxx_box .card_template .swiper-slide a .desc .text {
  height: 40px;
}

.apps_html .rmmf_box .swiper_banner .swiper-slide, .apps_html .rmyy_box .swiper_banner .swiper-slide {
  padding-top: 5px;
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a, .apps_html .rmyy_box .swiper_banner .swiper-slide a {
  display: flex;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  justify-content: start;
  transition: all 0.3s ease;
  opacity: 0.8;
  background-color: #242428;
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a:hover, .apps_html .rmyy_box .swiper_banner .swiper-slide a:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a img, .apps_html .rmyy_box .swiper_banner .swiper-slide a img {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 10px;
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a .box, .apps_html .rmyy_box .swiper_banner .swiper-slide a .box {
  max-width: calc(100% - 90px);
  margin-left: 20px;
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a .box .title, .apps_html .rmyy_box .swiper_banner .swiper-slide a .box .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a .box .text, .apps_html .rmyy_box .swiper_banner .swiper-slide a .box .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a .box .text em, .apps_html .rmyy_box .swiper_banner .swiper-slide a .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.apps_html .rmmf_box .swiper_banner .swiper-slide a .download, .apps_html .rmyy_box .swiper_banner .swiper-slide a .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  background-color: #000;
}
.apps_html .zxsc_box .card_template .swiper-slide a .desc {
    position: absolute;
    height: 62px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.apps_html .app_banner_8 .card_template .swiper-slide {
  height: 234px;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .bg_template {
  height: 128px;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .text .download {
  float: right;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item {
  border-radius: 5px;
}
.apps_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .preferential {
  border-radius: 5px 0 0 5px;
}
.apps_html .app_left {
  margin-top: 60px;
}
.apps_html .app_left .banner_template {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  padding: 40px 50px;
  background-image: linear-gradient(to right, rgb(36, 58, 94), transparent), linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/newapp/images/apps_bg.jpeg);
  background-size: cover;
}
.apps_html .app_left .banner_template .left_theme {
  width: var(--app-left-w);
}
.apps_html .app_left .banner_template .left_theme h3 {
  color: #fff;
  font-size: var(--fz28);
  font-weight: bold;
  margin-top: 50px;
}
.apps_html .app_left .banner_template .left_theme p {
  color: #fff;
  font-size: var(--fz18);
  margin: 30px 0;
}
.apps_html .app_left .banner_template .left_theme a {
  color: #fff;
  font-size: var(--fz20);
  padding: 10px 25px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
}
.apps_html .app_left .banner_template .left_theme a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.apps_html .app_left .banner_template .swiper_banner {
  flex: 1;
}
.apps_html .tsyh_box .card_template .swiper-slide {
  height: 320px;
}
.apps_html .tsyh_box .card_template .swiper-slide a {
  padding: 25px 15px;
}
.apps_html .tsyh_box .card_template .swiper-slide a .bg_template {
  height: 178px;
}
.apps_html .tsyh_box .card_template .swiper-slide a .img_app {
  width: 130px;
  height: 130px;
  top: 45px;
}
.apps_html .tsyh_box .card_template .swiper-slide a .desc .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.apps_html .tsyh_box .card_template .swiper-slide a .desc .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.apps_html .tsyh_box .card_template .swiper-slide a .desc .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.apps_html .tsyh_box .card_template .swiper-slide a .desc .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.apps_html .tsyh_box .card_template .swiper-slide a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}

.game_html .rmmf_box {
  display: var(--w2-external);
  gap: 15px;
  padding: 0 30px;
}
.game_html .rmmf_box .common_box {
  padding: 30px;
  margin: 60px 0 0;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.game_html .rmmf_box .common_box .title_template {
  margin: 0 40px;
}
.game_html .rmmf_box .common_box .title_template .switch_box {
  display: flex;
}
.game_html .rmmf_box .common_box .title_template .switch_box .switch_list {
  display: inline-block;
  font-size: var(--fz16);
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  margin-left: 20px;
  color: #fff;
  background-color: #292929;
  border-radius: 20px;
  cursor: pointer;
}
.game_html .rmmf_box .common_box .title_template .switch_box .switch_list.active, .game_html .rmmf_box .common_box .title_template .switch_box .switch_list:hover {
  color: #000;
  background-color: #60cdff;
}
.game_html .rmmf_box .common_box .content {
  margin: 20px 0 0;
  padding: 30px 20px 0;
  position: relative;
  overflow: hidden;
}
.game_html .rmmf_box .common_box .content:before {
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  background-color: #292929;
}
.game_html .rmmf_box .common_box .content li {
  float: left;
  width: var(--w2);
  padding: 0 10px 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.game_html .rmmf_box .common_box .content li:hover a {
  border-radius: 10px;
  background-color: #2D2C33;
}
.game_html .rmmf_box .common_box .content li:hover a .info .download {
  padding: 2px 10px;
  background-color: #000;
}
.game_html .rmmf_box .common_box .content li:nth-child(1) a .num {
  left: 22px;
}
.game_html .rmmf_box .common_box .content li a {
  display: flex;
  align-content: center;
  padding: 20px 0 20px 15px;
  overflow: hidden;
}
.game_html .rmmf_box .common_box .content li a img {
  position: relative;
  z-index: 1;
  width: 95px;
  height: 95px;
  border-radius: 10px;
  flex-shrink: 0;
}
.game_html .rmmf_box .common_box .content li a .info {
  margin-left: 15px;
  width: 220px;
}
.game_html .rmmf_box .common_box .content li a .info .title {
  color: #fff;
  font-size: var(--fz18);
  line-height: var(--fz18);
}
.game_html .rmmf_box .common_box .content li a .info .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0 0;
}
.game_html .rmmf_box .common_box .content li a .info .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.game_html .rmmf_box .common_box .content li a .info .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  padding: 2px 0;
  transition: all 0.5s ease;
}
.game_html .rmmf_box .common_box .content li a .info .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.game_html .rmmf_box .common_box .content li a .info .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.game_html .rmmf_box .common_box .content li a .info .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.game_html .rmmf_box .common_box .content li a .info .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.game_html .rmmf_box .common_box .content li a .info .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.game_html .rmmf_box .common_box .content li a .info .price_item {
  margin-top: 0;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc {
  position: absolute;
  height: 62px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .download {
  background-color: rgba(0, 0, 0, 0.8);
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item {
  border-radius: 5px;
}
.game_html .app_banner_8 .card_template .swiper-slide a .desc .price_item .preferential {
  border-radius: 5px 0 0 5px;
}
.game_html .jzsj_box .swiper_banner .swiper-slide {
  padding-top: 5px;
}
.game_html .jzsj_box .swiper_banner .swiper-slide a {
  display: flex;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  justify-content: start;
  transition: all 0.3s ease;
  opacity: 0.8;
  background-color: #242428;
}
.game_html .jzsj_box .swiper_banner .swiper-slide a:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.game_html .jzsj_box .swiper_banner .swiper-slide a img {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 10px;
}
.game_html .jzsj_box .swiper_banner .swiper-slide a .box {
  max-width: calc(100% - 90px);
  margin-left: 20px;
}
.game_html .jzsj_box .swiper_banner .swiper-slide a .box .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.game_html .jzsj_box .swiper_banner .swiper-slide a .box .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
}
.game_html .jzsj_box .swiper_banner .swiper-slide a .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.game_html .jzsj_box .swiper_banner .swiper-slide a .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  background-color: #000;
}
.game_html .tsyh_box .card_template .swiper-slide {
  height: 290px;
}
.game_html .tsyh_box .card_template .swiper-slide a {
  padding: 25px;
}
.game_html .tsyh_box .card_template .swiper-slide a .img_app {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}
.game_html .tsyh_box .card_template .swiper-slide a .desc .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.game_html .tsyh_box .card_template .swiper-slide a .desc .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.game_html .tsyh_box .card_template .swiper-slide a .desc .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.game_html .tsyh_box .card_template .swiper-slide a .desc .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.game_html .tsyh_box .card_template .swiper-slide a .desc .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.game_html .jsyx_box .card_template .swiper-slide a .img_app {
  position: relative;
  z-index: 0;
  height: 100%;
  object-fit: cover;
}
.game_html .jsyx_box .card_template .swiper-slide a .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #242428;
}
.game_html .jsyx_box .card_template .swiper-slide a .desc .text {
  height: 40px;
}

.tool_html .tool_content {
  position: relative;
}
.tool_html .tool_content .left_box {
  position: fixed;
  top: var(--tooltop);
  width: 190px;
  z-index: 99;
  height: calc((100% - 70px) / 2);
  overflow-y: scroll;
  background-color: #1C1C1C;
  /* 定制滚动条滑块样式 */
}
.tool_html .tool_content .left_box::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}
.tool_html .tool_content .left_box::-webkit-scrollbar-track {
  background-color: #202020;
}
.tool_html .tool_content .left_box::-webkit-scrollbar-thumb {
  background-color: #505050;
}
.tool_html .tool_content .left_box dl {
  padding-bottom: 20px;
}
.tool_html .tool_content .left_box dl dt {
  position: absolute;
  top: 22px;
  left: 10px;
  transition: top 0.5s ease;
}
.tool_html .tool_content .left_box dl dt span {
  display: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.tool_html .tool_content .left_box dl dt span:before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: #60cdff;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}
.tool_html .tool_content .left_box dl dd {
  margin-top: 10px;
  text-align: center;
}
.tool_html .tool_content .left_box dl dd.active a {
  font-weight: bold;
  color: #60cdff;
}
.tool_html .tool_content .left_box dl dd.active a:hover {
  background-color: transparent;
}
.tool_html .tool_content .left_box dl dd a {
  display: inline-block;
  color: #fff;
  line-height: 20px;
  padding: 10px 8px;
  transition: 0.1s;
  font-size: 15px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  word-break: break-all;
}
.tool_html .tool_content .left_box dl dd a:hover {
  background-color: #60cdff;
}
.tool_html .tool_content .right_box {
  margin-left: 210px;
}
.tool_html .tool_content .right_box .card_box {
  padding: 20px 20px 40px;
  margin-top: 25px;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.tool_html .tool_content .right_box .card_box .title_item {
  padding-bottom: 20px;
  border-bottom: 2px solid #2D2C33;
}
.tool_html .tool_content .right_box .card_box .title_item .menu_icon {
  display: inline;
}
.tool_html .tool_content .right_box .card_box .title_item .menu_icon i {
  position: relative;
  top: 1px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url(/newapp/images/tool_menu.png) no-repeat center center;
  background-size: contain;
}
.tool_html .tool_content .right_box .card_box .title_item h3 {
  display: inline;
  font-size: var(--fz18);
  color: #fff;
}
.tool_html .tool_content .right_box .card_box .title_item .switch_box {
  display: inline;
}
.tool_html .tool_content .right_box .card_box .title_item .switch_box .switch_list {
  cursor: pointer;
  display: inline-block;
  padding: 2px 5px;
  color: #fff;
  font-size: var(--fz16);
  border-radius: 5px;
  margin-right: 8px;
  background-color: #2D2C33;
}
.tool_html .tool_content .right_box .card_box .title_item .switch_box .switch_list.active {
  background: #6b7184;
}
.tool_html .tool_content .right_box .card_box .title_item a {
  position: relative;
  top: 1px;
  display: inline-block;
  padding: 2px 5px;
  color: #fff;
  font-size: var(--fz14);
  margin-left: 5px;
  border-radius: 5px;
  background-color: #f47c3c;
}
.tool_html .tool_content .right_box .card_box .title_item a:after {
  position: relative;
  top: 2px;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  background: url(/newapp/images/arrow.png) no-repeat center center;
  background-size: 80%;
}
.tool_html .tool_content .right_box .card_box .title_item a:hover {
  opacity: 0.8;
}
.tool_html .tool_content .right_box .card_box ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.tool_html .tool_content .right_box .card_box ul.scale li:hover a {
  background: #6b7184;
}
.tool_html .tool_content .right_box .card_box ul.scale li:hover a .theme {
  font-size: var(--fz18);
}
.tool_html .tool_content .right_box .card_box ul.no_bg li a {
  background-color: transparent;
}
.tool_html .tool_content .right_box .card_box ul.no_bg li a:hover {
  text-decoration: underline;
  background-color: #2D2C33;
}
.tool_html .tool_content .right_box .card_box ul.bg li a:hover {
  background: #6b7184;
}
.tool_html .tool_content .right_box .card_box ul li {
  position: relative;
  width: var(--w6);
  padding: 0 10px;
  margin-top: 20px;
  box-sizing: border-box;
}
.tool_html .tool_content .right_box .card_box ul li a {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #2D2C33;
}
.tool_html .tool_content .right_box .card_box ul li a .theme {
  font-size: var(--fz14);
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  transition: all 0.3s;
}
.tool_html .tool_content .right_box .card_box ul li a .theme img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  vertical-align: middle;
}
.tool_html .tool_content .right_box .card_box ul li a .info {
  margin-top: 10px;
  color: #f6f6f6;
  font-size: var(--fz12);
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.tool_html .tool_content .right_box .card_box .switch_content ul {
  display: none;
}
.tool_html .tool_content .right_box .card_box .switch_content ul li {
  width: var(--w9);
}
.tool_html .tool_content .right_box .card_box .switch_content ul li a .theme img {
  width: 24px;
  height: 24px;
}
.tool_html .tool_content .right_box .card_box .switch_content ul.active {
  display: flex;
}
.tool_html .tool_content .right_box .card_box .other_box ul {
  margin-top: 25px;
}
.tool_html .tool_content .right_box .card_box .other_box ul li {
  width: var(--w11);
  margin-top: 15px;
}
.tool_html .tool_content .right_box .card_box .other_box ul li:nth-child(1) span {
  display: inline-block;
  padding: 1px 3px;
  color: #fff;
  font-size: var(--fz12);
  margin-left: 5px;
  border-radius: 5px;
  background-color: #f47c3c;
}
.tool_html .tool_content .right_box .card_box .other_box ul li:last-child a {
  display: inline-block;
  padding: 2px 5px;
  color: #fff;
  font-size: var(--fz12);
  margin-left: 5px;
  border-radius: 5px;
  background-color: #6b7184;
}
.tool_html .tool_content .right_box .card_box .other_box ul li:last-child a:after {
  position: relative;
  top: 2px;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  background: url(/newapp/images/arrow.png) no-repeat center center;
  background-size: 80%;
}
.tool_html .tool_content .right_box .card_box .other_box ul li:last-child a:hover {
  opacity: 0.8;
}
.tool_html .tool_content .right_box .card_box .other_box ul li a {
  padding: 0 10px;
}
.tool_html .tool_content .right_box .card_box .other_box ul li a .theme img {
  width: 16px;
  height: 16px;
}

.collect_html .sc_template .card_template {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
.collect_html .sc_template .card_template .card_list {
  width: calc(var(--w4) - 15px);
  margin-right: 0;
  padding-top: 0;
}

.zdyw_html .card_bg_box {
  position: relative;
}
.zdyw_html .card_bg_box .text h1 {
  color: #fff;
  font-size: var(--fz26);
  font-weight: bold;
}
.zdyw_html .card_bg_box .text p {
  color: #fff;
  font-size: var(--fz16);
  font-weight: bold;
  margin-top: 25px;
}
.zdyw_html .card_template {
  margin: 40px auto 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.zdyw_html .card_template .card_list {
  width: var(--space-w8);
  height: 234px;
}
.zdyw_html .card_template .card_list a .bg_template {
  height: 128px;
}
.zdyw_html .card_template .card_list a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.zdyw_html .card_template .card_list a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.zdyw_html .card_template .card_list a .desc .text .download {
  float: right;
}

.zjbb_html .card_bg_box .text h1 {
  color: #fff;
  font-size: var(--fz26);
  font-weight: bold;
}
.zjbb_html .card_bg_box .text p {
  color: #fff;
  font-size: var(--fz18);
  font-weight: bold;
  margin-top: 25px;
}
.zjbb_html .card_template {
  margin: 40px auto 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.zjbb_html .card_template .card_list {
  width: var(--space-w8);
  height: 234px;
}
.zjbb_html .card_template .card_list a .bg_template {
  height: 128px;
}
.zjbb_html .card_template .card_list a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.zjbb_html .card_template .card_list a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.zjbb_html .card_template .card_list a .desc .text .download {
  float: right;
}

.yhck_html .card_template {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.yhck_html .card_template .card_list {
  width: var(--space-w8);
  height: 234px;
}
.yhck_html .card_template .card_list a .bg_template {
  height: 128px;
}
.yhck_html .card_template .card_list a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.yhck_html .card_template .card_list a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.yhck_html .card_template .card_list a .desc .text .download {
  float: right;
}

.tsjg_html .common_box {
  margin: 30px 0 0;
}
.tsjg_html .result_none {
  margin-top: 20%;
  text-align: center;
}
.tsjg_html .result_none p {
  color: #fff;
  font-size: var(--fz18);
}
.tsjg_html .result_none h5 {
  color: #fff;
  font-weight: bold;
  font-size: 140px;
}
.tsjg_html .switch_box {
  display: flex;
}
.tsjg_html .switch_box .switch_list {
  display: inline-block;
  font-size: var(--fz16);
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  margin-right: 20px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #1C1C1C;
  background-color: #292929;
  border-radius: 24px;
  cursor: pointer;
}
.tsjg_html .switch_box .switch_list.active, .tsjg_html .switch_box .switch_list:hover {
  color: #b7d2eb;
  border-color: #1a6ebd;
  background-color: #092845;
}
.tsjg_html .result_content {
  display: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.tsjg_html .result_content.active {
  display: flex;
}
.tsjg_html .result_content .result_list {
  position: relative;
  width: calc(var(--w4) - 20px);
  padding: 20px;
  margin-top: 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.tsjg_html .result_content .result_list:hover {
  transform: translateY(-5px);
}
.tsjg_html .result_content .result_list a {
  transition: all 0.3s ease;
  opacity: 0.8;
}
.tsjg_html .result_content .result_list a:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.tsjg_html .result_content .result_list a .content_box {
  position: relative;
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
  justify-content: start;
}
.tsjg_html .result_content .result_list a .content_box img {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 10px;
}
.tsjg_html .result_content .result_list a .content_box .box {
  position: relative;
  overflow: hidden;
  margin-left: 20px;
}
.tsjg_html .result_content .result_list a .content_box .box .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.tsjg_html .result_content .result_list a .content_box .box .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
}
.tsjg_html .result_content .result_list a .content_box .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.tsjg_html .result_content .result_list a .content_box .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  background-color: #000;
}
.tsjg_html .result_content .result_list a .info {
  color: #CECECE;
  font-size: var(--fz14);
  line-height: var(--fz16);
  height: var(--fz32);
  margin: 6px 0 10px;
}
.tsjg_html .result_content .result_list a .large {
  height: 190px;
  border-radius: 5px;
}

.detail_html .bg_box {
  position: absolute;
  top: -50px;
  z-index: -1;
  left: 0;
  right: 0;
  height: 500px;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px) opacity(0.8);
  transform: translate3d(0, 0, 0);
}
.detail_html .bg_box:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #101010;
  opacity: 0.4;
}
.detail_html .bg_box:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #101010, transparent 30%), linear-gradient(to top, #101010, transparent 30%), linear-gradient(to right, #101010, transparent 50%), linear-gradient(to left, #101010, transparent 100%);
}
.detail_html .common_box {
  --right-side: max(338px, 22%);
  --side-spacing: 64px;
  --left-side: calc(100% - var(--right-side) - var(--side-spacing));
}
.detail_html .common_box .theme_box {
  margin-top: 60px;
  display: flex;
}
.detail_html .common_box .theme_box img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
}
.detail_html .common_box .theme_box .content {
  margin-left: 30px;
}
.detail_html .common_box .theme_box .content h1 {
  color: #fff;
  font-size: var(--fz22);
  margin-top: 10px;
}
.detail_html .common_box .theme_box .content .tips {
  display: flex;
  color: #60cdff;
  font-size: var(--fz16);
  font-weight: bold;
  margin: 30px 0;
}
.detail_html .common_box .theme_box .content .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz16);
  margin: 6px 0;
}
.detail_html .common_box .theme_box .content .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.detail_html .common_box .theme_box .content .text .hover {
  color: #60cdff;
}
.detail_html .common_box .theme_box .content .info {
  color: #CECECE;
  font-size: var(--fz14);
}
.detail_html .common_box .sticky_box {
  width: var(--left-side);
  position: sticky;
  top: var(--headheight);
  background-image: linear-gradient(#454545, #454545);
  filter: blur(100);
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  z-index: 99;
  display: none;
}
.detail_html .common_box .sticky_box.active {
  display: flex;
}
.detail_html .common_box .sticky_box.active .content {
  margin-left: 20px;
}
.detail_html .common_box .sticky_box img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
}
.detail_html .common_box .sticky_box .content h3 {
  color: #fff;
  font-size: var(--fz20);
}
.detail_html .common_box .sticky_box .content .tips {
  display: block;
  color: #60cdff;
  font-size: var(--fz16);
  font-weight: bold;
  margin: 5px 0 0;
}
.detail_html .common_box .detail_content {
  display: flex;
  align-items: stretch;
  gap: var(--side-spacing);
}
.detail_html .common_box .left_box {
  width: var(--left-side);
}
.detail_html .common_box .left_box .detail_box {
  margin-top: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: #242428;
}
.detail_html .common_box .left_box .detail_box .title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0823529412);
}
.detail_html .common_box .left_box .detail_box .title h3 {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  font-size: var(--title-fz);
  font-weight: bold;
  color: #fff;
}
.detail_html .common_box .left_box .detail_box .sm_content {
  max-height: 150px;
  padding-top: 20px;
  color: #fff;
  font-size: var(--fz16);
  line-height: var(--fz20);
  overflow: hidden;
}
.detail_html .common_box .left_box .detail_box .sm_content ul{padding: revert;list-style-type: disc;}
.detail_html .common_box .left_box .detail_box .sm_content.active {
  max-height: 100%;
}
.detail_html .common_box .left_box .detail_box .sm_content p {
  color: #fff;
  font-size: var(--fz16);
  font-weight: 400;
  line-height: var(--fz22);
  margin-top: 10px;
  text-wrap: initial !important;
}
.detail_html .common_box .left_box .detail_box .sm_content span {
  text-wrap: initial !important;
}
.detail_html .common_box .left_box .detail_box .sm_content h2, .detail_html .common_box .left_box .detail_box .sm_content h3, .detail_html .common_box .left_box .detail_box .sm_content h4, .detail_html .common_box .left_box .detail_box .sm_content h5, .detail_html .common_box .left_box .detail_box .sm_content h6 {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  font-size: var(--fz18);
  font-weight: bold;
  padding: 5px 10px;
  color: #60cdff;
  line-height: normal !important;
}
.detail_html .common_box .left_box .detail_box .sm_content h2:before, .detail_html .common_box .left_box .detail_box .sm_content h2:after, .detail_html .common_box .left_box .detail_box .sm_content h3:before, .detail_html .common_box .left_box .detail_box .sm_content h3:after, .detail_html .common_box .left_box .detail_box .sm_content h4:before, .detail_html .common_box .left_box .detail_box .sm_content h4:after, .detail_html .common_box .left_box .detail_box .sm_content h5:before, .detail_html .common_box .left_box .detail_box .sm_content h5:after, .detail_html .common_box .left_box .detail_box .sm_content h6:before, .detail_html .common_box .left_box .detail_box .sm_content h6:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.detail_html .common_box .left_box .detail_box .sm_content h2:before, .detail_html .common_box .left_box .detail_box .sm_content h3:before, .detail_html .common_box .left_box .detail_box .sm_content h4:before, .detail_html .common_box .left_box .detail_box .sm_content h5:before, .detail_html .common_box .left_box .detail_box .sm_content h6:before {
  top: 0px;
  left: 0px;
  border-left: 4px solid #60cdff;
  border-top: 4px solid #60cdff;
}
.detail_html .common_box .left_box .detail_box .sm_content h2:after, .detail_html .common_box .left_box .detail_box .sm_content h3:after, .detail_html .common_box .left_box .detail_box .sm_content h4:after, .detail_html .common_box .left_box .detail_box .sm_content h5:after, .detail_html .common_box .left_box .detail_box .sm_content h6:after {
  bottom: 0px;
  right: 0px;
  border-right: 4px solid #60cdff;
  border-bottom: 4px solid #60cdff;
}
.detail_html .common_box .left_box .detail_box .sm_content img {
  max-width: 100% !important;
  width: revert-layer;
  height: revert-layer;
  display: block;
  margin: 15px auto 0;
}
.detail_html .common_box .left_box .detail_box .sm_content table {
  margin-top: 30px;
}
.detail_html .common_box .left_box .detail_box .sm_content table tr td {
  border: 1px solid #777;
}
.detail_html .common_box .left_box .detail_box #pmjt_banner .card_template .swiper-slide {
  width: auto !important;
}
.detail_html .common_box .left_box .detail_box .show_more {
  color: #60cdff;
  font-size: var(--fz16);
  margin-top: 20px;
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box {
  padding-top: 20px;
  display: flex;
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .l_item span {
  color: #fff;
  font-size: 44px;
  font-weight: bold;
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .l_item p {
  color: #CECECE;
  font-size: var(--fz14);
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .r_item {
  margin-left: 40px;
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .r_item .score_list {
  display: flex;
  align-items: center;
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .r_item .score_list .num {
  display: inline-block;
  width: 8px;
  color: #CECECE;
  font-size: var(--fz12);
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .r_item .score_list i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  background: url(/newapp/images/star@.png) no-repeat center center;
  background-size: cover;
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .r_item .score_list .progressbar {
  position: relative;
  width: 200px;
  height: 10px;
  overflow: hidden;
  margin-left: 10px;
  border-radius: 5px;
  background-color: rgba(255, 178, 46, 0.2);
}
.detail_html .common_box .left_box .detail_box .pfpj_content .score_box .r_item .score_list .progressbar em {
  position: absolute;
  height: 10px;
  left: 0;
  top: 0;
  background-color: #f8871b;
}
.detail_html .common_box .left_box .detail_box .xzgn_content {
  padding-top: 20px;
  color: #fff;
  font-size: var(--fz16);
  line-height: var(--fz20);
}
.detail_html .common_box .left_box .detail_box .xtyq_content .info {
  color: #fff;
  font-size: var(--fz16);
  margin-top: 20px;
}
.detail_html .common_box .left_box .detail_box .xtyq_content .info span {
  color: #6c6c74;
}
.detail_html .common_box .left_box .detail_box .other_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.detail_html .common_box .left_box .detail_box .other_box li {
  display: flex;
  width: var(--w-left);
  padding: 20px 0;
}
.detail_html .common_box .left_box .detail_box .other_box li i {
  flex: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/newapp/images/other_icon.svg);
  background-size: contain;
}
.detail_html .common_box .left_box .detail_box .other_box li .content {
  flex: 1;
  margin-left: 10px;
  overflow: auto;
  position: relative;
}
.detail_html .common_box .left_box .detail_box .other_box li .content .text {
  color: #CECECE;
  font-size: var(--fz16);
}
.detail_html .common_box .left_box .detail_box .other_box li .content h3, .detail_html .common_box .left_box .detail_box .other_box li .content a {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: var(--fz18);
  word-wrap: break-word;
}
.detail_html .common_box .left_box .detail_box .other_box li .content a {
  color: #60cdff;
}
.detail_html .common_box .right_box {
  width: var(--right-side);
  overflow: visible;
  align-self: flex-start;
  position: sticky;
  top: 70px;
}
.detail_html .common_box .right_box .title_template {
  margin-top: 30px;
}
.detail_html .common_box .right_box .result_list {
  padding: 20px;
  margin-top: 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.detail_html .common_box .right_box .result_list:hover {
  background-color: #242428;
}
.detail_html .common_box .right_box .result_list a {
  transition: all 0.3s ease;
  opacity: 0.8;
}
.detail_html .common_box .right_box .result_list a .content_box {
  position: relative;
  display: flex;
  border-radius: 10px;
  justify-content: start;
}
.detail_html .common_box .right_box .result_list a .content_box img {
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 10px;
}
.detail_html .common_box .right_box .result_list a .content_box .box {
  max-width: calc(100% - 190px);
  margin-left: 20px;
}
.detail_html .common_box .right_box .result_list a .content_box .box .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.detail_html .common_box .right_box .result_list a .content_box .box .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0;
}
.detail_html .common_box .right_box .result_list a .content_box .box .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.detail_html .common_box .right_box .result_list a .content_box .download {
  position: absolute;
  right: 0;
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  margin-left: 10px;
  background-color: #000;
}
.detail_html .common_box .right_box .result_list a .info {
  color: #CECECE;
  font-size: var(--fz14);
  line-height: var(--fz16);
  height: var(--fz32);
  margin: 6px 0 10px;
}
.detail_html .common_box .right_box .result_list a .large {
  height: 190px;
  border-radius: 5px;
}
.detail_html .language_show_model .model_content {
  width: 240px;
  height: auto;
}
.detail_html .language_show_model .model_content .model_body {
  display: block;
  padding-top: 20px;
}
.detail_html .language_show_model .model_content .model_body .language_list {
  display: block;
  color: #fff;
  font-size: var(--fz14);
  padding: 12px 6px;
  text-align: center;
  border-radius: 3px;
}
.detail_html .language_show_model .model_content .model_body .language_list:hover {
  color: #60cdff;
  background-color: #333;
}

.detail_download_html .common_box .theme_box .content .text {
  color: #ddd;
  display: flex;
  align-items: center;
}
.detail_download_html .common_box .theme_box .content .text i {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
  background: url(/newapp/images/sale.png) no-repeat center center;
  background-size: 80% 80%;
}
.detail_download_html .common_box .theme_box .content .tips_label {
  margin-top: 20px;
  overflow: hidden;
}
.detail_download_html .common_box .theme_box .content .tips_label a {
  float: left;
  display: inline-block;
  color: #fff;
  font-size: var(--fz14);
  height: 24px;
  line-height: 24px;
  padding: 0 8px;
  margin-right: 10px;
  border-radius: 3px;
  background-color: #999;
}
.detail_download_html .common_box .theme_box .content .tips_label a:hover {
  background-color: #aaa;
}
.detail_download_html .common_box .theme_box .content .downlaod_other {
  display: none;
}
.detail_download_html .common_box .tips {
  display: flex;
  flex-wrap: wrap;
}
.detail_download_html .common_box .tips .tips_list {
  display: flex;
  margin-right: 15px;
}
.detail_download_html .common_box .tips .tips_list span {
  color: #CECECE;
  font-weight: 400;
  font-size: var(--fz14);
}
.detail_download_html .common_box .tips .tips_list span:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: #CECECE;
}
.detail_download_html .common_box .tips .star_list {
  display: flex;
  flex-direction: row;
}
.detail_download_html .common_box .tips .star_list span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(/newapp/images/star.png) no-repeat center center;
  background-size: contain;
}
.detail_download_html .common_box .tips .star_list.star1 span:nth-child(-n+1), .detail_download_html .common_box .tips .star_list.star2 span:nth-child(-n+2), .detail_download_html .common_box .tips .star_liststar3 span:nth-child(-n+3), .detail_download_html .common_box .tips .star_list.star4 span:nth-child(-n+4), .detail_download_html .common_box .tips .star_list.star5 span:nth-child(-n+5) {
  background: url(/newapp/images/star@.png) no-repeat center center;
  background-size: contain;
}
.detail_download_html .common_box .m_tips {
  display: none;
}
.detail_download_html .common_box .left_box .detail_box .version_content {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  height: 175px;
  overflow: hidden;
}
.detail_download_html .common_box .left_box .detail_box .version_content.active {
  height: auto;
}
.detail_download_html .common_box .left_box .detail_box .version_content li {
  width: 30%;
  margin-top: 20px;
  margin-right: 5%;
}
.detail_download_html .common_box .left_box .detail_box .version_content li:nth-child(3n+3) {
  margin-right: 0;
}
.detail_download_html .common_box .left_box .detail_box .version_content li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #484e58;
}
.detail_download_html .common_box .left_box .detail_box .version_content li a:hover {
  background-color: #525863;
}
.detail_download_html .common_box .left_box .detail_box .version_content li a .content {
  width: 70%;
}
.detail_download_html .common_box .left_box .detail_box .version_content li a .content h3 {
  font-size: var(--fz16);
  color: #fff;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail_download_html .common_box .left_box .detail_box .version_content li a .content span {
  display: inline-block;
  font-size: var(--fz12);
  color: #ccc;
}
.detail_download_html .common_box .left_box .detail_box .version_content li a .btn {
  display: inline-block;
  padding: 5px 12px;
  color: #fff;
  font-size: var(--fz14);
  border-radius: 15px;
  background-color: #06B55A;
}
.detail_download_html .common_box .downlaod_other {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-top: 20px;
}
.detail_download_html .common_box .downlaod_other .join {
  color: #fff;
  font-size: var(--fz16);
  line-height: 60px;
  margin-right: 10px;
}
.detail_download_html .common_box .downlaod_other .step_list {
  position: relative;
  height: 60px;
  color: #fff;
  line-height: 20px;
  padding: 10px 20px;
  margin-right: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #484e58;
  cursor: pointer;
  margin-top: 15px;
}
.detail_download_html .common_box .downlaod_other .step_list:hover {
  background-color: #525863;
}
.detail_download_html .common_box .downlaod_other .step_list.step1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: #008746;
  max-width: 240px;
}
.detail_download_html .common_box .downlaod_other .step_list.step1 em {
  display: inline-block;
  background-color: #fff;
  color: #008746;
  font-size: var(--fz12);
  transform: scale(0.6);
  margin-left: -10px;
}
.detail_download_html .common_box .downlaod_other .step_list.step2 {
  background-color: #008746;
  
}
.detail_download_html .common_box .downlaod_other .step_list.step2 .info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.detail_download_html .common_box .downlaod_other .step_list.step2 .info span {
  font-size: var(--fz12);
}
.detail_download_html .common_box .downlaod_other .step_list.step2 .info .version {
  margin-right: 15px;
}
.detail_download_html .common_box .downlaod_other .step_list.step2.none {
  cursor: no-drop;
  background: #ddd;
}
.detail_download_html .common_box .downlaod_other .step_list span {
  font-size: var(--fz16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail_download_html .common_box .downlaod_other .step_list.layered {
  max-width: 270px;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.detail_download_html .common_box .downlaod_other .step_list.layered .arrow_text {
  max-width: 210px;
  font-size: var(--fz12);
}
.detail_download_html .common_box .downlaod_other .step_list.arrow_icon {
  padding-right: 40px;
}
.detail_download_html .common_box .downlaod_other .step_list.arrow_icon:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 20px;
  width: 26px;
  height: 20px;
  transition: all 0.4s ease;
  background: url(/newapp/images/down_arrow.png) no-repeat center center;
  background-size: contain;
}
.detail_download_html .common_box .downlaod_other .step_list.arrow_icon_active:after {
  transform: rotate(180deg);
}
.detail_download_html .common_box .downlaod_other .step_list.arrow_icon_active .drop_content {
  display: block;
}
.detail_download_html .common_box .downlaod_other .step_list.square {
  width: 80px;
  min-width: auto;
}
.detail_download_html .common_box .downlaod_other .step_list.download_icon {
  padding-right: 40px;
}
.detail_download_html .common_box .downlaod_other .step_list.download_icon:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 20px;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease;
  background: url(/newapp/images/download.png) no-repeat center center;
  background-size: contain;
}
.detail_download_html .common_box .downlaod_other .step_list .icon {
  transform: scale(0.6);
}
.detail_download_html .common_box .downlaod_other .step_list.other_info_btn .drop_content {
  right: 0;
  left: auto;
  width: 160px;
}
.detail_download_html .common_box .downlaod_other .step_list.other_info_btn .drop_content a {
  padding: 10px;
  color: #fff;
  font-size: var(--fz14);
  margin-left: 10px;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content {
  display: none;
  position: absolute;
  z-index: 99;
  left: 0;
  top: 70px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #404040;
  max-height: 320px;
  overflow-y: auto;
  /* 定制滚动条滑块样式 */
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content::-webkit-scrollbar-track {
  background-color: #202020;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content::-webkit-scrollbar-thumb {
  background-color: #505050;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content a {
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 5px 0;
  display: flex;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content a img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-left: 5px;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content a p {
  width: 255px;
  color: #fff;
  font-size: var(--fz14);
  margin-left: 10px;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content a p.price {
  margin-top: 5px;
}
.detail_download_html .common_box .downlaod_other .step_list .drop_content a.active, .detail_download_html .common_box .downlaod_other .step_list .drop_content a:hover {
  background-color: #484e58;
}

@media (max-width: 1500px) {
  .detail_download_html .common_box .left_box .detail_box .version_content li {
    width: 47%;
  }
  .detail_download_html .common_box .left_box .detail_box .version_content li:nth-child(n) {
    margin-right: 5%;
  }
  .detail_download_html .common_box .left_box .detail_box .version_content li:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .detail_download_html .common_box .left_box .detail_box {
    padding: 10px;
  }
  .detail_download_html .common_box .left_box .detail_box .version_content li {
    width: 100%;
    margin-right: 0;
  }
  .detail_download_html .common_box .left_box .detail_box .version_content li:nth-child(n) {
    margin-right: 0;
  }
  .detail_download_html .comment_template .comment_list .content .time .stats span {
    margin-left: 5px;
  }
  .detail_download_html .common_box .theme_box .content .downlaod_other {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .detail_download_html .common_box .theme_box .content .downlaod_other .layered {
    height: 60px;
    line-height: 60px;
  }
  .detail_download_html .common_box .theme_box .content .tips {
    display: none;
  }
  .detail_download_html .common_box .downlaod_other {
    display: none;
  }
  .detail_download_html .common_box .m_tips {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}
.comment_modal {
  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;
}
.comment_modal.active {
  opacity: 1;
  z-index: 999;
}
.comment_modal.active .modal_content {
  transform: scale(1);
}
.comment_modal .modal_bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.comment_modal .modal_content {
  display: flex;
  flex-direction: column;
  width: 700px;
  max-width: calc(100% - 20px);
  min-width: 350px;
  min-height: 600px;
  max-height: 80%;
  background-color: #202020;
  border-radius: 8px;
  z-index: 1;
  transform: scale(0.7);
  transition: all 0.3s ease;
}
.comment_modal .modal_content .modal_header {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0823529412);
}
.comment_modal .modal_content .modal_header h3 {
  color: #fff;
  font-size: var(--fz18);
  line-height: var(--fz24);
  padding: 12px 32px;
}
.comment_modal .modal_content .modal_header .close {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  background-image: url(/newapp/images/close.svg);
  background-size: contain;
}
.comment_modal .modal_content .modal_header .close:hover {
  background-image: url(/newapp/images/close@.svg);
  background-size: contain;
}
.comment_modal .modal_content .modal_body {
  overflow: auto;
  padding: 0 0 20px;
  /* 定制滚动条滑块样式 */
}
.comment_modal .modal_content .modal_body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.comment_modal .modal_content .modal_body::-webkit-scrollbar-track {
  background-color: #202020;
}
.comment_modal .modal_content .modal_body::-webkit-scrollbar-thumb {
  background-color: #505050;
}
.comment_modal .modal_content .modal_body .score_box {
  padding-top: 20px;
  display: flex;
}
.comment_modal .modal_content .modal_body .score_box .l_item span {
  color: #fff;
  font-size: 44px;
  font-weight: bold;
}
.comment_modal .modal_content .modal_body .score_box .l_item p {
  color: #CECECE;
  font-size: var(--fz14);
}
.comment_modal .modal_content .modal_body .score_box .r_item {
  margin-left: 40px;
}
.comment_modal .modal_content .modal_body .score_box .r_item .score_list {
  display: flex;
  align-items: center;
}
.comment_modal .modal_content .modal_body .score_box .r_item .score_list .num {
  display: inline-block;
  width: 8px;
  color: #CECECE;
  font-size: var(--fz12);
}
.comment_modal .modal_content .modal_body .score_box .r_item .score_list i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  background: url(/newapp/images/star@.png) no-repeat center center;
  background-size: cover;
}
.comment_modal .modal_content .modal_body .score_box .r_item .score_list .progressbar {
  position: relative;
  width: 200px;
  height: 10px;
  overflow: hidden;
  margin-left: 10px;
  border-radius: 5px;
  background-color: rgba(255, 178, 46, 0.2);
}
.comment_modal .modal_content .modal_body .score_box .r_item .score_list .progressbar em {
  position: absolute;
  height: 10px;
  left: 0;
  top: 0;
  background-color: #f8871b;
}
.comment_modal .modal_content .modal_body .comment_template {
  padding-bottom: 120px;
}
.comment_modal .modal_content .modal_body .comment_template .comment_list {
  padding: 0 20px;
}
.comment_modal .modal_content .modal_body .comment_template .comment_list:first-child {
  padding-bottom: 10px;
  border-bottom: 20px solid #484e58;
}
.comment_modal .modal_content .modal_body .comment_template &gt; .comment_form {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: rgba(0, 0, 0, 0.12) 0px -1px 3px;
}

.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: var(--fz22);
  line-height: var(--fz24);
  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(/newapp/images/close.svg);
  background-size: contain;
}
.common_model .model_content .model_header .close:hover {
  background-image: url(/newapp/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: var(--fz22);
  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: var(--fz16);
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #008746;
}

.column_html .switch_box {
  display: flex;
  flex-wrap: wrap;
}
.column_html .switch_box .switch_list {
  display: inline-block;
  font-size: var(--fz16);
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #1C1C1C;
  background-color: #292929;
  border-radius: 24px;
  cursor: pointer;
}
.column_html .switch_box .switch_list.active, .column_html .switch_box .switch_list:hover {
  color: #b7d2eb;
  border-color: #1a6ebd;
  background-color: #092845;
}
.column_html .switch_content .result_content {
  display: none;
}
.column_html .switch_content .result_content.active {
  display: block;
}
.column_html .switch_content .result_content .result_list {
  padding: 30px;
  margin-top: 25px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.column_html .switch_content .result_content .result_list:hover {
  background-color: #242428;
}
.column_html .switch_content .result_content .result_list:hover a .content_box .box .title {
  color: #60cdff;
}
.column_html .switch_content .result_content .result_list a {
  transition: all 0.3s ease;
  opacity: 0.8;
}
.column_html .switch_content .result_content .result_list a .content_box {
  position: relative;
  display: flex;
  border-radius: 10px;
  justify-content: start;
}
.column_html .switch_content .result_content .result_list a .content_box img {
  display: inline-block;
  width: 30%;
  min-width: 100px;
  min-height: 100px;
  max-width: 230px;
  max-height: 130px;
  border-radius: 10px;
  flex-shrink: 0;
}
.column_html .switch_content .result_content .result_list a .content_box .box {
  position: relative;
  margin-left: 20px;
  overflow: hidden;
}
.column_html .switch_content .result_content .result_list a .content_box .box .title {
  color: #fff;
  font-size: var(--fz20);
  line-height: var(--fz20);
}
.column_html .switch_content .result_content .result_list a .content_box .box .info {
  color: #CECECE;
  font-size: var(--fz16);
  line-height: var(--fz20);
  margin-top: 15px;
}
.column_html .switch_content .result_content .result_list a .content_box .box .time {
  position: absolute;
  bottom: 0;
  color: #CECECE;
  font-size: var(--fz14);
}

.router_template {
  padding: 15px 10px;
}
.router_template span, .router_template a {
  position: relative;
  display: inline;
  color: #CECECE;
  font-size: var(--fz16);
  margin-left: 5px;
}
.router_template a {
  padding-right: 20px;
}
.router_template a:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -5px;
  width: 16px;
  height: 10px;
  background: url(/newapp/images/arrow.svg) no-repeat center center;
  background-size: contain;
}
.router_template a:hover {
  color: #60cdff;
}

.zx_template {
  display: var(--w2-external);
  justify-content: flex-start;
  gap: 15px;
  padding: 0 30px;
  box-sizing: border-box;
}
.zx_template .common_box {
  width: var(--w2);
  padding: 30px;
  margin: 60px 0 0;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #1C1C1C;
}
.zx_template .common_box ul li {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.zx_template .common_box ul li a {
  flex: 1;
  display: inline-block;
  color: #CECECE;
  font-size: var(--fz16);
  height: 20px;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.zx_template .common_box ul li a:hover {
  color: #60cdff;
}
.zx_template .common_box ul li .time {
  color: #999;
  font-size: var(--fz16);
}

.tjyx_template {
  display: var(--w2-external);
  gap: 15px;
  padding: 0 30px;
}
.tjyx_template .common_box {
  padding: 30px;
  margin: 60px 0 0;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.tjyx_template .common_box .title_template {
  margin: 0 40px;
}
.tjyx_template .common_box .title_template &gt; a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-right: 0;
}
.tjyx_template .common_box .title_template &gt; a:hover {
  background-color: transparent;
}
.tjyx_template .common_box .title_template &gt; a:hover h3 {
  color: #fff;
  transform: translateX(0);
}
.tjyx_template .common_box .title_template &gt; a .more {
  color: #fff;
}
.tjyx_template .common_box .title_template &gt; a .more:hover {
  color: #60cdff;
}
.tjyx_template .common_box .content {
  margin: 20px 0 0;
  padding: 30px 20px 0;
  position: relative;
  overflow: hidden;
}
.tjyx_template .common_box .content:before {
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  background-color: #292929;
}
.tjyx_template .common_box .content li {
  float: left;
  width: var(--w2);
  padding: 0 10px 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.tjyx_template .common_box .content li:hover a {
  border-radius: 10px;
  background-color: #2D2C33;
}
.tjyx_template .common_box .content li:hover a .info .download {
  padding: 2px 10px;
  background-color: #000;
}
.tjyx_template .common_box .content li:nth-child(1) a .num {
  left: 22px;
}
.tjyx_template .common_box .content li a {
  display: flex;
  align-content: center;
  padding: 20px 0 20px 15px;
  overflow: hidden;
}
.tjyx_template .common_box .content li a img {
  position: relative;
  z-index: 1;
  width: 95px;
  height: 95px;
  border-radius: 10px;
  flex-shrink: 0;
}
.tjyx_template .common_box .content li a .info {
  margin-left: 15px;
  width: 220px;
}
.tjyx_template .common_box .content li a .info .title {
  color: #fff;
  font-size: var(--fz18);
  line-height: var(--fz18);
}
.tjyx_template .common_box .content li a .info .text {
  display: block;
  color: #CECECE;
  font-size: var(--fz14);
  margin: 6px 0 0;
}
.tjyx_template .common_box .content li a .info .text em {
  display: inline-block;
  width: 13px;
  height: 12px;
  margin: 0 5px;
  background-image: url(/newapp/images/star.png);
  background-size: contain;
}
.tjyx_template .common_box .content li a .info .download {
  display: inline-block;
  color: #f2f2f2;
  font-size: var(--fz14);
  border-radius: 5px;
  padding: 2px 0;
  transition: all 0.5s ease;
}
.tjyx_template .common_box .content li a .info .price_item {
  display: block;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin-top: 5px;
  overflow: hidden;
}
.tjyx_template .common_box .content li a .info .price_item span {
  float: left;
  width: 33.3%;
  display: inline-block;
  font-size: var(--fz12);
  padding: 0 5px;
  box-sizing: border-box;
}
.tjyx_template .common_box .content li a .info .price_item .preferential {
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  color: #666;
  background-color: #FCE101;
}
.tjyx_template .common_box .content li a .info .price_item .line {
  font-size: var(--fz12);
  color: #666;
  text-decoration-line: line-through;
  text-decoration-color: #666;
  text-decoration-style: solid;
}
.tjyx_template .common_box .content li a .info .price_item .price {
  color: #fff;
  font-size: var(--fz12);
}
.tjyx_template .common_box .content li a .info .price_item {
  margin-top: 0;
}

.comment_template .all_comment {
  display: inline-block;
  padding: 6px 10px;
  margin-top: 15px;
  color: #fff;
  font-size: var(--fz14);
  border-radius: 3px;
  background-color: #484e58;
}
.comment_template .all_comment:hover {
  cursor: pointer;
  background-color: #444;
}
.comment_template .all_comment i {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  background-image: url(/newapp/images/comment-arrow.png);
  background-size: contain;
}
.comment_template &gt; .comment_list:nth-child(n+2) {
  display: none;
}
.comment_template.active &gt; .comment_list:nth-child(n+2) {
  display: flex;
}
.comment_template .comment_list {
  display: flex;
  margin-top: 20px;
}
.comment_template .comment_list .user_img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #ddd;
}
.comment_template .comment_list .user_img img {
  border-radius: 50%;
}
.comment_template .comment_list .content {
  flex: 1 1 auto;
  margin-left: 10px;
}
.comment_template .comment_list .content .user_name {
  display: block;
}
.comment_template .comment_list .content .user_name .name {
  color: #fff;
  font-size: var(--fz18);
  font-weight: bold;
}
.comment_template .comment_list .content .user_name .superior:before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 6px;
  margin-left: 5px;
  border-color: transparent transparent transparent #484e58;
}
.comment_template .comment_list .content .info {
  color: #fff;
  font-size: var(--fz16);
  margin-top: 10px;
}
.comment_template .comment_list .content .time {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.comment_template .comment_list .content .time .user {
  color: #CECECE;
  font-size: var(--fz16);
}
.comment_template .comment_list .content .time .stats span {
  cursor: pointer;
  color: #fff;
  font-size: var(--fz16);
  margin-left: 20px;
}
.comment_template .comment_list .content .time .stats span:hover {
  opacity: 0.8;
}
.comment_template .comment_list .content .time .stats span:before {
  content: "";
  position: relative;
  display: inline-block;
  top: 2px;
  width: 18px;
  height: 16px;
  margin-right: 2px;
}
.comment_template .comment_list .content .time .stats span.remark:before {
  background-image: url(/newapp/images/remark.svg);
  background-size: contain;
}
.comment_template .comment_list .content .time .stats span.like:before {
  background-image: url(/newapp/images/comment-like.svg);
  background-size: contain;
}
.comment_template .comment_list .content .time .stats span.like.active:before {
  background-image: url(/newapp/images/comment-like@.svg);
  background-size: contain;
}
.comment_template .comment_list .content .time .stats span.dislike:before {
  background-image: url(/newapp/images/comment-dislike.svg);
  background-size: contain;
}
.comment_template .comment_list .content .time .stats span.dislike.active:before {
  background-image: url(/newapp/images/comment-dislike@.svg);
  background-size: contain;
}
.comment_template .comment_list .content .comment_more_box .comment_list:nth-child(n+3) {
  display: none;
}
.comment_template .comment_form {
  border-radius: 4px;
  border: 1px solid #666;
  padding: 8px 12px;
  margin-top: 15px;
  background-color: #f6f6f6;
}
.comment_template .comment_form textarea {
  color: #333;
  width: 100%;
  font-size: var(--fz16);
  resize: none;
  overflow: hidden;
}
.comment_template .comment_form .comment_btn {
  padding: 10px 0 0;
  text-align: right;
  border-top: 1px solid #ddd;
}
.comment_template .comment_form .comment_btn .comment_release {
  display: inline-block;
  padding: 0px 16px;
  font-size: var(--fz14);
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 3px;
  line-height: 28px;
  font-weight: bold;
}
.comment_template .comment_form .comment_btn .comment_release:hover {
  border-color: #14a75b;
  background-color: #14a75b;
}
.comment_template .comment_form .comment_btn button[type=button] {
  background: #6ec196;
  border: 1px solid #6ec196;
  cursor: not-allowed;
  opacity: 0.5;
}
.comment_template .comment_form .comment_btn button[type=submit] {
  background: #06B55A;
  border: 1px solid #06B55A;
  cursor: pointer;
}

.article_html .article_box {
  padding: 15px;
  border-radius: 10px;
  background-color: #1C1C1C;
}
.article_html .article_box h1 {
  color: #fff;
  font-size: var(--fz24);
}
.article_html .article_box p.time {
  margin-top: 25px;
}
.article_html .article_box p.time span {
  display: inline;
  color: #CECECE;
  font-size: var(--fz14);
  margin-right: 50px;
}
.article_html .article_box .content {
  padding-bottom: 40px;
  border-bottom: 1px solid #43434B;
  color:#fff;
}
.article_html .article_box .content p {
  color: #fff;
  font-size: var(--fz16);
  font-weight: 400;
  line-height: var(--fz22);
  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 {
  position: relative;
  margin-top: 20px;
  font-size: var(--fz18);
  font-weight: bold;
  padding: 5px 10px;
  line-height: normal !important;
  color: #60cdff;
}
.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{
  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: 7px;
  left: 0px;
  border-left: 2px solid #60cdff;
}

.article_html .article_box .content img {
  max-width: 100% !important;
  width: revert-layer;
    height: revert-layer;
  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: 10px;
  background-color: #1C1C1C;
}
.article_html .article_box .xgnr_box:hover {
  background-color: #242428;
}
.article_html .article_box .xgnr_box:hover a .content_box .box .title {
  color: #60cdff;
}
.article_html .article_box .xgnr_box .content_box {
  position: relative;
  display: flex;
  border-radius: 10px;
  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: 10px;
}
.article_html .article_box .xgnr_box .content_box:hover .box .title {
  color: #60cdff;
}
.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: var(--fz24);
  line-height: var(--fz26);
  margin: 10px 0;
}
.article_html .article_box .xgnr_box .content_box .box .title .text {
  display: inline-block;
  font-size: var(--fz18);
  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(/newapp/images/star@.png) no-repeat center center;
}
.article_html .article_box .xgnr_box .content_box .box .tips {
  color: #CECECE;
  font-size: var(--fz16);
}
.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: var(--fz16);
  margin-top: 10px;
}
.article_html .article_box .xgnr_box .content_box .box .type span {
  margin-left: 10px;
  color: #60cdff;
}
.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: var(--fz16);
  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: #CECECE;
  font-size: var(--fz16);
  height: 20px;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.article_html .zx_box .common_box ul li a:hover {
  color: #60cdff;
}
.article_html .zx_box .common_box ul li .time {
  color: #999;
  font-size: var(--fz16);
}

.category_html .card_template {
  margin: 40px auto 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.category_html .card_template .card_list {
  width: var(--space-w8);
  height: 234px;
  padding-top: 0;
  padding-bottom: 10px;
}
.category_html .card_template .card_list a .bg_template {
  height: 128px;
}
.category_html .card_template .card_list a .img_app {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.category_html .card_template .card_list a .desc .text {
  margin-top: 10px;
  overflow: hidden;
}
.category_html .card_template .card_list a .desc .text .download {
  float: right;
}

.laypage {
  text-align: center;
  padding: 30px 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: #CECECE;
  font-weight: 400;
}
.laypage a.currentPage, .laypage span.currentPage {
  color: #fff;
  border-color: #60cdff;
  background-color: #60cdff;
}

.language_select_box {
  position: relative;
  height: 70px;
  cursor: pointer;
  overflow: hidden;
}
.language_select_box .text {
  display: block;
  height: 70px;
  line-height: 70px;
  padding: 0 20px 0 10px;
}
.language_select_box .text:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 5px;
  background: url(/newapp/images/language.png) no-repeat center center;
  background-size: contain;
  vertical-align: text-bottom;
}
.language_select_box .text span {
  color: #8e8e9a;
  font-size: var(--fz14);
  text-align: center;
}
.language_select_box .drop_menu_box {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 20;
  padding: 10px;
  background: #3e4142;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: transform 0.3s, visibility 0.1s 0.3s;
  visibility: hidden;
  backface-visibility: hidden;
}
.language_select_box .drop_menu_box a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: var(--fz14);
  line-height: 24px;
  padding: 10px;
}
.language_select_box .drop_menu_box a:hover, .language_select_box .drop_menu_box a.active {
  color: #60cdff;
}
.language_select_box.active {
  background: #3e4142;
  overflow: inherit;
}
.language_select_box.active .text span {
  color: #60cdff;
}
.language_select_box.active .text:after {
  border-left: 2px solid #60cdff;
  border-bottom: 2px solid #60cdff;
  top: 6px;
  transform: translateY(-50%) rotate(135deg);
}
.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: 8px;
  width: 8px;
  left: 7px;
  top: 3px;
  border-left: 2px solid #8e8e9a;
  border-bottom: 2px solid #8e8e9a;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}

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

/*# sourceMappingURL=index.css.map */
</pre></body></html>