/*全局初始化样式*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  position: relative;
  margin: 0 auto;
  color: #333;
  font-size: 0.16rem;
  font-family: '微软雅黑', "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.4;
  width: 100%;
  zoom: 1;
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
* {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*word-break: break-all;*/
  word-wrap: break-word;
}
/*默认去除ul、li的默认样式*/
.p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}
.ul,
.ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
ul,
ul li,
dl,
dl dt,
dl dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
  color: #333;
}
/*表单元素获得焦点时不显示虚线框*/
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
  /*强制去除表单自带的样式*/
}
/*不允许多行输入文本框有滚动条*/
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
  /*强制去除textarea自带的样式*/
}
/*初始化表单元素样式*/
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*初始化HTML5标签样式*/
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
  display: block;
}
/*去除figure边距*/
figure,
figcaption {
  margin: 0px;
  padding: 0px;
}
/*初始化图片样式*/
img {
  border: none;
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}
/*初始化a的样式和字体样式*/
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
em {
  font-style: normal;
}
/*清除浮动*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  font-size: 0px;
}
.clearfix {
  zoom: 1;
}
/* 滚动条 */
/* * {scrollbar-width: thin;scrollbar-color: #8b8b8b;} */
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 3px;
}
/* @font-face {
  font-family: 'SourceHanSerifSC';
  src: url('fonts/SourceHanSerifCN-Bold.otf');
} */
.w16 {
  width: 16rem;
  margin: 0 auto;
}
.w14 {
  width: 14rem;
  margin: 0 auto;
}
body {
  padding-top: 1.7rem;
}
.head_pc {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  border-top: 5px solid #94070a;
  box-shadow: 7px 0 9px #f0f0f0;
}
.head_pc .head_tp {
  height: 1.65rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.9rem;
  background: url(../img/bg1.png) no-repeat;
  background-position: right top;
  background-size: 4.05rem 1.7rem;
}
.head_pc .logo {
  display: block;
}
.head_pc .logo img {
  width: 4.43rem;
  display: block;
}
.head_pc .links {
  margin-left: auto;
  float: right;
  background: url(../img/h_gzbg.png) no-repeat;
  background-size: 100% 100%;
  padding: 0 0.56rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
}
.head_pc .links a {
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.05rem 0.18rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.head_pc .links a img {
  margin-right: 0.06rem;
}
.head_pc .links span {
  border-right: 0.01rem solid #b20b0f;
  display: inline-block;
  height: 0.18rem;
}
.head_pc .links a:hover {
  background: #bda066;
  border-radius: 0.05rem;
}
.head_pc .links a:hover img {
  animation: jello 1s;
}
.head_pc .head_r {
  height: 100%;
}
.head_pc .nav {
  position: relative;
  z-index: 9;
  clear: both;
  display: flex;
  align-items: center;
}
.head_pc .nav > ul {
  text-align: center;
  display: flex;
}
.head_pc .nav > ul > li {
  text-align: center;
  position: relative;
  display: block;
  margin-left: 0.2rem;
}
.head_pc .nav > ul > li:first-child {
  margin-left: 0;
}
.head_pc .nav > ul > li > a {
  display: block;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 9;
  font-weight: bold;
  font-size: 0.2rem;
  line-height: 1.15rem;
  white-space: nowrap;
}
.head_pc .nav > ul > li > a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 0.07rem solid transparent;
  left: 50%;
  transform: translateX(-50%);
  top: 0.94rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.head_pc .nav > ul > li > a:hover,
.head_pc .nav > ul > li > a.on {
  color: #bda066;
}
.head_pc .nav > ul > li > a:hover:after,
.head_pc .nav > ul > li > a.on:after {
  border-top: 0.08rem solid #bda066;
}
.head_pc .nav > ul > li .ejbox {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.02rem);
  background: rgba(255, 255, 255, 0.9);
  z-index: 8;
  padding: 0.1rem;
  display: none;
  min-width: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.head_pc .nav > ul > li .ejbox .uls {
  overflow: hidden;
}
.head_pc .nav > ul > li .ejbox .uls li {
  text-align: center;
}
.head_pc .nav > ul > li .ejbox .uls a {
  display: block;
  line-height: 0.36rem;
  color: #333;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.head_pc .nav > ul > li .ejbox .uls a:hover {
  background: #bda066;
  color: #fff;
}
.zyhead_pc {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
  border-top: 5px solid #94070a;
  background: #fff url(../img/bg1.png) no-repeat;
  background-position: right top;
  background-size: 4.05rem 1.7rem;
  box-shadow: 7px 0 9px #f0f0f0;
}
.zyhead_pc .head_tp {
  width: 14rem;
  margin: 0 auto;
  height: 1.65rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.zyhead_pc .logo {
  display: block;
  margin-top: 0.18rem;
}
.zyhead_pc .logo img {
  width: 4.43rem;
  display: block;
}
.zyhead_pc .head_r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.zyhead_pc .links {
  background: url(../img/h_gzbg.png) no-repeat;
  background-size: 100% 100%;
  padding: 0 0.56rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
}
.zyhead_pc .links a {
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.05rem 0.18rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.zyhead_pc .links a:after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.18rem;
  background: #b20b0f;
}
.zyhead_pc .links a:last-child::after{
   display: none;
}
.zyhead_pc .links a img {
  margin-right: 0.06rem;
  width: 0.16rem;
}
.zyhead_pc .links a:hover {
  background: #bda066;
  border-radius: 0.05rem;
}
.zyhead_pc .links a:hover img {
  animation: jello 1s;
}
.zyhead_pc .search {
  width: 7.32rem;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  margin: 0.28rem 0 0 auto;
}
.zyhead_pc .search_box {
  display: inline-flex;
  align-items: center;
  flex: 1;
  height: 0.56rem;
  border: 1px solid #e3e3e3;
  border-radius: 0.5rem;
  background: #fff;
}
.zyhead_pc .search_box .screen {
  width: 1rem;
  line-height: 0.56rem;
  position: relative;
}
.zyhead_pc .search_box .screen_item {
  font-size: 0.19rem;
  width: 100%;
  padding-right: 0.16rem;
  text-align: center;
  height: 100%;
}
.zyhead_pc .search_box .screen .con {
  cursor: pointer;
}
.zyhead_pc .search_box .screen .arrow_box {
  position: absolute;
  margin-left: 0.04rem;
  width: 0.12rem;
  height: 0.122rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.zyhead_pc .search_box .screen .arrow_box .arrow_up,
.zyhead_pc .search_box .screen .arrow_box .arrow_down {
  width: 0.1rem;
  height: 0.05rem;
  background: url(../img/ico_sj.png) no-repeat center;
  background-size: 100%;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.zyhead_pc .search_box .screen .arrow_box .arrow_up {
  top: 0;
}
.zyhead_pc .search_box .screen .arrow_box .arrow_down {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}
.zyhead_pc .search_box .screen .drop {
  position: absolute;
  left: 0;
  top: 100%;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: 2rem;
  display: none;
  z-index: 10;
}
.zyhead_pc .search_box .screen .drop_scroll {
  max-height: 2.7rem;
  overflow-y: auto;
  padding: 6px 0;
}
.zyhead_pc .search_box .screen .drop_scroll div {
  font-size: 14px;
  padding: 0 0.2rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #606266;
  height: 0.34rem;
  line-height: 0.34rem;
  cursor: pointer;
}
.zyhead_pc .search_box .screen .drop_scroll div:hover,
.zyhead_pc .search_box .screen .drop_scroll div.active {
  color: #fff;
  background: #94070a;
}
.zyhead_pc .search_box input {
  flex: 1;
  font-size: 0.19rem;
  padding-left: 0.2rem;
  padding-right: 0.3rem;
}
.zyhead_pc .search_box input:placeholder {
  color: #999999;
}
.zyhead_pc .search .btn {
  color: #fff;
  height: 0.56rem;
  width: 1.28rem;
  margin-left: 0.2rem;
  font-size: 0.19rem;
  line-height: 0.56rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-left: 0.2rem;
  background: #94070a url(../img/search.png) no-repeat;
  background-position: 0.26rem center;
  background-size: 0.19rem 0.2rem;
}
.zyhead_pc .search .btn:hover {
  border-radius: 0.1rem;
  letter-spacing: 0.02rem;
}
.zyhead_pc .head_bm {
  width: 100%;
  height: 0.7rem;
}
.zyhead_pc .head_bm .nav {
  width: 14rem;
  margin: 0 auto;
  display: flex;
}
.zyhead_pc .head_bm .nav li a {
  display: block;
  padding: 0 0.28rem;
  line-height: 0.7rem;
  color: #333;
  font-weight: bold;
  font-size: 0.2rem;
  position: relative;
}
.zyhead_pc .head_bm .nav li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 0.07rem solid transparent;
  left: 50%;
  transform: translateX(-50%);
  top: 0.54rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zyhead_pc .head_bm .nav li a:hover,
.zyhead_pc .head_bm .nav li a.on {
  color: #bda066 !important;
}
.zyhead_pc .head_bm .nav li a:hover::after,
.zyhead_pc .head_bm .nav li a.on::after {
  border-top: 0.07rem solid #bda066 !important;
}
.pt-21 {
  padding-top: 2.15rem;
}
.pt-21 .zyhead_pc .head_tp {
  height: 1.4rem;
}
.pt-24 {
  padding-top: 2.4rem;
}
.pt-24 .zyhead_pc .head_bm {
  background: #94070a;
}
.pt-24 .zyhead_pc .head_bm .nav li a {
  color: #fff;
}
.head_sj {
  height: 1.76rem;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
  display: none;
}
.head_sj .gn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.head_sj .gn .hd {
  display: flex;
  background: #94070a;
  color: #fff;
  height: 0.56rem;
  justify-content: flex-end;
  padding: 0 0.24rem;
}
.head_sj .gn .hd img {
  width: 0.28rem;
  margin-right: 0.1rem;
}
.head_sj .gn .hd a {
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.05rem 0.18rem;
}
.head_sj .gn .hd span {
  border-right: 0.01rem solid #b20b0f;
  display: inline-block;
  height: 0.21rem;
}
.head_sj .gn .bd {
  height: calc(1.76rem - 0.56rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.24rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.head_sj .gn .bd::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 4.05rem;
  height: 1.7rem;
  background: url(../img/bg1.png) no-repeat;
  background-position: right top;
  background-size: cover;
  z-index: -1;
}
.head_sj .gn .bd .logo {
  width: 3.73rem;
}
.head_sj .gn .bd .logo img {
  width: 100%;
}
.head_sj .gn .bd .menu {
  color: #5f616e;
  font-size: 0.28rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.head_sj .gn .bd .menu .switch {
  width: 0.4rem;
  height: 0.3rem;
  position: relative;
  margin-right: 0.06rem;
}
.head_sj .gn .bd .menu .switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #575b66;
  transition: all 0.3s;
}
.head_sj .gn .bd .menu .switch i:nth-child(1) {
  top: 0;
}
.head_sj .gn .bd .menu .switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.head_sj .gn .bd .menu .switch i:nth-child(3) {
  bottom: 0;
}
.head_sj .nav2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  line-height: 1.6rem;
  color: #303E48;
  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  text-align: left;
  pointer-events: auto;
  padding-top: 1.8rem;
}
.head_sj .nav2 li {
  padding: 0 0.4rem;
  border-top: 1px solid #f1f1f1;
}
.head_sj .nav2 li .title_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head_sj .nav2 li .title_box svg {
  width: 0.3rem;
  height: 0.3rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.head_sj .nav2 li .title_box svg path {
  fill: #303E48;
}
.head_sj .nav2 li a {
  color: #303E48;
  font-size: 0.3rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.head_sj .nav2 li ul {
  display: none;
}
.head_sj .nav2 li.active .title_box a {
  color: #94070a;
}
.head_sj .nav2 li.active svg {
  transform: rotate(90deg);
}
@keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 200px;
  }
}
body.open .nav2 {
  left: 0;
}
body.open .gn .bd .menu .switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.open .gn .bd .menu .switch i:nth-child(2) {
  opacity: 0;
}
body.open .gn .bd .menu .switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.footer {
  background: #94070a;
}
.footer .hd {
  overflow: hidden;
  padding: 0 0.86rem;
}
.footer .hd .tit {
  font-weight: bold;
  position: relative;
  font-size: 0.24rem;
  padding-bottom: 0.24rem;
  margin-bottom: 0.28rem;
}
.footer .hd .tit::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.18rem;
  height: 0.18rem;
  background: url(../img/ico_28.png) no-repeat center / 100%;
}
.footer .part1 {
  float: left;
  color: #fff;
  width: 29.3%;
  padding: 0.6rem 0 0.46rem;
  border-right: 1px solid #d24447;
}
.footer .part1 ul {
  overflow: hidden;
}
.footer .part1 ul li {
  float: left;
  padding-left: 0.15rem;
  margin-bottom: 0.22rem;
  margin-left: 0.18rem;
  width: 1.92rem;
  position: relative;
}
.footer .part1 ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/ico_29.png) no-repeat center / 100% 100%;
  width: 0.08rem;
  height: 0.08rem;
}
.footer .part1 ul li:nth-child(2n+1) {
  margin-left: 0;
}
.footer .part1 ul li a {
  display: block;
  color: #fff;
}
.footer .part1 ul li a:hover {
  opacity: 0.7;
}
.footer .part2 {
  float: left;
  color: #fff;
  width: 27.8%;
  padding: 0.6rem 0 0 0.86rem;
}
.footer .part2 p {
  display: flex;
  color: #fff;
  margin-bottom: 0.26rem;
  line-height: 2;
}
.footer .part2 p img {
  margin-right: 0.1rem;
  margin-top: 0.06rem;
}
.footer .part2 .tel {
  width: 0.18rem;
  height: 0.18rem;
}
.footer .part2 .ads {
  width: 0.14rem;
  height: 0.18rem;
}
.footer .part3 {
  float: right;
  padding: 0.68rem 0 0.46rem 0;
}
.footer .part3 li {
  float: left;
  text-align: center;
  margin-right: 0.33rem;
}
.footer .part3 li:last-child {
  margin-right: 0;
}
.footer .part3 li .ico {
  width: 1.49rem;
  height: 1.49rem;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .part3 li .ico img {
  width: 1.3rem;
  height: 1.3rem;
}
.footer .part3 li p {
  color: rgba(255, 255, 255, 0.6);
  padding: 0.04rem 0;
}
.footer .bd {
  background: #7c0508;
}
.footer .bd .w16 {
  height: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .bd a {
  color: #fff;
}
.footer .bd a:hover {
  opacity: 0.7;
}
.sj_foot {
  display: none;
  background: #94070a;
  padding: 0.5rem 0.24rem 0.34rem;
}
.sj_foot .part1 {
  padding: 0 0.84rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.12rem;
}
.sj_foot .part1 li {
  text-align: center;
}
.sj_foot .part1 li .ico {
  width: 1.49rem;
  height: 1.49rem;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sj_foot .part1 li .ico img {
  width: 1.3rem;
  height: 1.3rem;
}
.sj_foot .part1 li p {
  color: rgba(255, 255, 255, 0.6);
  padding: 0.12rem 0;
  font-size: 0.22rem;
}
.sj_foot .part2 {
  background: #730608;
  text-align: center;
  padding: 0.12rem 0;
}
.sj_foot .part2 p {
  color: #fff;
  font-size: 0.26rem;
  padding: 0.06rem 0;
}
.sj_foot .part2 img {
  width: 0.2rem;
}
.sj_foot .part3 {
  color: #fff;
  padding-top: 0.26rem;
  font-size: 0.22rem;
}
.sj_foot .part3 p {
  padding: 0.08rem 0;
  text-align: center;
}
.sj_foot .part3 a {
  color: #fff;
}
.yygk .head {
  width: 100%;
  position: relative;
  z-index: 3;
}
.yygk .head > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yygk .head .dq {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  background: url(../img/dq_bg.png) no-repeat center / cover;
  width: 8.21rem;
  height: 0.81rem;
  color: #fff;
  padding-left: 0.6rem;
  display: flex;
  align-items: center;
}
.yygk .head .dq a {
  margin: 0 0.06rem;
  color: #fff;
}
.yygk .box1 {
  position: relative;
  z-index: 2;
  background: url(../img/bg9.jpg) no-repeat right bottom / cover;
  width: 100%;
  height: 12.47rem;
  padding-top: 1.14rem;
}
.yygk .box1 .tit {
  position: relative;
  color: #333;
  font-size: 0.4rem;
  text-align: center;
  padding-bottom: 0.32rem;
  margin-bottom: 0.38rem;
}
.yygk .box1 .tit::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #880025;
  width: 0.66rem;
  height: 0.06rem;
}
.yygk .box1 .cont {
  color: #333;
  font-size: 0.18rem;
  line-height: 1.5;
  text-indent: 2em;
  min-height: 1.5rem;
  max-height: 2rem;
  overflow: auto;
  margin-bottom: 0.4rem;
}
.yygk .box1 .more {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  padding: 0.54rem 0 0.14rem;
}
.yygk .box1 .more img {
  width: 0.19rem;
  margin-left: 0.06rem;
}
.yygk .box1 .more:hover {
  color: #bda066;
}
.yygk .box1 .date {
  display: flex;
  align-items: center;
}
.yygk .box1 .date .t {
  line-height: 1.1;
  color: #333;
  padding-left: 0.15rem;
  border-left: 1px solid #dfdfdf;
}
.yygk .box1 .date .line {
  width: 44%;
  height: 1px;
  background: #dfdfdf;
}
.yygk .col {
  padding: 0 1.12rem;
  display: flex;
  justify-content: space-between;
}
.yygk .col .colbox {
  padding: 0 0.26rem;
  width: 3.64rem;
  color: #fff;
  max-height: 4.26rem;
}
.yygk .col ul {
  width: 100%;
  height: 100%;
  border-left: 1px solid;
  padding: 0.4rem 0;
}
.yygk .col ul li {
  padding-left: 0.28rem;
  position: relative;
  padding-bottom: 0.22rem;
}
.yygk .col ul li:last-child {
  padding-bottom: 0;
}
.yygk .col ul li::before {
  content: '';
  position: absolute;
  height: 0.01rem;
  width: 0.25rem;
  left: 0;
  top: 0.48rem;
}
.yygk .col ul li span {
  font-size: 0.48rem;
  font-family: 'SourceHanSerifSC';
}
.yygk .col_1 {
  background: #365baa;
}
.yygk .col_1 ul {
  border-color: #5a82cf;
}
.yygk .col_1 ul li::before {
  background: #5a82cf;
}
.yygk .col_2 {
  margin-top: 1.39rem;
  position: relative;
  background: url(../img/bg10.jpg) no-repeat center / cover;
}
.yygk .col_2 ul {
  border-color: #b12047;
}
.yygk .col_2 ul li:before {
  background: #b12047;
}
.yygk .col_3 {
  background: #bda066;
  margin-bottom: 0.26rem;
}
.yygk .col_3 ul {
  border-color: #d0bb90;
}
.yygk .col_3 ul li:before {
  background: #d0bb90;
}
.yygk .col_4 {
  background: #254682;
}
.yygk .col_4 ul {
  border-color: #3f63a4;
}
.yygk .col_4 ul li:before {
  background: #3f63a4;
}
.yygk .box2 {
  width: 100%;
  height: 10.46rem;
  background: url(../img/bg11.jpg) no-repeat center / cover;
  padding-top: 0.84rem;
}
.yygk .box2 .w14 {
  display: flex;
  justify-content: space-between;
}
.yygk .box2 .lt {
  width: 1.02rem;
  height: 7.14rem;
  padding-top: 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.yygk .box2 .lt .title {
  display: flex;
  flex-direction: column;
  width: 0.4rem;
  align-items: center;
}
.yygk .box2 .lt .title .tit {
  color: #333;
  font-size: 0.4rem;
  line-height: 1.1;
}
.yygk .box2 .lt .title img {
  width: 0.26rem;
  margin-top: 0.1rem;
}
.yygk .box2 .tab li {
  margin-top: 0.1rem;
  color: #fff;
  text-align: center;
  width: 0.9rem;
  height: 0.9rem;
  line-height: 0.9rem;
  font-size: 0.22rem;
  position: relative;
  background: #bda066;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.yygk .box2 .tab li::after {
  content: '';
  position: absolute;
  right: -0.16rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0.08rem solid transparent;
  border-left: 0.08rem solid #94070a;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.yygk .box2 .tab li.active,
.yygk .box2 .tab li:hover {
  background: #94070a;
}
.yygk .box2 .tab li.active::after,
.yygk .box2 .tab li:hover::after {
  opacity: 1;
}
.yygk .box2 .rt {
  width: calc(100% - 1.86rem);
}
.yygk .box2 .rt .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.yygk .box2 .rt .hd .t {
  font-size: 0.24rem;
  color: #94070a;
}
.yygk .box2 .rt .hd .swiper_btm > div {
  cursor: pointer;
  width: 0.5rem;
  height: 0.5rem;
  background: #bda066;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.16rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.yygk .box2 .rt .hd .swiper_btm > div:hover {
  background: #94070a;
}
.yygk .box2 .rt .hd .swiper_btm img {
  width: 0.12rem;
}
.yygk .box2 .rt .ry_Swiper {
  height: 6.44rem;
  display: none;
}
.yygk .box2 .rt .ry_Swiper .swiper-slide {
  height: calc((100% - 32px) / 2) !important;
}
.yygk .box2 .rt .ry_Swiper p {
  text-align: center;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #333;
  font-size: 0.18rem;
  padding-top: 0.2rem;
}
.yygk .box2 .rt .ry_Swiper .item {
  display: block;
}
.yygk .box2 .rt .ry_Swiper .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.yygk .box2 .rt .ry_Swiper .item .imgbox img {
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.yygk .box2 .rt .ry_Swiper .item:hover img {
  transform: scale(1.05);
}
.yygk .box2 .rt .ry_Swiper .item:hover p {
  color: #94070a;
}
.yygk .box3 {
  padding-top: 0.2rem;
  margin-bottom: 0.86rem;
}
.yygk .box3 .hd {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.52rem;
}
.yygk .box3 .hd .item {
  position: relative;
  padding: 0 0.36rem;
  font-size: 0.4rem;
  color: #333;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 0.1rem;
}
.yygk .box3 .hd .item::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0.59rem;
  height: 0.05rem;
  background: #94070a;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.yygk .box3 .hd .item:hover,
.yygk .box3 .hd .item.active {
  font-weight: bold;
}
.yygk .box3 .hd .item:hover::after,
.yygk .box3 .hd .item.active::after {
  opacity: 1;
}
.yygk .box3 .y1_Swiper {
  display: none;
  width: 100%;
}
.yygk .box3 .y1_Swiper .item {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
}
.yygk .box3 .y1_Swiper .item img {
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.yygk .box3 .y1_Swiper .item .mask {
  width: 100%;
  height: 3.14rem;
  background: url(../img/bg14.png) no-repeat center / 100% 100%;
  color: #fff;
  text-align: center;
  font-size: 0.2rem;
  padding: 2.62rem 0.2rem 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
}
.yygk .box3 .y1_Swiper .item:hover img {
  transform: scale(1.05);
}
.yygk .box3 .y1_Swiper .item:hover .mask {
  color: #bda066;
}
.yygk .box3 .y1_Swiper .arw_btn {
  position: absolute;
  background: #bda066;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.yygk .box3 .y1_Swiper .arw_btn img {
  width: 0.12rem;
}
.yygk .box3 .y1_Swiper .arw_btn:hover {
  background: #94070a;
}
.yygk .box3 .y1_Swiper .prev {
  left: 30%;
}
.yygk .box3 .y1_Swiper .next {
  right: 30%;
}
.yygk .box3 .y1_Swiper .swiper-slide-active .mask {
  opacity: 1;
}
.yygk .box4 {
  margin-bottom: 1rem;
}
.yygk .box4 .t {
  position: relative;
  color: #333;
  font-size: 0.4rem;
  text-align: center;
  padding-bottom: 0.3rem;
  margin-bottom: 0.4rem;
}
.yygk .box4 .t::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3.11rem;
  height: 0.16rem;
  bottom: 0;
  background: url(../img/line.png) no-repeat center;
}
.yygk .box4 .y2_Swiper {
  width: 100%;
  height: 3.4rem;
  padding: 0.04rem;
  margin-bottom: 0.6rem;
}
.yygk .box4 .y2_Swiper .swiper-slide {
  height: calc((100% - 36px) / 2) !important;
}
.yygk .box4 .y2_Swiper .item {
  background: #fff;
  height: 1.5rem;
  box-shadow: 1px 0 10px rgba(185, 185, 185, 0.5);
  border: 1px solid #e8e8e8;
  display: block;
  position: relative;
  z-index: 2;
  padding: 0.28rem 0.24rem 0.2rem;
  overflow: hidden;
}
.yygk .box4 .y2_Swiper .item::after {
  content: '';
  position: absolute;
  background: url(../img/ico_40.png) no-repeat center / 100% 100%;
  width: 1.19rem;
  height: 1.19rem;
  right: 0.1rem;
  bottom: -0.14rem;
  z-index: -1;
}
.yygk .box4 .y2_Swiper .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  background: #94070a;
  width: 0.05rem;
  height: 0.28rem;
}
.yygk .box4 .y2_Swiper .item .t1 {
  color: #333;
  font-size: 0.2rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 0.56rem;
}
.yygk .box4 .y2_Swiper .item .t2 {
  color: #999;
  padding-top: 0.2rem;
}
.yygk .box4 .sw_line {
  width: 100%;
  position: relative;
  padding-bottom: 0.3rem;
}
.yygk .box4 .sw_line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffc7c9;
}
.yygk .box4 .sw_line .pagination {
  text-align: center;
}
.yygk .box4 .sw_line .swiper-pagination-bullet {
  width: 0.72rem;
  height: 0.72rem;
  line-height: 0.72rem;
  text-align: center;
  color: #bda066;
  font-size: 0.24rem;
  background: transparent;
  border-radius: 0;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.yygk .box4 .sw_line .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.41rem;
  width: 0.7rem;
  z-index: 2;
  height: 0.3rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/ico_39.png) no-repeat center / 100% 100%;
}
.yygk .box4 .sw_line .swiper-pagination-bullet-active {
  color: #94070a;
  background: url(../img/ico_41.png) no-repeat center / 100% 100%;
}
.yygk .box4 .sw_line .swiper-pagination-bullet-active::after {
  opacity: 1;
}
.yygk .box5 {
  margin-bottom: 1rem;
}
.yygk .box5 .w14 {
  background: #f9f9f9;
  padding: 0.4rem 0.6rem;
}
.yygk .box5 .t {
  position: relative;
  color: #333;
  font-size: 0.4rem;
  text-align: center;
  padding-bottom: 0.3rem;
  margin-bottom: 0.74rem;
}
.yygk .box5 .t::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3.11rem;
  height: 0.16rem;
  bottom: 0;
  background: url(../img/line.png) no-repeat center;
}
.yygk .box5 .map_box {
  display: flex;
  justify-content: space-between;
}
.yygk .box5 .wrap {
  /* width: 41.3%; */
  width: 100%;
  position: relative;
}
.yygk .box5 .wrap .tit {
  z-index: 2;
  color: #fff;
  background: #94070a;
  border-radius: 0.4rem;
  height: 0.64rem;
  line-height: 0.64rem;
  width: 3.36rem;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  font-weight: bold;
  text-align: center;
  transform: translateX(-50%);
  top: -0.25rem;
}
.yygk .box5 .wrap .map {
  width: 100%;
  height: 2.38rem;
  margin-bottom: 0.28rem;
}
.yygk .box5 .wrap p {
  color: #333;
  font-size: 0.18rem;
  line-height: 1.4;
  padding-bottom: 0.04rem;
}
.dq {
  height: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.dq img {
  width: 0.18rem;
}
.dq a {
  margin: 0 0.06rem;
  color: #fff;
}
.dq a:hover,
.dq a.on {
  color: #d8c18a !important;
}
.second {
  width: 100%;
  height: 2.94rem;
  object-fit: cover;
  background: url(../img/bg15.jpg) no-repeat center / cover;
}
.second .w14 {
  position: relative;
  height: 100%;
}
.second .tit {
  text-align: center;
  color: #fff;
  position: relative;
  font-size: 0.4rem;
  padding: 0.12rem 0 0.338rem;
}
.second .tit::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 3.74rem;
  height: 0.19rem;
  background: url(../img/line2.png) no-repeat center / 100% 100%;
}
.second .link {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.second .link .tracker-box {
  overflow: hidden;
  text-align: center;
  width: 100%;
}
.second .link .tracker-track {
  display: table;
  white-space: nowrap;
  font-size: 0;
  min-width: 100%;
  min-height: 100%;
}
.second .link .tracker-item {
  width: 1.64rem;
  height: 0.52rem;
  line-height: 0.52rem;
  text-align: center;
  display: inline-block;
}
.second .link .tracker-item a {
  display: block;
  color: #fff;
  font-size: 0.2rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.second .link .tracker-item.cur {
  background: #bda066;
  font-weight: bold;
}
.ywgk .list {
  min-height: 50vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}
.ldbox {
  flex-shrink: 0;
  width: 6.46rem;
  height: 2.78rem;
  display: inline-flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.ldbox .lt {
  position: relative;
  width: 1.95rem;
  height: 2.74rem;
  padding-left: 0.08rem;
  padding-bottom: 0.07rem;
  z-index: 2;
}
.ldbox .lt img {
  width: 100%;
  height: 100%;
}
.ldbox .lt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.86rem;
  height: 2.36rem;
  background: url(../img/ico_42.png) no-repeat center / 100%;
  z-index: -1;
}
.ldbox .rt {
  width: calc(100% - 2.33rem);
  height: 2.74rem;
  padding-top: 0.3rem;
  color: #333;
  position: relative;
}
.ldbox .rt::before,
.ldbox .rt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #dedede;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.ldbox .rt::before {
  height: 0.03rem;
  width: 0;
  background: #94070a;
}
.ldbox .rt .t {
  font-size: 0.24rem;
  padding-bottom: 0.16rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ldbox .rt .scroll {
  height: 1.54rem;
}
.ldbox .rt p {
  color: #666;
  line-height: 1.5;
  padding-bottom: 0.04rem;
}
.ldbox .rt .jj {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ldbox .rt .ico {
  width: 0.24rem;
  height: 0.24rem;
  position: relative;
  margin-left: auto;
}
.ldbox .rt .ico::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.16rem;
  height: 0.16rem;
  background-image: url(../img/ico_43.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ldbox[href]:hover .t {
  color: #94070a;
}
.ldbox[href]:hover .ico::after {
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(../img/ico_44.png);
}
.ldbox[href]:hover .rt::before {
  width: 100%;
}
.fy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0.8rem;
  flex-wrap: wrap;
}
.fy li {
  margin: 0 .05rem .3rem;
}
.fy a {
  background: #fff;
  color: #666;
  font-size: 0.18rem;
  border-radius: 0.05rem;
  padding: 0.05rem 0.12rem;
  border: 1px solid #dcdcdc;
}
.fy a:hover,
.fy a.on {
  color: #fff;
  background: #880025;
  border-radius: 0.05rem;
}
.fy i {
  font-size: 0.18rem;
}
.fy input {
  width: 0.6rem;
  color: #666;
  font-size: 0.18rem;
  border-radius: 0.05rem;
  padding: 0.07rem 0.12rem;
  margin: 0 0.05rem;
  background: #fff;
  border: 1px solid #dcdcdc;
}
.pag {
  text-align: center;
  margin: 0.8rem 0;
  display: none;
}
.pag_more {
  display: inline-block;
  padding: 0.1rem 0.3rem;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  font-size: 0.34rem;
}
.ldxq {
  position: relative;
  z-index: 2;
  background: #f7f7f7;
  min-height: 7.8rem;
  overflow: hidden;
}
.ldxq .dq {
  color: #999;
}
.ldxq .dq a {
  color: #999;
}
.ldxq .dq a.on,
.ldxq .dq a:hover {
  color: #d8c18a;
}
.ldxq::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8.86rem;
  background: url(../img/bg17.jpg) no-repeat center bottom / cover;
  z-index: -1;
}
.ldxq .ldbox {
  background: #fff;
  box-shadow: 7px 0 9px #f7f7f7;
  padding: 0.56rem 0.4rem;
  border-top: 0.08rem solid #94070a;
  display: flex;
  width: 100%;
  height: auto;
  margin: 0 0 1rem 0;
}
.ldxq .ldbox .lt {
  padding: 0 0.1rem 0 0;
}
.ldxq .ldbox .lt::after {
  top: 0.1rem;
  left: inherit;
  bottom: inherit;
  right: 0;
  background: url(../img/bg18.jpg) no-repeat center / 100%;
}
.ldxq .ldbox .rt {
  height: auto;
}
.ldxq .ldbox .rt .scroll {
  height: auto;
}
.ldxq .ldbox .rt .t {
  color: #94070a;
}
.ldxq .ldbox .rt::after {
  display: none;
}
.zzjg {
  margin: 0.9rem 0;
}
.zzjg .zz_img {
  display: block;
  margin: 0 auto;
}
.zbgg .list {
  min-height: 50vh;
  margin: 0 0 0.7rem;
}
.zbgg .list .item {
  display: flex;
  margin-bottom: 0.26rem;
  padding: 0 0.19rem;
  border: 0.02rem solid #f0f0f0;
  height: 0.78rem;
  align-items: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
.zbgg .list .item::after {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  z-index: -1;
  width: 0;
  top: 0;
  background: #94070a;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.zbgg .list .item .t {
  color: #333;
  font-size: 0.2rem;
  width: 0.86rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zbgg .list .item .t span {
  font-size: 0.34rem;
}
.zbgg .list .item .tit {
  flex: 1;
  padding-left: 0.28rem;
  position: relative;
  color: #333;
  font-size: 0.18rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zbgg .list .item .tit::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #b6b6b6;
  width: 0.06rem;
  height: 0.06rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zbgg .list .item:hover {
  border-color: #94070a;
}
.zbgg .list .item:hover::after {
  width: 100%;
}
.zbgg .list .item:hover .t {
  color: #fff;
}
.zbgg .list .item:hover .tit {
  color: #fff;
}
.zbgg .list .item:hover .tit::after {
  background: #fff;
}
.xq {
  background: #f7f7f7;
  min-height: 50vh;
}
.xq .dq {
  margin-bottom: 0.28rem;
  color: #999;
}
.xq .dq a {
  color: #999;
}
.xq .wrap {
  background: #fff;
  padding: 0.48rem 0.7rem 0.7rem;
  margin-bottom: 0.66rem;
}
.xq .hd {
  position: relative;
  background: url(../img/line1.png) no-repeat center bottom / 100% 0.07rem;
  padding-bottom: 0.1rem;
}
.xq .hd h3 {
  font-weight: bold;
  color: #333;
  font-size: 0.3rem;
  padding: 0 1.38rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.36rem;
}
.xq .hd .tag {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
  color: #999;
}
.xq .hd .tag:last-child {
  margin: 0;
}
.xq .hd .tag img {
  margin-right: 0.08rem;
  width: 0.19rem;
}
.xq .hd .ewm {
  position: absolute;
  right: 0;
  top: 0.1rem;
  text-align: center;
  width: 0.99rem;
  color: #999;
  font-size: 0.14rem;
}
.xq .hd .ewm img {
  width: 100%;
  margin-bottom: 0.04rem;
}
.xq .bd {
  display: flex;
  justify-content: space-between;
  padding-top: 0.3rem;
  margin-bottom: 0.4rem;
}
.xq .bd .content {
  width: calc(100% - 1.92rem);
  color: #333;
  font-size: 0.18rem;
  line-height: 1.7;
  min-height: 50vh;
}
.xq .bd .content p {
  margin: 0.16rem 0;
  min-height: 0.22rem;
}
.xq .bd .tip {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 1rem;
  padding: 0.2rem 0;
  border-radius: 0.3rem;
  right: 1rem;
  background: #fff;
}
.xq .bd .tip .size {
  text-align: center;
  border-bottom: 1px solid #d5d5d5;
}
.xq .bd .tip .size .a {
  display: inline-block;
  font-size: 0.24rem;
  position: relative;
  font-weight: bold;
}
.xq .bd .tip .size .a sup {
  position: absolute;
}
.xq .bd .tip .size > div {
  padding-bottom: 0.24rem;
  color: #999999;
  font-size: 0.14rem;
  cursor: pointer;
}
.xq .bd .tip .size > div:hover .a {
  color: #bda066;
}
.xq .bd .tip .gotop {
  display: block;
  margin: 0.2rem auto 0;
  cursor: pointer;
  width: 0.4rem;
}
.xq .context {
  border-top: 1px solid #d5d5d5;
  display: flex;
  justify-content: space-between;
}
.xq .context a {
  color: #333;
  line-height: 0.76rem;
  font-size: 0.18rem;
  width: 5.8rem;
}
.xq .context a[href]:hover {
  color: #bda066;
}
.xq .tj {
  padding-bottom: 0.42rem;
}
.xq .tj h3 {
  color: #333;
  font-size: 0.3rem;
  padding-bottom: 0.34rem;
}
.xq .tj .list {
  min-height: 1.9rem;
  overflow: hidden;
}
.xq .tj .item {
  display: inline-flex;
  background: #fff;
  margin-right: 0.15rem;
  margin-bottom: 0.3rem;
  padding: 0 0.3rem 0 0.1rem;
  height: 0.8rem;
  align-items: center;
  width: 4.53rem;
}
.xq .tj .item:nth-child(3n) {
  margin-right: 0;
}
.xq .tj .item img {
  width: 0.2rem;
  margin-right: 0.12rem;
}
.xq .tj .item p {
  font-size: 0.2rem;
  color: #333;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.xq .tj .item:hover p {
  color: #bda066;
}
.yyyw .hd {
  background: #f6f6f6;
  padding: 0.84rem 0;
}
.yyyw .y3_Swiper {
  width: 100%;
  height: 4.08rem;
  overflow: hidden;
  position: relative;
}
.yyyw .y3_Swiper .item {
  width: 100%;
  height: 4.08rem;
  display: flex;
  justify-content: space-between;
}
.yyyw .y3_Swiper .item .img {
  width: 6.94rem;
  height: 4.4rem;
}
.yyyw .y3_Swiper .item .txt {
  margin-top: 0.4rem;
  width: calc(100% - 7.5rem);
}
.yyyw .y3_Swiper .item .t1 {
  color: #999;
  padding-bottom: 0.22rem;
}
.yyyw .y3_Swiper .item .t1 img {
  margin-right: 0.12rem;
}
.yyyw .y3_Swiper .item .t2 {
  display: block;
  color: #333;
  font-size: 0.24rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.28rem;
}
.yyyw .y3_Swiper .item .t2:hover {
  color: #94070a;
}
.yyyw .y3_Swiper .item .t3 {
  display: block;
  font-size: 0.18rem;
  color: #999;
  line-height: 1.5;
  min-height: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.yyyw .y3_Swiper .item .more {
  margin-top: 1.03rem;
  background: #94070a;
  border-radius: 0.4rem;
  color: #fff;
  height: 0.47rem;
  width: 1.1rem;
  line-height: 0.47rem;
  text-align: center;
  display: block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.yyyw .y3_Swiper .item .more img {
  margin-left: 0.06rem;
  width: 0.2rem;
}
.yyyw .y3_Swiper .item .more:hover {
  border-radius: 0.1rem;
}
.yyyw .y3_Swiper .swiper_btm {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  z-index: 10;
  height: 0.48rem;
  width: 1.12rem;
  display: flex;
}
.yyyw .y3_Swiper .swiper_btm > div {
  background: #d9d9d9;
  color: #fff;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  position: initial;
  margin-top: 0;
  opacity: 1;
}
.yyyw .y3_Swiper .swiper_btm > div:last-child {
  margin-left: 0.16rem;
}
.yyyw .y3_Swiper .swiper_btm > div::after {
  font-size: 0.18rem;
}
.yyyw .y3_Swiper .swiper_btm .swiper-button-next {
  background: #bda066;
}
.yyyw .y3_Swiper .swiper_btm .swiper-button-next.swiper-button-disabled {
  background: #d9d9d9;
}
.yyyw .y3_Swiper .swiper_btm .swiper-button-prev {
  background: #bda066;
}
.yyyw .y3_Swiper .swiper_btm .swiper-button-prev.swiper-button-disabled {
  background: #d9d9d9;
}
.yyyw .bd .list {
  min-height: 50vh;
}
.yyyw .bd .item {
  padding: 0.42rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
}
.yyyw .bd .item .img {
  width: 3.33rem;
  height: 1.96rem;
  flex-shrink: 0;
}
.yyyw .bd .t1 {
  padding-top: 0.04rem;
  padding-bottom: 0.06rem;
  color: #999;
  font-family: 'SourceHanSerifSC';
}
.yyyw .bd .t1 span {
  font-size: 0.3rem;
}
.yyyw .bd .t2 {
  color: #333;
  font-size: 0.24rem;
  padding-bottom: 0.1rem;
  font-weight: bold;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.yyyw .bd .t3 {
  color: #999;
  font-size: 0.18rem;
  padding-bottom: 0.4rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.yyyw .bd .more {
  color: #999;
}
.yyyw .bd .more img {
  margin-left: 0.06rem;
  width: 0.2rem;
}
.yyyw .bd .lt {
  width: 100%;
}
.yyyw .bd .sm_item .lt {
  width: 70%;
}
.yyyw .bd .item:hover {
  border-color: #94070a;
}
.yyyw .bd .item:hover .t2 {
  color: #94070a;
}
.wldst {
  padding: 0 0 0.7rem;
}
.wldst .list {
  min-height: 50vh;
  overflow: hidden;
}
.wldst .item {
  float: left;
  width: 4.41rem;
  margin-bottom: 0.38rem;
  margin-right: 0.38rem;
}
.wldst .item:nth-child(3n) {
  margin-right: 0;
}
.wldst .item .img {
  width: 100%;
  height: 2.53rem;
  position: relative;
  overflow: hidden;
}
.wldst .item .img .pts,
.wldst .item .img img {
  width: 100%;
  height: 100%;
}
.wldst .item .img .btn {
  background: url(../img/ico_50.png) no-repeat center / 100% 100%;
  width: 1.72rem;
  height: 1.72rem;
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
  padding: 0.4rem;
}
.wldst .item .img .btn img {
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
}
.wldst .item .t1 {
  color: #333;
  font-size: 0.2rem;
  display: block;
  padding: 0.2rem 0 0.12rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.wldst .item .t2 {
  color: #999;
}
.zxyx {
  padding: 0 0 0.7rem;
}
.zxyx .list {
  min-height: 50vh;
  overflow: hidden;
}
.lt_item {
  float: left;
  width: 6.65rem;
  height: 1.58rem;
  position: relative;
  z-index: 2;
  margin-right: 0.64rem;
  margin-bottom: 0.34rem;
  padding: 0 0.1rem 0.1rem 0;
}
.lt_item:nth-child(2n) {
  margin-right: 0;
}
.lt_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f6f6f6;
  width: 6.55rem;
  height: 1.48rem;
  z-index: -1;
}
.lt_item .box {
  background: #fff;
  border: 1px solid #d9d9d9;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.24rem;
  z-index: 2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.lt_item .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.26rem;
  background: #94070a;
  width: 0.05rem;
  height: 0.28rem;
}
.lt_item .box::after {
  content: '';
  position: absolute;
  background: url(../img/ico_40.png) no-repeat center / 100% 100%;
  width: 1.19rem;
  height: 1.19rem;
  right: 0.74rem;
  top: 0.14rem;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.lt_item .box .t1 {
  color: #333;
  font-size: 0.2rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 0.56rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.lt_item .box .t2 {
  color: #999;
  padding-top: 0.2rem;
}
.lt_item .box .bet {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lt_item .box .ico {
  width: 0.45rem;
  height: 0.16rem;
  background-image: url(../img/ico_51.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.lt_item:hover .box {
  border-color: #94070a;
}
.lt_item:hover .box::after {
  opacity: 1;
}
.lt_item:hover .box .t1 {
  color: #94070a;
  font-weight: bold;
}
.lt_item:hover .box .ico {
  background-image: url(../img/ico_52.png);
}
.ksjs .head {
  width: 100%;
  height: 5.38rem;
  position: relative;
  z-index: 2;
}
.ksjs .head .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ksjs .head .w14 {
  height: 100%;
}
.ksjs .head .pts {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 7.62rem;
}
.ksjs .box1 {
  padding: 0.8rem 0;
}
.ksjs .box1 h2 {
  text-align: center;
  color: #a8a8a8;
  font-size: 0.48rem;
  font-weight: bold;
  line-height: 1.3;
}
.ksjs .box1 .search {
  width: 9.2rem;
  border-radius: 0.08rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
  background: #fff;
  padding: 0.13rem 0.58rem 0.13rem 0;
  box-shadow: 2px 0 18px rgba(217, 217, 217, 0.6);
  position: relative;
}
.ksjs .box1 .search::after {
  content: '';
  position: absolute;
  background: url(../img/ico_54.png) no-repeat center / 100% 100%;
  width: 1.73rem;
  height: 1.57rem;
  left: 0.53rem;
  bottom: 40%;
  z-index: -1;
}
.ksjs .box1 .search_box {
  display: inline-flex;
  align-items: center;
  flex: 1;
  height: 0.32rem;
}
.ksjs .box1 .search_box .screen {
  width: 1.18rem;
  line-height: 0.32rem;
  position: relative;
  z-index: 101;
}
.ksjs .box1 .search_box .screen_item {
  font-size: 0.19rem;
  width: 100%;
  padding-right: 0.16rem;
  text-align: center;
  height: 100%;
}
.ksjs .box1 .search_box .screen .con {
  cursor: pointer;
}
.ksjs .box1 .search_box .screen .arrow_box {
  position: absolute;
  margin-left: 0.04rem;
  width: 0.12rem;
  height: 0.122rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ksjs .box1 .search_box .screen .arrow_box .arrow_up,
.ksjs .box1 .search_box .screen .arrow_box .arrow_down {
  width: 0.1rem;
  height: 0.05rem;
  background: url(../img/ico_sj.png) no-repeat center;
  background-size: 100%;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.ksjs .box1 .search_box .screen .arrow_box .arrow_up {
  top: 0;
}
.ksjs .box1 .search_box .screen .arrow_box .arrow_down {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}
.ksjs .box1 .search_box .screen .drop {
  position: absolute;
  left: 0;
  top: 100%;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  width: 2rem;
  display: none;
  z-index: 10;
}
.ksjs .box1 .search_box .screen .drop_scroll {
  max-height: 2.7rem;
  overflow-y: auto;
  padding: 6px 0;
}
.ksjs .box1 .search_box .screen .drop_scroll div {
  font-size: 14px;
  padding: 0 0.2rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #606266;
  height: 0.34rem;
  line-height: 0.34rem;
  cursor: pointer;
}
.ksjs .box1 .search_box .screen .drop_scroll div:hover,
.ksjs .box1 .search_box .screen .drop_scroll div.active {
  color: #fff;
  background: #94070a;
}
.ksjs .box1 .search_box input {
  flex: 1;
  font-size: 0.18rem;
  padding-left: 0.28rem;
  margin-left: 0.26rem;
  padding-right: 0.3rem;
  line-height: 0.32rem;
  border-left: 0.02rem solid #dddddd;
}
.ksjs .box1 .search_box input::placeholder {
  color: #999999;
}
.ksjs .box1 .search .btn {
  color: #fff;
  height: 0.46rem;
  width: 1.64rem;
  margin-left: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.46rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-left: 0.25rem;
  background: #94070a url(../img/ico_55.png) no-repeat;
  background-position: 0.26rem center;
  background-size: 0.23rem 0.24rem;
}
.ksjs .box1 .search .btn:hover {
  border-radius: 0.1rem;
}
.ksjs .box2 {
  margin-bottom: 1.16rem;
}
.ksjs .col {
  margin-bottom: 0.26rem;
}
.ksjs .col:target{
  padding-top: 2rem;
}
.ksjs .col h2 {
  position: sticky;
  color: #333;
  font-size: 0.3rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #e4e0d9;
  margin-bottom: 0.42rem;
  top: 2.15rem;
  z-index: 100;
  background: #fff;
}
.ksjs .col h2::before,
.ksjs .col h2::after {
  content: '';
  position: absolute;
  background: url(../img/line3.png) no-repeat center / 100% 100%;
  width: 1.17rem;
  height: 0.06rem;
}
.ksjs .col h2::before {
  left: 0;
  bottom: -0.03rem;
}
.ksjs .col h2::after {
  right: 0;
  bottom: -0.08rem;
  width: 0.25rem;
  height: 0.16rem;
  background: url(../img/ico_57.png) no-repeat center / 100% 100%;
}
.ksjs .col .links {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.ksjs .col .links a {
  width: 2.48rem;
  min-height: 0.5rem;
  display: inline-flex;
  margin-right: 0.4rem;
  margin-bottom: 0.23rem;
  border-radius: 0.1rem 0 0.1rem 0;
  padding: 0.05rem 0.13rem;
  border: 1px solid #cccccc;
  align-items: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ksjs .col .links a:nth-child(5n) {
  margin-right: 0;
}
.ksjs .col .links a .cir {
  width: 0.28rem;
  height: 0.28rem;
  position: relative;
}
.ksjs .col .links a .cir::after {
  content: '';
  position: absolute;
  width: 0.07rem;
  height: 0.07rem;
  border-radius: 50%;
  background: #b29b6b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ksjs .col .links a .t {
  color: #373939;
  font-size: 0.18rem;
  flex: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ksjs .col .links a .arw {
  width: 0.26rem;
  margin-left: 0.1rem;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ksjs .col .links a:hover {
  border-color: #94070a;
  background: #94070a;
}
.ksjs .col .links a:hover .cir::after {
  width: 0.28rem;
  height: 0.28rem;
  background: url(../img/ico_58.png) no-repeat center / 100% 100%;
}
.ksjs .col .links a:hover .t {
  color: #fff;
  margin-left: 0.1rem;
}
.ksjs .col .links a:hover .arw {
  opacity: 1;
}
.tj_box {
  background: #f8f2ea;
  padding: 0.54rem 0 0.52rem;
}
.tj_box .t {
  text-align: center;
  color: #94070a;
  font-size: 0.36rem;
  padding-bottom: 0.48rem;
}
.tj_box .lks {
  display: flex;
}
.tj_box .lks .item {
  width: 1.97rem;
  height: 1.97rem;
  background: #fff;
  margin-right: 0.44rem;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.tj_box .lks .item::after {
  content: '';
  position: absolute;
  background: url(../img/ico_65.png) no-repeat center / 100% 100%;
  width: 1.72rem;
  height: 1.72rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tj_box .lks .item:last-child {
  margin-right: 0;
}
.tj_box .lks .item .im {
  width: 0.67rem;
  height: 0.67rem;
  position: relative;
  margin: 0.32rem auto 0.15rem;
}
.tj_box .lks .item .im img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.tj_box .lks .item .im .ico1 {
  opacity: 1;
}
.tj_box .lks .item .t1 {
  color: #333;
  font-size: 0.2rem;
  padding-bottom: 0.05rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tj_box .lks .item .t2 {
  color: #999;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.tj_box .lks .item:hover {
  background: #94070a;
}
.tj_box .lks .item:hover::after {
  opacity: 1;
}
.tj_box .lks .item:hover .ico1 {
  opacity: 0;
}
.tj_box .lks .item:hover .ico1h {
  opacity: 1;
}
.tj_box .lks .item:hover .t1,
.tj_box .lks .item:hover .t2 {
  color: #fff;
}
.wzdt .dq,
.sznk .dq {
  margin-bottom: 0.28rem;
  color: #999;
}
.wzdt .dq a,
.sznk .dq a {
  color: #999;
}
.nav_uls {
  margin-bottom: 1rem;
}
.nav_uls .item {
  margin-bottom: 0.22rem;
  border: 1px solid #e6e6e6;
}
.nav_uls .item_tit {
  background: #f9f9f9;
  padding: 0 0.24rem;
  height: 0.42rem;
  line-height: 0.42rem;
  color: #333;
  font-size: 0.18rem;
  display: block;
}
.nav_uls .item_tit:hover {
  color: #bda066;
}
.nav_uls .item_cl {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.24rem;
}
.nav_uls .item_cl a {
  color: #999;
  padding: 0.18rem 0.46rem 0.18rem 0;
}
.nav_uls .item_cl a:hover {
  color: #bda066;
}
.jzxz{
  line-height: 2;
  font-size: 18px;
  margin: 40px auto;
}
.jzxz img {
  display: block;
  margin: 0.76rem auto;
}
.search1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.82rem;
  margin: 0 auto;
}
.search1 input {
  height: 0.6rem;
  line-height: 0.6rem;
  flex: 1;
  padding: 0 0.18rem;
  font-size: 0.2rem;
  border-radius: 0.05rem;
  background: #f5f8fb;
}
.search1 input::placeholder {
  color: #777777;
}
.search1 .btn {
  line-height: 0.6rem;
  height: 0.6rem;
  color: #fff;
  text-align: center;
  border-radius: 0.05rem;
  margin-left: 0.16rem;
  width: 1.46rem;
  background: #94070a;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: .2rem;
}
.search1 .btn:hover {
  opacity: 0.7;
}
.lxdh {
  padding: 0.7rem 0;
}
.lxdh .col {
  margin-top: 0.66rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.lxdh table {
  text-align: center;
  width: 6.8rem;
  margin-bottom: 0.3rem;
  border: 1px dashed #dfdfdf;
}
.lxdh table th {
  background: #94070a;
  color: #fff;
  font-weight: bold;
  font-size: 0.2rem;
  padding: 0.22rem 0;
}
.lxdh table th:first-child {
  border-right: 1px dashed #dfdfdf;
}
.lxdh table td {
  padding: 0.16rem 0;
  color: #333;
}
.lxdh table td:first-child {
  border-right: 1px dashed #dfdfdf;
}
.lxdh table tbody tr:nth-child(odd) {
  background: #fffaef;
}
.xstp {
  margin: 0.7rem 0;
}
.xstp .list {
  min-height: 50vh;
  overflow: hidden;
}
.xstp .item {
  float: left;
  margin-right: 0.18rem;
  margin-bottom: 0.6rem;
  width: 4.54rem;
}
.xstp .item:nth-child(3n) {
  margin-right: 0;
}
.xstp .item .img {
  width: 100%;
  height: 2.67rem;
}
.xstp .item .img img {
  width: 100%;
  height: 100%;
}
.xstp .item .t1 {
  color: #333;
  font-size: 0.2rem;
  padding: 0.3rem 0 0.16rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xstp .item .bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xstp .item .t2 {
  color: #999;
}
.xstp .item .more {
  display: inline-flex;
  align-items: center;
  color: #999999;
}
.xstp .item .more .line {
  height: 1px;
  width: 0.46rem;
  background: #d5d5d5;
  margin-right: 0.05rem;
}
.xstp .item .more img {
  width: 0.2rem;
}
.xstp .item:hover .t1 {
  color: #94070a;
  font-weight: bold;
}
.xstphd {
  background: #f7f7f7;
  padding-bottom: 0.7rem;
}
.xstphd .dq {
  color: #999;
  margin-bottom: 0.32rem;
}
.xstphd .dq a {
  color: #999;
}
.xstphd .content {
  background: #fff;
  box-shadow: 7px 0 9px #f0f0f0;
  margin-bottom: 0.34rem;
}
.xstphd .content .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #94070a;
  color: #fff;
  height: 0.57rem;
  padding: 0 0.24rem;
}
.xstphd .content .hd .lt {
  font-size: 0.22rem;
  font-weight: bold;
}
.xstphd .content .bd {
  padding: 0.2rem 0.26rem;
  font-size: 0.18rem;
  color: #333;
  line-height: 1.7;
  text-indent: 2em;
}
.xstphd .list {
  min-height: 50vh;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.xstphd .item {
  margin-right: 0.12rem;
  width: calc(100% / 4 - 0.09rem);
  margin-bottom: 0.3rem;
  background: #fff;
  padding: 0.15rem;
}
.xstphd .item .im {
  display: block;
  position: relative;
  width: 100%;
  height: 1.81rem;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.xstphd .item .im img {
  width: 100%;
  height: 100%;
}
.xstphd .item .im .tag {
  position: absolute;
  left: 0;
  top: 0;
  background: #94070a;
  color: #fff;
  font-size: 0.14rem;
  line-height: 0.26rem;
  padding: 0 0.18rem;
  border-radius: 0 0 0.2rem 0;
}
.xstphd .item:nth-child(4n) {
  margin-right: 0;
}
.xstphd .item .bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xstphd .item .bet p {
  font-size: 0.14rem;
  color: #666;
}
.xstphd .item .bet p span {
  color: #333;
  font-size: 0.2rem;
  font-weight: bold;
}
.xstphd .item .bet p:first-child {
  padding-bottom: 0.1rem;
}
.xstphd .item .bet p .num {
  color: #94070a;
}
.xstphd .item .bet .l:hover span {
  color: #94070a;
}
.xstphd .item .bet .votebtn {
  background: #bda066;
  color: #fff;
  width: 0.6rem;
  height: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.xstphd .item .bet .votebtn:hover,
.xstphd .item .bet .votebtn.on {
  background: #94070a;
}
.pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.pop .wrap {
  width: 4.42rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.26rem 0.34rem 0.3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.pop .wrap h3 {
  font-size: 0.2rem;
  color: #94070a;
  text-align: center;
  padding-bottom: 0.1rem;
}
.pop .cell {
  display: flex;
  align-items: center;
  height: 0.64rem;
  position: relative;
}
.pop .cell .ico {
  width: 0.21rem;
}
.pop .cell input {
  width: 100%;
  height: 0.64rem;
  line-height: 0.64rem;
  padding-left: 0.6rem;
  border-bottom: 1px solid #d7d7d7;
  background: url(../img/ico_60.png) no-repeat center;
  background-position: 0 center;
}
.pop .cell input::placeholder {
  color: #666;
}
.pop .cell:nth-child(2) input {
  background-size: 0.21rem 0.23rem;
  background: url(../img/ico_61.png) no-repeat center;
  background-position: 0 center;
}
.pop .cell:nth-child(3) input {
  background-size: 0.22rem 0.19rem;
  background: url(../img/ico_62.png) no-repeat;
  background-position: 0 center;
}
.pop .cell .yzm_ipt {
  width: calc(100% - 1.22rem);
}
.pop .cell .yzm {
  width: 1rem;
  margin-left: 0.22rem;
}
.pop .btn {
  color: #fff;
  text-align: center;
  background: #94070a;
  height: 0.5rem;
  line-height: 0.5rem;
  margin: 0.45rem auto 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.pop .btn:hover {
  background: #bda066;
}
.yzxx {
  padding: 0.76rem 0 1.58rem;
  position: relative;
  background: url(../img/bg22.png) no-repeat center bottom;
  background-size: 100% 4.02rem;
}
.yzxx .w14 {
  display: flex;
}
.yzxx .lt {
  background: #fff;
  box-shadow: 0 0 27px #dedede;
  width: 7.92rem;
  margin-top: 0.85rem;
  padding: 0.3rem 0 0.3rem 0.24rem;
  height: 4.42rem;
}
.yzxx .lt .hd {
  border-bottom: 1px dashed #dedede;
  padding-bottom: 0.2rem;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 0.2rem;
  position: relative;
  margin-bottom: 0.24rem;
}
.yzxx .lt .hd::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0.7rem;
  height: 0.03rem;
  background: #880025;
}
.yzxx .lt .hd img {
  width: 0.25rem;
  height: 0.25rem;
  margin-right: 0.1rem;
}
.yzxx .lt .bd {
  font-size: 0.18rem;
  color: #333;
  line-height: 1.7;
  padding-right: 0.44rem;
  text-indent: 2em;
  height: 3rem;
}
.yzxx .rt {
  background: #94070a;
  width: calc(100% - 7.92rem);
  box-shadow: 0 0 27px #dedede;
  color: #fff;
  padding: 0.24rem;
}
.yzxx .rt .tit {
  font-size: 0.3rem;
  text-align: center;
  padding-bottom: 0.2rem;
}
.yzxx .rt input,
.yzxx .rt textarea {
  width: 100%;
  height: 0.51rem;
  line-height: 0.51rem;
  padding: 0 0.18rem;
  border: 0.02rem solid #a84649;
  margin-bottom: 0.18rem;
  font-size: 0.18rem;
  color: #fff;
  font-family: '微软雅黑';
}
.yzxx .rt input::placeholder,
.yzxx .rt textarea::placeholder {
  color: #fff;
}
.yzxx .rt .area {
  height: 2.84rem;
  padding: 0.16rem 0.18rem;
}
.yzxx .rt .w48 {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.yzxx .rt .w48 input {
  width: 48%;
  flex-shrink: 0;
}
.yzxx .rt .w48 .yzmbox{
  width: 48%;
  position: relative;
}
.yzxx .rt .w48 .yzmbox input{
  width: 100%;
}
.yzxx .rt .w48 .yzm {
  position: absolute;
  right: 0;
  width: 1rem;
  height: 0.51rem;
  cursor: pointer;
}
.yzxx .rt .btm {
  display: flex;
  justify-content: space-between;
}
.yzxx .rt .btm .btn {
  background: #bda066;
  color: #fff;
  text-align: center;
  font-size: 0.18rem;
  height: 0.5rem;
  line-height: 0.5rem;
  width: 48%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.yzxx .rt .btm .btn.default {
  background: #fff;
  color: #333;
}
.yzxx .rt .btm .btn:hover {
  opacity: 0.8;
}
.dtdh .mapbox {
  width: 100%;
  height: 7.24rem;
  position: relative;
}
.dtdh .mapbox .map2 {
  width: 100%;
  height: 100%;
}
.dtdh .mapbox .map2 iframe {
  width: 100%;
  height: 100%;
}
.dtdh .mapbox .w14 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
}
.dtdh .mapbox .w14 .box {
  height: 100%;
  float: right;
  width: 3.01rem;
  background: rgba(148, 7, 10, 0.9);
  padding: 0.8rem 0.2rem;
}
.dtdh .mapbox .w14 .box h3 {
  text-align: center;
  color: #fff;
  padding-bottom: 0.52rem;
}
.dtdh .mapbox .w14 .box .cel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.28rem;
  margin-bottom: 0.26rem;
}
.dtdh .mapbox .w14 .box .cel .t {
  color: #fff;
  font-weight: bold;
  font-size: 0.18rem;
  padding-bottom: 0.12rem;
}
.dtdh .mapbox .w14 .box .cel .d {
  display: flex;
  color: #dd8484;
}
.dtdh .mapbox .w14 .box .cel .d img {
  width: 0.18rem;
  height: 0.19rem;
  margin-right: 0.08rem;
}
.dtdh .mapbox .w14 .box .ewm {
  display: flex;
  padding: 0 0.15rem;
  justify-content: space-between;
  margin-top: 0.36rem;
}
.dtdh .mapbox .w14 .box .ewm li {
  width: 1.04rem;
  text-align: center;
  font-size: 0.14rem;
  color: #fff;
}
.dtdh .mapbox .w14 .box .ewm li img {
  width: 100%;
}
.dtdh .mapbox .w14 .box .ewm li p {
  padding-top: 0.04rem;
}
.dtdh .box2 {
  display: flex;
  margin: 0.7rem 0 1.5rem;
  height: 2.8rem;
}
.dtdh .box2 .lt {
  width: 3.45rem;
  position: relative;
  z-index: 2;
}
.dtdh .box2 .lt .item {
  cursor: pointer;
  width: 100%;
  height: 1.4rem;
  background: #bda066;
  position: relative;
  color: #fff;
  text-align: center;
  line-height: 1.4rem;
  font-weight: bold;
  font-size: 0.18rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.dtdh .box2 .lt .item::after {
  content: '';
  position: absolute;
  right: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 0.1rem solid transparent;
  border-left: 0.14rem solid #94070a;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.dtdh .box2 .lt .item.active {
  background: #94070a;
}
.dtdh .box2 .lt .item.active::after {
  opacity: 1;
}
.dtdh .box2 .rt {
  width: calc(100% - 3.45rem);
  height: 100%;
  position: relative;
}
.dtdh .box2 .rt ul {
  background: #fff;
  width: 100%;
  height: 100%!important;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0.33rem 0 0.46rem;
  box-shadow: 0 0 14px #e4e4e4;
  display: none;
}
.dtdh .box2 .rt ul li {
  padding: 0.18rem 0;
  font-size: 0.18rem;
  color: #333;
  line-height: 1.5;
  display: flex;
  border-bottom: 1px dashed #d5d5d5;
}
.dtdh .box2 .rt ul li img {
  width: 0.19rem;
  height: 0.13rem;
  margin-top: 0.05rem;
  margin-right: 0.1rem;
}
.dtdh .box2 .rt ul li:last-child {
  border: 0;
}
.dtdh .tj_box {
  padding-top: 0;
  background: transparent;
}
.dtdh .tj_box .lks .item {
  border: 1px solid #dddddd;
}
.mzpb {
  margin: 1.24rem 0 2rem;
}
.mzpb .w14 {
  display: flex;
  justify-content: space-between;
}
.mzpb .aside {
  width: 2.1rem;
  padding-left: 0.14rem;
}
.mzpb .aside > li {
  border-left: 1px solid #e1e1e1;
  color: #333;
  font-size: 0.18rem;
}
.mzpb .aside > li:last-child {
  padding-bottom: 0;
}
.mzpb .aside > li h3 {
  font-size: 0.22rem;
  padding: 0 0.17rem;
  position: relative;
  padding-bottom: 0.2rem;
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.mzpb .aside > li h3 a {
  font-size: 0.22rem;
  display: block;
}
.mzpb .aside > li h3::before,
.mzpb .aside > li h3::after {
  content: '';
  position: absolute;
  top: 0.02rem;
  width: 0.13rem;
  height: 0.27rem;
  background-size: 0.13rem 0.27rem;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.mzpb .aside > li h3::before {
  background-image: url(../img/i7.png);
  left: -0.14rem;
}
.mzpb .aside > li h3::after {
  background-image: url(../img/i8h.png);
  right: -0.14rem;
  opacity: 0;
}
.mzpb .aside > li h3.active,
.mzpb .aside > li h3:hover {
  color: #94070a;
}
.mzpb .aside > li h3.active::before,
.mzpb .aside > li h3:hover::before {
  background-image: url(../img/i7h.png);
}
.mzpb .aside > li h3.active::after,
.mzpb .aside > li h3:hover::after {
  opacity: 1;
}
.mzpb .aside > li ol {
  display: none;
}
.mzpb .aside > li ol li {
  padding-bottom: 0.2rem;
  padding-left: 0.17rem;
  cursor: pointer;
}
.mzpb .aside > li ol li a {
  display: block;
}
.mzpb .aside > li ol li.active,
.mzpb .aside > li ol li:hover {
  color: #94070a;
}
.mzpb .aside > li ol li.active a,
.mzpb .aside > li ol li:hover a {
  color: #94070a;
}
.mzpb .section {
  width: calc(100% - 2.45rem);
}
.mzpb table {
  width: 100%;
  border-left: 1px dashed #d7d7d7;
  position: sticky;
  top: 2.15rem;
  z-index: 100;
}
.mzpb table th {
  background: #94070a;
  color: #fff;
  font-size: 0.2rem;
  padding: 0.22rem 0.1rem;
  border-right: 1px dashed #d4d4d4;
  font-weight: normal;
  white-space: nowrap;
}
.mzpb table td {
  text-align: center;
  font-size: 0.18rem;
  color: #333;
  padding: 0.2rem 0.1rem;
  border-right: 1px dashed #d4d4d4;
  border-bottom: 1px dashed #d4d4d4;
}
.mzpb .tnt {
  background: #fdf1f1;
  font-weight: bold;
  font-size: 0.2rem;
}
.mzpb .yeclor {
  background: #fffbf3;
}
.yygh {
  margin: 0.7rem 0;
}
.yygh h3 {
  text-align: center;
  color: #333;
  font-size: 0.3rem;
  padding-bottom: 0.4rem;
}
.yygh .content {
  color: #333;
  line-height: 1.5;
  font-size: 0.18rem;
  text-indent: 2em;
}
.yygh .content p{
  margin: 0.16rem 0;
}
.yygh .content img {
  display: block;
}
.yygh .content span {
  font-weight: bold;
}
.yygh .o_list {
  display: flex;
}
.yygh .o_list li {
  position: relative;
  background: url(../img/add_ico_6.jpg) no-repeat center / cover;
  width: 1.82rem;
  height: 1.882rem;
  padding-top: 0.4rem;
  color: #fff;
  margin-right: 0.16rem;
  text-align: center;
  text-indent: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.yygh .o_list li:nth-child(even) {
  background-image: url(../img/add_ico_7.jpg);
}
.yygh .o_list li .icon {
  height: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}
.yygh .o_list li .icon img {
  width: 0.62rem;
  display: block;
  margin: 0 auto;
}
.yygh .o_list li .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.yygh .o_list li .mask .qrimg {
  padding: 0 0.1rem;
  width: 98px;
}
.yygh .o_list li .mask .tele {
  font-size: 18px;
  padding: 0 0.1rem;
  width: 100%;
}
.yygh .o_list li:hover .mask {
  display: flex;
}
.zyxz {
  margin: 0.7rem 0;
}
.zyxz .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.36rem;
}
.zyxz .tab .item {
  height: 0.54rem;
  line-height: 0.54rem;
  width: 1.7rem;
  text-align: center;
  border: 1px solid #bda066;
  border-radius: 0.05rem;
  color: #777;
  font-size: 0.2rem;
  margin: 0 0.17rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zyxz .tab .item.active {
  background: #94070a;
  color: #fff;
  border: 0;
}
.zyxz .collapse {
  display: none;
  min-height: 50vh;
}
.zyxz .collapse .hd {
  background: #bda066;
  height: 0.73rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.34rem;
  cursor: pointer;
}
.zyxz .collapse .hd h3 {
  color: #fff;
  font-size: 0.24rem;
}
.zyxz .collapse .hd .arw {
  width: 0.2rem;
  transform: rotate(180deg);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.zyxz .collapse .hd.active {
  background: #94070a;
}
.zyxz .collapse .hd.active .arw {
  transform: rotate(0deg);
}
.zyxz .collapse .bd {
  display: none;
  padding: 0.28rem 0.34rem;
  color: #333;
  font-size: 0.18rem;
  line-height: 1.6;
  text-indent: 2em;
  box-shadow: 0 0 27px #d2d2d2;
}
.zyxz .collapse .bd h4 {
  padding-bottom: 0.14rem;
}
.zyxz .collapse .bd p {
  padding-bottom: 0.1rem;
}
.zyxz .collapse .bd strong {
  color: #a40000;
  font-weight: normal;
}
.zyxz .collapse .bd.active {
  display: block;
}
.ybzq {
  margin: 0.7rem 0;
}
.ybzq .hd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.72rem;
}
.ybzq .hd .tab {
  display: inline-flex;
}
.ybzq .hd .tab .item {
  margin-right: 0.28rem;
  color: #fff;
  background: #bda066;
  border-radius: 0.05rem;
  text-align: center;
  width: 1.64rem;
  height: 0.53rem;
  line-height: 0.53rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.ybzq .hd .tab .item.active,
.ybzq .hd .tab .item:hover {
  background: #94070a;
}
.ybzq .search1 {
  margin: 0;
}
.ybzq .bd {
  overflow: hidden;
  min-height: 50vh;
}
.bgcx {
  margin: 0.7rem 0;
}
.bgcx .t1 {
  padding-bottom: 0.34rem;
  font-size: 0.3rem;
  color: #333;
}
.bgcx .t1 span {
  color: #777;
  font-size: 0.16rem;
}
.bgcx .cell {
  display: flex;
  justify-content: space-between;
}
.bgcx .row {
  width: 4.26rem;
  height: 0.6rem;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.05rem;
}
.bgcx .row span {
  font-size: 0.18rem;
  color: #333;
  min-width: 1rem;
}
.bgcx .row input {
  color: #777777;
  font-size: 0.18rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.05rem 0 0 0.05rem;
  padding: 0 0.15rem;
  background: #f5f8fb;
  width: calc(100% - 1rem);
}
.bgcx .row input::placeholder {
  color: #777777;
}
.bgcx .row input.yzm {
  width: calc(100% - 2rem);
}
.bgcx .row .btn {
  color: #fff;
  background: #94070a;
  border-radius: 0.05rem;
  text-align: center;
  height: 0.6rem;
  line-height: 0.6rem;
  cursor: pointer;
  font-size: 0.15rem;
  width: 1rem;
  flex-shrink: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.bgcx .row .btn:hover {
  background-color: #bda066;
}
.bgcx .btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.63rem auto;
}
.bgcx .btn_box .btn {
  color: #fff;
  text-align: center;
  border-radius: 0.05rem;
  margin: 0 0.1rem;
  background: #bda066;
  font-size: 0.2rem;
  height: 0.6rem;
  line-height: 0.6rem;
  width: 2.08rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.bgcx .btn_box .btn.active {
  background: #94070a;
}
.bgcx .btn_box .btn:hover {
  opacity: 0.8;
}
.bgcx .g_box {
  margin-bottom: 0.74rem;
  min-height: 2rem;
  padding: 0.4rem 0.28rem;
  color: #333;
  line-height: 2;
  text-indent: 2em;
  background: #f9f9f9;
}
.bgcx .g_box span {
  color: #94070a;
}
.bgcx .tit {
  color: #333;
  font-size: 0.3rem;
  margin-bottom: 0.34rem;
}
.bgcx .bg_list {
  min-height: 2rem;
}
.bgcx .bg_list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 0.9rem;
  border: 0.02rem solid #e5e5e5;
  margin-bottom: 0.2rem;
  padding: 0 0.16rem 0 0.3rem;
}
.bgcx .bg_list .item p {
  color: #333;
  font-size: 0.2rem;
  font-weight: bold;
  position: relative;
  padding-left: 0.18rem;
  max-width: 80%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.bgcx .bg_list .item p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #94070a;
  width: 0.07rem;
  height: 0.07rem;
}
.bgcx .bg_list .item .rt {
  display: inline-flex;
}
.bgcx .bg_list .item .rt .btn {
  width: 1rem;
  height: 0.42rem;
  line-height: 0.38rem;
  text-align: center;
  color: #94070a;
  border: 0.02rem solid #94070a;
  margin-left: 0.07rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.bgcx .bg_list .item .rt .btn.active {
  color: #fff;
  background: #94070a;
}
.bgcx .bg_list .item .rt .btn.active:hover {
  opacity: 0.8;
}
.bgcx .bg_list .item .rt .btn:hover {
  background: #94070a;
  color: #fff;
}
.lcfb {
  margin: 0.7rem 0;
}
.lcfb h3 {
  text-align: center;
  color: #333;
  font-size: 0.3rem;
  padding-bottom: 0.52rem;
}
.lcfb .wrap {
  display: flex;
  justify-content: space-between;
  min-height: 50vh;
}
.lcfb .wrap .aside {
  width: 1.24rem;
  box-shadow: 0 0 13px #e8e8e8;
}
.lcfb .wrap .aside li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
  font-size: 0.5rem;
  margin-bottom: 0.25rem;
}
.lcfb .wrap .aside li:last-child {
  margin-bottom: 0;
}
.lcfb .wrap .section {
  width: calc(100% - 1.49rem);
}
.lcfb .wrap .section li {
  min-height: 1.02rem;
  border-left: 0.04rem solid #94070a;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fffbf2;
  padding: 0.06rem 0.07rem;
  margin-bottom: 0.25rem;
}
.lcfb .wrap .section li:last-child {
  margin-bottom: 0;
}
.lcfb .wrap .section li a {
  padding-bottom: 0.16rem;
  min-width: 14%;
  font-size: 0.18rem;
  color: #333;
  padding: 0.09rem 0.23rem;
}
.lcfb .wrap .section li a:nth-child(5n) {
  margin-right: 0;
}
.lcfb .wrap .section li a:hover {
  color: #94070a;
}
.lcfb .wrap .section li:nth-child(even) {
  background: #fff6f6;
}
.kxyjj {
  margin-top: 0.7rem;
}
.kxyjj .box1 {
  background: url(../img/bg24.png) no-repeat center bottom / 100%;
  padding-top: 0.86rem;
  min-height: 8.7rem;
}
.kxyjj .box1 .hd {
  padding-bottom: 0.48rem;
  text-align: center;
}
.kxyjj .box1 .hd .tit {
  font-size: 0.3rem;
  color: #333;
  padding-bottom: 0.16rem;
}
.kxyjj .box1 .hd .t {
  font-size: 0.18rem;
  color: #333;
  line-height: 1.8;
}
.kxyjj .box1 .bd {
  border-top: 1px dashed #d8c18a;
  display: flex;
  justify-content: space-around;
}
.kxyjj .box1 .bd .item {
  max-width: 31%;
  font-size: 0.18rem;
  color: #333;
  line-height: 1.8;
  padding: 0.34rem 0.4rem 0;
  text-indent: 2em;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.kxyjj .box1 .bd .item::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.19rem;
  height: 0.19rem;
  top: -0.1rem;
  background: url(../img/cir.png) no-repeat center / 100% 100%;
}
.kxyjj .box2 {
  background: url(../img/bg25.png) no-repeat center top / cover;
  width: 100%;
  /* height: 9rem; */
  position: relative;
  z-index: 2;
  margin-top: -1.6rem;
  margin-bottom: 1rem;
}
.kxyjj .box2 .w14 {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.kxyjj .box2 .item {
  /* position: absolute; */
  padding: 0.44rem 0.22rem 0.42rem;
  color: #fff;
  background: #27addc;
  /* width: 3.04rem; */
  width: 20%;
  margin-right: 1%;
  margin-bottom: 0.3rem;
  min-height: 3.35rem;
}
.kxyjj .box2 .item h3 {
  font-size: 0.22rem;
  padding-bottom: 0.18rem;
  margin-bottom: 0.22rem;
  border-bottom: 1px dashed #fff;
  position: relative;
}
.kxyjj .box2 .item h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #fff;
  width: 0.51rem;
  height: 0.03rem;
  display: none;
}
.kxyjj .box2 .item p {
  font-size: 0.18rem;
  line-height: 1.5;
}
.kxyjj .box2 .item:nth-child(1) {
  left: 0;
  top: 1.3rem;
}
.kxyjj .box2 .item:nth-child(2) {
  left: 3.44rem;
  top: 0.44rem;
  background: #94070a;
}
.kxyjj .box2 .item:nth-child(3) {
  right: 4.2rem;
  top: 2.11rem;
  background: #0d67a8;
}
.kxyjj .box2 .item:nth-child(4) {
  right: 0.89rem;
  top: 1.37rem;
  background: #bfa776;
}
.kxyjj .box2 .item:nth-child(5) {
  left: 2.02rem;
  top: 5.02rem;
  /* width: 4.44rem; */
  min-height: 2.48rem;
  background: #e3bf69;
  margin-right: 0;
}
.kxyjj .box2 .item:nth-child(6) {
  right: 2.8rem;
  top: 5.75rem;
  /* width: 4.44rem; */
  min-height: 2.48rem;
  background: #2e5293;
  display: none;
}
.lxwm {
  position: relative;
  height: 8.85rem;
}
.lxwm .map3 {
  width: 100%;
  height: 100%;
}
.lxwm .box {
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
}
.lxwm .box1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/bg26.png) no-repeat center / 100% 100%;
  height: 3.47rem;
  padding-top: 1.2rem;
}
.lxwm .box1 .w14 {
  display: flex;
  justify-content: space-between;
}
.lxwm .box1 .item {
  background: url(../img/i12.png) no-repeat center / 100% 100%;
  width: 4.42rem;
  height: 1.23rem;
  padding: 0 0.22rem;
  display: flex;
  align-items: center;
}
.lxwm .box1 .item img {
  margin-right: 0.2rem;
}
.lxwm .box1 .item h3 {
  color: #333;
  font-size: 0.18rem;
}
.lxwm .box1 .item p {
  color: #999;
  padding-top: 0.03rem;
}
.lxwm .p_14 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.lxwm .p_14 .dq {
  color: #999;
}
.lxwm .p_14 .dq a {
  color: #999;
}
.anchorTL,
.anchorBL,
.anchorBR {
  display: none;
}
.das_table {
  width: 100%;
  border-left: 1px dashed #d7d7d7;
}
.das_table th {
  background: #94070a;
  color: #fff;
  font-size: 0.2rem;
  padding: 0.22rem 0.1rem;
  border-right: 1px dashed #d4d4d4;
  font-weight: normal;
  white-space: nowrap;
}
.das_table td {
  text-align: center;
  font-size: 0.18rem;
  color: #333;
  padding: 0.2rem 0.1rem;
  border-right: 1px dashed #d4d4d4;
  border-bottom: 1px dashed #d4d4d4;
}
.sznk {
  position: relative;
  z-index: 2;
  padding-bottom: 1.4rem;
}
.sznk::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  height: 4.02rem;
  background: url(../img/bg34.png) no-repeat center / cover;
}
.sznk .dq {
  margin-bottom: 0;
}
.sznk .hd_m {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 0.58rem;
}
.sznk .hd_m .more {
  font-size: 0.2rem;
  color: #333;
}
.sznk .hd_m .more:hover {
  color: #d8c18a;
}
.sznk .box1 {
  background: url(../img/bg27.jpg) no-repeat center / cover;
  width: 100%;
  height: 6.71rem;
  position: relative;
}
.sznk .box1 .tit {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 0.4rem;
  z-index: 3;
  position: absolute;
  width: 9.24rem;
  padding: 0 .3rem;
}
.sznk .box1 .w14 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.sznk .box1 .left {
  position: absolute;
  left: 0;
  top: -0.52rem;
  width: 9.24rem;
  height: calc(100% + 0.52rem);
  background: #94070a;
  color: #fff;
  padding: 1.73rem 1.48rem 0.78rem 0.5rem;
  z-index: 2;
}
.sznk .box1 .left .t {
  background: #fff;
  height: 0.86rem;
  padding: 0 0.28rem;
  font-weight: bold;
  color: #333;
  font-size: 0.24rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.38rem;
}
.sznk .box1 .left .t img {
  width: 0.56rem;
  margin-left: 0.16rem;
}
.sznk .box1 .left .cont {
  font-size: 0.18rem;
  line-height: 1.6;
  height: 3rem;
  padding-right: 0.5rem;
  text-indent: 2em;
}
.sznk .box1 .left .more {
  color: #c38c9b;
  border-bottom: 1px solid #c38c9b;
  padding-bottom: 0.06rem;
  margin-top: 0.28rem;
  display: inline-block;
}
.sznk .box1 .left .more:hover {
  color: #d8c18a;
  border-color: #d8c18a;
}
.sznk .box1 .left::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  bottom: 0;
  background: url(../img/ico_25.png) no-repeat center / 100% 100%;
  width: 3.8rem;
  height: 1.88rem;
  z-index: -1;
}
.sznk .box1 .y4_Swiper {
  position: absolute;
  right: 0;
  top: 0.9rem;
  width: 6.22rem;
  height: 4.96rem;
  overflow: hidden;
  z-index: 3;
}
.sznk .box1 .y4_Swiper .item {
  width: 100%;
  height: 100%;
}
.sznk .box1 .y4_Swiper .item img {
  width: 100%;
  height: 4rem;
}
.sznk .box1 .y4_Swiper .item .txt {
  background: url(../img/ico_68.jpg) no-repeat center / 100% 100%;
  width: 100%;
  height: 0.94rem;
  line-height: 0.94rem;
  padding: 0 1.28rem 0 0.38rem;
  font-size: 0.2rem;
  color: #fff;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sznk .box1 .y4_Swiper .swiper_btm {
  position: absolute;
  right: 0.22rem;
  bottom: 0.29rem;
  display: flex;
}
.sznk .box1 .y4_Swiper .swiper_btm > div {
  width: 0.36rem;
  height: 0.36rem;
  opacity: 1;
  border-radius: 0;
  position: initial;
  margin: 0;
  transform: inherit;
  background: #e3e3e3;
}
.sznk .box1 .y4_Swiper .swiper_btm > div::after {
  color: #fff;
  font-size: 0.18rem;
}
.sznk .box1 .y4_Swiper .swiper_btm > div:hover {
  background: #94070a;
}
.sznk .box1_txt .tit {
  top: 0.6rem;
  width: 100%;
}
.sznk .box1_txt .y4_Swiper {
  display: none;
}
.sznk .box1_txt .left {
  position: initial;
  width: 100%;
  padding: 1.73rem 0.5rem 0.78rem 0.5rem;
}
.sznk .box1_txt .left .cont {
  padding-right: 0;
}
.sznk .box2 {
  background: url(../img/bg30.png) no-repeat center / cover;
  width: 100%;
  height: 7.84rem;
  position: relative;
  padding-top: 0.72rem;
  z-index: 2;
  overflow: hidden;
}
.sznk .box2::before,
.sznk .box2::after {
  content: '';
  z-index: -1;
  position: absolute;
}
.sznk .box2::before {
  background: url(../img/bg29.png) no-repeat center / 100% 100%;
  width: 4.18rem;
  height: 5.38rem;
  left: 0;
  top: -0.5rem;
}
.sznk .box2::after {
  background: url(../img/bg28.png) no-repeat center / 100% 100%;
  width: 3.95rem;
  height: 2.89rem;
  right: 0;
  bottom: 0;
}
.sznk .box2 .tit {
  text-align: center;
  color: #fff;
  padding-bottom: 1.06rem;
  font-size: 0.4rem;
}
.sznk .box2 .w14 {
  display: flex;
  justify-content: space-between;
  height: 3.2rem;
  padding-right: 0.76rem;
}
.sznk .box2 .left {
  width: 4.77rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #fff;
  display: flex;
}
.sznk .box2 .left img {
  width: 2.27rem;
  height: 100%;
}
.sznk .box2 .left .cont {
  width: calc(100% - 2.27rem);
  padding: 0.36rem 0.14rem 0.3rem 0.2rem;
  color: #333;
}
.sznk .box2 .left .cont h3 {
  font-size: 0.24rem;
  padding-bottom: 0.12rem;
}
.sznk .box2 .left .cont .t1 {
  font-size: 0.2rem;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  padding-bottom: 0.18rem;
  margin-bottom: 0.12rem;
}
.sznk .box2 .left .cont .t1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #94070a;
  width: 0.6rem;
  height: 0.03rem;
}
.sznk .box2 .left .cont .t2 {
  font-size: 0.18rem;
  line-height: 1.4;
  height: 1.6rem!important;
}
.sznk .box2 .right {
  width: calc(100% - 5.06rem);
  padding-left: 0.78rem;
  position: relative;
}
.sznk .box2 .right .y5_Swiper {
  height: 100%;
  width: 7.38rem;
  margin: 0;
}
.sznk .box2 .right .y5_Swiper .item {
  width: 2.27rem;
  height: 3.19rem;
  overflow: hidden;
  position: relative;
  display: block;
}
.sznk .box2 .right .y5_Swiper .item img {
  width: 100%;
  height: 100%;
}
.sznk .box2 .right .y5_Swiper .item .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/bg31.png) no-repeat center bottom / 100% 100%;
  min-height: 2.58rem;
  color: #fff;
  text-align: center;
  padding-top: 1.8rem;
}
.sznk .box2 .right .y5_Swiper .item .txt .t1 {
  font-size: 0.24rem;
}
.sznk .box2 .right .y5_Swiper .item .txt .t2 {
  font-size: 0.18rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sznk .box2 .right .y5_Swiper .item:hover .txt {
  color: #94070a;
}
.sznk .box2 .right .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.51rem;
  height: 0.51rem;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 10;
}
.sznk .box2 .right .btn img {
  width: 0.12rem;
  height: 0.24rem;
}
.sznk .box2 .right .btn.prev {
  left: 0;
}
.sznk .box2 .right .btn.next {
  right: -0.78rem;
}
.sznk .box2 .right .btn:hover {
  background: #bda066;
  border-color: #bda066;
}
.sznk .box3 h3 {
  text-align: center;
  font-size: 0.4rem;
  color: #333;
  padding-bottom: 0.56rem;
}
.sznk .ft_t1 {
  text-align: left;
  font-size: 0.18rem;
  color: #333;
  padding-left: 0.4rem;
}
.sznk .ft_t1 img {
  width: 0.26rem;
}
.sznk .ft_t2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.18rem;
  font-size: 0.18rem;
  color: #333;
}
.sznk .ft_t2 img {
  margin-left: 0.16rem;
  width: 1rem;
}
.sznk .box4 {
  margin-top: 0.94rem;
}
.sznk .box4 h3 {
  text-align: center;
  position: relative;
  font-size: 0.4rem;
  margin-bottom: 0.55rem;
}
.sznk .box4 h3 .more {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #999;
  font-size: 0.16rem;
  font-weight: normal;
}
.sznk .box4 h3 .more img {
  margin-left: 0.05rem;
  width: 0.2rem;
}
.sznk .box4 h3 .more:hover {
  color: #bda066;
}
.sznk .box4 .list {
  min-height: 3.2rem;
  overflow: hidden;
}
.sznk .box4 .list .item {
  float: left;
  width: 48%;
  height: 0.83rem;
  border-bottom: 1px solid #eaeaea;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.sznk .box4 .list .item:nth-child(even) {
  float: right;
}
.sznk .box4 .list .item span {
  color: #999;
}
.sznk .box4 .list .item p {
  font-size: 0.18rem;
  color: #333;
  font-weight: bold;
  padding-left: 0.15rem;
  position: relative;
  max-width: 80%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sznk .box4 .list .item p::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 50%;
  width: 0.05rem;
  height: 0.05rem;
  background: #94070a;
  transform: translateY(-50%) rotate(45deg);
}
.sznk .box4 .list .item:hover p {
  color: #94070a;
}
.tracker-mod {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tracker-box {
  width: 96%;
  text-align: center;
  overflow: hidden;
}
.tracker-track {
  width: 100%;
  display: table;
  white-space: nowrap;
}
.tracker-item {
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zjdh .dq {
  color: #999;
}
.zjdh .dq a {
  color: #999;
}
.zjdh .t1 {
  padding: 0.38rem 0 0.44rem;
  text-align: center;
  font-size: 0.4rem;
}
.zjdh .t1 img {
  width: 0.35rem;
}
.zjdh .link {
  margin-bottom: 0.44rem;
}
.zjdh .link .tracker-item {
  width: 1.7rem;
  height: 0.54rem;
  line-height: 0.54rem;
  text-align: center;
  border-radius: 0.05rem;
  font-size: 0.2rem;
  border: 1px solid #bda066;
  margin: 0 0.11rem;
}
.zjdh .link .tracker-item a {
  color: #777;
  display: block;
}
.zjdh .link .tracker-item.cur {
  background: #bda066;
}
.zjdh .link .tracker-item.cur a {
  color: #fff;
}
.zjdh .xicon {
  width: 0.34rem;
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 0;
  height: 0.54rem;
  cursor: pointer;
  z-index: 10;
}
.zjdh .xicon img {
  width: 0.12rem;
}
.zjdh .tracker-prev {
  left: 0;
}
.zjdh .tracker-next {
  right: 0;
  justify-content: flex-end;
}
.zjdh .choose {
  display: flex;
  position: relative;
  margin-bottom: 0.44rem;
}
.zjdh .choose .item {
  background: #f5f8fb;
  width: 2.9rem;
  margin-right: 0.23rem;
  height: 0.6rem;
}
.zjdh .choose .inp_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.zjdh .choose .tit1 {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  background: url(../img/arw5.png) no-repeat right 0.2rem center;
  background-size: 0.15rem 0.09rem;
}
.zjdh .choose input,
.zjdh .choose .tit1 {
  padding: 0 0.18rem;
  color: #777;
  width: 100%;
  font-size: 0.2rem;
  height: 0.6rem;
  line-height: 0.6rem;
}
.zjdh .choose input::placeholder,
.zjdh .choose .tit1::placeholder {
  color: #777;
}
.zjdh .choose .jeinput {
  background: url(../img/date.png) no-repeat right 0.2rem center;
  background-size: 0.21rem 0.21rem;
}
.zjdh .choose .sec_btn {
  color: #fff;
  border-radius: 0.05rem;
  text-align: center;
  width: 1.46rem;
  height: 0.6rem;
  line-height: 0.6rem;
  background: #94070a;
  cursor: pointer;
}
.zjdh .choose .sec_btn:hover {
  background: #bda066;
}
.zjdh .choose .menu_c {
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 100%;
  z-index: 10;
  display: none;
}
.zjdh .choose .menu_c .hd {
  background: #94070a;
  height: 0.56rem;
}
.zjdh .choose .menu_c .hd .tra_item {
  margin: 0 0.43rem;
  height: 0.56rem;
  line-height: 0.56rem;
  color: #cb9e9e;
  font-size: 0.2rem;
}
.zjdh .choose .menu_c .hd .tra_item.cur {
  font-weight: bold;
  color: #fff;
}
.zjdh .choose .menu_c .tracker-box {
  width: 100%;
  text-align: left;
}
.zjdh .choose .menu_c .tracker-mod {
  margin: 0;
}
.zjdh .choose .menu_c .bd {
  background: #fff9ec;
  padding: 0.11rem 0 0.22rem;
}
.zjdh .choose .menu_c .bd .t_item {
  display: none;
}
.zjdh .choose .menu_c .bd .t_item.act {
  display: block;
}
.zjdh .choose .menu_c .bd .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.zjdh .choose .menu_c .bd li {
  width: calc(100%/6);
  padding: 0.28rem 0.2rem 0.28rem 0.44rem;
  border-bottom: 1px dashed #f8e1b4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zjdh .choose .menu_c .bd li div {
  color: #373939;
  font-size: 0.18rem;
  display: inline-flex;
  position: relative;
  word-break: break-word;
  align-items: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 100%;
}
.zjdh .choose .menu_c .bd li div::before {
  content: '';
  position: absolute;
  left: -0.22rem;
  border-radius: 50%;
  width: 0.07rem;
  height: 0.07rem;
  background: #b29b6b;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zjdh .choose .menu_c .bd li div::after {
  content: "";
  position: absolute;
  right: -0.2rem;
  top: 50%;
  width: 0.07rem;
  height: 0.07rem;
  border-top: 1px solid #94070a;
  border-right: 1px solid #94070a;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zjdh .choose .menu_c .bd li:hover div,
.zjdh .choose .menu_c .bd li.act div {
  color: #94070a;
}
.zjdh .choose .menu_c .bd li:hover div::before,
.zjdh .choose .menu_c .bd li.act div::before {
  background: #94070a;
}
.zjdh .choose .menu_c .bd li:hover div::after,
.zjdh .choose .menu_c .bd li.act div::after {
  opacity: 1;
}
.zjdh .let_box {
  display: flex;
  background: #5a82cf;
  height: 0.55rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
.zjdh .let_box .nm {
  text-align: center;
  width: 1.79rem;
  background: #254682;
  line-height: 0.55rem;
  font-size: 0.18rem;
}
.zjdh .let_box .tracker-mod {
  display: inline-flex;
  padding: 0 0.16rem;
  width: calc(100% - 1.79rem);
}
.zjdh .let_box .tracker-mod .tracker-box {
  width: 100%;
}
.zjdh .let_box .tracker-mod .li {
  width: 0.49rem;
  text-align: center;
  line-height: 0.55rem;
  font-size: 0.2rem;
  font-family: 'SourceHanSerifSC';
  cursor: pointer;
  height: 0.55rem;
}
.zjdh .let_box .tracker-mod .li:hover,
.zjdh .let_box .tracker-mod .li.cur {
  background: #254682;
}
.zjdh .datalist {
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
}
.zjdh .datalist .item {
  width: calc((100% - 1.2rem) / 3);
  display: flex;
  margin-right: 0.6rem;
  margin-bottom: 0.45rem;
}
.zjdh .datalist .item:nth-child(3n) {
  margin-right: 0;
}
.zjdh .datalist .item .img {
  width: 2.13rem;
  height: 2.95rem;
}
.zjdh .datalist .item .img img {
  width: 100%;
  height: 100%;
}
.zjdh .datalist .item .info {
  width: calc(100% - 1.79rem);
  padding: 0.32rem 0 0 0.26rem;
}
.zjdh .datalist .item h3 {
  font-size: 0.22rem;
  padding-bottom: 0.05rem;
}
.zjdh .datalist .item .t {
  padding-bottom: 0.05rem;
}
.zjdh .datalist .item .t2 {
  color: #999;
  font-size: 0.14rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.zjdh .datalist .item .more {
  color: #d8c18a;
  font-size: 0.14rem;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 0.25rem;
}
.zjdh .datalist .item .more::before {
  background: url(../img/dot1.png) no-repeat center center / cover;
  display: block;
  content: '';
  width: 0.22rem;
  height: 0.22rem;
  margin-right: 0.1rem;
}
.zjdh .datalist .item .more::after {
  content: '';
  width: 0.07rem;
  height: 0.07rem;
  border-top: 1px solid #d8c18a;
  border-right: 1px solid #d8c18a;
  transform: rotate(45deg);
  margin-left: 0.1rem;
}
.zjdh .datalist .item:hover .img {
  -webkit-box-shadow: 0 10px 43px rgba(45, 72, 117, 0.19);
  box-shadow: 0 10px 43px rgba(45, 72, 117, 0.19);
  -webkit-transition: all 0.32s;
  transition: all 0.32s;
}
.zjdh .datalist .item:hover h3 {
  color: #d8c18a;
}
.zjdhxq {
  position: relative;
  z-index: 2;
}
.zjdhxq::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: url(../img//bg32.png) no-repeat center / cover;
  height: 3.17rem;
  z-index: -1;
}
.zjdhxq .dq {
  color: #fff;
}
.zjdhxq .dq a {
  color: #fff;
}
.zjdhxq .doc {
  margin-top: 0.4rem;
}
.zjdhxq .doc .hd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.64rem;
}
.zjdhxq .doc .item {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zjdhxq .doc .img {
  padding-bottom: 0.1rem;
  padding-right: 0.1rem;
  width: 2.49rem;
  height: 3.46rem;
  position: relative;
  margin-right: 0.25rem;
  z-index: 2;
  flex-shrink: 0;
}
.zjdhxq .doc .img img {
  width: 100%;
  height: 100%;
}
.zjdhxq .doc .img::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: #d8c18a;
  width: 2.39rem;
  height: 3.36rem;
  z-index: -1;
}
.zjdhxq .doc .info {
  width: calc(100% - 5rem);
  padding-top: 0.1rem;
  flex-shrink: 0;
  height: 100%;
}
.zjdhxq .doc .info .title {
  font-size: 0.18rem;
  color: #fff;
  padding-bottom: 0.88rem;
}
.zjdhxq .doc .info .title span {
  font-size: 0.3rem;
  margin-right: 0.16rem;
}
.zjdhxq .doc .info p {
  padding-bottom: 0.1rem;
  font-size: 0.18rem;
}
.zjdhxq .doc .info p span {
  color: #999999;
}
.zjdhxq .doc .ewm{
  width: 2rem;
  height: 2rem;
  margin-left: auto;
}
.zjdhxq .doc .more {
  color: #fff;
  background: #bda066;
  font-size: 0.18rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.5rem;
  padding: 0 0.18rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.zjdhxq .doc .more:hover {
  opacity: 0.8;
}
.zjdhxq .doc .bd {
  border-bottom: 1px dashed #dedede;
  padding-bottom: 0.36rem;
  margin-bottom: 0.72rem;
  position: relative;
}
.zjdhxq .doc .bd::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 1rem;
  height: 0.03rem;
  background: #94070a;
}
.zjdhxq .doc .bd .b_con {
  line-height: 1.7;
  font-size: 0.18rem;
}
.zjdhxq .b_tit {
  font-size: 0.26rem;
  padding-bottom: 0.2rem;
}
.zjdhxq .b_tit img {
  width: 0.22rem;
  margin-right: 0.1rem;
}
.zjdhxq .box1 {
  margin-bottom: 1.52rem;
}
.zjdhxq .box1 .bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.big_img {
  position: fixed;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.big_img .cell {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow-x: auto;
}
.big_img img {
  max-width: initial;
  margin: 0 auto;
}
.sear_100 {
  width: 90%;
  margin: 0.3rem auto;
}
.sswy {
  margin-bottom: 0.8rem;
  min-height: 50vh;
}
.sswy .dq {
  color: #999;
}
.sswy .dq a {
  color: #999;
}
.sswy .h_tit {
  padding-bottom: 0.56rem;
  text-align: center;
  font-size: 0.4rem;
}
.sswy .fl {
  float: left;
}
.sswy .fr {
  float: right;
}
/* .sswy .cell {
  display: flex;
  justify-content: space-between;
} */
/* .sswy .cell .inl {
  width: 49%;
} */
.sswy .cell .block {
  box-shadow: 1px 0 16px #e4e4e4;
  margin-bottom: 0.28rem;
  width: 100%;
}
.sswy .cell .block:nth-child(2n) {
  margin-right: 0;
}
.sswy .cell .hd {
  background: url(../img/ico_71.png) no-repeat center / cover;
  width: 100%;
  height: 0.7rem;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  padding: 0 0.2rem;
  font-size: 0.24rem;
}
.sswy .cell .hd img {
  width: 0.46rem;
  margin-right: 0.12rem;
}
.sswy .cell .bd {
  padding: 0.28rem 0 0.16rem 0.24rem;
  display: flex;
  flex-wrap: wrap;
}
.sswy .cell .bd .item {
  border: 1px solid #d9d9d9;
  padding: 0.08rem 0.12rem 0.08rem 0.26rem;
  position: relative;
  font-size: 0.18rem;
  border-radius: 0.12rem 0 0.12rem 0;
  margin-bottom: 0.15rem;
  margin-right: 0.6rem;
  width: 2.93rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sswy .cell .bd .item:nth-child(4n) {
  margin-right: 0;
}
.sswy .cell .bd .item::before {
  content: '';
  position: absolute;
  left: 0.12rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background: #b5b5b5;
}
@media (max-width: 1640px) {
  .w16 {
    width: 90%;
  }
  .tabnav_item {
    margin-right: 0.14rem;
    padding-right: 0.14rem;
  }
}
@media (max-width: 1300px) {
  .w16 {
    width: 92%;
  }
}
@media (max-width: 800px) {
  body {
    font-size: 0.26rem;
  }
  .w16 {
    width: 88%;
  }
  .w14 {
    margin: 0 auto;
    width: 88%;
  }
  .fy .li:nth-child(1),.fy .li:nth-child(2){
    display: none;
  }
  .fy a,.fy input{font-size: .28rem;}
  .pt-21,
  .pt-24 {
    padding-top: 1.76rem;
  }
  .head_pc,
  .zyhead_pc,
  .footer,
  .dq {
    display: none;
  }
  .head_sj,
  .sj_foot {
    display: block;
  }
  .search_box .screen .drop_scroll {
    max-height: 3.4rem !important;
  }
  .search_box .screen .drop_scroll div {
    height: 0.64rem !important;
    line-height: 0.64rem !important;
  }
  .yygk .head {
    height: 4rem;
  }
  .yygk .head .dq {
    display: none;
  }
  .yygk .box1 {
    height: auto;
    padding-top: 0.44rem;
  }
  .yygk .box1 .cont {
    font-size: 0.28rem;
    max-height: inherit;
  }
  .yygk .box1 .more {
    padding: 0.34rem 0;
  }
  .yygk .box1 .more img {
    width: 0.35rem;
  }
  .yygk .box1 .date {
    margin: 0.3rem 0;
    font-size: 0.26rem;
    justify-content: center;
  }
  .yygk .box1 .date .line {
    display: none;
  }
  .yygk .box1 .date .t {
    padding: 0;
  }
  .yygk .col {
    padding: 0;
    flex-direction: column;
  }
  .yygk .col .colbox {
    width: 100%;
    max-height: inherit;
  }
  .yygk .col ul li {
    font-size: 0.28rem;
  }
  .yygk .col_2 {
    margin-top: 0.3rem;
  }
  .yygk .col_3 {
    margin: 0.3rem 0;
  }
  .yygk .box2 {
    height: auto;
    padding: 0.34rem 0 1.5rem;
  }
  .yygk .box2 .w14 {
    flex-direction: column;
  }
  .yygk .box2 .lt {
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 0 0 0.2rem 0;
  }
  .yygk .box2 .lt .title {
    width: auto;
    flex-direction: row;
  }
  .yygk .box2 .lt .title img {
    transform: rotate(-90deg);
    margin-left: 0.3rem;
  }
  .yygk .box2 .tab {
    display: inline-flex;
    align-items: center;
  }
  .yygk .box2 .tab li {
    margin-top: 0;
    font-size: 0.28rem;
  }
  .yygk .box2 .tab li::after {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    bottom: -0.3rem;
    border: 0.16rem solid transparent;
    border-top: 0.16rem solid #94070a;
  }
  .yygk .box2 .rt {
    width: 100%;
  }
  .yygk .box2 .rt .hd {
    margin-bottom: 0.2rem;
  }
  .yygk .box2 .rt .hd .t {
    font-size: 0.3rem;
  }
  .yygk .box2 .rt .swiper_btm {
    display: none;
  }
  .yygk .box2 .rt .ry_Swiper {
    height: auto;
  }
  .yygk .box2 .rt .ry_Swiper p {
    font-size: 0.3rem;
  }
  .yygk .box3 {
    margin-bottom: 0.4rem;
  }
  .yygk .box3 .y1_Swiper .item .mask {
    font-size: 0.3rem;
    padding-top: 2.32rem;
  }
  .yygk .box3 .y1_Swiper .arw_btn {
    display: none;
  }
  .yygk .box4 {
    margin-bottom: 0;
  }
  .yygk .box4 .y2_Swiper {
    height: 5.4rem;
    margin-bottom: 0;
  }
  .yygk .box4 .y2_Swiper .item {
    height: 2rem;
  }
  .yygk .box4 .y2_Swiper .item .t1 {
    font-size: 0.32rem;
    height: 0.9rem;
  }
  .yygk .box4 .y2_Swiper .item .t2 {
    font-size: 0.3rem;
  }
  .yygk .box4 .y2_Swiper .item::before {
    top: 0.36rem;
  }
  .yygk .box4 .y2_Swiper .item::after {
    width: 2rem;
    height: 2rem;
  }
  .yygk .box4 .sw_line {
    display: none;
  }
  .yygk .box5 {
    margin-bottom: 0;
  }
  .yygk .box5 .w14 {
    width: 100%;
    padding: 0.4rem 0.3rem;
  }
  .yygk .box5 .t {
    margin-bottom: 0.4rem;
  }
  .yygk .box5 .map_box {
    flex-direction: column;
  }
  .yygk .box5 .wrap {
    width: 100%;
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .yygk .box5 .wrap .tit {
    position: initial;
    display: inline-block;
    width: auto;
    transform: initial;
    padding: 0 0.3rem;
    font-size: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .yygk .box5 .wrap .map {
    height: 4.4rem;
  }
  .yygk .box5 .wrap p {
    font-size: 0.28rem;
  }
  .second .tit {
    padding: 0.4rem 0;
  }
  .second .tit::after {
    width: 5rem;
    height: 0.26rem;
  }
  .second .link .tracker-item {
    width: 2.64rem;
    height: 0.72rem;
    line-height: 0.72rem;
  }
  .second .link .tracker-item a {
    font-size: 0.34rem;
  }
  .ywgk .w14 {
    width: 88%;
  }
  .ywgk .list {
    margin-top: 0.4rem;
  }
  .ldbox {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .ldbox .lt {
    width: 100%;
    height: auto;
    padding: 0 0 0.2rem 0.2rem;
  }
  .ldbox .lt::after {
    width: 90%;
    height: 80%;
  }
  .ldbox .rt {
    width: 100%;
    height: auto;
    padding-bottom: 0.3rem;
  }
  .ldbox .rt .t {
    font-size: 0.4rem;
  }
  .ldbox .rt .scroll {
    height: auto;
  }
  .ldbox .rt p {
    font-size: 0.34rem;
  }
  .ldbox .rt .ico {
    width: 0.4rem;
    height: 0.4rem;
  }
  .ldbox .rt .ico::after {
    width: 0.36rem;
    height: 0.36rem;
  }
  .ldxq {
    padding: 0.4rem 0;
    min-height: initial;
  }
  .ldxq .ldbox .lt {
    padding: 0.2rem 0.2rem 0 0;
  }
  .ldxq .ldbox .lt::after {
    top: 0;
  }
  .zzjg .w14 {
    width: 94%;
  }
  .zbgg .list .item {
    margin-bottom: 0.3rem;
    padding: 0.3rem;
    height: auto;
  }
  .zbgg .list .item .t {
    font-size: 0.3rem;
    width: 1.26rem;
  }
  .zbgg .list .item .t span {
    font-size: 0.46rem;
  }
  .zbgg .list .item .tit {
    font-size: 0.34rem;
  }
  .zbgg .list .item .tit::after {
    width: 0.1rem;
    height: 0.1rem;
  }
  .xq {
    padding: 0.4rem 0;
  }
  .xq .w14 {
    width: 100%;
  }
  .xq .wrap {
    padding: 0.4rem 0.3rem;
    margin-bottom: 0.3rem;
  }
  .xq .hd {
    padding-bottom: 0.3rem;
  }
  .xq .hd h3 {
    font-size: 0.4rem;
    padding: 0;
  }
  .xq .hd .tag {
    font-size: 0.28rem;
  }
  .xq .hd .tag img {
    width: 0.3rem;
  }
  .xq .hd .ewm {
    position: initial;
    margin: 0 auto;
    width: 2rem;
    font-size: 0.3rem;
  }
  .xq .bd .tip {
    display: none;
  }
  .xq .bd .content {
    width: 100%;
    font-size: 0.34rem;
  }
  .xq .context {
    flex-direction: column;
  }
  .xq .context a {
    width: 100%;
    font-size: 0.34rem;
    display: block;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .xq .tj {
    padding: 0.3rem;
  }
  .xq .tj h3 {
    font-size: 0.46rem;
  }
  .xq .tj .list {
    min-height: 3rem;
  }
  .xq .tj .item {
    display: flex;
    width: 100%;
    padding: 0 0.3rem;
  }
  .xq .tj .item img {
    width: 0.36rem;
    margin-right: 0.2rem;
  }
  .xq .tj .item p {
    font-size: 0.3rem;
  }
  .yyyw .hd {
    padding: 0.4rem 0;
  }
  .yyyw .y3_Swiper {
    height: auto;
  }
  .yyyw .y3_Swiper .item {
    flex-direction: column;
    height: auto;
  }
  .yyyw .y3_Swiper .item .img {
    width: 100%;
    height: auto;
  }
  .yyyw .y3_Swiper .item .txt {
    width: 100%;
  }
  .yyyw .y3_Swiper .item .t1 {
    font-size: 0.3rem;
  }
  .yyyw .y3_Swiper .item .t2 {
    font-size: 0.4rem;
  }
  .yyyw .y3_Swiper .item .t3 {
    font-size: 0.3rem;
  }
  .yyyw .y3_Swiper .item .more {
    margin: 0.4rem auto 0;
    width: 2.1rem;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.32rem;
  }
  .yyyw .y3_Swiper .item .more img {
    width: 0.36rem;
  }
  .yyyw .y3_Swiper .swiper_btm {
    display: none;
  }
  .yyyw .bd .item {
    flex-direction: column-reverse;
  }
  .yyyw .bd .item .img {
    width: 100%;
    height: auto;
    margin-bottom: 0.3rem;
  }
  .yyyw .bd .sm_item .lt {
    width: 100%;
  }
  .yyyw .bd .t1 {
    font-size: 0.3rem;
    padding-top: 0;
    padding-bottom: 0.1rem;
  }
  .yyyw .bd .t1 span {
    font-size: 0.4rem;
  }
  .yyyw .bd .t2 {
    font-size: 0.36rem;
  }
  .yyyw .bd .t3 {
    font-size: 0.3rem;
  }
  .yyyw .bd .more {
    font-size: 0.28rem;
  }
  .yyyw .bd .more img {
    width: 0.3rem;
  }
  .lt_item {
    float: initial;
    display: block;
    width: 100%;
    height: auto;
    margin-right: 0;
    padding: 0 0.18rem 0.18rem 0;
  }
  .lt_item::after {
    width: 96%;
    height: 96%;
  }
  .lt_item .box::before {
    top: 0.3rem;
  }
  .lt_item .box .t1 {
    font-size: 0.32rem;
    height: auto;
  }
  .lt_item .box .bet {
    margin-top: 0.2rem;
  }
  .lt_item .box .bet .t2 {
    font-size: 0.28rem;
    padding: 0;
  }
  .lt_item .box .bet .ico {
    width: 0.8rem;
    height: 0.28rem;
  }
  .wldst .item {
    float: initial;
    width: 100%;
    margin-right: 0;
  }
  .wldst .item .img {
    height: auto;
  }
  .wldst .item .img .btn {
    width: 2rem;
    height: 2rem;
    padding: 0.45rem;
  }
  .wldst .item .img .btn img {
    width: 0.5rem;
    height: 0.5rem;
  }
  .wldst .item .t1 {
    font-size: 0.34rem;
  }
  .wldst .item .t2 {
    font-size: 0.3rem;
  }
  .ksjs .head .pts {
    width: 100%;
  }
  .ksjs .box1 {
    padding: 0.8rem 0 0.4rem 0;
  }
  .ksjs .box1 h2 {
    text-align: right;
    padding-right: 0.2rem;
  }
  .ksjs .box1 .search {
    width: 100%;
    padding: 0;
    margin-top: 0.2rem;
    border-radius: 0.5rem;
  }
  .ksjs .box1 .search::after {
    left: 0;
  }
  .ksjs .box1 .search_box {
    height: 0.8rem;
  }
  .ksjs .box1 .search_box input {
    font-size: 0.28rem;
    line-height: 0.8rem;
    width: 2rem;
    margin-left: 0;
  }
  .ksjs .box1 .search_box .screen {
    line-height: 0.8rem;
    width: 1.5rem;
  }
  .ksjs .box1 .search_box .screen_item {
    padding-right: 0.26rem;
    font-size: 0.28rem;
  }
  .ksjs .box1 .search_box .screen .arrow_box {
    width: 0.26rem;
    height: 0.3rem;
  }
  .ksjs .box1 .search_box .screen .arrow_box > div {
    width: 0.2rem !important;
    height: 0.1rem !important;
  }
  .ksjs .box1 .search .btn {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.28rem;
    width: 1.84rem;
    margin: 0;
    background-position: 0.18rem center;
  }
  .ksjs .box2 {
    margin-bottom: 0.4rem;
  }
  .ksjs .col h2 {
    font-size: 0.4rem;
    top: 1.76rem;
  }
  .ksjs .col h2::after {
    width: 0.35rem;
    height: 0.26rem;
    bottom: -0.12rem;
  }
  .ksjs .col .links a {
    width: 48%;
    min-height: 0.7rem;
    padding: .1rem .13rem;
    margin-right: 4%!important;
  }
  .ksjs .col .links a:nth-child(2n) {
    margin-right: 0!important;
  }
  .ksjs .col .links a .t {
    font-size: 0.3rem;
  }
  .ksjs .col .links a .cir::after {
    width: 0.12rem;
    height: 0.12rem;
  }
  .tj_box .t {
    font-size: 0.4rem;
  }
  .tj_box .w14 {
    width: 92%;
  }
  .tj_box .lks {
    flex-wrap: wrap;
  }
  .tj_box .lks .item {
    width: 48%;
    height: auto;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .tj_box .lks .item:nth-child(2n) {
    margin-right: 0;
  }
  .tj_box .lks .item .im {
    width: 0.9rem;
    height: 0.9rem;
  }
  .tj_box .lks .item .t1 {
    font-size: 0.34rem;
    padding-bottom: 0.1rem;
  }
  .tj_box .lks .item .t2 {
    font-size: 0.3rem;
    padding-bottom: 0.2rem;
  }
  .sznk {
    padding-bottom: 0.4rem;
  }
  .sznk .hd_m {
    height: 0.8rem;
  }
  .sznk .hd_m .more {
    font-size: 0.32rem;
  }
  .sznk .box1 {
    padding: 0.4rem 0;
    height: auto;
  }
  .sznk .box1 .tit {
    padding-top: 0.3rem;
    width: 100%;
    top: 0;
  }
  .sznk .box1 .w14 {
    position: relative;
    transform: initial;
    left: 0;
  }
  .sznk .box1 .left {
    position: initial;
    width: 100%;
    height: auto;
    padding: 1.2rem 0.34rem 0.3rem;
  }
  .sznk .box1 .left .t {
    font-size: 0.34rem;
  }
  .sznk .box1 .left .t img {
    width: 0.86rem;
  }
  .sznk .box1 .left .cont {
    font-size: 0.3rem;
    padding: 0;
    height: auto;
  }
  .sznk .box1 .left .more {
    font-size: 0.3rem;
  }
  .sznk .box1 .y4_Swiper {
    width: 100%;
    height: auto;
    position: initial;
  }
  .sznk .box1 .y4_Swiper .item img {
    height: auto;
  }
  .sznk .box1 .y4_Swiper .item .txt {
    font-size: 0.32rem;
    padding: 0 1.48rem 0 0.38rem;
  }
  .sznk .box1 .y4_Swiper .swiper_btm {
    bottom: 0.19rem;
  }
  .sznk .box1 .y4_Swiper .swiper_btm > div {
    width: 0.6rem;
    height: 0.6rem;
  }
  .sznk .box1 .y4_Swiper .swiper_btm > div::after {
    font-size: 0.28rem;
  }
  .sznk .box2 {
    height: auto;
  }
  .sznk .box2 .tit {
    padding-bottom: 0.4rem;
  }
  .sznk .box2 .w14 {
    flex-direction: column;
    height: auto;
    padding-right: 0;
  }
  .sznk .box2 .left {
    width: 100%;
    flex-direction: column;
  }
  .sznk .box2 .left img {
    width: 100%;
  }
  .sznk .box2 .left .cont {
    width: 100%;
  }
  .sznk .box2 .left .cont h3 {
    font-size: 0.4rem;
  }
  .sznk .box2 .left .cont .t1 {
    font-size: 0.34rem;
  }
  .sznk .box2 .left .cont .t2 {
    font-size: 0.3rem;
    height: auto;
  }
  .sznk .box2 .right {
    width: 100%;
    padding-left: 0;
  }
  .sznk .box2 .right .y5_Swiper {
    width: 100%;
  }
  .sznk .box2 .right .y5_Swiper .item {
    width: 100%;
    height: auto;
  }
  .sznk .box2 .right .y5_Swiper .item .txt {
    padding-top: 1.3rem;
  }
  .sznk .box2 .right .y5_Swiper .item .txt .t1 {
    font-size: 0.36rem;
  }
  .sznk .box2 .right .y5_Swiper .item .txt .t2 {
    font-size: 0.3rem;
  }
  .sznk .box2 .right .btn {
    display: none;
  }
  .sznk .box3 .w14 {
    overflow: auto;
  }
  .sznk .ft_t1,
  .sznk .ft_t2 {
    font-size: 0.3rem;
  }
  .sznk .ft_t2 img {
    width: 2rem;
  }
  .sznk .box4 h3 {
    margin-bottom: 0.25rem;
  }
  .sznk .box4 h3 .more {
    font-size: 0.3rem;
  }
  .sznk .box4 h3 .more img {
    width: 0.3rem;
  }
  .sznk .box4 .list .item {
    width: 100%;
    float: initial;
  }
  .sznk .box4 .list .item p {
    font-size: 0.3rem;
    padding-left: 0.3rem;
  }
  .sznk .box4 .list .item p::before {
    width: 0.1rem;
    height: 0.1rem;
  }
  .sznk .box4 .list .item span {
    font-size: 0.28rem;
  }
  .das_table {
    width: 1000px;
  }
  .das_table th {
    font-size: 0.34rem;
  }
  .das_table td {
    font-size: 0.3rem;
  }
  .zjdh .datalist .item {
    width: 100%;
    margin-right: 0;
    flex-direction: column;
  }
  .zjdh .datalist .item .img {
    width: 100%;
    height: auto;
  }
  .zjdh .datalist .item .info {
    width: 100%;
    padding: 0.3rem 0 0 0;
  }
  .zjdh .datalist .item h3 {
    font-size: 0.4rem;
  }
  .zjdh .datalist .item .t {
    font-size: 0.3rem;
  }
  .zjdh .datalist .item .t2 {
    font-size: 0.3rem;
  }
  .zjdh .datalist .item .more {
    font-size: 0.3rem;
  }
  .zjdh .datalist .item .more::before {
    width: 0.28rem;
    height: 0.28rem;
  }
  .zjdh .datalist .item .more::after {
    width: 0.17rem;
    height: 0.17rem;
  }
  .tracker-box {
    width: 100%;
  }
  .zjdh .link .tracker-item {
    width: 2.8rem;
    height: 0.74rem;
    line-height: 0.7rem;
    font-size: 0.34rem;
  }
  .zjdh .xicon {
    display: none;
  }
  .zjdh .choose {
    flex-wrap: wrap;
  }
  .zjdh .choose .item {
    width: 48%;
    margin-right: 4%;
    height: 0.8rem;
    margin-bottom: 4%;
  }
  .zjdh .choose .item:nth-child(2n) {
    margin-right: 0;
  }
  .zjdh .choose .item .tit1,
  .zjdh .choose .item input {
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.2rem;
    font-size: 0.3rem;
  }
  .zjdh .choose .jeinput {
    background-size: 0.31rem 0.31rem;
  }
  .zjdh .choose .sec_btn {
    width: 48%;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.3rem;
  }
  .zjdh .choose .menu_c {
    top: 1rem;
  }
  .zjdh .choose .menu_c .tracker-box {
    overflow: auto;
  }
  .zjdh .choose .menu_c .hd {
    height: 1rem;
  }
  .zjdh .choose .menu_c .hd .tra_item {
    height: 1rem;
    line-height: 1rem;
    font-size: 0.34rem;
  }
  .zjdh .choose .menu_c .bd li {
    width: 50%;
  }
  .zjdh .choose .menu_c .bd li div {
    font-size: 0.3rem;
  }
  .zjdh .choose .menu_c .bd li div::before {
    width: 0.1rem;
    height: 0.1rem;
  }
  .zjdh .choose .menu_c .bd li div::after {
    width: 0.12rem;
    height: 0.12rem;
  }
  .zjdh .let_box {
    height: 0.8rem;
  }
  .zjdh .let_box .nm {
    display: none;
  }
  .zjdh .let_box .tracker-mod {
    width: 100%;
  }
  .zjdh .let_box .tracker-mod .li {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.3rem;
    width: 0.8rem;
  }
  .zjdhxq {
    overflow: hidden;
  }
  .zjdhxq .doc .img {
    width: 100%;
    height: auto;
    padding-right: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .zjdhxq .doc .img::after {
    width: 90%;
    height: 90%;
  }
  .zjdhxq .doc .hd {
    flex-direction: column;
  }
  .zjdhxq .doc .item {
    width: 100%;
    flex-direction: column;
  }
  .zjdhxq .doc .info {
    width: 100%;
    padding-top: 0.3rem;
  }
  .zjdhxq .doc .info .title {
    color: #333;
    font-size: 0.4rem;
    padding-bottom: 0.3rem;
  }
  .zjdhxq .doc .info .title span {
    font-size: 0.54rem;
  }
  .zjdhxq .doc .info p {
    font-size: 0.32rem;
  }
  .zjdhxq .doc .ewm{
    width: 4rem;
    height: 4rem;
    margin-left: 0;
  }
  .zjdhxq .doc .more {
    width: 3.4rem;
    text-align: center;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.3rem;
    margin: 0.3rem auto 0;
  }
  .zjdhxq .doc .bd .b_con {
    font-size: 0.32rem;
  }
  .zjdhxq .b_tit {
    font-size: 0.4rem;
  }
  .zjdhxq .b_tit img {
    width: 0.32rem;
  }
  .zjdhxq .box1 {
    margin-bottom: 0.5rem;
  }
  .zjdhxq .box1 .bet {
    align-items: flex-start;
    margin-bottom: 0.3rem;
  }
  .zjdhxq .box1 .bet .rt {
    width: 60%;
  }
  .zjdhxq .s_scroll {
    overflow: auto;
  }
  .kxyjj .box1 {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  .kxyjj .box1 .hd .tit {
    font-size: 0.4rem;
  }
  .kxyjj .box1 .hd .t {
    font-size: 0.32rem;
  }
  .kxyjj .box1 .bd {
    flex-direction: column;
    border-left: 1px solid #d8c18a;
    border-top: 0;
  }
  .kxyjj .box1 .bd .item {
    width: 100%;
    max-width: 100%;
    font-size: 0.3rem;
    padding: 0 0.4rem 0.34rem;
    text-indent: 0;
  }
  .kxyjj .box1 .bd .item::after {
    left: -0.1rem;
    transform: initial;
    top: 0.15rem;
  }
  .kxyjj .box2 {
    margin: 0.3rem 0;
    height: auto;
  }
  .kxyjj .box2 .w14{
    flex-wrap: wrap;
  }
  .kxyjj .box2 .item {
    position: initial;
    width: 100%!important;
    margin-bottom: 0.3rem;
  }
  .kxyjj .box2 .item h3 {
    font-size: 0.36rem;
  }
  .kxyjj .box2 .item p {
    font-size: 0.3rem;
  }
  .bgcx {
    margin: 0.4rem 0;
  }
  .bgcx .t1 {
    font-size: 0.4rem;
  }
  .bgcx .t1 span {
    font-size: 0.28rem;
  }
  .bgcx .cell {
    flex-wrap: wrap;
  }
  .bgcx .row {
    width: 100%;
    height: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .bgcx .row span {
    min-width: 1.8rem;
    font-size: 0.3rem;
  }
  .bgcx .row input {
    font-size: 0.3rem;
    height: 0.8rem;
    line-height: 0.8rem;
    width: calc(100% - 1.8rem);
  }
  .bgcx .row input.yzm {
    width: calc(100% - 3.5rem);
  }
  .bgcx .row .btn {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.28rem;
    width: 1.7rem;
  }
  .bgcx .btn_box {
    margin: 0.3rem auto 0.6rem;
  }
  .bgcx .btn_box .btn {
    height: 0.8rem;
    line-height: 0.8rem;
    width: 45%;
    font-size: 0.3rem;
  }
  .bgcx .g_box {
    font-size: 0.3rem;
  }
  .bgcx .tit {
    font-size: 0.4rem;
  }
  .bgcx .bg_list {
    min-height: 3rem;
  }
  .bgcx .bg_list .item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.3rem 0.2rem;
    height: auto;
  }
  .bgcx .bg_list .item p {
    max-width: 100%;
    font-size: 0.3rem;
    margin-bottom: 0.2rem;
  }
  .bgcx .bg_list .item p::before {
    width: 0.1rem;
    height: 0.1rem;
  }
  .bgcx .bg_list .item .rt {
    width: 100%;
    justify-content: flex-end;
  }
  .bgcx .bg_list .item .rt .btn {
    width: 2rem;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.28rem;
  }
  .dtdh .mapbox {
    height: auto;
  }
  .dtdh .mapbox .map2 {
    height: 9.24rem;
  }
  .dtdh .mapbox .w14 {
    width: 100%;
    position: initial;
    transform: initial;
  }
  .dtdh .mapbox .w14 .box {
    float: initial;
    width: 100%;
    padding: 0.4rem 0.3rem;
  }
  .dtdh .mapbox .w14 .box h3 {
    font-size: 0.4rem;
  }
  .dtdh .mapbox .w14 .box .cel .t {
    font-size: 0.34rem;
  }
  .dtdh .mapbox .w14 .box .cel .d {
    font-size: 0.3rem;
  }
  .dtdh .mapbox .w14 .box .cel .d img {
    width: 0.28rem;
    height: 0.3rem;
  }
  .dtdh .mapbox .w14 .box .ewm {
    justify-content: center;
  }
  .dtdh .mapbox .w14 .box .ewm li {
    width: 2rem;
    font-size: 0.28rem;
    margin: 0 0.2rem;
  }
  .dtdh .box2 {
    flex-direction: column;
    height: auto;
    margin: 0.4rem 0;
  }
  .dtdh .box2 .lt {
    width: 100%;
    display: flex;
  }
  .dtdh .box2 .lt .item {
    width: 50%;
    font-size: 0.34rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    word-break: keep-all;
  }
  .dtdh .box2 .rt {
    width: 100%;
  }
  .dtdh .box2 .rt ul {
    position: initial;
  }
  .dtdh .box2 .rt ul li {
    font-size: 0.3rem;
    align-items: flex-start;
    padding: 0.28rem 0;
  }
  .dtdh .box2 .rt ul li img {
    width: 0.39rem;
    height: auto;
  }
  .jzxz .w14 {
    overflow: auto;
  }
  .search1 {
    width: 100%;
  }
  .search1 input {
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.2rem;
    font-size: 0.28rem;
    width: calc(100% - 1.9rem);
  }
  .search1 .btn {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.28rem;
    width: 1.7rem;
  }
  .lxdh .col {
    flex-direction: column;
  }
  .lxdh table {
    margin-bottom: 0.3rem;
    width: 100%;
  }
  .lxdh table th,
  .lxdh table td {
    font-size: 0.3rem;
  }
  .lcfb h3 {
    font-size: 0.4rem;
  }
  .lcfb .wrap .section li a {
    min-width: 50%;
    font-size: 0.3rem;
  }
  .lxwm {
    height: auto;
  }
  .lxwm .map3 {
    height: 8.85rem;
  }
  .lxwm .box1 {
    position: initial;
    background: #fff;
    padding-top: 0.4rem;
    height: auto;
  }
  .lxwm .box1 .w14 {
    flex-direction: column;
  }
  .lxwm .box1 .item {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 2px 0 18px rgba(217, 217, 217, 0.6);
    margin-bottom: 0.3rem;
    padding: 0.3rem;
  }
  .lxwm .box1 .item h3 {
    font-size: 0.4rem;
  }
  .lxwm .box1 .item p {
    font-size: 0.3rem;
  }
  .lxwm .box1 .item img {
    width: 0.8rem !important;
  }
  .yzxx .w14 {
    flex-direction: column;
  }
  .yzxx .lt {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 0.3rem;
  }
  .yzxx .lt .hd {
    font-size: 0.34rem;
    align-items: flex-start;
  }
  .yzxx .lt .hd img {
    width: 0.35rem;
    height: 0.35rem;
    margin-top: 0.04rem;
  }
  .yzxx .lt .bd {
    font-size: 0.32rem;
    height: auto;
    padding: 0;
  }
  .yzxx .rt {
    width: 100%;
    padding: 0.3rem;
  }
  .yzxx .rt .tit {
    font-size: 0.4rem;
  }
  .yzxx .rt input,
  .yzxx .rt textarea {
    height: 1rem;
    line-height: 1rem;
    font-size: 0.3rem;
  }
  .yzxx .rt .w48 {
    flex-direction: column;
  }
  .yzxx .rt .w48 input,.yzxx .rt .w48 .yzmbox {
    width: 100%;
  }
  .yzxx .rt .w48 .yzm{
    width: 2rem;
    height: 1rem;
  }
  .yzxx .rt .area {
    padding: 0.2rem 0.18rem;
    line-height: 1.3;
  }
  .yzxx .rt .btm .btn {
    font-size: 0.3rem;
    line-height: 0.8rem;
    height: 0.8rem;
  }
  .mzpb {
    margin: 0.3rem 0;
  }
  .mzpb .w14 {
    /* flex-direction: column; */
    align-items: flex-start;
  }
  .mzpb .aside {
    width: 2rem;
    /* display: flex; */
    overflow-y: auto;
    overflow-x: hidden;
    height: 50vh;
    padding-left: 0;
  }
  .mzpb .aside > li {
    flex-shrink: 0;
    font-size: 0.3rem;
    border: 0;
    width: 2rem;
  }
  .mzpb .aside > li h3 {
    font-size: 0.34rem;
    display: block;
    background: #94070a;
    padding: .2rem .05rem;
    text-align: center;
    color: #fff;
  }
  .mzpb .aside > li h3.active, .mzpb .aside > li h3:hover{
    font-weight: bold;
    color: #fff;
    background: #bda066;
  }
  .mzpb .aside > li h3::before,
  .mzpb .aside > li h3::after {
    display: none;
  }
  .mzpb .aside > li ol li{
    border-bottom: 1px solid;
    padding: .1rem 0;
  }
  /* .mzpb .aside > li ol {
    display: block;
  } */
  .mzpb .section {
    /* width: 100%; */
    overflow-x: auto;
    position: sticky;
    top: 2rem;
  }
  .mzpb table {
    width: 1000px;
  }
  .mzpb table th {
    font-size: 0.34rem;
  }
  .mzpb table td {
    font-size: 0.3rem;
  }
  .mzpb .tnt {
    font-size: 0.34rem;
  }
  .wzdt {
    margin: 0.4rem 0;
  }
  .nav_uls {
    margin: 0;
  }
  .nav_uls .item {
    margin-bottom: 0.3rem;
  }
  .nav_uls .item_tit {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.34rem;
  }
  .nav_uls .item_cl {
    padding: 0;
  }
  .nav_uls .item_cl a {
    font-size: 0.3rem;
    padding: 0.18rem 0.2rem;
  }
  .xstp {
    margin: 0.4rem 0;
  }
  .xstp .item {
    float: initial;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
    display: block;
  }
  .xstp .item .img {
    height: auto;
  }
  .xstp .item .t1 {
    font-size: 0.34rem;
  }
  .xstp .item .t2 {
    font-size: 0.3rem;
  }
  .xstp .item .more {
    font-size: 0.28rem;
  }
  .xstp .item .more .line {
    width: 0.6rem;
  }
  .xstp .item .more img {
    width: 0.36rem;
    margin-left: 0.1rem;
  }
  .pop .wrap {
    width: 88%;
  }
  .pop .wrap h3 {
    font-size: 0.38rem;
  }
  .pop .cell {
    height: 1rem;
  }
  .pop .cell input {
    height: 1rem;
    line-height: 1rem;
    font-size: 0.3rem;
  }
  .pop .cell .yzm {
    width: 1.6rem;
  }
  .pop .btn {
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.3rem;
  }
  .xstphd {
    padding: 0.4rem 0;
  }
  .xstphd .content .hd {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    padding: 0.14rem 0.3rem;
  }
  .xstphd .content .hd .lt {
    font-size: 0.32rem;
    padding-bottom: 0.12rem;
  }
  .xstphd .content .hd .rt {
    font-size: 0.3rem;
  }
  .xstphd .content .bd {
    font-size: 0.3rem;
  }
  .xstphd .item {
    width: 100%;
    margin-right: 0;
  }
  .xstphd .item .im {
    height: auto;
  }
  .xstphd .item .im .tag {
    font-size: 0.28rem;
    line-height: 1.4;
    padding: 0.1rem 0.2rem;
    border-radius: 0 0 0.3rem 0;
  }
  .xstphd .item .bet p {
    font-size: 0.3rem;
  }
  .xstphd .item .bet p span {
    font-size: 0.34rem;
  }
  .xstphd .item .bet .votebtn {
    width: 1rem;
    height: 1rem;
    font-size: 0.3rem;
  }
  .ybzq .hd {
    flex-direction: column;
  }
  .ybzq .hd .tab {
    justify-content: center;
    margin-bottom: 0.3rem;
  }
  .ybzq .hd .tab .item {
    width: 2.4rem;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.3rem;
  }
  .ybzq .hd .tab .item:last-child {
    margin-right: 0;
  }
  .zyxz .tab .item {
    height: 0.8rem;
    line-height: 0.8rem;
    width: 2.4rem;
    font-size: 0.34rem;
  }
  .zyxz .collapse .hd {
    height: 1rem;
  }
  .zyxz .collapse .hd h3 {
    font-size: 0.34rem;
  }
  .zyxz .collapse .hd .arw {
    width: 0.3rem;
  }
  .zyxz .collapse .bd {
    font-size: 0.3rem;
  }
  .yygh h3 {
    font-size: 0.4rem;
  }
  .yygh .content {
    font-size: 0.32rem;
  }
  .yygh img {
    max-width: 100%!important;
  }
  .yygh .o_list {
    flex-direction: column;
  }
  .yygh .o_list li {
    width: 100%;
    margin-right: 0;
    height: 2.1rem;
  }
  .yygh .o_list li .icon img {
    width: 0.8rem;
  }
  .sswy {
    margin: 0.4rem 0;
  }
  .sswy .cell {
    flex-direction: column;
    min-height: 50vh;
  }
  .sswy .cell .inl {
    width: 100%;
  }
  .sswy .cell .hd {
    font-size: 0.4rem;
    height: 1rem;
  }
  .sswy .cell .hd img {
    width: 0.7rem;
  }
  .sswy .cell .bd {
    padding: 0.28rem 0.24rem 0;
  }
  .sswy .cell .bd .item {
    width: 100%;
    margin: 0 0 0.3rem 0;
    font-size: 0.32rem;
    padding: 0.1rem 0.3rem 0.1rem 0.5rem;
  }
  .sswy .cell .bd .item::before {
    width: 0.12rem;
    height: 0.12rem;
    left: 0.2rem;
  }
}
center,.center{
  width: 100%!important;
}