@charset "UTF-8";
/**
 * 
 * npm install -g sass
 * // 转换
 * sass index.scss index.css
 * // 监听 
 * sass --watch index.scss:index.css
 * // 编译格式
 * sass --watch index.scss:index.css --style compact
 */
/**
*    @description: 变量;
*    @create date: 2023-5-8;
*/
/**
*    @description: 重置样式;
*    @create date: 2023-2-23;
*/
body {
  font-size: 14px;
  font-family: "微软雅黑";
  margin: 0 auto;
  background-color: #F3F5F9;
}

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;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.img_common img {
  width: 100%;
}

img:hover {
  opacity: 0.98;
}

span {
  display: inline-block;
}

input, select, button, textarea {
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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

.d_flex {
  display: flex;
}

.flex_1 {
  flex: 1;
}

.flex_column {
  flex-direction: column;
}

.flex_row {
  flex-direction: row;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_nowrap {
  flex-wrap: nowrap;
}

.flex_shrink {
  flex-shrink: 0;
}

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

.j_center {
  justify-content: center;
}

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

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

.a_center {
  align-items: center;
}

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

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

.a_stretch {
  align-items: stretch;
}

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

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

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

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

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

/* 省略号 */
.text_overflow {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* 多行文本省略号 */
.text_overflow_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

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

.section_box {
  padding: 10px 15px;
  margin-top: 10px;
  background-color: #fff;
}

.bg_f {
  background-color: #fff;
}

.bg_tempalte {
  display: none;
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: rgba(0, 0, 0, 0.6);
}
.bg_tempalte.active {
  display: block;
}

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

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

.title_template {
  height: 26px;
  line-height: 26px;
  margin-bottom: 15px;
  overflow: hidden;
}
.title_template .title {
  font-size: 18px;
  font-weight: bold;
  color: #666;
  display: inline-block;
  position: relative;
}
.title_template .title.arrow:hover {
  color: #32487b;
}
.title_template .title.arrow:after {
  content: "";
  display: inline-block;
  position: relative;
  margin-left: 5px;
  height: 6px;
  width: 6px;
  left: 0;
  top: 2px;
  border-left: 2px solid #999;
  border-bottom: 2px solid #999;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-135deg);
}
.title_template .random {
  font-size: 14px;
  color: #666;
  float: right;
  font-weight: 500;
}
.title_template .random:hover {
  color: #32487b;
}

.title_box_2 {
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  position: relative;
}
.title_box_2 .title {
  float: left;
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  height: 55px;
  color: #666;
  position: relative;
  border-bottom: 2px solid #32487b;
}
.title_box_2 .tabs {
  float: left;
  margin-left: 35px;
}
.title_box_2 .tabs li {
  float: left;
  cursor: pointer;
  color: #666;
  font-size: 20px;
  position: relative;
}
.title_box_2 .tabs li.on {
  color: #32487b;
}
.title_box_2 .tabs li + li {
  margin-left: 50px;
}
.title_box_2 .tabs li + li:before {
  content: "/";
  position: absolute;
  font-size: 20px;
  color: #ddd;
  margin-left: -30px;
}
.title_box_2 .more {
  float: right;
  font-size: 16px;
  padding: 0 5px;
}
.title_box_2 .more:hover {
  color: #32487b;
}

.star {
  display: inline-block;
  vertical-align: -2px;
  width: 85px;
  height: 15px;
  background: url(../images/star.png) no-repeat;
}
.star.star1 {
  background-position: -70px 0px;
}
.star.star2 {
  background-position: -52px 0px;
}
.star.star3 {
  background-position: -35px 0px;
}
.star.star4 {
  background-position: -18px 0px;
}

.img_text_template {
  overflow: hidden;
}
.img_text_template.border_img li a .img_item img {
  border: 1px solid #EFF3F9;
  border-radius: 15%;
  box-sizing: border-box;
}
.img_text_template.sort_icon li:nth-child(-n+3) a .img_item {
  position: relative;
}
.img_text_template.sort_icon li:nth-child(-n+3) a .img_item:after, .img_text_template.sort_icon li:nth-child(-n+3) a .img_item:before {
  display: block;
  position: absolute;
  top: 0;
  left: 12px;
}
.img_text_template.sort_icon li:nth-child(-n+3) a .img_item:before {
  content: " ";
  border-left: 7px solid #F3251B;
  border-right: 7px solid #F3251B;
  border-top: 14px solid #F3251B;
  border-bottom: 4px solid transparent;
  z-index: 1;
}
.img_text_template.sort_icon li:nth-child(-n+3) a .img_item:after {
  content: "1";
  width: 14px;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  color: white;
  z-index: 1;
}
.img_text_template.sort_icon li:nth-child(2) a .img_item:before {
  border-left: 7px solid #F77E13;
  border-right: 7px solid #F77E13;
  border-top: 14px solid #F77E13;
}
.img_text_template.sort_icon li:nth-child(2) a .img_item:after {
  content: "2";
}
.img_text_template.sort_icon li:nth-child(3) a .img_item:before {
  border-left: 7px solid #EFAB19;
  border-right: 7px solid #EFAB19;
  border-top: 14px solid #EFAB19;
}
.img_text_template.sort_icon li:nth-child(3) a .img_item:after {
  content: "3";
}
.img_text_template li {
  float: left;
}
.img_text_template li a {
  display: block;
  height: 100%;
}
.img_text_template li a .img_item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.img_text_template li a p {
  margin-top: 5px;
  font-size: 14px;
  height: 24px;
  line-height: 20px;
  text-align: center;
  overflow: hidden;
  color: #555;
  box-sizing: border-box;
}
.img_text_template li:hover a p {
  color: #32487b;
}

.list_circle_item {
  overflow: hidden;
}
.list_circle_item.none_circle li a:before {
  display: none;
}
.list_circle_item.col2 li {
  width: 50%;
  float: left;
}
.list_circle_item.col2 li:nth-child(odd) {
  padding-right: 20px;
}
.list_circle_item li {
  height: 28px;
  line-height: 28px;
  box-sizing: border-box;
  overflow: hidden;
}
.list_circle_item li a {
  display: inline-block;
  overflow: hidden;
  color: #666;
  font-size: 14px;
  width: 80%;
}
.list_circle_item li a:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #666;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.list_circle_item li a:hover {
  color: #32487b;
}
.list_circle_item li a:hover .type {
  color: #32487b;
}
.list_circle_item li a .type {
  color: #999;
  font-size: 12px;
  position: relative;
  padding-right: 10px;
}
.list_circle_item li a .type:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: #333;
  right: 5px;
  top: 6px;
}
.list_circle_item li > span {
  float: right;
  color: #999;
  font-size: 12px;
}

.router_template {
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  color: #666;
  margin: 10px 0;
}
.router_template span {
  display: inline-block;
  position: relative;
  top: 1px;
  width: 12px;
  height: 12px;
  background: url(../images/local.png) no-repeat center center;
  background-size: cover;
  margin-right: 5px;
}
.router_template a, .router_template em {
  font-weight: 400;
  font-size: 12px;
  margin-right: 5px;
  color: #666;
}
.router_template .btn {
  position: absolute;
  right: 0;
  top: 26px;
  width: 56px;
  height: 28px;
  line-height: 28px;
  color: #999;
  border-radius: 4px;
  text-align: center;
  background-color: #f3f3f3;
}
.router_template a:hover {
  color: #32487b;
  text-decoration: underline;
}

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

.sticky_box {
  height: 140px;
}

.footer_template {
  margin-top: 15px;
  padding: 25px;
  background-color: #fff;
  text-align: left;
}
.footer_template.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer_template .clearfix {
  padding-bottom: 10px;
  border-bottom: 1px solid #E3E3E3;
}
.footer_template .clearfix .l_item {
  float: left;
  width: 420px;
}
.footer_template .clearfix .l_item img {
  width: 125px;
  height: 47px;
}
.footer_template .clearfix .l_item p {
  margin-top: 10px;
}
.footer_template .clearfix .l_item .f_icon {
  margin-top: 15px;
}
.footer_template .clearfix .l_item .f_icon a {
  display: inline-block;
  margin-right: 10px;
}
.footer_template .clearfix .l_item .f_icon a:nth-child(1) {
  width: 15px;
  height: 12px;
  background-image: url(../images/f_icon1.png);
}
.footer_template .clearfix .l_item .f_icon a:nth-child(2) {
  width: 9px;
  height: 15px;
  background-image: url(../images/f_icon2.png);
}
.footer_template .clearfix .l_item .f_icon a:nth-child(3) {
  width: 16px;
  height: 15px;
  background-image: url(../images/f_icon3.png);
}
.footer_template .clearfix .l_item .f_icon a:nth-child(4) {
  width: 15px;
  height: 11px;
  background-image: url(../images/f_icon4.png);
}
.footer_template .clearfix .r_item {
  float: left;
  width: 780px;
  overflow: hidden;
}
.footer_template .clearfix .r_item dl {
  float: left;
  width: 33%;
}
.footer_template .clearfix .r_item dl dt {
  font-size: 16px;
  color: #666;
}
.footer_template .clearfix .r_item dl dd {
  margin-top: 5px;
}
.footer_template .clearfix .r_item dl dd a {
  font-size: 14px;
  color: #999;
}
.footer_template .clearfix .r_item dl dd a:hover {
  color: #32487b;
}
.footer_template p {
  margin-top: 15px;
  color: #999;
  font-size: 14px;
}
.footer_template p a {
  font-size: 14px;
  color: #999;
}
.footer_template p a:hover {
  color: #32487b;
}

.score_item {
  line-height: 18px;
  font-size: 12px;
  color: #FFAE00;
}
.score_item:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
  margin-right: 5px;
  background: url(../images/score.png) no-repeat center center;
  background-size: cover;
}

.swiper-pagination {
  display: none;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #eee;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #32487b;
}

.header_template {
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
}
.header_template .w12_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_template .title_item {
  float: left;
  color: #fff;
  width: 119px;
  height: 45px;
  margin-top: 12px;
}
.header_template .menu_btn_box {
  display: none;
}
.header_template .menu_box {
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
.header_template .menu_box .right_item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_template .menu_box .right_item .search_icon {
  display: none;
}
.header_template .menu_box .right_item .search_icon img {
  height: 24px;
}
.header_template .nav_menu_item {
  float: left;
  margin-left: 40px;
}
.header_template .nav_menu_item .item {
  position: relative;
  float: left;
  width: 80px;
  height: 70px;
  overflow: hidden;
}
.header_template .nav_menu_item .item a, .header_template .nav_menu_item .item span {
  color: #666;
  font-size: 16px;
  display: block;
  line-height: 70px;
  text-align: center;
}
.header_template .nav_menu_item .item span:after, .header_template .nav_menu_item .item .drop:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 6px;
  width: 6px;
  left: 7px;
  top: 2px;
  border-left: 2px solid #777;
  border-bottom: 2px solid #777;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.header_template .nav_menu_item .item .drop_menu_box {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 20;
  padding: 10px 24px;
  border-radius: 5px;
  background: #fff;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: transform 0.3s, opacity 0.1s, visibility 0.1s 0.3s;
  visibility: hidden;
  backface-visibility: hidden;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
}
.header_template .nav_menu_item .item .drop_menu_box a {
  min-width: 80px;
  height: 35px;
  color: #777;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 35px;
  white-space: nowrap;
}
.header_template .nav_menu_item .item .drop_menu_box a:hover {
  color: #32487b;
  font-weight: 600;
}
.header_template .nav_menu_item .item:hover {
  cursor: pointer;
  overflow: inherit;
}
.header_template .nav_menu_item .item:hover > a, .header_template .nav_menu_item .item:hover > span {
  color: #32487b;
}
.header_template .nav_menu_item .item:hover:before {
  content: " ";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  position: absolute;
  top: 50px;
  left: 7px;
  z-index: 21;
}
.header_template .nav_menu_item .item:hover span:after, .header_template .nav_menu_item .item:hover .drop:after {
  border-left: 2px solid #32487b;
  border-bottom: 2px solid #32487b;
  top: 6px;
  transform: translateY(-50%) rotate(135deg);
}
.header_template .nav_menu_item .item:hover .drop_menu_box {
  opacity: 1 !important;
  transform: rotateX(0) !important;
  transition: opacity 0.1s, transform 0.3s !important;
  visibility: visible !important;
}
.header_template .mobile_menu {
  display: none;
}

.modal {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 0;
  background-color: #fff;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.modal.active {
  width: 100%;
  opacity: 1;
  z-index: 1000;
}
.modal.active .modal_content .qsform, .modal.active .modal_content .btn_close {
  opacity: 1;
  transform: translateY(0);
}
.modal .modal_content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
.modal .modal_content .btn_close {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
  background: transparent url(/international/images/close.svg) no-repeat center center;
  background-size: 50%;
  opacity: 0;
  transform: translateY(-100%);
}
.modal .modal_content .qsform, .modal .modal_content .btn_close {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gsc-control-cse {
  border: none !important;
  border-radius: 10px !important;
  background: #fff !important;
  padding: 0 !important;
  height: 48px !important;
}
.gsc-control-cse .gsc-search-box-tools {
  margin: 0 !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box {
  margin: 0 !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box {
  padding: 0 !important;
  border: none !important;
  background: transparent;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box .gsib_a {
  padding: 0 !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-input-box .gsib_a .gsc-input {
  height: 48px !important;
  padding: 0 15px !important;
  background-position: 20px !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-search-button .gsc-search-button-v2 {
  border: none !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  margin-top: 0px !important;
  border-radius: 10px !important;
  background: #fff url(../images/search.svg) no-repeat center center;
  background-size: 48% !important;
}
.gsc-control-cse .gsc-search-box-tools .gsc-search-box .gsc-search-button .gsc-search-button-v2 svg {
  display: none !important;
}

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

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

.history_version_template ul.active li {
  display: block !important;
}
.history_version_template ul li {
  border-bottom: 1px solid #f2f2f2;
}
.history_version_template ul li:nth-child(n+6) {
  display: none;
}
.history_version_template ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.history_version_template ul li a:hover .box .title {
  color: #32487b;
}
.history_version_template ul li a:hover .download_btn {
  color: #fff;
  background-color: #32487b;
}
.history_version_template ul li a .box {
  width: 0;
  flex: 1 1;
}
.history_version_template ul li a .box .title {
  color: #000;
  font-size: 14px;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.history_version_template ul li a .box .text {
  display: flex;
  align-items: center;
  color: #666;
}
.history_version_template ul li a .box .text .size {
  font-size: 12px;
  margin-right: 20px;
}
.history_version_template ul li a .box .text .time {
  font-size: 12px;
}
.history_version_template ul li a .download_btn {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  border-radius: 4px;
  min-width: 68px;
  padding: 0 10px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #32487b;
  overflow: hidden;
}
.history_version_template ul li a .download_btn:hover {
  opacity: 0.9;
}
.history_version_template ul li a .download_btn i {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.history_version_template .all_version, .history_version_template .more_version_btn {
  display: block;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  border-radius: 4px;
  width: 208px;
  font-weight: 500;
  color: #32487b;
  text-align: center;
  margin: 20px auto 10px;
  border: 1px solid #32487b;
  overflow: hidden;
}
.history_version_template .all_version:hover, .history_version_template .more_version_btn:hover {
  cursor: pointer;
  color: #fff;
  background-color: #32487b;
}

.lr_img_template.sort_icon li:nth-child(-n+3) a:after, .lr_img_template.sort_icon li:nth-child(-n+3) a:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.lr_img_template.sort_icon li:nth-child(-n+3) a:before {
  content: " ";
  border-left: 7px solid #F3251B;
  border-right: 7px solid #F3251B;
  border-top: 14px solid #F3251B;
  border-bottom: 4px solid transparent;
  z-index: 1;
}
.lr_img_template.sort_icon li:nth-child(-n+3) a:after {
  content: "" attr(data-num) "";
  width: 14px;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  color: white;
  z-index: 1;
}
.lr_img_template.sort_icon li:nth-child(2) a:before {
  border-left: 7px solid #F77E13;
  border-right: 7px solid #F77E13;
  border-top: 14px solid #F77E13;
}
.lr_img_template.sort_icon li:nth-child(2) a:after {
  content: "" attr(data-num) "";
}
.lr_img_template.sort_icon li:nth-child(3) a:before {
  border-left: 7px solid #EFAB19;
  border-right: 7px solid #EFAB19;
  border-top: 14px solid #EFAB19;
}
.lr_img_template.sort_icon li:nth-child(3) a:after {
  content: "" attr(data-num) "";
}
.lr_img_template.sort_icon li:nth-child(n+4) a:before {
  content: "" attr(data-num) "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 14px;
  color: #fff;
  font-size: 10px;
  background-color: #ccc;
  transform: translateY(-50%);
}
.lr_img_template.sort_icon li a {
  position: relative;
  padding-left: 20px;
}
.lr_img_template.content_ptb li a .content {
  padding: 8px 0;
  box-sizing: border-box;
}
.lr_img_template li {
  position: relative;
  box-sizing: border-box;
  margin-top: 15px;
  height: 70px;
}
.lr_img_template li .title {
  padding: 10px 10px 10px 0;
  background-color: #fff;
}
.lr_img_template li .title h2 {
  font-size: 18px;
  color: #444;
  float: left;
}
.lr_img_template li .title .time {
  color: #999;
  float: right;
}
.lr_img_template li a, .lr_img_template li .content_box {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}
.lr_img_template li a .img_item, .lr_img_template li .content_box .img_item {
  display: inline-block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}
.lr_img_template li a .img_item img, .lr_img_template li .content_box .img_item img {
  border: 1px solid #EFF3F9;
  box-sizing: border-box;
}
.lr_img_template li a .content, .lr_img_template li .content_box .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0;
  height: 64px;
  flex: 1 1;
  margin-left: 10px;
  margin-right: 10px;
}
.lr_img_template li a .content p, .lr_img_template li .content_box .content p {
  width: 80%;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.lr_img_template li a .content .text, .lr_img_template li a .content .time, .lr_img_template li a .content .desc, .lr_img_template li a .content .info, .lr_img_template li .content_box .content .text, .lr_img_template li .content_box .content .time, .lr_img_template li .content_box .content .desc, .lr_img_template li .content_box .content .info {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 24px;
  line-height: 20px;
  overflow: hidden;
}
.lr_img_template li a .content .score_item, .lr_img_template li .content_box .content .score_item {
  position: absolute;
  right: 0;
  top: 10px;
}
.lr_img_template li a .content .price, .lr_img_template li .content_box .content .price {
  position: absolute;
  right: 0;
  top: 18px;
  width: 60px;
  height: 24px;
  line-height: 24px;
  color: #999;
  border-radius: 4px;
  text-align: center;
}
.lr_img_template li a .price_info, .lr_img_template li .content_box .price_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 50px;
  text-align: center;
}
.lr_img_template li a .price_info .new, .lr_img_template li .content_box .price_info .new {
  font-size: 14px;
  color: #333;
}
.lr_img_template li a .price_info .old, .lr_img_template li .content_box .price_info .old {
  font-size: 12px;
  color: #999;
}
.lr_img_template li a .download, .lr_img_template li .content_box .download {
  position: absolute;
  right: 0;
  top: 10px;
  min-width: 60px;
  padding: 0 10px;
  height: 24px;
  line-height: 24px;
  color: #32487b;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #32487b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lr_img_template li a .download_btn, .lr_img_template li .content_box .download_btn {
  display: none;
  padding: 0;
  top: 25px;
  right: 20px;
  width: auto;
  min-width: 60px;
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  background-color: #32487b;
}
.lr_img_template li a:hover p, .lr_img_template li a:hover h2, .lr_img_template li .content_box:hover p, .lr_img_template li .content_box:hover h2 {
  color: #32487b;
}
.lr_img_template li a:hover .img_item, .lr_img_template li .content_box:hover .img_item {
  opacity: 0.8;
}

.question_template {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.question_template li {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background-color: #F2F5F9;
  min-width: 40%;
  font-weight: 500;
  line-height: 22px;
  color: #4B4B4B;
}
.question_template li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.question_template li a:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 5px;
  height: 9px;
  margin-left: 15px;
  background: url(../images/arrow.png) no-repeat center center;
  background-size: cover;
}
.question_template li a h5 {
  width: 90%;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #5E5E5E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.question_template li a h5:hover {
  color: #32487b;
}

.language_select_template {
  position: relative;
  height: 32px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
}
.language_select_template .text {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 20px 0 10px;
}
.language_select_template .text:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 5px;
  background: url(../images/language.svg) no-repeat center center;
  background-size: contain;
  vertical-align: text-bottom;
}
.language_select_template .text span {
  color: rgba(0, 0, 0, 0.5019607843);
  font-size: var(--fz12);
  text-align: center;
}
.language_select_template .drop_menu_box {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 20;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transform: rotateX(-90deg);
  transform-origin: 0 0;
  transition: transform 0.3s, visibility 0.1s 0.3s;
  visibility: hidden;
  backface-visibility: hidden;
}
.language_select_template .drop_menu_box a {
  display: block;
  color: #666;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 7px 10px;
}
.language_select_template .drop_menu_box a:hover, .language_select_template .drop_menu_box a.active {
  color: #32487b;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
}
.language_select_template.active {
  overflow: inherit;
}
.language_select_template.active .drop_menu_box {
  transform: rotateX(0) !important;
  transition: all 0.3s !important;
  visibility: visible !important;
}

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

.new_tag_template {
  overflow: hidden;
}
.new_tag_template a {
  position: relative;
  float: left;
  display: inline-block;
  font-size: 14px;
  border-radius: 20px;
  margin: 0 10px 15px 0;
  padding: 0 10px 0 36px;
  color: #333;
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  border: 1px solid #EBEBEB;
  overflow: hidden;
}
.new_tag_template a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 28px;
}
.new_tag_template a:hover {
  color: #32487b;
  background: #F2F6FC;
}

.comment_template .score_box {
  padding: 12px 0;
  display: flex;
  height: 80px;
}
.comment_template .score_box .l_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 10px 0;
  box-sizing: border-box;
}
.comment_template .score_box .l_item span {
  color: #5e5e5e;
  font-size: 24px;
  font-weight: bold;
}
.comment_template .score_box .l_item p, .comment_template .score_box .l_item div {
  font-size: 12px;
  color: #CECECE;
}
.comment_template .score_box .r_item {
  margin-left: 40px;
}
.comment_template .score_box .r_item .score_list {
  display: flex;
  align-items: center;
}
.comment_template .score_box .r_item .score_list:nth-child(1) .progressbar em {
  background-color: #57bb8a;
}
.comment_template .score_box .r_item .score_list:nth-child(2) .progressbar em {
  background-color: #9ace6a;
}
.comment_template .score_box .r_item .score_list:nth-child(3) .progressbar em {
  background-color: #ffcf02;
}
.comment_template .score_box .r_item .score_list:nth-child(4) .progressbar em {
  background-color: #ff9f02;
}
.comment_template .score_box .r_item .score_list:nth-child(5) .progressbar em {
  background-color: #ff6f31;
}
.comment_template .score_box .r_item .score_list .num {
  display: inline-block;
  width: 8px;
  color: #CECECE;
  font-size: 12px;
}
.comment_template .score_box .r_item .score_list .progressbar {
  position: relative;
  width: 200px;
  height: 8px;
  overflow: hidden;
  margin-left: 5px;
  border-radius: 5px;
  background-color: rgba(255, 178, 46, 0.1);
}
.comment_template .score_box .r_item .score_list .progressbar em {
  position: absolute;
  height: 8px;
  left: 0;
  top: 0;
  transition: width 0.25s ease;
  background-color: #f8871b;
}
.comment_template .comment_title {
  display: flex;
  justify-content: space-between;
}
.comment_template .comment_title span {
  color: #8b8b8b;
  font-size: 12px;
  line-height: 16px;
}
.comment_template .comment_title a {
  position: relative;
  top: -20px;
  color: #32487b;
  font-size: 14px;
  font-weight: 500;
}
.comment_template .comment_type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EFF3F4;
}
.comment_template .comment_type .cmt_parent_drop .mobile_show_text {
  display: none;
  color: #32487b;
}
.comment_template .comment_type .cmt_parent_drop .mobile_show_text:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 4px;
  width: 4px;
  left: 0px;
  top: 0px;
  margin-left: 5px;
  border-left: 1px solid #8B8B8B;
  border-bottom: 1px solid #8B8B8B;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.comment_template .comment_type .cmt_parent_drop .comment_type_box {
  display: flex;
  position: relative;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.comment_template .comment_type .cmt_parent_drop .comment_type_box .comment_type_list {
  display: block;
  margin-right: 24px;
  height: 42px;
  line-height: 42px;
  color: #8B8B8B;
}
.comment_template .comment_type .cmt_parent_drop .comment_type_box .comment_type_list.active {
  color: #32487b;
  border-bottom: 2px solid #32487b;
}
.comment_template .comment_type .comment_drop {
  display: flex;
}
.comment_template .comment_type .comment_drop .cmt_parent {
  margin-left: 15px;
  color: #8B8B8B;
  font-size: 12px;
}
.comment_template .comment_type .comment_drop .cmt_parent:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 4px;
  width: 4px;
  left: 0px;
  top: 0px;
  margin-left: 5px;
  border-left: 1px solid #8B8B8B;
  border-bottom: 1px solid #8B8B8B;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.comment_template .comment_list_template .comment_list {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #eff3f4;
}
.comment_template .comment_list_template .comment_list .user_img {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #ddd;
}
.comment_template .comment_list_template .comment_list .user_img img {
  border-radius: 50%;
}
.comment_template .comment_list_template .comment_list .content {
  flex: 1 1 auto;
  margin-left: 10px;
}
.comment_template .comment_list_template .comment_list .content .user_name {
  display: block;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment_template .comment_list_template .comment_list .content .user_name .name {
  color: #32487b;
  font-size: 14px;
  font-weight: bold;
}
.comment_template .comment_list_template .comment_list .content .user_name .report {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/more@.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.comment_template .comment_list_template .comment_list .content .info {
  display: block;
  color: #5e5e5e;
  font-size: 15px;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment_template .comment_list_template .comment_list .content .comment_child a {
  display: block;
  margin: 8px 0;
  padding: 2px 12px;
  background: #F7F9F9;
  border-radius: 4px;
}
.comment_template .comment_list_template .comment_list .content .comment_child a ul li {
  max-height: 66px;
  padding: 2px 0;
  overflow: hidden;
  line-height: 22px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 13px;
}
.comment_template .comment_list_template .comment_list .content .comment_child a ul li:last-child {
  color: #32487b;
}
.comment_template .comment_list_template .comment_list .content .comment_child a ul li span {
  color: #8B8B8B;
}
.comment_template .comment_list_template .comment_list .content .time {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.comment_template .comment_list_template .comment_list .content .time .user {
  color: #5e5e5e;
  font-size: 12px;
}
.comment_template .comment_list_template .comment_list .content .time .stats span {
  cursor: pointer;
  color: #8b8b8b;
  font-size: 12px;
  margin-left: 20px;
}
.comment_template .comment_list_template .comment_list .content .time .stats span:hover {
  opacity: 0.8;
}
.comment_template .comment_list_template .comment_list .content .time .stats span:before {
  content: "";
  position: relative;
  display: inline-block;
  top: 3px;
  width: 18px;
  height: 16px;
  margin-right: 2px;
}
.comment_template .comment_list_template .comment_list .content .time .stats span.remark:before {
  top: 3px;
  width: 14px;
  height: 14px;
  background: url(../images/remark.svg) no-repeat center center;
  background-size: contain;
}
.comment_template .comment_list_template .comment_list .content .time .stats span.like:before {
  top: 5px;
  height: 20px;
  background: url(../images/comment-like.svg) no-repeat center center;
  background-size: contain;
}
.comment_template .comment_list_template .comment_list .content .time .stats span.like.active:before {
  top: 5px;
  background: url(../images/comment-like@.svg) no-repeat center center;
  background-size: contain;
}
.comment_template .comment_list_template .comment_list .content .time .stats span.dislike:before {
  background: url(../images/comment-dislike.svg) no-repeat center center;
  background-size: contain;
}
.comment_template .comment_list_template .comment_list .content .time .stats span.dislike.active:before {
  background-image: url(../images/comment-dislike@.svg);
  background-size: contain;
}
.comment_template .comment_list_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 #DBE1EB;
  padding: 8px 12px;
  margin-top: 15px;
  background-color: #fff;
}
.comment_template .comment_form textarea {
  color: #333;
  width: 100%;
  font-size: 15px;
  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: 14px;
  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;
}
.comment_template .more_comment {
  padding: 15px 0;
}
.comment_template .more_comment a, .comment_template .more_comment span {
  display: block;
  width: 320px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: #32487b;
  border: 1px solid #32487b;
  border-radius: 4px;
}
.comment_template .more_comment a:hover, .comment_template .more_comment span:hover {
  color: #fff;
  background-color: #32487b;
}

.collapse_page_template {
  position: relative;
  margin: 25px 0;
  height: 32px;
  line-height: 32px;
  background-color: #fff;
  border: 1px solid #eee;
  z-index: 999;
}
.collapse_page_template.active .page_box {
  display: block;
}
.collapse_page_template .text {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0 15px;
  cursor: pointer;
}
.collapse_page_template .text .title {
  color: #32487b;
  font-size: 12px;
}
.collapse_page_template .text .collapse_span {
  color: #32487b;
  font-size: 12px;
}
.collapse_page_template .text .collapse_span:hover {
  color: #f20;
}
.collapse_page_template .text .collapse_span:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 5px;
  width: 5px;
  left: 7px;
  top: 1px;
  border-left: 2px solid #32487b;
  border-bottom: 2px solid #32487b;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.collapse_page_template .text .collapse_span.active:after {
  top: 6px;
  transform: translateY(-50%) rotate(135deg);
}
.collapse_page_template .page_box {
  display: none;
  position: absolute;
  top: 32px;
  left: -1px;
  right: -1px;
  border-top: none;
  z-index: 999;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
}
.collapse_page_template .page_box ul {
  padding: 10px 0;
}
.collapse_page_template .page_box ul li {
  height: 32px;
  line-height: 32px;
  padding: 0 20px 0 15px;
}
.collapse_page_template .page_box ul li:hover {
  background-color: #eee;
}
.collapse_page_template .page_box ul li:hover a {
  color: #32487b;
}
.collapse_page_template .page_box ul li a {
  display: block;
  font-size: 12px;
  color: #777;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.collapse_page_template .page_box ul li b {
  display: block;
  font-size: 12px;
  color: #32487b;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.cmt_parent {
  position: relative;
}
.cmt_parent.show .cmt_menu_model {
  display: block;
}
.cmt_parent .cmt_menu_model {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  padding: 5px 0;
  overflow: hidden;
  z-index: 999;
  background-color: #FFF;
  border: 1px solid #F0F2F4;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.cmt_parent .cmt_menu_model li a {
  display: block;
  white-space: nowrap;
  background: none;
  padding: 0 16px;
  height: 30px;
  line-height: 30px;
  color: #5E5E5E;
  font-size: 14px;
  font-weight: 400;
}
.cmt_parent .cmt_menu_model li a:hover {
  color: #32487b;
  background-color: #F2F5F9;
}

.index_html .main_box {
  margin-top: 15px;
}
.index_html .main_box .left_box .swiper_banner {
  height: 430px;
}
.index_html .main_box .left_box .swiper_banner .swiper-wrapper .swiper-slide a .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 1;
  padding: 15px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}
.index_html .main_box .left_box .swiper_banner .swiper-wrapper .swiper-slide a .content img {
  width: 46px;
  height: 46px;
  float: left;
  margin-right: 20px;
  margin-top: 12px;
}
.index_html .main_box .left_box .swiper_banner .swiper-wrapper .swiper-slide a .content p {
  font-size: 14px;
  width: 600px;
  height: 46px;
  line-height: 46px;
  margin-top: 12px;
  float: left;
  color: #fff;
  overflow: hidden;
}
.index_html .main_box .left_box .swiper_banner .swiper-wrapper .swiper-slide a .content span {
  float: right;
  color: #fff;
  margin-top: 20px;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  text-align: center;
  background-color: #32487b;
}
.index_html .main_box .left_box .swiper_banner .swiper-button-next {
  width: 15px;
  height: 27px;
  background-image: url(../images/banner_arrow_r.png);
  background-size: contain;
}
.index_html .main_box .left_box .swiper_banner .swiper-button-prev {
  width: 15px;
  height: 27px;
  background-image: url(../images/banner_arrow_l.png);
  background-size: contain;
}
.index_html .main_box .left_box .swiper_banner .swiper-pagination {
  display: block;
}
.index_html .main_box .right_box > div {
  height: 210px;
  padding: 15px 10px;
  box-sizing: border-box;
}
.index_html .main_box .right_box .hot_search form {
  height: 36px;
  line-height: 36px;
  width: 100%;
  border-radius: 5px;
  margin-top: 8px;
  border: 2px solid #32487b;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.index_html .main_box .right_box .hot_search form:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 4px;
  z-index: 1;
  right: 12px;
  background: url(../images/search_btn.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.index_html .main_box .right_box .hot_search form input {
  position: absolute;
  width: 220px;
  top: 0;
  bottom: 0;
  color: #666;
  font-size: 14px;
  padding: 0 20px 0 20px;
}
.index_html .main_box .right_box .hot_search form input::-webkit-input-placeholder {
  color: #999;
}
.index_html .main_box .right_box .hot_search form input::-moz-input-placeholder {
  color: #999;
}
.index_html .main_box .right_box .hot_search form input::-ms-input-placeholder {
  color: #999;
}
.index_html .main_box .right_box .hot_search form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  display: inline-block;
  background-color: #32487b;
}
.index_html .main_box .right_box .hot_search .title {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}
.index_html .main_box .right_box .hot_search .search_result {
  height: 111px;
  overflow: hidden;
}
.index_html .main_box .right_box .hot_search .search_result a {
  float: left;
  height: 27px;
  line-height: 27px;
  color: #666;
  font-size: 12px;
  padding: 0 10px;
  margin-top: 10px;
  margin-right: 10px;
  background-color: #F2F5F9;
}
.index_html .main_box .right_box .hot_search .search_result a:hover {
  color: #fff;
  background-color: #32487b;
}
.index_html .main_box .right_box .download_link {
  margin-top: 10px;
}
.index_html .main_box .right_box .download_link .title {
  position: relative;
  overflow: hidden;
  padding-left: 66px;
}
.index_html .main_box .right_box .download_link .title img {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 0;
  left: 0;
}
.index_html .main_box .right_box .download_link .title .content p {
  color: #222;
  font-size: 20px;
  margin-top: 5px;
  display: inline-block;
  width: 190px;
  height: 28px;
  line-height: 28px;
  overflow: hidden;
}
.index_html .main_box .right_box .download_link .title .content .score_item {
  position: relative;
  top: -8px;
}
.index_html .main_box .right_box .download_link .title .content span {
  color: #999;
  font-size: 12px;
}
.index_html .main_box .right_box .download_link .download_btn {
  display: block;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  text-align: center;
  border-radius: 3px;
  margin-top: 15px;
  color: #fff;
  background-color: #32487b;
}
.index_html .main_box .right_box .download_link .download_more {
  margin-top: 15px;
  overflow: hidden;
}
.index_html .main_box .right_box .download_link .download_more a {
  float: left;
  width: 25%;
  text-align: center;
}
.index_html .main_box .right_box .download_link .download_more a img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
}
.index_html .main_box .right_box .download_link .download_more a span {
  display: block;
  width: 80px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
}
.index_html .main_box .right_box .download_link .download_more a:nth-child(1) span {
  color: #2aa2da;
}
.index_html .main_box .right_box .download_link .download_more a:nth-child(2) span {
  color: #3B579E;
}
.index_html .main_box .right_box .download_link .download_more a:nth-child(3) span {
  color: #2aa2da;
}
.index_html .main_box .right_box .download_link .download_more a:nth-child(4) span {
  color: #E52D27;
}
.index_html .content_box .left_box .section_box .img_text_template {
  padding-bottom: 10px;
}
.index_html .content_box .left_box .section_box .img_text_template li {
  width: 85px;
  float: left;
  margin-right: 18px;
}
.index_html .content_box .left_box .section_box .img_text_template li a .img_item {
  height: 85px;
}
.index_html .content_box .left_box .section_box .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
  word-wrap: break-word;
}
.index_html .content_box .left_box .section_box .img_text_template li a .score_item {
  margin-top: 8px;
}
.index_html .content_box .left_box .rmwz_box .lr_img_template {
  overflow: hidden;
}
.index_html .content_box .left_box .rmwz_box .lr_img_template li {
  float: left;
  width: 50%;
  height: 90px;
  margin-top: 0;
  margin-bottom: 15px;
}
.index_html .content_box .left_box .rmwz_box .lr_img_template li a .img_item {
  width: 140px;
  height: 90px;
  border-radius: 5px;
}
.index_html .content_box .left_box .rmwz_box .lr_img_template li a .content {
  height: 90px;
}
.index_html .content_box .left_box .rmwz_box .lr_img_template li a p {
  width: 95%;
  padding-top: 0;
  height: 40px;
}
.index_html .content_box .left_box .rmwz_box .lr_img_template li a .text {
  margin-top: 32px;
}
.index_html .content_box .left_box .game_box .lr_img_template {
  overflow: hidden;
}
.index_html .content_box .left_box .game_box .lr_img_template li {
  float: left;
  width: 33.3%;
  height: 75px;
  margin-top: 0;
  margin-bottom: 15px;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .img_item {
  width: 75px;
  height: 75px;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .content {
  height: 75px;
}
.index_html .content_box .left_box .game_box .lr_img_template li a p {
  padding-top: 0;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .text {
  display: block;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .num {
  color: #333;
  font-size: 12px;
  margin-top: 8px;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .size {
  color: #999;
  font-size: 12px;
  margin-top: 8px;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .size:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url(../images/down_icon.png) no-repeat center center;
  background-size: contain;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .size.none:before {
  display: none;
}
.index_html .content_box .left_box .game_box .lr_img_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}
.index_html .content_box .right_box .lr_img_template li a .content {
  box-sizing: border-box;
  padding: 8px 0;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) {
  height: 180px;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a {
  height: 100%;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .title_img {
  position: relative;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 150px;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .title_img:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  content: "";
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.67%, rgba(0, 0, 0, 0.5) 100%);
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .content p {
  color: #fff;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .content .text {
  color: #8B8B8B;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .score_item {
  color: #fff;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .score_item:before {
  background-image: url(../images/score@.png);
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a {
  display: block;
  position: relative;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a .title_img {
  display: none;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content {
  display: flex;
  justify-content: space-between;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .content {
  height: 64px;
  padding: 8px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content p {
  padding-top: 0;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .score_item {
  position: relative;
  top: 8px;
  right: 10px;
}
.index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}
.index_html .content_box .other_box .lr_img_template li a p {
  padding-top: 0;
}
.index_html .content_box .other_box .lr_img_template li a .score_item {
  top: 2px;
}
.index_html .content_box .other_box .lr_img_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}

.wzlb_html .switch_box {
  position: relative;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #F3F3F3;
}
.wzlb_html .switch_box a {
  float: left;
  color: #999;
  font-size: 14px;
  display: inline-block;
  height: 48px;
  margin: 0 15px;
}
.wzlb_html .switch_box a.active {
  color: #32487b;
  border-bottom: 2px solid #32487b;
}
.wzlb_html .switch_box a.active:after {
  content: attr(data-text);
  position: absolute;
  right: 30px;
  top: 0;
  color: #999;
}
.wzlb_html .article_box .desc {
  font-size: 12px;
  color: #999;
}
.wzlb_html .article_box .article_list {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.wzlb_html .article_box .article_list .article_img {
  position: relative;
  width: 600px;
  height: 290px;
  border-radius: 4px;
  overflow: hidden;
}
.wzlb_html .article_box .article_list .article_img > a {
  display: block;
  height: 100%;
}
.wzlb_html .article_box .article_list .article_img .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 8px;
}
.wzlb_html .article_box .article_list .article_img .info a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: normal;
}
.wzlb_html .article_box .article_list .article_img .info .text {
  display: none;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wzlb_html .article_box .article_list .article_item {
  flex: 1;
}
.wzlb_html .article_box .article_list .article_item .lr_img_template {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.wzlb_html .article_box .article_list .article_item .lr_img_template li {
  height: auto;
  margin-top: 0;
  box-sizing: border-box;
  padding: 7px 0;
  border-bottom: 1px solid #F3F3F3;
}
.wzlb_html .article_box .article_list .article_item .lr_img_template li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.wzlb_html .article_box .article_list .article_item .lr_img_template li a .content {
  height: 86px;
  margin-left: 15px;
}
.wzlb_html .article_box .article_list .article_item .lr_img_template li a .content p {
  padding-top: 0;
}
.wzlb_html .article_box .article_list .article_item .lr_img_template li a .img_item {
  width: 152px;
  height: 86px;
}
.wzlb_html .swiper_xw .img_text_template {
  overflow: initial;
}
.wzlb_html .swiper_xw .img_text_template .swiper-slide {
  width: auto;
}
.wzlb_html .swiper_xw .img_text_template .swiper-slide a {
  display: block;
  height: 100%;
}
.wzlb_html .swiper_xw .img_text_template .swiper-slide a .img_item {
  width: 100%;
  height: 170px;
}
.wzlb_html .swiper_xw .img_text_template .swiper-slide a .content p {
  height: 44px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #4B4B4B;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wzlb_html .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.wzlb_html .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.wzlb_html .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.wzlb_html .main_box .left_box .lr_img_template {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wzlb_html .main_box .left_box .lr_img_template.active li:nth-child(n) {
  display: block;
}
.wzlb_html .main_box .left_box .lr_img_template li {
  height: auto;
  margin-top: 0;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin-top: 10px;
  border-bottom: 1px solid #F3F3F3;
}
.wzlb_html .main_box .left_box .lr_img_template li:nth-child(n+5) {
  display: none;
}
.wzlb_html .main_box .left_box .lr_img_template li:nth-child(4n) {
  padding-bottom: 0;
  border-bottom: none;
}
.wzlb_html .main_box .left_box .lr_img_template li:nth-child(4n) a {
  display: flex;
  flex-direction: column;
}
.wzlb_html .main_box .left_box .lr_img_template li:nth-child(4n) a .img_item {
  width: 100%;
  height: 416px;
}
.wzlb_html .main_box .left_box .lr_img_template li:nth-child(4n) a .content {
  width: 100%;
  margin-top: 10px;
  border-bottom: 1px solid #F3F3F3;
}
.wzlb_html .main_box .left_box .lr_img_template li a .content {
  height: 90px;
  margin-left: 15px;
}
.wzlb_html .main_box .left_box .lr_img_template li a .img_item {
  width: 160px;
  height: 90px;
}
.wzlb_html .main_box .left_box .more_btn {
  display: block;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  border-radius: 4px;
  width: 208px;
  font-weight: 500;
  color: #32487b;
  text-align: center;
  margin: 20px auto 10px;
  border: 1px solid #32487b;
  overflow: hidden;
}
.wzlb_html .main_box .left_box .more_btn:hover {
  cursor: pointer;
  color: #fff;
  background-color: #32487b;
}
.wzlb_html .main_box .right_box .lr_img_template {
  display: flex;
  flex-direction: column;
}
.wzlb_html .main_box .right_box .lr_img_template li {
  height: auto;
  margin-top: 0;
  box-sizing: border-box;
  padding-bottom: 15px;
}
.wzlb_html .main_box .right_box .lr_img_template li a .img_item {
  width: 128px;
  height: 72px;
}
.wzlb_html .main_box .right_box .lr_img_template li a .content {
  height: 72px;
}
.wzlb_html .main_box .right_box .lr_img_template li a .content p {
  padding-top: 0;
  height: 44px;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.xzld_html .left_box .theme_box .lr_img_template {
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F4F4;
}
.xzld_html .left_box .theme_box .lr_img_template li {
  height: 120px;
  display: flex;
  justify-content: space-between;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box {
  flex: 1;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .img_item {
  width: 120px;
  height: 120px;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .content {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .title {
  line-height: 30px;
  color: #333;
  font-size: 24px;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .info_item {
  display: flex;
  font-size: 14px;
  padding: 4px 0;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .info_item .score_item {
  display: inline-block;
  width: 70px;
  position: initial;
  text-align: left;
  font-size: 14px;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .info_item .comment {
  font-size: 14px;
  color: #777;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .info_item .comment i {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url(../images/user.png) no-repeat center center;
  background-size: contain;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .info_item .time {
  width: 100px;
  text-align: left;
  font-size: 12px;
  color: #777;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .info_item .version {
  color: #32487b;
  font-size: 12px;
}
.xzld_html .left_box .theme_box .lr_img_template li .content_box .text {
  margin-top: 10px;
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.xzld_html .left_box .theme_box .lr_img_template li .download {
  width: auto;
  min-width: 200px;
  padding: 0 10px;
}
.xzld_html .left_box .content_info {
  position: relative;
  overflow: hidden;
  font-size: 14px;
  padding-top: 15px;
  height: 300px;
  line-height: 28px;
  text-indent: 20px;
  word-wrap: break-word;
}
.xzld_html .left_box .content_info.active {
  height: auto;
}
.xzld_html .left_box .content_info.active:after {
  display: none;
}
.xzld_html .left_box .content_info h2, .xzld_html .left_box .content_info h3, .xzld_html .left_box .content_info h4, .xzld_html .left_box .content_info h5 {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  position: relative;
  line-height: 28px;
}
.xzld_html .left_box .content_info p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #666;
  margin-top: 15px;
  text-wrap: initial !important;
}
.xzld_html .left_box .content_info span {
  text-wrap: initial !important;
}
.xzld_html .left_box .content_info img {
  max-width: 80% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 15px auto 0;
}
.xzld_html .left_box .content_info:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9));
}
.xzld_html .left_box .zd_btn {
  text-align: center;
  color: #4CB9EE;
  font-size: 14px;
  height: 36px;
  width: 208px;
  line-height: 36px;
  margin: 15px auto;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #DDDDDD;
}
.xzld_html .left_box .zd_btn:after {
  content: "";
  width: 5px;
  height: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  left: 10px;
  transform: rotate(180deg);
  transform: rotate(90deg);
  background: url(../images/arrow.png) no-repeat center center;
}
.xzld_html .left_box .zd_btn.active:after {
  transform: rotate(270deg);
}
.xzld_html .left_box .type {
  padding-bottom: 10px;
  overflow: hidden;
}
.xzld_html .left_box .type a {
  display: inline-block;
  float: left;
  color: #999;
  padding: 0 10px;
  height: 22px;
  line-height: 22px;
  margin-right: 5px;
  margin-top: 8px;
  font-size: 12px;
  border: 1px solid #E4E4E4;
  overflow: hidden;
}
.xzld_html .left_box .type a:hover {
  color: #32487b;
  border-color: #32487b;
}
.xzld_html .left_box .download_group_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.xzld_html .left_box .download_group_box .download {
  display: block;
  box-sizing: border-box;
  padding: 0;
  min-width: 280px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border: none;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background-color: #32487b;
}
.xzld_html .left_box .download_group_box .download i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.xzld_html .left_box .download_group_box .download:hover {
  opacity: 0.9;
}
.xzld_html .left_box .download_group_box .download_info {
  width: 200px;
  height: 40px;
  line-height: 20px;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}
.xzld_html .left_box .download_group_box .download_info a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #32487b;
}
.xzld_html .left_box .download_group_box .download_info a:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/fx.svg) no-repeat center center;
  background-size: contain;
}
.xzld_html .left_box .col4 .img_text_template {
  padding-bottom: 10px;
}
.xzld_html .left_box .col4 .img_text_template li {
  width: 195px;
  float: left;
  margin-right: 10px;
}
.xzld_html .left_box .col4 .img_text_template li:nth-child(4n) {
  margin-right: 0;
}
.xzld_html .left_box .col4 .img_text_template li a {
  display: block;
}
.xzld_html .left_box .col4 .img_text_template li a .img_item {
  height: 120px;
}
.xzld_html .left_box .col4 .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
}
.xzld_html .left_box .col4 .img_text_template li a .score_item {
  margin-top: 8px;
}
.xzld_html .left_box .swiper_xw {
  height: 170px;
}
.xzld_html .left_box .swiper_xw .img_text_template {
  overflow: initial;
}
.xzld_html .left_box .swiper_xw .img_text_template .swiper-slide {
  width: auto;
}
.xzld_html .left_box .swiper_xw .img_text_template .swiper-slide a {
  display: block;
  height: 100%;
}
.xzld_html .left_box .swiper_xw .img_text_template .swiper-slide a .img_item {
  width: 100%;
  height: 100%;
}
.xzld_html .left_box .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.xzld_html .left_box .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.xzld_html .left_box .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.xzld_html .left_box .col8 .img_text_template {
  padding-bottom: 10px;
}
.xzld_html .left_box .col8 .img_text_template li {
  width: 85px;
  float: left;
  margin-right: 18px;
}
.xzld_html .left_box .col8 .img_text_template li:nth-child(8n) {
  margin-right: 0;
}
.xzld_html .left_box .col8 .img_text_template li a {
  display: block;
}
.xzld_html .left_box .col8 .img_text_template li a .img_item {
  width: 85px;
  height: 85px;
}
.xzld_html .left_box .col8 .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
  word-wrap: break-word;
}
.xzld_html .left_box .col8 .img_text_template li a .score_item {
  margin-top: 8px;
}
.xzld_html .right_box .download_link {
  margin-top: 10px;
}
.xzld_html .right_box .download_link .title {
  position: relative;
  overflow: hidden;
  padding-left: 66px;
}
.xzld_html .right_box .download_link .title img {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 0;
  left: 0;
}
.xzld_html .right_box .download_link .title .content p {
  color: #222;
  font-size: 20px;
  margin-top: 5px;
  display: inline-block;
  width: 190px;
  height: 28px;
  line-height: 28px;
  overflow: hidden;
}
.xzld_html .right_box .download_link .title .content .score_item {
  position: relative;
  top: -8px;
}
.xzld_html .right_box .download_link .title .content span {
  color: #999;
  font-size: 12px;
}
.xzld_html .right_box .download_link .download_btn {
  display: block;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  text-align: center;
  border-radius: 3px;
  margin-top: 15px;
  color: #fff;
  background-color: #32487b;
}
.xzld_html .right_box .download_link .download_btn:hover {
  opacity: 0.9;
}
.xzld_html .right_box .download_link .download_more {
  margin-top: 15px;
  overflow: hidden;
}
.xzld_html .right_box .download_link .download_more a {
  float: left;
  width: 25%;
  text-align: center;
}
.xzld_html .right_box .download_link .download_more a img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
}
.xzld_html .right_box .download_link .download_more a span {
  display: block;
  width: 80px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
}
.xzld_html .right_box .download_link .download_more a:nth-child(1) span {
  color: #2aa2da;
}
.xzld_html .right_box .download_link .download_more a:nth-child(2) span {
  color: #3B579E;
}
.xzld_html .right_box .download_link .download_more a:nth-child(3) span {
  color: #2aa2da;
}
.xzld_html .right_box .download_link .download_more a:nth-child(4) span {
  color: #E52D27;
}
.xzld_html .right_box .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.xzld_html .right_box .lr_img_template li:first-child {
  margin-top: 0;
}
.xzld_html .right_box .lr_img_template li a P {
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xzld_html .right_box .lr_img_template li a .score_item {
  position: initial;
  display: block;
}
.xzld_html .right_box .lr_img_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}

.xzdzld_html .left_box .more_info {
  overflow: hidden;
}
.xzdzld_html .left_box .more_info li {
  float: left;
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.xzdzld_html .left_box .more_info li img {
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}
.xzdzld_html .left_box .more_info li .content {
  display: flex;
  flex-direction: column;
}
.xzdzld_html .left_box .more_info li .content .title {
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.xzdzld_html .left_box .more_info li .content span {
  display: block;
  height: 20px;
  color: #8B8B8B;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.xzdzld_html .left_box .more_info li .content a {
  height: 20px;
  color: #32487b;
}

.xzpd_html .swiper_xw {
  height: 220px;
  padding: 0 15px 15px;
}
.xzpd_html .swiper_xw .img_text_template {
  overflow: initial;
}
.xzpd_html .swiper_xw .img_text_template .swiper-slide {
  background-color: #F8F9FA;
}
.xzpd_html .swiper_xw .img_text_template .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.xzpd_html .swiper_xw .img_text_template .swiper-slide a .img_item {
  height: 100%;
}
.xzpd_html .swiper_xw .img_text_template .swiper-slide a .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 10px 15px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}
.xzpd_html .swiper_xw .img_text_template .swiper-slide a .content p {
  font-size: 14px;
  width: 240px;
  height: 28px;
  line-height: 28px;
  float: left;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.xzpd_html .swiper_xw .img_text_template .swiper-slide a .content .download {
  display: inline-block;
  float: right;
  color: #fff;
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  background-color: #32487b;
  border-radius: 5px;
  overflow: hidden;
}
.xzpd_html .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.xzpd_html .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.xzpd_html .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.xzpd_html .column3_item .title_template {
  margin-bottom: 0;
}
.xzpd_html .column3_item .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.xzpd_html .column3_item .lr_img_template li {
  float: left;
  width: 33.3%;
  height: auto;
}
.xzpd_html .column3_item .lr_img_template li a .img_item {
  width: 65px;
  height: 65px;
}
.xzpd_html .column3_item .lr_img_template li a .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 80px;
}
.xzpd_html .column3_item .lr_img_template li a .content .score_item {
  position: initial;
  display: block;
}
.xzpd_html .column3_item .lr_img_template li a .content .text {
  margin-right: 10px;
}
.xzpd_html .column3_item .lr_img_template li a .content .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
  margin-top: 15px;
}
.xzpd_html .swiper_items .swiper-container {
  height: auto;
}
.xzpd_html .swiper_items .swiper-container .img_text_template {
  overflow: initial;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide {
  background-color: #F8F9FA;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .img_item {
  display: block;
  height: 220px;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content {
  position: relative;
  padding: 10px 0 0 65px;
  height: 58px;
  overflow: hidden;
  background: #fff;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content .small_item {
  position: absolute;
  top: 15px;
  left: 0;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  overflow: hidden;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content .small_item img {
  width: 100%;
  height: 100%;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content p {
  margin-top: 10px;
  float: initial;
  color: #444;
  text-align: left;
}
.xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}
.xzpd_html .column10_item .img_text_template {
  margin: 0 4px;
  padding-bottom: 10px;
}
.xzpd_html .column10_item .img_text_template li {
  width: 100px;
  float: left;
  margin-right: 18px;
}
.xzpd_html .column10_item .img_text_template li:nth-child(10n) {
  margin-right: 0;
}
.xzpd_html .column10_item .img_text_template li a {
  display: block;
}
.xzpd_html .column10_item .img_text_template li a .img_item {
  width: 100px;
  height: 100px;
}
.xzpd_html .column10_item .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
  word-wrap: break-word;
}
.xzpd_html .column10_item .img_text_template li a .score_item {
  margin-top: 8px;
}
.xzpd_html .column10_item .img_text_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}

.zt_html {
  background-color: #fff;
}
.zt_html .special_box {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 25px;
}
.zt_html .special_box li {
  float: left;
  width: 390px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s linear;
  background-color: #fff;
}
.zt_html .special_box li:nth-child(3n) {
  margin-right: 0;
}
.zt_html .special_box li:hover {
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -3px, 0);
}
.zt_html .special_box li a {
  display: block;
  padding-bottom: 15px;
}
.zt_html .special_box li a .img_item {
  width: 100%;
  height: 190px;
}
.zt_html .special_box li a .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-top: -15px;
}
.zt_html .special_box li a .info img {
  position: relative;
  width: 60px;
  height: 60px;
  top: -15px;
  border-radius: 15%;
  border: 1px solid #EFF3F9;
  background-color: #fff;
  box-sizing: border-box;
}
.zt_html .special_box li a .info h3 {
  flex: 1;
  margin-left: 10px;
  line-height: 19px;
  font-weight: 600;
  padding-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zt_html .special_box li a .desc {
  height: 36px;
  padding: 0 15px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: unset;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.zt_detail_html .main_box .left_box .best_game li {
  margin-top: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zt_detail_html .main_box .left_box .best_game li a {
  font-size: 15px;
  line-height: 24px;
  color: #666666;
  font-weight: 500;
}
.zt_detail_html .main_box .left_box .special_list {
  margin-top: 20px;
}
.zt_detail_html .main_box .left_box .special_list li {
  padding: 15px 0;
  border-top: 1px solid #F2F5FA;
}
.zt_detail_html .main_box .left_box .special_list li .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zt_detail_html .main_box .left_box .special_list li .info .img_item {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
}
.zt_detail_html .main_box .left_box .special_list li .info .content {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px 0;
  width: 0;
  flex: 1 1;
  margin: 0 15px;
  box-sizing: border-box;
}
.zt_detail_html .main_box .left_box .special_list li .info .content .title a {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.zt_detail_html .main_box .left_box .special_list li .info .content .title:hover a {
  color: #32487b;
}
.zt_detail_html .main_box .left_box .special_list li .info .download_btn {
  min-width: 224px;
  padding: 0 10px;
  height: 40px;
  font-size: 13px;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  background-color: #32487b;
  border-radius: 4px;
}
.zt_detail_html .main_box .left_box .special_list li .info .download_btn:hover {
  opacity: 0.9;
}
.zt_detail_html .main_box .left_box .special_list li .desc {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  margin: 10px 0;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.zt_detail_html .main_box .left_box .special_list li .desc a {
  display: inline-block;
  color: #666666;
  position: absolute;
  width: 9em;
  background-color: #fff;
  bottom: 0;
  right: 0;
}
.zt_detail_html .main_box .left_box .special_list li .desc a span {
  color: #32487b;
  text-align: center;
}
.zt_detail_html .main_box .left_box .special_list li .big_img {
  display: block;
  height: 400px;
}
.zt_detail_html .main_box .left_box .special_list li .big_img img {
  border-radius: 8px;
}
.zt_detail_html .main_box .right_box .relational_box li {
  margin-bottom: 16px;
}
.zt_detail_html .main_box .right_box .relational_box li .big_img {
  display: block;
  height: 160px;
}
.zt_detail_html .main_box .right_box .relational_box li .big_img img {
  border-radius: 8px;
}
.zt_detail_html .main_box .right_box .relational_box li .type {
  margin-top: 8px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
}
.zt_detail_html .main_box .right_box .relational_box li .title {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}
.zt_detail_html .main_box .right_box .relational_box li .title:hover {
  color: #32487b;
}

.xzlb_html .swiper_xw {
  height: 220px;
  padding: 15px;
}
.xzlb_html .swiper_xw .img_text_template {
  overflow: initial;
}
.xzlb_html .swiper_xw .img_text_template .swiper-slide {
  background-color: #F8F9FA;
}
.xzlb_html .swiper_xw .img_text_template .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.xzlb_html .swiper_xw .img_text_template .swiper-slide a .img_item {
  height: 100%;
}
.xzlb_html .swiper_xw .img_text_template .swiper-slide a .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 10px 15px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}
.xzlb_html .swiper_xw .img_text_template .swiper-slide a .content p {
  font-size: 14px;
  width: 240px;
  height: 28px;
  line-height: 28px;
  float: left;
  color: #fff;
  overflow: hidden;
}
.xzlb_html .swiper_xw .img_text_template .swiper-slide a .content .download {
  display: inline-block;
  float: right;
  color: #fff;
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  background-color: #32487b;
  border-radius: 5px;
  overflow: hidden;
}
.xzlb_html .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.xzlb_html .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.xzlb_html .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.xzlb_html .title_template {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  height: 42px;
  border-bottom: 1px solid #F3F3F3;
}
.xzlb_html .switch_box {
  position: relative;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  overflow: hidden;
  z-index: 99;
}
.xzlb_html .switch_box .switch_list {
  float: left;
  color: #999;
  font-size: 14px;
  display: inline-block;
  height: 38px;
  margin: 0 15px;
  cursor: pointer;
}
.xzlb_html .switch_box .switch_list.active {
  color: #32487b;
  border-bottom: 2px solid #32487b;
}
.xzlb_html .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.xzlb_html .lr_img_template li {
  float: left;
  width: 33.3%;
  height: auto;
}
.xzlb_html .lr_img_template li a .img_item {
  width: 66px;
  height: 66px;
}
.xzlb_html .lr_img_template li a .content {
  height: 66px;
}
.xzlb_html .lr_img_template li a .content p {
  padding-top: 0;
}
.xzlb_html .lr_img_template li a .content .text {
  margin-right: 10px;
  margin-top: 0;
}
.xzlb_html .lr_img_template li a .content .score_item {
  position: initial;
  display: block;
}
.xzlb_html .lr_img_template li a .content .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}
.xzlb_html .lr_img_template li a .download_btn {
  display: none;
}
.xzlb_html .laypage {
  margin: 20px 0;
}

.yyyx_html .swiper_xw {
  height: 220px;
  padding: 15px;
}
.yyyx_html .swiper_xw .img_text_template {
  overflow: initial;
}
.yyyx_html .swiper_xw .img_text_template .swiper-slide {
  background-color: #F8F9FA;
}
.yyyx_html .swiper_xw .img_text_template .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.yyyx_html .swiper_xw .img_text_template .swiper-slide a .img_item {
  height: 100%;
}
.yyyx_html .swiper_xw .img_text_template .swiper-slide a .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 10px 15px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}
.yyyx_html .swiper_xw .img_text_template .swiper-slide a .content p {
  font-size: 14px;
  width: 240px;
  height: 28px;
  line-height: 28px;
  float: left;
  color: #fff;
  overflow: hidden;
}
.yyyx_html .swiper_xw .img_text_template .swiper-slide a .content .download {
  display: inline-block;
  float: right;
  color: #fff;
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  background-color: #32487b;
  border-radius: 5px;
  overflow: hidden;
}
.yyyx_html .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.yyyx_html .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.yyyx_html .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.yyyx_html .title_template {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  height: 42px;
  border-bottom: 1px solid #F3F3F3;
}
.yyyx_html .switch_box {
  position: relative;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  overflow: hidden;
  z-index: 99;
}
.yyyx_html .switch_box .switch_list {
  float: left;
  color: #999;
  font-size: 14px;
  display: inline-block;
  height: 38px;
  margin: 0 15px;
  cursor: pointer;
}
.yyyx_html .switch_box .switch_list.active {
  color: #32487b;
  border-bottom: 2px solid #32487b;
}
.yyyx_html .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.yyyx_html .lr_img_template li {
  float: left;
  width: 33.3%;
  height: auto;
}
.yyyx_html .lr_img_template li a .img_item {
  width: 66px;
  height: 66px;
}
.yyyx_html .lr_img_template li a .content {
  height: 66px;
}
.yyyx_html .lr_img_template li a .content p {
  padding-top: 0;
}
.yyyx_html .lr_img_template li a .content .text {
  margin-right: 10px;
  margin-top: 0;
}
.yyyx_html .lr_img_template li a .content .score_item {
  position: initial;
  display: block;
}
.yyyx_html .lr_img_template li a .content .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}
.yyyx_html .lr_img_template li a .download_btn {
  display: none;
}
.yyyx_html .laypage {
  margin: 20px 0;
}

.yyyxld_html .left_box .theme_box .lr_img_template {
  padding-bottom: 10px;
}
.yyyxld_html .left_box .theme_box .lr_img_template li {
  height: 120px;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .img_item {
  width: 120px;
  height: 120px;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content .title {
  line-height: 30px;
  color: #333;
  font-size: 24px;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content .text {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content .info {
  color: #555;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content .info .num {
  color: #32487b;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
  box-sizing: border-box;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns .download {
  display: flex;
  position: relative;
  box-sizing: border-box;
  padding: 0 10px;
  min-width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: none;
  color: #fff;
  background-color: #24CE77;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns .download i {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 28px;
  margin-right: 5px;
  background: url(../images/android_icon.png) no-repeat center center;
  background-size: contain;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns .download:hover {
  opacity: 0.9;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns .other_search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 8px;
  font-size: 14px;
  padding: 0 16px;
  color: #fff;
  border-radius: 4px;
  width: 200px;
  height: 40px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #32487b;
}
.yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns .other_search span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url(../images/other_search.png) no-repeat center center;
  background-size: contain;
  vertical-align: sub;
}
.yyyxld_html .left_box .content_info {
  position: relative;
  overflow: hidden;
  font-size: 14px;
  padding-top: 15px;
  height: 300px;
  line-height: 28px;
  text-indent: 20px;
  word-wrap: break-word;
  color: #777;
}
.yyyxld_html .left_box .content_info.active {
  height: auto;
}
.yyyxld_html .left_box .content_info.active:after {
  display: none;
}
.yyyxld_html .left_box .content_info h2, .yyyxld_html .left_box .content_info h3, .yyyxld_html .left_box .content_info h4, .yyyxld_html .left_box .content_info h5 {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  position: relative;
  line-height: 28px;
}
.yyyxld_html .left_box .content_info p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #777;
  margin-top: 15px;
  text-wrap: initial !important;
}
.yyyxld_html .left_box .content_info span {
  text-wrap: initial !important;
}
.yyyxld_html .left_box .content_info img {
  max-width: 80% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 15px auto 0;
}
.yyyxld_html .left_box .content_info:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9));
}
.yyyxld_html .left_box .zd_btn {
  text-align: center;
  color: #4CB9EE;
  font-size: 14px;
  height: 36px;
  width: 208px;
  line-height: 36px;
  margin: 15px auto;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #DDDDDD;
}
.yyyxld_html .left_box .zd_btn:after {
  content: "";
  width: 5px;
  height: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  left: 10px;
  transform: rotate(180deg);
  transform: rotate(90deg);
  background: url(../images/arrow.png) no-repeat center center;
}
.yyyxld_html .left_box .zd_btn.active:after {
  transform: rotate(270deg);
}
.yyyxld_html .left_box .desc_box {
  font-size: 14px;
  line-height: 22px;
  color: #777;
  margin: 15px 0;
}
.yyyxld_html .left_box .type {
  padding-bottom: 10px;
  overflow: hidden;
}
.yyyxld_html .left_box .type a {
  display: inline-block;
  float: left;
  color: #32487b;
  padding: 0 10px;
  height: 22px;
  line-height: 22px;
  margin-right: 5px;
  margin-top: 8px;
  font-size: 12px;
  border-radius: 5px;
  border: 1px solid #32487b;
  overflow: hidden;
}
.yyyxld_html .left_box .type a:hover {
  color: #fff;
  background-color: #32487b;
}
.yyyxld_html .left_box .col4 .img_text_template {
  padding-bottom: 10px;
}
.yyyxld_html .left_box .col4 .img_text_template li {
  width: 195px;
  float: left;
  margin-right: 10px;
}
.yyyxld_html .left_box .col4 .img_text_template li:nth-child(4n) {
  margin-right: 0;
}
.yyyxld_html .left_box .col4 .img_text_template li a {
  display: block;
}
.yyyxld_html .left_box .col4 .img_text_template li a .img_item {
  height: 120px;
}
.yyyxld_html .left_box .col4 .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
}
.yyyxld_html .left_box .col4 .img_text_template li a .score_item {
  margin-top: 8px;
}
.yyyxld_html .left_box .swiper_xw {
  height: 170px;
}
.yyyxld_html .left_box .swiper_xw .img_text_template {
  overflow: initial;
}
.yyyxld_html .left_box .swiper_xw .img_text_template .swiper-slide {
  width: auto;
}
.yyyxld_html .left_box .swiper_xw .img_text_template .swiper-slide a {
  display: block;
  height: 100%;
}
.yyyxld_html .left_box .swiper_xw .img_text_template .swiper-slide a .img_item {
  width: 100%;
  height: 100%;
}
.yyyxld_html .left_box .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.yyyxld_html .left_box .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.yyyxld_html .left_box .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.yyyxld_html .left_box .swiper_xw .swiper-pagination {
  display: none;
}
.yyyxld_html .left_box .col8 .img_text_template {
  padding-bottom: 10px;
}
.yyyxld_html .left_box .col8 .img_text_template li {
  width: 85px;
  float: left;
  margin-right: 18px;
}
.yyyxld_html .left_box .col8 .img_text_template li:nth-child(8n) {
  margin-right: 0;
}
.yyyxld_html .left_box .col8 .img_text_template li a {
  display: block;
}
.yyyxld_html .left_box .col8 .img_text_template li a .img_item {
  width: 85px;
  height: 85px;
}
.yyyxld_html .left_box .col8 .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
  word-wrap: break-word;
}
.yyyxld_html .left_box .col8 .img_text_template li a .score_item {
  margin-top: 8px;
}
.yyyxld_html .right_box .download_link {
  margin-top: 10px;
}
.yyyxld_html .right_box .download_link .title {
  position: relative;
  overflow: hidden;
  padding-left: 66px;
}
.yyyxld_html .right_box .download_link .title img {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 0;
  left: 0;
}
.yyyxld_html .right_box .download_link .title .content p {
  color: #222;
  font-size: 20px;
  margin-top: 5px;
  display: inline-block;
  width: 190px;
  height: 28px;
  line-height: 28px;
  overflow: hidden;
}
.yyyxld_html .right_box .download_link .title .content .score_item {
  position: relative;
  top: -8px;
}
.yyyxld_html .right_box .download_link .title .content span {
  color: #999;
  font-size: 12px;
}
.yyyxld_html .right_box .download_link .download_btn {
  display: block;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  text-align: center;
  border-radius: 3px;
  margin-top: 15px;
  color: #fff;
  background-color: #32487b;
}
.yyyxld_html .right_box .download_link .download_btn:hover {
  opacity: 0.9;
}
.yyyxld_html .right_box .download_link .download_more {
  margin-top: 15px;
  overflow: hidden;
}
.yyyxld_html .right_box .download_link .download_more a {
  float: left;
  width: 25%;
  text-align: center;
}
.yyyxld_html .right_box .download_link .download_more a img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
}
.yyyxld_html .right_box .download_link .download_more a span {
  display: block;
  width: 80px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
}
.yyyxld_html .right_box .download_link .download_more a:nth-child(1) span {
  color: #2aa2da;
}
.yyyxld_html .right_box .download_link .download_more a:nth-child(2) span {
  color: #3B579E;
}
.yyyxld_html .right_box .download_link .download_more a:nth-child(3) span {
  color: #2aa2da;
}
.yyyxld_html .right_box .download_link .download_more a:nth-child(4) span {
  color: #E52D27;
}
.yyyxld_html .right_box .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.yyyxld_html .right_box .lr_img_template li:first-child {
  margin-top: 0;
}
.yyyxld_html .right_box .lr_img_template li a P {
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.yyyxld_html .right_box .lr_img_template li a .score_item {
  position: initial;
  display: block;
}
.yyyxld_html .right_box .lr_img_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}

.ssjg_html .left_box .form_box {
  padding: 16px;
  height: 44px;
  line-height: 44px;
  border-radius: 5px;
}
.ssjg_html .left_box .form_box form {
  display: flex;
  height: 100%;
}
.ssjg_html .left_box .form_box form .back_icon {
  display: none;
  width: 44px;
  height: 100%;
  background: url(../images/back.png) no-repeat center center;
  background-size: 50%;
}
.ssjg_html .left_box .form_box form .input_box {
  flex: 1;
  height: 42px;
  line-height: 42px;
  border: 1px solid #eee;
  border-radius: 5px 0 0 5px;
  box-shadow: inset 0 0px 5px 1px #eee;
  background-color: #fff;
}
.ssjg_html .left_box .form_box form .input_box input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 15px;
}
.ssjg_html .left_box .form_box form .search_btn {
  width: 100px;
  height: 100%;
  cursor: pointer;
  background: #32487b url(../images/search_btn.png) no-repeat center center;
}
.ssjg_html .left_box .form_box form .search_btn:hover {
  opacity: 0.9;
}
.ssjg_html .left_box .list_title {
  height: 22px;
  background-color: #fff;
  font-size: 13px;
  line-height: 22px;
  color: #8B8B8B;
}
.ssjg_html .left_box .switch_box {
  position: relative;
  height: 50px;
  line-height: 50px;
  background-color: #FBFBFC;
  margin-top: 10px;
  overflow: hidden;
  border-bottom: 1px solid #F3F3F3;
}
.ssjg_html .left_box .switch_box a {
  float: left;
  color: #999;
  font-size: 14px;
  display: inline-block;
  height: 48px;
  margin: 0 15px;
}
.ssjg_html .left_box .switch_box a.active {
  color: #32487b;
  border-bottom: 2px solid #32487b;
}
.ssjg_html .left_box .switch_box a.active:after {
  content: attr(data-text);
  position: absolute;
  right: 30px;
  top: 0;
  color: #999;
}
.ssjg_html .left_box .result_box {
  height: 50px;
  line-height: 50px;
  color: #999;
  font-size: 14px;
  padding: 0 20px;
  background-color: #fff;
}
.ssjg_html .left_box .search_box li a .download_btn {
  display: block;
}
.ssjg_html .left_box .lr_img_template {
  margin-top: 10px;
}
.ssjg_html .left_box .lr_img_template li {
  height: 110px;
  margin-top: 0;
  margin-bottom: 15px;
}
.ssjg_html .left_box .lr_img_template li a .img_item {
  width: 98px;
  height: 98px;
}
.ssjg_html .left_box .lr_img_template li a .img_item img {
  border: 1px solid #EFF3F9;
  border-radius: 15%;
  box-sizing: border-box;
}
.ssjg_html .left_box .lr_img_template li a .content {
  height: 98px;
}
.ssjg_html .left_box .lr_img_template li a .content .title {
  color: #32487b;
}
.ssjg_html .left_box .lr_img_template li a .content p {
  width: 95%;
  padding-top: 0;
}
.ssjg_html .left_box .lr_img_template li a .content .text {
  margin-top: 12px;
}
.ssjg_html .left_box .lr_img_template li a .content .tips {
  display: none;
  white-space: nowrap;
  overflow: hidden;
}
.ssjg_html .left_box .lr_img_template li a .content .tips span {
  box-sizing: border-box;
  height: 22px;
  display: inline-block;
  margin-right: 4px;
  padding: 3px 6px;
  border: 1px solid #F3F3F3;
  border-radius: 2px;
  font-size: 10px;
  line-height: 14px;
  color: #777777;
}
.ssjg_html .right_box .section_box .text {
  margin-bottom: 15px;
}
.ssjg_html .right_box .section_box .text .title {
  font-size: 16px;
  line-height: 24px;
  color: #00A6ED;
  font-weight: 500;
}
.ssjg_html .right_box .section_box .text .desc {
  color: #8B8B8B;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 4px;
}
.ssjg_html .right_box .section_box .other_search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 8px;
  font-size: 14px;
  padding: 0 16px;
  color: #fff;
  border-radius: 4px;
  height: 40px;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #32487b;
}
.ssjg_html .right_box .section_box .other_search span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url(../images/other_search.png) no-repeat center center;
  background-size: contain;
  vertical-align: sub;
}

.word_html .main_box .left_box .info {
  margin-top: 20px;
  line-height: 28px;
  color: #666;
  font-size: 16px;
}
.word_html .main_box .left_box .info h3 {
  margin-top: 10px;
  font-weight: 500;
}
.word_html .main_box .left_box .info br {
  margin-top: 10px;
}
.word_html .main_box .right_box .lr_img_template li a .content {
  height: 64px;
}
.word_html .main_box .right_box .lr_img_template li a .content p {
  padding-top: 0;
}
.word_html .main_box .right_box .lr_img_template li a .content .score_item {
  position: initial;
  display: block;
}

.sybb_html .left_box .theme_box .lr_img_template {
  padding-bottom: 20px;
}
.sybb_html .left_box .theme_box .lr_img_template li {
  height: auto;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .img_item {
  width: 80px;
  height: 80px;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .content {
  height: auto;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .content .title {
  color: #333;
  font-size: 16px;
  padding: 0;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .content .text {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin-top: 5px;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .content .desc {
  height: auto;
  color: #888;
  margin-top: 5px;
  overflow: initial;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .download {
  position: relative;
  top: 0;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: none;
  color: #fff;
  background-color: #32487b;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .download i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.sybb_html .left_box .theme_box .lr_img_template li .content_box .download:hover {
  opacity: 0.9;
}
.sybb_html .left_box .version_desc {
  color: #5E5E5E;
  font-size: 14px;
  line-height: 22px;
}
.sybb_html .left_box .col8 .img_text_template {
  padding-bottom: 10px;
}
.sybb_html .left_box .col8 .img_text_template li {
  width: 85px;
  float: left;
  margin-right: 18px;
}
.sybb_html .left_box .col8 .img_text_template li:nth-child(8n) {
  margin-right: 0;
}
.sybb_html .left_box .col8 .img_text_template li a {
  display: block;
}
.sybb_html .left_box .col8 .img_text_template li a .img_item {
  width: 85px;
  height: 85px;
}
.sybb_html .left_box .col8 .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
  word-wrap: break-word;
}
.sybb_html .left_box .col8 .img_text_template li a .score_item {
  margin-top: 8px;
}
.sybb_html .right_box .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.sybb_html .right_box .lr_img_template li:first-child {
  margin-top: 0;
}
.sybb_html .right_box .lr_img_template li a P {
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sybb_html .right_box .lr_img_template li a .score_item {
  position: initial;
  display: block;
}
.sybb_html .right_box .lr_img_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
  margin-top: 10px;
}

.error_html .left_box .search_page_error .title {
  color: #B54240;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  margin: 15px 0;
}
.error_html .left_box .search_page_error .info {
  color: #8B8B8B;
  font-size: 14px;
  line-height: 22px;
}
.error_html .left_box .search_page_error .other_search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  gap: 8px;
  font-size: 14px;
  padding: 0 16px;
  color: #fff;
  border-radius: 4px;
  height: 40px;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #32487b;
}
.error_html .left_box .search_page_error .other_search:hover {
  opacity: 0.9;
}
.error_html .left_box .search_page_error .other_search span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: url(../images/other_search.png) no-repeat center center;
  background-size: contain;
  vertical-align: sub;
}
.error_html .left_box .hot_search {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.error_html .left_box .hot_search a {
  display: inline-block;
  font-size: 12px;
  padding: 3px 8px;
  column-gap: 4px;
  color: #5E5E5E;
  border-radius: 4px;
  background: #F2F5F9;
}
.error_html .left_box .hot_search a:hover {
  color: #fff;
  background-color: #32487b;
}
.error_html .left_box .img_text_template {
  padding-bottom: 10px;
}
.error_html .left_box .img_text_template li {
  width: 85px;
  float: left;
  margin-right: 18px;
}
.error_html .left_box .img_text_template li:nth-child(8n) {
  margin-right: 0;
}
.error_html .left_box .img_text_template li a {
  display: block;
}
.error_html .left_box .img_text_template li a .img_item {
  height: 85px;
}
.error_html .left_box .img_text_template li a p {
  margin-top: 10px;
  height: 40px;
  text-align: left;
  word-wrap: break-word;
}
.error_html .left_box .img_text_template li a .score_item {
  margin-top: 8px;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) {
  height: 180px;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a {
  height: 100%;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .title_img {
  position: relative;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .title_img:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  content: "";
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.67%, rgba(0, 0, 0, 0.5) 100%);
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .content p {
  color: #fff;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .content .text {
  color: #8B8B8B;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .score_item {
  color: #fff;
}
.error_html .right_box .bztj_box .lr_img_template li:nth-child(1) a .row_content .score_item:before {
  background-image: url(../images/score@.png);
}
.error_html .right_box .bztj_box .lr_img_template li a {
  display: block;
  position: relative;
}
.error_html .right_box .bztj_box .lr_img_template li a .title_img {
  display: none;
}
.error_html .right_box .bztj_box .lr_img_template li a .row_content {
  display: flex;
  justify-content: space-between;
}
.error_html .right_box .bztj_box .lr_img_template li a .row_content .content {
  height: 64px;
  padding: 8px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.error_html .right_box .bztj_box .lr_img_template li a .row_content p {
  padding-top: 0;
}
.error_html .right_box .bztj_box .lr_img_template li a .row_content .score_item {
  position: relative;
  top: 8px;
  right: 10px;
}
.error_html .right_box .bztj_box .lr_img_template li a .row_content .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
}

@keyframes dot {
  25% {
    box-shadow: none;
  }
  50% {
    box-shadow: 3px 0 currentColor;
  }
  75% {
    box-shadow: 3px 0 currentColor, 8px 0 currentColor;
  }
}
@keyframes up-to-down {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.zsdz_html .left_box .theme_box .lr_img_template {
  padding-bottom: 20px;
}
.zsdz_html .left_box .theme_box .lr_img_template li {
  height: auto;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .img_item {
  width: 56px;
  height: 56px;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .content {
  height: 56px;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .content .title {
  color: #333;
  font-size: 16px;
  padding: 0;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .content .text {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin-top: 5px;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .content .desc {
  height: auto;
  color: #888;
  margin-top: 5px;
  overflow: initial;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .download {
  position: relative;
  top: 0;
  padding: 0;
  width: 140px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: none;
  color: #fff;
  background-color: #32487b;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .download i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.zsdz_html .left_box .theme_box .lr_img_template li .content_box .download:hover {
  opacity: 0.9;
}
.zsdz_html .left_box .theme_box .start_download {
  padding: 20px 16px;
  border-radius: 8px;
  background: rgba(64, 135, 247, 0.05);
}
.zsdz_html .left_box .theme_box .start_download .download_title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.zsdz_html .left_box .theme_box .start_download .download_title .download_icon {
  display: flex;
  width: 16px;
  height: 16px;
  position: relative;
}
.zsdz_html .left_box .theme_box .start_download .download_title .download_icon .img {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  fill: #c0c0c0;
  background: url(../images/download@.png) no-repeat center center;
  background-size: contain;
}
.zsdz_html .left_box .theme_box .start_download .download_title .download_icon .img_anima {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  animation: up-to-down 1s linear infinite;
  background: url(../images/download.png) no-repeat center center;
  background-size: contain;
}
.zsdz_html .left_box .theme_box .start_download .download_title .text {
  font-size: 18px;
  line-height: 1.5;
  color: #00A6ED;
  font-weight: bold;
}
.zsdz_html .left_box .theme_box .start_download .download_title .text .dotting {
  display: inline-block;
  min-width: 3px;
  min-height: 3px;
  box-shadow: 3px 0 currentColor, 8px 0 currentColor, 13px 0 currentColor;
  animation: dot 2.8s infinite step-start both;
}
.zsdz_html .left_box .theme_box .start_download h2 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 20px 0 0;
  text-align: center;
  color: #5E5E5E;
  word-break: break-all;
}
.zsdz_html .left_box .theme_box .start_download .download_back {
  color: #8B8B8B;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 15px 0;
}
.zsdz_html .left_box .theme_box .start_download .download_back a {
  text-decoration: underline;
}
.zsdz_html .right_box .lr_img_template {
  padding-bottom: 10px;
  overflow: hidden;
}
.zsdz_html .right_box .lr_img_template li:first-child {
  margin-top: 0;
}
.zsdz_html .right_box .lr_img_template li a P {
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zsdz_html .right_box .lr_img_template li a .score_item {
  position: initial;
  display: block;
}
.zsdz_html .right_box .lr_img_template li a .time {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  height: 20px;
  line-height: 20px;
  margin-top: 10px;
}

.phb_html .ranking_header {
  position: relative;
  text-align: center;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #28AAF6 0%, #3A75F7 100%);
  overflow: hidden;
}
.phb_html .ranking_header .title {
  font-size: 34px;
  font-weight: 900;
  line-height: 44px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}
.phb_html .ranking_header .desc {
  margin: 4px 0;
  margin-bottom: 12px;
  line-height: 21px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.phb_html .ranking_header .mobile_ranking_menu {
  display: none;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  justify-content: space-between;
  align-items: center;
}
.phb_html .ranking_header .mobile_ranking_menu .menu {
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 15px;
  height: 18px;
}
.phb_html .ranking_header .mobile_ranking_menu .menu a {
  display: flex;
  margin-right: 10px;
  color: #fff;
  font-size: 12px;
}
.phb_html .ranking_header .mobile_ranking_menu .more_ranking {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25) url(../images/more.png) no-repeat center center;
}
.phb_html .left_box {
  float: right;
}
.phb_html .left_box .scroll_menu {
  position: relative;
  height: 40px;
  padding-right: 65px;
}
.phb_html .left_box .scroll_menu .scroll_menu_list {
  height: 28px;
}
.phb_html .left_box .scroll_menu .scroll_menu_list li {
  width: auto;
}
.phb_html .left_box .scroll_menu .scroll_menu_list li:hover a, .phb_html .left_box .scroll_menu .scroll_menu_list li.active a {
  background: #EBF3FE;
  color: #4087F7;
}
.phb_html .left_box .scroll_menu .scroll_menu_list li a {
  display: inline-block;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
  background: #F2F5F9;
  margin-right: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
  line-height: 18px;
  color: #5E5E5E;
}
.phb_html .left_box .scroll_menu .filter_btn {
  position: absolute;
  width: 60px;
  height: 28px;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
  background-color: #EBF3FE;
}
.phb_html .left_box .lr_img_template {
  padding-bottom: 15px;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(-n+3) a .img_item {
  position: relative;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(-n+3) a .img_item:after, .phb_html .left_box .lr_img_template.sort_icon li:nth-child(-n+3) a .img_item:before {
  display: block;
  position: absolute;
  top: 0;
  left: 12px;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(-n+3) a .img_item:before {
  content: " ";
  border-left: 10px solid #F3251B;
  border-right: 10px solid #F3251B;
  border-top: 18px solid #F3251B;
  border-bottom: 7px solid transparent;
  z-index: 1;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(-n+3) a .img_item:after {
  content: "1";
  width: 20px;
  top: 2px;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  color: white;
  z-index: 1;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(2) a .img_item:before {
  border-left: 10px solid #F77E13;
  border-right: 10px solid #F77E13;
  border-top: 18px solid #F77E13;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(2) a .img_item:after {
  content: "2";
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(3) a .img_item:before {
  border-left: 10px solid #EFAB19;
  border-right: 10px solid #EFAB19;
  border-top: 18px solid #EFAB19;
}
.phb_html .left_box .lr_img_template.sort_icon li:nth-child(3) a .img_item:after {
  content: "3";
}
.phb_html .left_box .lr_img_template li {
  height: auto;
  margin-top: 24px;
}
.phb_html .left_box .lr_img_template li a {
  padding-left: 0;
}
.phb_html .left_box .lr_img_template li a:before, .phb_html .left_box .lr_img_template li a:after {
  display: none;
}
.phb_html .left_box .lr_img_template li a .img_item {
  width: 120px;
  height: 120px;
}
.phb_html .left_box .lr_img_template li a .content {
  height: 120px;
}
.phb_html .left_box .lr_img_template li a .content .info_item .score_item {
  position: static;
}
.phb_html .left_box .lr_img_template li a .content .info_item .comment {
  margin-left: 8px;
  color: #777;
}
.phb_html .left_box .lr_img_template li a .content .info_item .comment .user, .phb_html .left_box .lr_img_template li a .content .info_item .comment .size {
  display: inline-block;
  position: relative;
  top: 3px;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/user.png) no-repeat center center;
  background-size: contain;
}
.phb_html .left_box .lr_img_template li a .content .info_item .comment .size {
  background: url(../images/size.png) no-repeat center center;
  background-size: contain;
}
.phb_html .left_box .lr_img_template li a .content .info {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.phb_html .left_box .lr_img_template li a .download_btn {
  display: block;
  padding: 0 16px;
  width: auto;
  height: 40px;
  line-height: 40px;
}
.phb_html .left_box .lr_img_template li a .download_btn:hover {
  opacity: 0.9;
}
.phb_html .left_box .lr_img_template li a .download_btn i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 2px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.phb_html .right_box {
  float: left;
}
.phb_html .right_box .ranking_box li {
  margin-bottom: 8px;
}
.phb_html .right_box .ranking_box li.active a, .phb_html .right_box .ranking_box li:hover a {
  color: #fff;
  background-color: #4087F7;
}
.phb_html .right_box .ranking_box li a {
  display: block;
  padding: 4px;
  font-weight: 500;
  line-height: 21px;
  color: #4087F7;
  border-radius: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.phb_html .right_box .ranking_box li a i {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-color: #f20;
  vertical-align: sub;
}

.zxgxjl_html .left_box {
  float: right;
}
.zxgxjl_html .left_box .img_text_template li {
  width: 25%;
  text-align: center;
  padding: 25px 0 5px;
}
.zxgxjl_html .left_box .img_text_template li:hover {
  background-color: #f7f7f7;
}
.zxgxjl_html .left_box .img_text_template li a .img_item {
  width: 126px;
  height: 126px;
  margin: 0 auto;
}
.zxgxjl_html .left_box .img_text_template li a p {
  margin: 10px 0;
}
.zxgxjl_html .left_box .img_text_template li a .download_info {
  font-size: 13px;
  line-height: 30px;
  margin-top: 6px;
  color: #32487b;
}
.zxgxjl_html .right_box {
  float: left;
}
.zxgxjl_html .right_box dl dt {
  display: flex;
  line-height: 40px;
}
.zxgxjl_html .right_box dl dt a {
  display: block;
  flex: 1;
  overflow: hidden;
}
.zxgxjl_html .right_box dl dt a:after {
  float: right;
  content: "";
  display: inline-block;
  position: relative;
  height: 6px;
  width: 6px;
  right: 10px;
  top: 20px;
  border-left: 2px solid #999;
  border-bottom: 2px solid #999;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-135deg);
}
.zxgxjl_html .right_box dl dt a i {
  display: inline-block;
  width: 30px;
  height: 40px;
  vertical-align: bottom;
  padding-right: 10px;
  background: url(https://static.apkpure.com/www/static/imgs/indexicon_v2.png) no-repeat;
}
.zxgxjl_html .right_box dl dt.yx a i {
  background-position: 5px -82px;
}
.zxgxjl_html .right_box dl dt.yxfl a i {
  background-position: 5px -14px;
}
.zxgxjl_html .right_box dl dd {
  overflow: hidden;
  padding-bottom: 15px;
}
.zxgxjl_html .right_box dl dd a {
  width: 50%;
  float: left;
  display: block;
  align-items: center;
  margin-top: 15px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.zxgxjl_html .right_box dl dd a:hover {
  color: #32487b;
}
.zxgxjl_html .right_box dl dd a img {
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 10px 0 0;
  vertical-align: sub;
}

.comment_html .main_box {
  width: 860px;
}
.comment_html .main_box .theme_box .lr_img_template {
  padding-bottom: 20px;
}
.comment_html .main_box .theme_box .lr_img_template li {
  height: auto;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .img_item {
  width: 80px;
  height: 80px;
  border-radius: 15%;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .content {
  height: auto;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .content .title {
  color: #333;
  font-size: 16px;
  padding: 0;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .content .more_info {
  margin-top: 10px;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .content .more_info span {
  font-size: 14px;
  color: #5E5E5E;
  margin-right: 10px;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .content .desc {
  height: auto;
  color: #888;
  font-size: 14px;
  margin-top: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .download {
  position: relative;
  top: 0;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: none;
  color: #fff;
  background-color: #32487b;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .download i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}
.comment_html .main_box .theme_box .lr_img_template li .content_box .download:hover {
  opacity: 0.9;
}
.comment_html .main_box .comment_active {
  padding-bottom: 20px;
}
.comment_html .main_box .comment_active .comment_list {
  display: flex;
  padding: 10px 0;
}
.comment_html .main_box .comment_active .comment_list .user_img {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #ddd;
}
.comment_html .main_box .comment_active .comment_list .user_img img {
  border-radius: 50%;
}
.comment_html .main_box .comment_active .comment_list .content {
  flex: 1 1 auto;
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment_html .main_box .comment_active .comment_list .content .user_name {
  display: block;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.comment_html .main_box .comment_active .comment_list .content .user_name .name {
  color: #32487b;
  font-size: 14px;
  font-weight: bold;
}
.comment_html .main_box .comment_active .comment_list .content .user_name .time {
  display: block;
  font-size: 12px;
  color: #5e5e5e;
  margin-top: 10px;
}
.comment_html .main_box .comment_active .comment_list .content .report {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/more@.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.comment_html .main_box .comment_active .info {
  display: block;
  color: #5e5e5e;
  font-size: 15px;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment_html .main_box .comment_active .ctrl_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
}
.comment_html .main_box .comment_active .ctrl_box span {
  cursor: pointer;
  color: #8b8b8b;
  font-size: 12px;
  margin-left: 20px;
}
.comment_html .main_box .comment_active .ctrl_box span:hover {
  color: #32487b;
  opacity: 0.8;
}
.comment_html .main_box .comment_active .ctrl_box span:before {
  content: "";
  position: relative;
  display: inline-block;
  top: 3px;
  width: 18px;
  height: 16px;
  margin-right: 2px;
}
.comment_html .main_box .comment_active .ctrl_box span.remark:before {
  top: 3px;
  width: 14px;
  height: 14px;
  background: url(../images/remark.svg) no-repeat center center;
  background-size: contain;
}
.comment_html .main_box .comment_active .ctrl_box span.dislike:before {
  background: url(../images/comment-dislike.svg) no-repeat center center;
  background-size: contain;
}
.comment_html .main_box .comment_active .ctrl_box span.dislike.active:before {
  background-image: url(../images/comment-dislike@.svg);
  background-size: contain;
}
.comment_html .main_box .title_template {
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eff3f4;
  overflow: initial;
  display: flex;
  justify-content: space-between;
}
.comment_html .main_box .title_template .cmt_parent {
  color: #8B8B8B;
  font-size: 12px;
}
.comment_html .main_box .title_template .cmt_parent:after {
  content: "";
  display: inline-block;
  position: relative;
  height: 4px;
  width: 4px;
  left: 0px;
  top: 0px;
  border-left: 1px solid #8B8B8B;
  border-bottom: 1px solid #8B8B8B;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(-45deg);
}
.comment_html .main_box .rmtj_box {
  padding-bottom: 10px;
  overflow: hidden;
}
.comment_html .main_box .rmtj_box li {
  height: auto;
  margin-top: 24px;
}
.comment_html .main_box .rmtj_box li:nth-child(-n+3) a:after, .comment_html .main_box .rmtj_box li:nth-child(-n+3) a:before {
  display: block;
  position: absolute;
  top: 12px;
  left: 10px;
  transform: translateY(-50%);
}
.comment_html .main_box .rmtj_box li:nth-child(-n+3) a:before {
  content: " ";
  border-left: 7px solid #F3251B;
  border-right: 7px solid #F3251B;
  border-top: 14px solid #F3251B;
  border-bottom: 4px solid transparent;
  z-index: 1;
}
.comment_html .main_box .rmtj_box li:nth-child(-n+3) a:after {
  content: "" attr(data-num) "";
  width: 14px;
  text-align: center;
  font-size: 10px;
  line-height: 15px;
  color: white;
  z-index: 1;
  top: 11px;
}
.comment_html .main_box .rmtj_box li:nth-child(2) a:before {
  border-left: 7px solid #F77E13;
  border-right: 7px solid #F77E13;
  border-top: 14px solid #F77E13;
}
.comment_html .main_box .rmtj_box li:nth-child(2) a:after {
  content: "" attr(data-num) "";
}
.comment_html .main_box .rmtj_box li:nth-child(3) a:before {
  border-left: 7px solid #EFAB19;
  border-right: 7px solid #EFAB19;
  border-top: 14px solid #EFAB19;
}
.comment_html .main_box .rmtj_box li:nth-child(3) a:after {
  content: "" attr(data-num) "";
}
.comment_html .main_box .rmtj_box li a {
  justify-content: space-between;
}
.comment_html .main_box .rmtj_box li a .img_item {
  width: 120px;
  height: 120px;
  border-radius: 10px;
}
.comment_html .main_box .rmtj_box li a .content {
  height: 120px;
}
.comment_html .main_box .rmtj_box li a .content .more_info {
  display: flex;
  gap: 10px;
}
.comment_html .main_box .rmtj_box li a .content .more_info .score_item {
  position: initial;
  display: block;
}
.comment_html .main_box .rmtj_box li a .content .more_info .comment {
  font-size: 12px;
  color: #777;
}
.comment_html .main_box .rmtj_box li a .content .more_info .comment i {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  background: url(../images/user.png) no-repeat center center;
  background-size: contain;
}
.comment_html .main_box .rmtj_box li a .content .more_info .xz {
  font-size: 12px;
  color: #777;
}
.comment_html .main_box .rmtj_box li a .content .more_info .xz i {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  background: url(../images/download@.png) no-repeat center center;
  background-size: contain;
}
.comment_html .main_box .rmtj_box li a .download_btn {
  display: block;
  position: relative;
  top: 0;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: none;
  color: #fff;
  background-color: #32487b;
}
.comment_html .main_box .rmtj_box li a .download_btn:hover {
  opacity: 0.9;
}
.comment_html .main_box .rmtj_box li a .download_btn i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/download_icon.png) no-repeat center center;
  background-size: contain;
}

.comment_reply_html .main_box .comment_template .title_template {
  margin-top: 30px;
  border-bottom: none;
}
.comment_reply_html .main_box .comment_template .comment_list_template.active .comment_list {
  display: block !important;
}
.comment_reply_html .main_box .comment_template .comment_list_template .comment_list:nth-child(n+4) {
  display: none;
}

.wzld_html .main_box .left_box h1 {
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #3C4043;
}
.wzld_html .main_box .left_box .desc {
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #5E5E5E;
}
.wzld_html .main_box .left_box .content_info {
  position: relative;
  overflow: hidden;
  font-size: 14px;
  padding-top: 15px;
  line-height: 28px;
  word-wrap: break-word;
}
.wzld_html .main_box .left_box .content_info h2, .wzld_html .main_box .left_box .content_info h3, .wzld_html .main_box .left_box .content_info h4, .wzld_html .main_box .left_box .content_info h5 {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  position: relative;
  line-height: 28px;
}
.wzld_html .main_box .left_box .content_info p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #666;
  margin-top: 15px;
  text-wrap: initial !important;
}
.wzld_html .main_box .left_box .content_info span {
  text-wrap: initial !important;
}
.wzld_html .main_box .left_box .content_info img {
  max-width: 80% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 15px auto 0;
}
.wzld_html .main_box .left_box .backtop span {
  display: inline-block;
  margin: 0 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #32487b;
  cursor: pointer;
}
.wzld_html .main_box .left_box .backtop span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/backtop.svg) no-repeat center center;
  background-size: contain;
  vertical-align: sub;
  margin-right: 4px;
}
.wzld_html .main_box .left_box .tips_list {
  overflow: hidden;
}
.wzld_html .main_box .left_box .tips_list a {
  float: left;
  display: inline-block;
  padding: 5px 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 18px;
  color: #777777;
  background-color: #F8F9FA;
}
.wzld_html .main_box .left_box .tips_list a:hover {
  color: #32487b;
  background-color: #eee;
}
.wzld_html .main_box .right_box .new_tag_template a img {
  width: 24px;
  height: 24px;
  left: 4px;
  top: 2px;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li {
  height: auto;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li:nth-child(1) a {
  display: block;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li:nth-child(1) a:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 40%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li:nth-child(1) a .img_item {
  width: 100%;
  height: 185px;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li:nth-child(1) a .content {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  z-index: 99;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li:nth-child(1) a .content p {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li:nth-child(1) a .content .time {
  display: none;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li a .img_item {
  position: relative;
}
.wzld_html .main_box .right_box .lr_img_template.img_tips_box li a .img_item:before {
  content: attr(data-text);
  position: absolute;
  z-index: 99;
  top: 4px;
  left: 4px;
  display: block;
  height: 20px;
  border-radius: 2px;
  background: rgba(250, 139, 22, 0.9);
  font-size: 12px;
  line-height: 20px;
  padding: 0 4px;
  color: #FFFFFF;
}
.wzld_html .main_box .right_box .lr_img_template li a .img_item {
  width: 128px;
  height: 72px;
}
.wzld_html .main_box .right_box .lr_img_template li a .content p {
  width: 100%;
  height: auto;
  word-wrap: break-word;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wzld_html .swiper_xw {
  height: 210px;
}
.wzld_html .swiper_xw .img_text_template {
  overflow: initial;
}
.wzld_html .swiper_xw .img_text_template .swiper-slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wzld_html .swiper_xw .img_text_template .swiper-slide a:hover p {
  color: #32487b;
}
.wzld_html .swiper_xw .img_text_template .swiper-slide a .img_item {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}
.wzld_html .swiper_xw .img_text_template .swiper-slide a p {
  margin: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.wzld_html .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.wzld_html .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.wzld_html .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}

.wzpd_html .swiper_xw {
  padding: 0 15px;
}
.wzpd_html .swiper_xw .img_text_template {
  overflow: initial;
}
.wzpd_html .swiper_xw .img_text_template .swiper-slide {
  background-color: #F8F9FA;
}
.wzpd_html .swiper_xw .img_text_template .swiper-slide a {
  padding-bottom: 20px;
}
.wzpd_html .swiper_xw .img_text_template .swiper-slide a .img_item {
  height: 140px;
  border-radius: 10px 10px 0 0;
}
.wzpd_html .swiper_xw .img_text_template .swiper-slide a p {
  text-align: left;
  height: 40px;
  font-size: 16px;
  padding: 0 10px;
  color: #444;
  word-wrap: break-word;
}
.wzpd_html .swiper_xw .img_text_template .swiper-slide a .type {
  margin-top: 10px;
  padding: 0 10px;
  overflow: hidden;
}
.wzpd_html .swiper_xw .img_text_template .swiper-slide a .type span {
  display: inline-block;
  float: left;
  color: #32487b;
  padding: 0 10px;
  height: 22px;
  line-height: 22px;
  margin-right: 5px;
  margin-top: 8px;
  font-size: 12px;
  background-color: rgba(29, 204, 115, 0.1);
  overflow: hidden;
}
.wzpd_html .swiper_xw .page {
  width: 62px;
  height: 52px;
  z-index: 99;
  background-color: #fff;
  pointer-events: initial;
}
.wzpd_html .swiper_xw .page.swiper-button-prev {
  left: -10px;
  background: url(../images/page_prev.png) no-repeat center center;
  background-size: contain;
}
.wzpd_html .swiper_xw .page.swiper-button-next {
  right: -10px;
  background: url(../images/page_next.png) no-repeat center center;
  background-size: contain;
}
.wzpd_html .zxzx_box .lr_img_template {
  overflow: hidden;
}
.wzpd_html .zxzx_box .lr_img_template li {
  height: 130px;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F4F4F4;
}
.wzpd_html .zxzx_box .lr_img_template li a {
  padding-left: 190px;
}
.wzpd_html .zxzx_box .lr_img_template li a .img_item {
  width: 180px;
  height: 110px;
  border-radius: 5px;
}
.wzpd_html .zxzx_box .lr_img_template li a .title {
  color: #32487b;
}
.wzpd_html .zxzx_box .lr_img_template li a p {
  width: 95%;
  font-size: 18px;
  padding-top: 0;
}
.wzpd_html .zxzx_box .lr_img_template li a .text {
  margin-top: 12px;
}
.wzpd_html .zxzx_box .lr_img_template li a .download {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #999;
  border: 2px solid #999;
  top: 60px;
  display: none;
}
.wzpd_html .zxzx_box .lr_img_template li a:hover .download {
  display: block;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .w12_box {
    width: 100%;
    padding: 0 20px;
  }
  .main_box {
    display: flex;
    column-gap: 20px;
    padding-right: 0;
  }
  .main_box .left_box {
    width: 0;
    flex: 1;
  }
  .index_html .content_box {
    display: flex;
    column-gap: 20px;
    padding-right: 0;
  }
  .index_html .content_box .left_box {
    width: 0;
    flex: 1;
  }
}
@media screen and (max-width: 1000px) {
  body {
    margin: 0 auto;
  }
  .w12_box {
    width: 100%;
  }
  .title_template {
    padding: 0 15px;
  }
  .title_template .title {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .search_modal_template .modal_content .qsform form {
    max-width: 90%;
  }
  .mobile_padding {
    padding: 0 15px;
  }
  .mobile_hide {
    display: none;
  }
  .mobile_scroll .img_text_template {
    display: flex;
    overflow: auto !important;
  }
  .mobile_scroll .lr_img_template {
    display: flex;
    overflow: auto !important;
  }
  .mobile_scroll .lr_img_template li a {
    display: block;
  }
  .mobile_scroll .lr_img_template li a .content {
    width: auto;
  }
  .img_text_template::-webkit-scrollbar,
  .lr_img_template::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .question_template {
    padding: 0 16px;
    flex-direction: column;
  }
  .question_template li {
    width: 100%;
  }
  .mobile_grid_9 .lr_img_template {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 255px;
    overflow: auto !important;
  }
  .mobile_grid_9 .lr_img_template li {
    width: 90% !important;
  }
  .mobile_grid_9 .lr_img_template li a .img_item {
    width: 70px !important;
    height: 70px !important;
  }
  .mobile_grid_9 .lr_img_template li a .content {
    height: 70px;
    padding-right: 0 !important;
  }
  .section_box {
    padding: 10px 0;
    margin-top: 10px;
    background-color: #fff;
  }
  .right_box {
    width: 100%;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
  .swiper-pagination {
    display: block;
  }
  .history_version_template ul li a .download_btn {
    margin-left: 10px;
  }
  .comment_template .title_template {
    padding-left: 0;
  }
  .comment_template .comment_type {
    height: 40px;
  }
  .comment_template .comment_type .cmt_parent_drop.show .comment_type_box {
    display: block;
  }
  .comment_template .comment_type .cmt_parent_drop .mobile_show_text {
    display: block;
  }
  .comment_template .comment_type .cmt_parent_drop .comment_type_box {
    display: none;
    position: absolute;
    right: auto;
    padding: 5px 0;
    overflow: hidden;
    z-index: 999;
    background-color: #FFF;
    border: 1px solid #F0F2F4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border-radius: 8px;
  }
  .comment_template .comment_type .cmt_parent_drop .comment_type_box a {
    white-space: nowrap;
    text-align: center;
    margin-right: 0 !important;
    padding: 0 15px;
  }
  .comment_template .comment_type .cmt_parent_drop .comment_type_box a.active {
    border-bottom: none !important;
  }
  .comment_template .comment_list_template .comment_list .content .info {
    font-size: 13px;
  }
  .router_template {
    height: auto;
    line-height: 22px;
    font-size: 14px;
    color: #666;
    margin: 10px 15px;
  }
  .router_template span {
    display: inline-block;
    position: relative;
    top: 1px;
    width: 12px;
    height: 12px;
    background: url(../images/local.png) no-repeat center center;
    background-size: cover;
    margin-right: 5px;
  }
  .router_template a, .router_template em {
    font-weight: 400;
    font-size: 12px;
    margin-right: 5px;
    color: #666;
  }
  .header_template {
    height: 55px;
  }
  .header_template .w12_box {
    padding-right: 15px;
  }
  .header_template .w12_box .title_item {
    margin-top: 5px;
    margin-left: 15px;
  }
  .header_template .w12_box .menu_box {
    position: relative;
    top: 0;
    z-index: 99;
    bottom: 0;
    margin-left: auto;
    margin-right: 15px;
    background-color: #fff;
    transition: right 0.3s ease;
  }
  .header_template .w12_box .menu_box.active {
    position: fixed;
    width: 220px;
    display: block;
    right: 0;
    margin-right: 0;
  }
  .header_template .w12_box .menu_box.active .menu_btn_box {
    display: flex;
  }
  .header_template .w12_box .menu_box.active .nav_menu_item {
    display: block;
  }
  .header_template .w12_box .menu_box.active .search_modal_template {
    display: none;
  }
  .header_template .w12_box .menu_box.active .right_item {
    display: none;
  }
  .header_template .w12_box .menu_box .menu_btn_box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
  }
  .header_template .w12_box .menu_box .menu_btn_box .menu_close {
    width: 22px;
    height: 22px;
    background: url(../images/close.png) no-repeat center center;
    background-size: contain;
  }
  .header_template .w12_box .menu_box .nav_menu_item {
    display: none;
    float: initial;
    position: relative;
    z-index: 100;
    margin-left: 0;
    margin-top: 50px;
    overflow: auto;
    max-height: 80%;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item {
    width: 100%;
    height: auto;
    float: initial;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item:before {
    display: none;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item > a, .header_template .w12_box .menu_box .nav_menu_item .item > span {
    line-height: 40px;
    font-size: 16px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item span:after {
    top: 2px;
    border-left: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header_template .w12_box .menu_box .nav_menu_item .item.active > a, .header_template .w12_box .menu_box .nav_menu_item .item.active > span {
    color: #32487b;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item.active span:after {
    border-left: 2px solid #32487b;
    border-bottom: 2px solid #32487b;
    transform: translateY(-50%) rotate(135deg);
  }
  .header_template .w12_box .menu_box .nav_menu_item .item.active .drop_menu_box {
    display: block;
    opacity: 1 !important;
    transform: rotateX(0) !important;
    transition: opacity 0.1s, transform 0.3s !important;
    visibility: visible !important;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item .drop_menu_box {
    display: none;
    position: sticky;
    box-shadow: none;
    filter: none;
    padding: 0 5% 0 12%;
    background-color: #F8F9FA;
  }
  .header_template .w12_box .menu_box .nav_menu_item .item .drop_menu_box a {
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
  }
  .header_template .w12_box .menu_box .right_item .qsform_temolate {
    display: none;
  }
  .header_template .w12_box .menu_box .right_item .search_icon {
    display: block;
    margin-top: 4px;
  }
  .header_template .w12_box .mobile_menu {
    display: block;
    margin-top: 10px;
  }
  .header_template .w12_box .mobile_menu span {
    width: 24px;
    height: 24px;
    background: url(../images/menu.png) no-repeat center center;
    background-size: contain;
  }
  .language_select_template {
    display: none;
  }
  .language_select_template.open {
    display: block;
    position: fixed;
    width: 220px;
    top: auto;
    bottom: 15px;
    right: 0;
    z-index: 100;
  }
  .language_select_template .drop_menu_arrow_icon {
    text-align: center;
  }
  .language_select_template .drop_menu_arrow_icon:after {
    display: none;
  }
  .language_select_template .drop_menu_box {
    position: fixed;
    left: auto;
    right: 0;
    top: 0;
    bottom: 47px;
    width: 200px;
    box-shadow: none;
    overflow: auto;
  }
  .footer_template {
    margin-top: 10px;
  }
  .footer_template .clearfix .l_item {
    float: initial;
    width: 100%;
    text-align: center;
  }
  .footer_template .clearfix .r_item {
    float: initial;
    width: 100%;
    display: none;
  }
  .index_html .left_box {
    width: 100%;
  }
  .index_html .main_box .left_box .swiper_banner {
    height: 220px;
  }
  .index_html .main_box .left_box .swiper_banner .swiper-button-prev,
  .index_html .main_box .left_box .swiper_banner .swiper-button-next {
    display: none;
  }
  .index_html .main_box .right_box {
    display: none;
  }
  .index_html .content_box .left_box .section_box.mobile_lr_row2 .lr_img_template li:nth-child(3n) {
    margin-right: 15px;
  }
  .index_html .content_box .left_box .section_box.mobile_lr_row2 .lr_img_template li:nth-child(4n) {
    margin-right: 0;
  }
  .index_html .content_box .left_box .section_box.mobile_lr_row2 .lr_img_template li a {
    display: block;
  }
  .index_html .content_box .left_box .section_box.mobile_lr_row2 .lr_img_template li a .content {
    width: auto;
  }
  .index_html .content_box .left_box .section_box.text_hide .lr_img_template li a .content {
    height: auto;
    margin: 0;
  }
  .index_html .content_box .left_box .section_box.text_hide .lr_img_template li a .content p {
    width: 100%;
    height: 40px;
    word-wrap: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .index_html .content_box .left_box .section_box.text_hide .lr_img_template li a .content .text {
    display: none;
  }
  .index_html .content_box .left_box .section_box.p_show .lr_img_template li a .content .time {
    display: none;
  }
  .index_html .content_box .left_box .section_box .img_text_template {
    padding: 0 15px;
  }
  .index_html .content_box .left_box .section_box .img_text_template li {
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .index_html .content_box .left_box .section_box .img_text_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .index_html .content_box .left_box .section_box .img_text_template li a p {
    margin-top: 5px;
    height: 40px;
    font-size: 14px;
  }
  .index_html .content_box .left_box .section_box .img_text_template li a .score_item {
    margin-top: 0;
  }
  .index_html .content_box .left_box .section_box.rmwz_box .lr_img_template li {
    width: 100%;
  }
  .index_html .content_box .left_box .section_box.rmwz_box .lr_img_template li a .img_item {
    height: 70px;
  }
  .index_html .content_box .left_box .section_box.rmwz_box .lr_img_template li a .content {
    height: 70px;
  }
  .index_html .content_box .left_box .section_box.rmwz_box .lr_img_template li a .content p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: initial;
  }
  .index_html .content_box .left_box .section_box.rmwz_box .lr_img_template li a .content .text {
    font-size: 12px;
  }
  .index_html .content_box .left_box .section_box .lr_img_template {
    padding: 0 15px;
  }
  .index_html .content_box .left_box .section_box .lr_img_template li {
    height: auto;
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .index_html .content_box .left_box .section_box .lr_img_template li a {
    padding-left: 0;
  }
  .index_html .content_box .left_box .section_box .lr_img_template li a .img_item {
    position: relative;
  }
  .index_html .content_box .left_box .section_box .lr_img_template li a p {
    font-size: 14px;
  }
  .index_html .content_box .left_box .section_box .lr_img_template li a .text {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }
  .index_html .content_box .left_box .section_box .lr_img_template li a .download_btn {
    display: block;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template {
    display: flex;
    overflow: auto;
    padding-bottom: 10px;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li {
    margin-right: 16px;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li:first-child {
    margin-top: 0;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li:last-child {
    margin-right: 0;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .title_img {
    display: block;
    width: 260px;
    height: 124px !important;
    border-radius: 8px;
    overflow: hidden;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content {
    position: relative;
    margin-top: 6px;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .img_item {
    width: 50px;
    height: 50px;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .content {
    height: 50px;
    padding: 0;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .content p {
    color: #333 !important;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .score_item {
    color: #FFAE00 !important;
  }
  .index_html .content_box .right_box .bztj_box .lr_img_template li a .row_content .score_item:before {
    background-image: url(../images/score.png) !important;
  }
  .index_html .content_box .right_box .lr_img_template li {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .xzld_html .left_box {
    width: 100%;
  }
  .xzld_html .left_box .theme_box .lr_img_template {
    border-bottom: none;
  }
  .xzld_html .left_box .theme_box .lr_img_template li {
    flex-direction: column;
    height: auto;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .content_box {
    flex-direction: row;
    align-items: initial;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .content_box .img_item {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .content_box .content {
    flex: 1;
    height: 88px;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .content_box .content .title {
    font-size: 16px;
    padding: 0;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .content_box .content .info_item {
    margin-bottom: 0;
    text-align: left;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .content_box .content .info_item .version {
    font-size: 12px;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .download, .xzld_html .left_box .theme_box .lr_img_template li .download_info {
    position: static;
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .download {
    font-size: 16px;
  }
  .xzld_html .left_box .theme_box .lr_img_template li .download_info {
    display: none;
    font-size: 12px;
  }
  .xzld_html .left_box .theme_box .type {
    padding: 0 10px 10px;
  }
  .xzld_html .left_box .content_info {
    line-height: 20px;
  }
  .xzld_html .left_box .content_info p {
    line-height: 18px;
    margin-top: 10px;
  }
  .xzld_html .left_box .content_info h2, .xzld_html .left_box .content_info h3, .xzld_html .left_box .content_info h4, .xzld_html .left_box .content_info h5 {
    line-height: 22px;
    margin-top: 10px;
  }
  .xzld_html .left_box .content_info img {
    margin-top: 10px auto 0;
  }
  .xzld_html .left_box .free_box .img_text_template {
    padding: 0 15px;
  }
  .xzld_html .left_box .free_box .img_text_template li {
    margin-bottom: 10px;
  }
  .xzld_html .left_box .free_box .img_text_template li a {
    width: 100%;
  }
  .xzld_html .left_box .free_box .img_text_template li a .img_item {
    width: 165px;
    height: 110px;
  }
  .xzld_html .left_box .free_box .img_text_template li a p {
    font-size: 14px;
    height: 40px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .xzld_html .left_box .swiper_xw {
    padding: 0;
    margin: 0 15px;
  }
  .xzld_html .left_box .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .xzld_html .left_box .swiper_xw .img_text_template .swiper-slide a .img_item {
    width: 100%;
  }
  .xzld_html .left_box .section_box.col8 .img_text_template {
    padding: 0 15px;
    margin: 0;
  }
  .xzld_html .left_box .section_box.col8 .img_text_template li {
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .xzld_html .left_box .section_box.col8 .img_text_template li:last-child {
    margin-right: 0;
  }
  .xzld_html .left_box .section_box.col8 .img_text_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .xzld_html .left_box .section_box.col8 .img_text_template li a p {
    font-size: 14px;
    margin-top: 5px;
    height: 40px;
  }
  .xzld_html .left_box .section_box.col8 .img_text_template li a .score_item {
    margin-top: 0;
  }
  .xzld_html .right_box .lr_img_template {
    padding-left: 15px;
  }
  .xzld_html .right_box .lr_img_template li {
    width: 75px;
    height: auto;
    margin-right: 15px;
    margin-top: 0;
  }
  .xzld_html .right_box .lr_img_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .xzld_html .right_box .lr_img_template li a .content {
    margin: 0;
    height: auto;
  }
  .xzld_html .right_box .lr_img_template li a .content p {
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .xzdzld_html .left_box .more_info {
    overflow: hidden;
  }
  .xzdzld_html .left_box .more_info li {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .xzdzld_html .right_box .lr_img_template li a {
    padding-left: 0;
  }
  .xzdzld_html .right_box .lr_img_template li a:before, .xzdzld_html .right_box .lr_img_template li a:after {
    display: none;
  }
  .xzpd_html .swiper_xw {
    padding-bottom: 20px;
  }
  .xzpd_html .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .xzpd_html .swiper_xw .img_text_template .swiper-slide {
    margin-right: 15px;
  }
  .xzpd_html .swiper_xw .img_text_template .swiper-slide a .content p {
    width: 240px;
    font-size: 14px;
    padding: 0 2px;
    height: 28px;
    line-height: 28px;
  }
  .xzpd_html .swiper_xw .img_text_template .swiper-slide a .content .type {
    display: none;
  }
  .xzpd_html .swiper_xw .swiper-pagination {
    bottom: 0;
  }
  .xzpd_html .swiper_xw .swiper-pagination .swiper-pagination-bullet {
    background-color: #666;
  }
  .xzpd_html .swiper_xw .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #32487b;
  }
  .xzpd_html .column3_item .lr_img_template li {
    margin-right: 15px;
  }
  .xzpd_html .section_box .img_text_template {
    padding: 0 15px;
    margin: 0;
  }
  .xzpd_html .section_box .img_text_template li {
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .xzpd_html .section_box .img_text_template li a .img_item {
    width: 80px;
    height: 80px;
  }
  .xzpd_html .section_box .img_text_template li a .score_item {
    margin-top: 0;
  }
  .xzpd_html .section_box.rmwz_box .lr_img_template li {
    width: 165px;
  }
  .xzpd_html .section_box.rmwz_box .lr_img_template li:nth-child(2n) {
    margin-right: 0;
  }
  .xzpd_html .section_box.rmwz_box .lr_img_template li a .img_item {
    width: 100%;
  }
  .xzpd_html .section_box.rmwz_box .lr_img_template li a p {
    height: 20px;
    font-size: 14px;
  }
  .xzpd_html .section_box .lr_img_template {
    overflow: auto;
    padding: 0 15px 10px;
  }
  .xzpd_html .section_box .lr_img_template li {
    height: auto;
  }
  .xzpd_html .section_box .lr_img_template li a {
    padding-left: 0;
  }
  .xzpd_html .section_box .lr_img_template li a .img_item {
    position: relative;
  }
  .xzpd_html .section_box .lr_img_template li a p {
    font-size: 14px;
  }
  .xzpd_html .section_box .lr_img_template li a .text, .xzpd_html .section_box .lr_img_template li a .score_item {
    margin-top: 0;
  }
  .xzpd_html .section_box .lr_img_template li a .num, .xzpd_html .section_box .lr_img_template li a .size {
    display: none;
  }
  .xzpd_html .section_box .lr_img_template li a .time {
    margin-top: 0;
  }
  .xzpd_html .section_box .lr_img_template li a .download_btn {
    display: block;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    background-color: #fff;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide {
    min-width: 40%;
    flex: 1;
    box-sizing: border-box;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide:nth-child(2n) {
    margin-right: 0;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a {
    background-color: #fff;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .img_item {
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content {
    padding: 0;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content .small_item {
    display: none;
  }
  .xzpd_html .swiper_items .swiper-container .img_text_template .swiper-slide a .content p {
    font-size: 14px;
    margin-top: 0;
  }
  .xzpd_html .swiper_items .swiper-container .swiper-pagination {
    bottom: 0;
  }
  .xzpd_html .new_tag_template {
    padding: 0 15px;
  }
  .xzpd_html .new_tag_template a {
    font-size: 14px;
  }
  .wzlb_html .article_box .desc {
    font-size: 12px;
    color: #999;
  }
  .wzlb_html .article_box .article_list {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
  }
  .wzlb_html .article_box .article_list .article_img {
    width: 100%;
    height: auto;
  }
  .wzlb_html .article_box .article_list .article_img .info {
    position: relative;
  }
  .wzlb_html .article_box .article_list .article_img .info a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4B4B4B;
  }
  .wzlb_html .article_box .article_list .article_img .info .text {
    display: block;
    height: 44px;
  }
  .wzlb_html .article_box .article_list .article_item .lr_img_template li a .img_item {
    width: 128px;
    height: 72px;
  }
  .wzlb_html .article_box .article_list .article_item .lr_img_template li a .content {
    height: 72px;
    margin-left: 0;
  }
  .wzlb_html .article_box .article_list .article_item .lr_img_template li a .content p {
    height: 40px;
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .wzlb_html .article_box .article_list .article_item .lr_img_template li a .content .text {
    display: none;
  }
  .wzlb_html .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .wzlb_html .swiper_xw .img_text_template .swiper-slide {
    margin-right: 15px;
  }
  .wzlb_html .swiper_xw .img_text_template .swiper-slide a .img_item {
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
  }
  .wzlb_html .swiper_xw .swiper-pagination {
    display: none;
  }
  .wzlb_html .main_box .left_box {
    width: 100%;
  }
  .wzlb_html .main_box .left_box .lr_img_template li:nth-child(4n) a .img_item {
    height: 200px;
  }
  .wzlb_html .main_box .left_box .lr_img_template li a .img_item {
    width: 128px;
    height: 72px;
  }
  .wzlb_html .main_box .left_box .lr_img_template li a .content {
    height: 72px;
  }
  .wzlb_html .main_box .left_box .lr_img_template li a .content p {
    padding-top: 0;
  }
  .zt_detail_html .main_box .left_box {
    width: 100%;
  }
  .zt_detail_html .main_box .left_box .special_list li .info {
    position: relative;
    padding-bottom: 50px;
  }
  .zt_detail_html .main_box .left_box .special_list li .info .content .title a {
    font-size: 15px;
  }
  .zt_detail_html .main_box .left_box .special_list li .info .download_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .zt_detail_html .main_box .left_box .special_list li .big_img {
    height: 160px;
  }
  .zt_detail_html .main_box .right_box .relational_box li .big_img {
    height: 140px;
  }
  .xzlb_html .swiper_xw {
    padding: 0;
    margin: 0 15px;
  }
  .xzlb_html .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .xzlb_html .swiper_xw .img_text_template .swiper-slide a .content p {
    width: 240px;
    font-size: 14px;
    padding: 0 2px;
    height: 28px;
    line-height: 28px;
  }
  .xzlb_html .swiper_xw .img_text_template .swiper-slide a .content .type {
    display: none;
  }
  .xzlb_html .swiper_xw .swiper-pagination {
    bottom: 0;
  }
  .xzlb_html .mobile_grid_9 .title_template {
    border-bottom: none;
  }
  .xzlb_html .mobile_grid_9 .lr_img_template li {
    height: auto;
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .xzlb_html .mobile_grid_9 .lr_img_template li a {
    padding-left: 0;
  }
  .xzlb_html .mobile_grid_9 .lr_img_template li a .img_item {
    position: relative;
  }
  .xzlb_html .mobile_grid_9 .lr_img_template li a p {
    font-size: 14px;
  }
  .xzlb_html .mobile_grid_9 .lr_img_template li a .text {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }
  .xzlb_html .mobile_grid_9 .lr_img_template li a .download_btn {
    display: block;
  }
  .xzlb_html .switch_game_box .title_template {
    flex-direction: column;
    height: 70px;
    align-items: start;
  }
  .xzlb_html .switch_game_box .title_template .switch_box {
    width: 100%;
    text-align: center;
  }
  .xzlb_html .switch_game_box .title_template .switch_box .switch_list {
    width: 33.3%;
    margin: 0;
  }
  .xzlb_html .switch_game_box .lr_img_template li {
    float: initial;
    width: 100%;
  }
  .xzlb_html .switch_game_box .lr_img_template li a .content p {
    width: 100%;
  }
  .xzlb_html .switch_game_box .lr_img_template li a .download_btn {
    display: block;
  }
  .yyyx_html .swiper_xw {
    padding: 0;
    margin: 0 15px;
  }
  .yyyx_html .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .yyyx_html .swiper_xw .img_text_template .swiper-slide a .content p {
    width: 240px;
    font-size: 14px;
    padding: 0 2px;
    height: 28px;
    line-height: 28px;
  }
  .yyyx_html .swiper_xw .img_text_template .swiper-slide a .content .type {
    display: none;
  }
  .yyyx_html .swiper_xw .swiper-pagination {
    bottom: 0;
  }
  .yyyx_html .mobile_grid_9 .title_template {
    border-bottom: none;
  }
  .yyyx_html .mobile_grid_9 .lr_img_template li {
    height: auto;
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .yyyx_html .mobile_grid_9 .lr_img_template li a {
    padding-left: 0;
  }
  .yyyx_html .mobile_grid_9 .lr_img_template li a .img_item {
    position: relative;
  }
  .yyyx_html .mobile_grid_9 .lr_img_template li a p {
    font-size: 14px;
  }
  .yyyx_html .mobile_grid_9 .lr_img_template li a .text {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }
  .yyyx_html .mobile_grid_9 .lr_img_template li a .download_btn {
    display: block;
  }
  .yyyx_html .switch_game_box .title_template {
    flex-direction: column;
    height: 70px;
    align-items: start;
  }
  .yyyx_html .switch_game_box .title_template .switch_box {
    width: 100%;
    text-align: center;
  }
  .yyyx_html .switch_game_box .title_template .switch_box .switch_list {
    width: 50%;
    margin: 0;
  }
  .yyyx_html .switch_game_box .lr_img_template li {
    float: initial;
    width: 100%;
  }
  .yyyx_html .switch_game_box .lr_img_template li a .download_btn {
    display: block;
  }
  .yyyxld_html .left_box {
    width: 100%;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template {
    padding-bottom: 0;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li {
    height: auto;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li .content_box {
    padding-bottom: 120px;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li .content_box .img_item {
    width: 80px;
    height: 80px;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content {
    width: auto;
    height: 80px;
    margin-right: 0;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li .content_box .content .title {
    font-size: 16px;
    padding: 0;
    line-height: initial;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .yyyxld_html .left_box .theme_box .lr_img_template li .content_box .download_btns a {
    display: block;
    width: 100% !important;
  }
  .yyyxld_html .left_box .theme_box .type {
    padding: 0 10px 10px;
  }
  .yyyxld_html .left_box .content_info {
    line-height: 24px;
    padding: 15px 15px 0;
  }
  .yyyxld_html .left_box .content_info h2, .yyyxld_html .left_box .content_info h3, .yyyxld_html .left_box .content_info h4, .yyyxld_html .left_box .content_info h5 {
    font-size: 16px;
    margin-top: 20px;
    line-height: 28px;
  }
  .yyyxld_html .left_box .content_info p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
  }
  .yyyxld_html .left_box .free_box .img_text_template {
    padding: 0 15px;
  }
  .yyyxld_html .left_box .free_box .img_text_template li {
    margin-bottom: 10px;
  }
  .yyyxld_html .left_box .free_box .img_text_template li a {
    width: 100%;
  }
  .yyyxld_html .left_box .free_box .img_text_template li a .img_item {
    width: 165px;
    height: 110px;
  }
  .yyyxld_html .left_box .free_box .img_text_template li a p {
    font-size: 14px;
    height: 40px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .yyyxld_html .left_box .swiper_xw {
    padding: 0;
    margin: 0 15px;
  }
  .yyyxld_html .left_box .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .yyyxld_html .left_box .swiper_xw .img_text_template .swiper-slide a .img_item {
    width: 100%;
  }
  .yyyxld_html .left_box .section_box.col8 .img_text_template {
    padding: 0 15px;
    margin: 0;
  }
  .yyyxld_html .left_box .section_box.col8 .img_text_template li {
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .yyyxld_html .left_box .section_box.col8 .img_text_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .yyyxld_html .left_box .section_box.col8 .img_text_template li a p {
    font-size: 14px;
    margin-top: 5px;
    height: 40px;
  }
  .yyyxld_html .left_box .section_box.col8 .img_text_template li a .score_item {
    margin-top: 0;
  }
  .yyyxld_html .right_box .lr_img_template {
    padding-left: 15px;
  }
  .yyyxld_html .right_box .lr_img_template li {
    width: 75px;
    height: auto;
    margin-right: 15px;
    margin-top: 0;
  }
  .yyyxld_html .right_box .lr_img_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .yyyxld_html .right_box .lr_img_template li a .content {
    margin: 0;
    height: auto;
  }
  .yyyxld_html .right_box .lr_img_template li a .content p {
    height: 40px;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .ssjg_html .left_box {
    width: 100%;
  }
  .ssjg_html .left_box .form_box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 50px;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background-color: #32487b;
  }
  .ssjg_html .left_box .form_box form {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .ssjg_html .left_box .form_box form .back_icon {
    display: block;
    width: 44px;
    height: 100%;
  }
  .ssjg_html .left_box .form_box form .input_box {
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
  }
  .ssjg_html .left_box .form_box form .search_btn {
    width: 40px;
    background-size: 60%;
  }
  .ssjg_html .left_box .switch_box:after {
    display: none;
  }
  .ssjg_html .left_box .switch_box a {
    width: 33.3%;
    margin: 0;
    font-size: 14px;
    text-align: center;
  }
  .ssjg_html .left_box .switch_box a.active:after {
    display: none;
  }
  .ssjg_html .left_box .lr_img_template {
    padding: 0 15px;
  }
  .ssjg_html .left_box .lr_img_template li {
    height: 80px;
  }
  .ssjg_html .left_box .lr_img_template li a .img_item {
    width: 64px;
    height: 64px;
  }
  .ssjg_html .left_box .lr_img_template li a .content {
    height: 64px;
  }
  .ssjg_html .left_box .lr_img_template li a .content .title {
    padding: 0;
  }
  .ssjg_html .left_box .lr_img_template li a .content .text {
    margin-top: 0;
  }
  .ssjg_html .left_box .search_box .lr_img_template li a .title {
    display: none;
  }
  .ssjg_html .left_box .rmwz_box .lr_img_template li a .text {
    display: none;
  }
  .ssjg_html .right_box .section_box .other_search {
    width: 90%;
  }
  .word_html .main_box .left_box {
    width: 100%;
  }
  .word_html .main_box .left_box .info {
    margin-top: 20px;
    line-height: 28px;
    color: #666;
    font-size: 16px;
  }
  .word_html .main_box .left_box .info h3 {
    margin-top: 10px;
    font-weight: 500;
  }
  .word_html .main_box .left_box .info br {
    margin-top: 10px;
  }
  .word_html .main_box .right_box .lr_img_template {
    padding-left: 15px;
  }
  .word_html .main_box .right_box .lr_img_template li {
    width: 75px;
    height: auto;
    margin-right: 15px;
    margin-top: 0;
  }
  .word_html .main_box .right_box .lr_img_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .word_html .main_box .right_box .lr_img_template li a .content {
    margin: 0;
  }
  .word_html .main_box .right_box .lr_img_template li a .content p {
    height: 40px;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .sybb_html .left_box {
    width: 100%;
  }
  .sybb_html .left_box .theme_box .lr_img_template {
    padding-bottom: 0;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box .img_item {
    position: static;
    width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box .content {
    width: auto;
    padding: 10px 0;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box .content .title {
    font-size: 20px;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box .content .info_item {
    margin-bottom: 10px;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box .content .info_item .user {
    font-size: 14px;
  }
  .sybb_html .left_box .theme_box .lr_img_template li .content_box .download {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .sybb_html .left_box .theme_box .type {
    padding: 0 10px 10px;
  }
  .sybb_html .left_box .section_box.col8 .img_text_template {
    padding: 0 15px;
    margin: 0;
  }
  .sybb_html .left_box .section_box.col8 .img_text_template li {
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .sybb_html .left_box .section_box.col8 .img_text_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .sybb_html .left_box .section_box.col8 .img_text_template li a p {
    font-size: 14px;
    margin-top: 5px;
    height: 40px;
  }
  .sybb_html .left_box .section_box.col8 .img_text_template li a .score_item {
    margin-top: 3px;
  }
  .sybb_html .right_box .lr_img_template {
    padding-left: 15px;
  }
  .sybb_html .right_box .lr_img_template li {
    width: 75px;
    height: auto;
    margin-right: 15px;
    margin-top: 0;
  }
  .sybb_html .right_box .lr_img_template li a {
    padding-left: 0;
  }
  .sybb_html .right_box .lr_img_template li a:before {
    display: none;
  }
  .sybb_html .right_box .lr_img_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .sybb_html .right_box .lr_img_template li a .content {
    margin: 0;
    height: auto;
  }
  .sybb_html .right_box .lr_img_template li a .content p {
    height: 40px;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .error_html .left_box {
    width: 100%;
  }
  .error_html .left_box .search_page_error .title {
    color: #B54240;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    margin: 15px 0;
  }
  .error_html .left_box .search_page_error .info {
    color: #8B8B8B;
    font-size: 14px;
    line-height: 22px;
  }
  .error_html .left_box .img_text_template {
    padding: 0 15px;
    margin: 0;
  }
  .error_html .left_box .img_text_template li {
    width: 75px;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .error_html .left_box .img_text_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .error_html .left_box .img_text_template li a p {
    font-size: 14px;
    margin-top: 5px;
    height: 40px;
  }
  .error_html .left_box .img_text_template li a .score_item {
    margin-top: 0;
  }
  .error_html .right_box .bztj_box .lr_img_template {
    display: flex;
    overflow: auto;
    padding-bottom: 10px;
  }
  .error_html .right_box .bztj_box .lr_img_template li {
    margin-right: 16px;
    margin-top: 0;
  }
  .error_html .right_box .bztj_box .lr_img_template li:last-child {
    margin-right: 0;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .title_img {
    display: block;
    width: 260px;
    height: 124px;
    border-radius: 8px;
    overflow: hidden;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .row_content {
    position: relative;
    margin-top: 6px;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .row_content .img_item {
    width: 50px;
    height: 50px;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .row_content .content {
    height: 50px;
    padding: 0;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .row_content .content p {
    color: #333 !important;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .row_content .score_item {
    color: #FFAE00 !important;
  }
  .error_html .right_box .bztj_box .lr_img_template li a .row_content .score_item:before {
    background-image: url(../images/score.png) !important;
  }
  .zsdz_html .left_box {
    width: 100%;
  }
  .zsdz_html .left_box .theme_box .lr_img_template {
    padding-bottom: 10px;
  }
  .zsdz_html .left_box .theme_box .start_download {
    margin: 0 15px;
  }
  .zsdz_html .right_box .lr_img_template {
    padding-left: 15px;
  }
  .zsdz_html .right_box .lr_img_template li {
    width: 75px;
    height: auto;
    margin-right: 15px;
    margin-top: 0;
  }
  .zsdz_html .right_box .lr_img_template li a .img_item {
    width: 75px;
    height: 75px;
  }
  .zsdz_html .right_box .lr_img_template li a .content {
    height: auto;
    margin: 0;
  }
  .zsdz_html .right_box .lr_img_template li a .content p {
    height: 40px;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .phb_html .ranking_header .mobile_ranking_menu {
    display: flex;
  }
  .phb_html .left_box {
    width: 100%;
  }
  .phb_html .left_box .lr_img_template {
    padding-bottom: 15px;
  }
  .phb_html .left_box .lr_img_template li a {
    position: relative;
    padding-bottom: 80px;
  }
  .phb_html .left_box .lr_img_template li a .img_item {
    width: 76px;
    height: 76px;
  }
  .phb_html .left_box .lr_img_template li a .content {
    height: 76px;
  }
  .phb_html .left_box .lr_img_template li a .content .info {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
  }
  .phb_html .left_box .lr_img_template li a .download_btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
  }
  .phb_html .right_box {
    display: none;
  }
  .phb_html .right_box.fixed {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .phb_html .right_box.fixed .section_box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .phb_html .right_box.fixed .section_box .ranking_close {
    position: absolute;
    right: 15px;
    width: 26px;
    height: 26px;
    z-index: 999;
    background: url(../images/ranking_close.png) no-repeat center center;
  }
  .phb_html .right_box .section_box .ranking_close {
    position: absolute;
    right: 15px;
    width: 26px;
    height: 26px;
    z-index: 999;
    background: url(../images/ranking_close.png) no-repeat center center;
  }
  .phb_html .right_box .section_box .ranking_box {
    padding-bottom: 30px;
    overflow: hidden;
  }
  .phb_html .right_box .section_box .ranking_box li {
    float: left;
    width: 50%;
  }
  .phb_html .right_box .section_box .ranking_box li a i {
    display: none;
  }
  .zxgxjl_html .left_box {
    width: 100%;
    float: right;
  }
  .zxgxjl_html .left_box .img_text_template li {
    width: 33.3%;
    padding-top: 10px;
  }
  .zxgxjl_html .left_box .img_text_template li a .img_item {
    width: 86px;
    height: 86px;
  }
  .zxgxjl_html .left_box .img_text_template li a p {
    margin: 5px 5px 0;
  }
  .wzld_html .main_box .left_box {
    width: 100%;
  }
  .wzld_html .main_box .left_box .content_info p {
    line-height: 18px;
    margin-top: 10px;
  }
  .wzld_html .main_box .left_box .content_info h2, .wzld_html .main_box .left_box .content_info h3, .wzld_html .main_box .left_box .content_info h4, .wzld_html .main_box .left_box .content_info h5 {
    line-height: 22px;
    margin-top: 10px;
  }
  .wzld_html .main_box .left_box .content_info img {
    margin-top: 10px auto 0;
  }
  .wzld_html .main_box .left_box .collapse_page_template {
    margin-left: 15px;
    margin-right: 15px;
  }
  .wzld_html .main_box .right_box .section_box:nth-child(1) {
    display: none;
  }
  .wzld_html .swiper_xw .img_text_template {
    padding: 0 !important;
  }
  .wzld_html .swiper_xw .img_text_template .swiper-slide {
    margin-right: 15px;
    width: 269px;
  }
  .wzld_html .swiper_xw .img_text_template .swiper-slide a .img_item {
    height: 150px;
    border-radius: 5px;
    overflow: hidden;
  }
  .wzld_html .swiper_xw .swiper-pagination {
    display: none;
  }
  .comment_html .main_box {
    width: 100%;
  }
  .comment_html .main_box .theme_box .lr_img_template li .content_box .content .desc, .comment_html .main_box .theme_box .lr_img_template li .content_box .content .more_info span {
    font-size: 12px;
  }
  .comment_html .main_box .rmtj_box {
    display: block;
  }
  .comment_html .main_box .rmtj_box li a {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
  }
  .comment_html .main_box .rmtj_box li a .img_item {
    width: 76px;
    height: 76px;
  }
  .comment_html .main_box .rmtj_box li a .content {
    width: 0;
    height: 76px;
  }
  .comment_html .main_box .rmtj_box li a .content .more_info .score_item {
    position: absolute;
    top: 0;
  }
  .comment_html .main_box .rmtj_box li a .content .desc {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 50px;
  }
  .comment_html .main_box .rmtj_box li a .download_btn {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
  }
  .wzpd_html .swiper_xw {
    padding: 0;
    margin: 0 15px;
  }
  .wzpd_html .swiper_xw .img_text_template .swiper-slide a .img_item {
    height: 190px;
  }
  .wzpd_html .swiper_xw .img_text_template .swiper-slide a p {
    font-size: 14px;
    padding: 0 2px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
  }
  .wzpd_html .swiper_xw .img_text_template .swiper-slide a .type {
    display: none;
  }
  .wzpd_html .swiper_xw .swiper-pagination {
    bottom: 0;
  }
  .wzpd_html .swiper_xw .swiper-pagination .swiper-pagination-bullet {
    background-color: #999;
  }
  .wzpd_html .swiper_xw .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #32487b;
  }
  .wzpd_html .zxzx_box .lr_img_template {
    padding: 0 15px;
  }
  .wzpd_html .zxzx_box .lr_img_template li {
    height: 90px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .wzpd_html .zxzx_box .lr_img_template li a {
    padding-left: 140px;
  }
  .wzpd_html .zxzx_box .lr_img_template li a .img_item {
    width: 130px;
    height: 80px;
  }
  .wzpd_html .zxzx_box .lr_img_template li a .title {
    display: block;
    padding: 0;
    margin-right: 20px;
    overflow: hidden;
  }
  .wzpd_html .zxzx_box .lr_img_template li a p {
    margin-top: 8px;
    font-size: 14px;
  }
  .wzpd_html .zxzx_box .lr_img_template li a .text {
    margin-top: 10px;
  }
}
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination li.active span{
	color:#fff;
	background:#32487b;
}
/*# sourceMappingURL=index.css.map */
