@charset "UTF-8";
/*公共样式开始*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* 加粗字体 */
h1, h2, h3, h4, h5, h6,strong,b{
    font-weight: 700;
}
/* 自定义字体引入 */
@font-face {
    font-family: YouSheBiaoTiHei-2;
    src: url(../fonts/YouSheBiaoTiHei-2.ttf) format("truetype");
  }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    color: #333;
	line-height: 1;
    font-family: "Microsoft Yahei", Arial, Tahoma, Helvetica, "SimSun",
    "Hiragino Sans GB", sans-serif !important;
}
a{
	text-decoration: none;
	color: #333;
}
ol, ul {
	list-style: none;
}
li{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
button{
  outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

input:focus{   
	outline:none;
}
h1{
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
}
h2{
    margin-bottom: 1rem;
    overflow: hidden;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
}
/* 头部间距 */
.top{
    margin-top: 1rem;
}
/* 固定行数结束 */
/*公共样式结束*/
* {
    margin: 0px;
    padding: 0px;
}
html{
    font-size:100%;
}
html,
body{
    height: 100%;
    width: 100%;
}
body{
    /* 去掉边框 */
    overflow-x: hidden;
    position: relative;
    font-family: 'Lato', sans-serif;
}
/* banner 轮播图*/
.pyq-ban{
  padding-top: 1rem !important;
  overflow: hidden;
  position: relative;
}
.pyq-ban-b{
  padding: 0 1rem 1rem 1rem;
}
#slideshow{
  border-radius: 0.5rem;
  height: 10.75rem;
  /* margin: 0 0.625rem; 设置在页面水平居中 */
  overflow: hidden;
  position: relative;  
}
#slideshow img{
  width: 100%;
  height: 100%;
  position: absolute; /*图片采取绝对定位，均位于左上角，重叠在一起*/
  top: 0;
  left: 0;
  opacity: 0; /*初始不透明度为0，图片都看不见*/
  transition: opacity 1s linear; /*--重点--定义一个关于透明度的transition*/
}
#slideshow .active img,
#slideshow .active em{
  opacity: 1 ; /*有active类的图片不透明度为1，即显示图片*/
}
/*-- 设置页码的样式 --*/
#slideshow div{
  position: absolute;
  bottom: 0.3125rem;
  right: 40%;
  padding: 0.3125rem;
  border-radius: 1.5625rem;
}
#slideshow span{
  float: left;
  width: 0.75rem;;
  height: 0.125rem;
  border-radius: 1rem; /*设置页码为圆形*/
  margin: 0 0.125rem;
  background: white;
}
#slideshow span.active{
  background: #48bb9e;
}
/*-- 设置左右按钮框的样式 --*/
#slideshow p{
  width: 1.875rem;
  line-height: 3.125rem;
  position: absolute;
  top: 50%;
  margin-top: -1.875rem; /*设置垂直居中*/
  color: white;
  background: rgba(0,0,0,0.2);
  font-size: 1rem;
  text-align: center;
  cursor: pointer; /*设置鼠标*/
  /*设置不能选择文本*/
  -ms-user-select:none;/*IE10*/
  -webkit-user-select:none;/*webkit浏览器*/
  user-select:none;
  display: none;
}
#slideshow p.left{
  left: 0;
}
#slideshow p.right{
  right: 0;
}
#slideshow:hover p{
  display: block;
}
#slideshow p:hover{
  background: rgba(0,0,0,0.6);  
}
#slideshow a em {
	font-size: 1rem;
	opacity: 0;
	padding: 0 1.25rem 0 2.5rem;
	display: block;
	width: 83%;
	line-height: 2.75rem;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index:20;
	color: #fff;
	background-color: rgb(24, 24, 24, 0.5);
}
 /* banner 轮播图结束 */
 /* 栏目 */
.sidenav span{
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding-left: 1.625rem;
  background: url(../img/Slice38.png) no-repeat center left;
  background-size: 1rem 1rem;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  line-height: 1.25rem;
}
.sidenav {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left:-200%;
  background-color: #fff ;
  overflow-x: hidden;
  transition: 0.5s;
  text-align: center;
}
.sidenav::-webkit-scrollbar{
  display: none;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav .closebtn {
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  position: absolute;
  top: 0;
  right: -0.75rem;
  color: #333;
  font-size: 2.25rem;
}
@media screen and (max-height: 28.125rem) {
  .sidenav {
      padding-top: 1rem;
  }
  .sidenav a {
      font-size: 1.125rem;
  }
}
.pyq-h5-a1 ul{
  margin: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.pyq-h5-a1 ul li{
  margin-right: 0.625rem;
  background-color: #3497db;
  margin-bottom: 0.625rem;
  border-radius: 0.3125rem;
}
.pyq-h5-a1 ul li a{
  margin: 0 auto;
  text-align: center;
  line-height: 2.625rem;
  padding: 0.625rem 1rem;
  overflow: hidden;
  font-size: 1rem;
  color: #fff;
}
.pyq-h5-a2 ul{
  margin: 0 1.25rem; 
}
.pyq-h5-a2 ul li a{
  display: block;
  white-space: nowrap;
  margin: 0 0.625rem;
  text-align: center;
  line-height: 2.625rem;
  overflow: hidden;
  font-size: 0.875rem;
  color: #333;

}
.pyq-h5-a2 ul li{
  float: left;
  background-color: #eaeaea;  
  border-radius: 0.3125rem;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  
}
.pyq-h5-a3{
  overflow: hidden;
  height: 2rem;
  margin:  0 1.25rem;
  position: relative;
}
.pyq-h5-a3 span{
  padding-left: 0.75rem;
  line-height: 2rem;
  text-align: left;
  display: block;
  float: left;
  width: 100%;
  top: 0;
  left: 0;
  background: 0;
  position: relative;
}
.pyq-h5-a3 span::before{
  content: '';
  background-color: #3497db;
  width: 0.25rem;
  height: 1rem;
  display: block;
  float: left;
  margin-right: 0.625rem;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.pyq-h5-a2 ul{
  margin-top: 1.25rem;
}
/* 导航栏结束 */
/* 底部 */
footer{
  margin-top: 0.625rem;
  padding: 1rem;
  background-color: #333;
  text-align: center;
}
footer a{
  margin-right: 0.5rem;
  padding-right: 0.5rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
footer a:nth-child(4){
  border-right: 0;
}
footer p,footer a{
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.25rem;
}
footer p{
  overflow: hidden;
}
/* 底部结束 */
/* 空 */
.pyq-top_right a,
.pyq-logo img:nth-child(1),
.pyq-Nav-a .pyq-se,.pyq-lm-b,
.pyq-yq,.pyq-ft-a,.pyq-lm-d,.pyq-ban-b1,
.pyq-lm2 .pyq-lm-a ul,.pyq-lm .pyq-lm-c,
.pyq-lm-b3,.pyq-ban-f,.pyq-totop{
  display: none !important;
}
/* 空结束 */

.main,.pyq-la-a,.pyq-la-a1{
  overflow: hidden;
  padding: 0 1rem;
}
.pyq-logo{
  display: flex;
  height: 3rem;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
}
.pyq-logo img{
  height: 2rem !important;
  width: 5.6rem;
}
.pyq-top_right span{
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/Slice24.png) no-repeat center center;
  background-size: 0.375rem 1.5rem;
}
/* 搜索 */
.pyq-se{
  line-height: 1.5rem;
  position: relative;
}
.pyq-se .pyq-in{
  float: left;
  width: 10rem;
  line-height: 1.5rem;
  border-radius: 0.25rem;
  text-indent: 1em;
  font-size: 0.875rem;
  border: 0;
  background-color: #eeeeee;
}
.pyq-se button{
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  width: 20%;
  height: 1.5rem;
  color: #fff;
  background-color: #3fa8bd;
  border-radius: 0.25rem;
}
/* 搜索结束 */
/* 导航 */
.pyq-Nav{
  display: none;
}

/* 导航结束 */
/* 金刚区 */
.pyq-ban-e{
  overflow: hidden; 
  border-bottom: 0.625rem solid #ebebeb;
  padding-bottom: 1.25rem;
}
.pyq-ban-e ul{
  display: flex;
  flex-wrap: wrap
}
.pyq-ban-e ul li{
    width: 25%;
    text-align: center;
    margin-bottom: 0.625rem;
}
.pyq-ban-e ul li img{
  width: 2.75rem;
  height: 2.75rem;
}
.pyq-ban-e ul li em{
  font-size: 0.875rem;
  display: block;
  margin-top: 0.5rem;
}
/* 金刚区结束 */
/* 图片 */
.pyq-ban-c {
  margin: 1rem;
	overflow: hidden;
  position: absolute;
  top: 11rem;
}

.pyq-ban-c li {
	float: left;
	margin: 0 1.25rem 1.25rem 0;
	height: 5rem;
	width: 10.09375rem;
	overflow: hidden;
	border-radius: 0.5rem;
}

.pyq-ban-c ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pyq-ban-c li:nth-child(2n) {
	margin-right: 0;
}

.pyq-ban-c li img {
	transition: all 0.5s linear 0s;
	width: 100%;
	height: 100%;
}

.pyq-ban-c li a {
	display: block;
	height: 5rem;
	width: 10.09375rem;
	position: relative;
}

.pyq-ban-c li a div {
	position: absolute;
	z-index: 99;
	top: 0.5rem;
	left: 0.5rem;
}

.pyq-ban-c li a div span {
	font-size: 1.25rem !important;
	line-height: 1.5rem !important;
}

.pyq-ban-c li a div span,
.pyq-ban-c li a div i,
.pyq-ban-c li a div em {
	font-size: 0.75rem;
	display: block;
	color: #fff;
	line-height: 1.25rem;
}
.pyq-ban-c li a div i {
	background-color: hsl(0, 0%, 100%, 0.4);
	padding: 0 0.625rem;
	display: block;
  font-size: 0.75rem;
	float: left;
	border-radius: 2.5rem;
}

/* 图片结束 */
/* 热门推荐 */
.pyq-lm{
  border-top: 0.625rem solid #ebebeb;
}
.pyq-ban-d,
.pyq-ban-d ul,
.pyq-lm-d,
.pyq-lm-e{
  overflow: hidden;
  margin-top: 0.5rem;
}
.pyq-ban-d{
  padding: 0 1rem 1rem 1rem;
  margin: 0;
 
}
/* 热门推荐结束 */
/* 今日推荐 */
.pyq-lm-c2 li:nth-child(2n){
  margin-right: 0;
}
.pyq-ban-d1{
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
.pyq-ban-d1 h4{
  border-bottom: #3fa8bd 2px solid;
  line-height: 2.75rem;
  float: left;
  font-size: 1.25rem;
  position: relative;
  text-indent: 2.25rem;
} 
.pyq-ban-d ul li{
  line-height: 2rem;
  font-size: 1rem;
  overflow: hidden;
  border-radius: 0.25rem;
}
.pyq-ban-d ul li a{
  overflow: hidden;
  display: block;
  font-size: 1rem;
  float: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 80%;
  position: relative;
  
}

.pyq-ban-d ul li i{
  color: #fff;
  float: left;
  font-size: 0.75rem;
}
/* 今日推荐结束 */
/* 内容 */
/* top */
.pyq-la-a4 .pyq-lm-a{
  margin-top: 0 !important;
}
.pyq-lm-a{
  overflow: hidden;
  border-bottom: #ebebeb 1px solid;
  margin: 0.5rem 0;
}

.pyq-lm-a h4,.pyq-lm-a span{
  border-bottom: #3fa8bd 0.125rem solid;
  line-height: 2.75rem;
  float: left;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  text-indent: 2.25rem;
}
.pyq-lm-a h4::before,.pyq-lm-a span::before,.pyq-ban-d1 h4::before{
  content: '';
  background: url(../img/icon_za.png) left center;
  background-size: 1.875rem 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 2.5rem;
  display: block;
  position: absolute;
  left: 0px;
  top: 0.5rem;
  
}
.pyq-lm-a a{
  float: right;
  display: block;
  line-height: 2.75rem;
  font-size: 0.75rem;
  color: #999;
}
/* 1 */
.pyq-lm-b4{
  display: block !important;

}
.pyq-lm-b2{
  margin-top: 0.625rem;
}
.pyq-lm-kk{
  padding: 0.625rem 0;
}
.pyq-lm-kk i{
  font-size: 0.75rem;
  float: left;
  padding: 0 0.25rem;
  line-height: 1.5rem;
  background-color: #3fa8bd;
  color:#fff;
  border-radius: 40rem;
  margin-right: 0.625rem;
}
.pyq-lm-kk a{
  line-height: 1.5rem;
  display: block;
  font-size: 1rem;
}
.pyq-lm-kk em{
  margin-top: 0.25rem;
  color: #666;
  display: block;
  font-size: 0.75rem;
  line-height: 1.25rem;
  height: 2.5rem;
  overflow: hidden;
  float: left;
}
.pyq-lm-b2 li,.pyq-lm-c li{
  overflow: hidden;
  border-bottom: #ebebeb 1px dotted;
}
.pyq-ban-d li:nth-child(5){
  border-bottom: 0 !important;
}
.pyq-lm-b2 li:not(.pyq-lm-kk){
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
}
.pyq-lm-b2 li:not(.pyq-lm-kk) a,.pyq-lm-c li:not(.pyq-lm-f3) a{
  float: left;
  display: block;
  width: 85%;
  height: 3rem;
  overflow: hidden;
}
.pyq-lm-b2 li:not(.pyq-lm-kk) i,.pyq-lm-c li:not(.pyq-lm-f3) i{
  font-size: 0.75rem;
  float: right;
  color: #999;
}
.pyq-lm-c li:not(.pyq-lm-f3){
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
}
.pyq-lm-f2{
  margin-top: 1rem;
}
.pyq-lm-f2 ul li span{
  display: block;
  float: left;
  width: 1.25rem;
  text-align: center;
  line-height: 1.25rem;
  margin:0.875rem 0.5rem 0 0;
  font-size: 0.75rem;
  background-color: #cacaca;
  border-radius: 0.125rem;
  color: #fff;
}

/* 1 */
/* top */
/* 3 */
.pyq-hot{
  padding: 0 1rem;
}
.pyq-lm-f2 ul li:nth-child(2) span,
.pyq-lm-f2 ul li:nth-child(3) span,
.pyq-lm-f2 ul li:nth-child(4) span{
  background-color: #3fa8bd;
}
.pyq-lm-f3{
  padding: 0.625rem 0;
  position: relative;
}
.pyq-lm-f2 ul{
  overflow: hidden;
  margin-top: 0.625rem;
  height: 27rem;
}
.pyq-lm-f3 img{
  width: 7.5rem;
  height: 4.375rem;
  border-radius: 0.25rem;
  margin-right: 0.625rem;
  float: left;
}
.pyq-lm-f3 a{
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
  height: 2.5rem;
  overflow: hidden;
}
.pyq-lm-f3 i{
  font-size: 0.75rem;
  color: #999;
  position: absolute;
  bottom: 0.625rem;
}
/* 3 */
/* 内容结束 */
/* label */
.pyq-logo2 .pyq-logo a img{
    width: auto;
}
/* top */
.pyq-logo2 .pyq-logo a:nth-child(1){
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/Slice33.png) no-repeat center center;
  background-size: 0.675rem 1.2rem;
}
.pyq-logo2 .pyq-se{
  display: none;
}
/* top */
.pyq-cla-a1{
  overflow: hidden;
  height: 5.625rem;
}
.pyq-cla-a1 li{
  position: relative;
  overflow: hidden;
  padding:1rem 0 0.625rem 0;
}
.pyq-cla-a1 img{
  border-radius: 0.25rem;
  width: 7.5rem;
  height: 4.375rem;
  float: left;
  margin-right: 0.625rem;
}
.pyq-cla-a1 a{
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
  height: 2.5rem;
  overflow: hidden;
}
.pyq-cla-a1 i{
  font-size: 0.75rem;
  color: #999;
  position: absolute;
  bottom: 0.625rem;
}
.pyq-cla-a2{
  overflow: hidden;
  height: 12rem;
}

.pyq-cla-a2 li{
  padding-left: 0.5rem;
  margin-left: 0.425rem;
  border-left: #3fa8bd 1px solid;
  line-height: 2.5rem;
  height: 2.5rem;
  position: relative;
}
.pyq-cla-a2 li::before{
  content: '';
  background-color: #414c93;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 40rem;
  display: block;
  position: absolute;
  top: 1rem;
  left: -0.25rem;
}
.pyq-cla-a2 li a{
  display: block;
  width: 85%;
  float: left;
  font-size: 1rem;
  overflow: hidden;
  height: 1.875rem;
}
.pyq-cla-a2 li i{
  float: right;
  font-size: 0.75rem;
  color: #999;
}
/* 最新列表 */
.pyq-la-d2{
  overflow: hidden;
}
.pyq-la-d2 li{
  display: block;
  overflow: hidden;
}
.pyq-la-d2 li img{
  width: 7.1875rem;
  height: 5rem;
  float: left;
  margin-right: 0.625rem;
  border-radius: 0.25rem;
}
.pyq-la-d2 li a span{
  display: block;
  font-size: 18px;
  font-weight: bold;
}
.pyq-la-d2 li a em{
  display: block;
  overflow: hidden;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  height: 3.75rem;
  color: #666;
}
.pyq-la-d2-a {
  overflow: hidden;
  margin-top: 0.25rem;
}
.pyq-la-d2-a a:nth-child(3){
  display: none;
}
.pyq-la-d2-a a{
  display: block;
  float: right;
  width: 8rem;
  overflow: hidden;
  line-height: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  color: #999;
}
.pyq-la-d2-a i{
  font-size: 0.75rem;
  float: left;
  display: block;
  line-height: 1.5rem;
  color: #999;
}
.pyq-la-d2 li {
  padding: 1rem 0;
  border-bottom: 1px #ebecec solid;
}
/* 最新列表结束 */
/* 分页 */
.pyq-paging ul li{
  display: none;
}
.pyq-paging ul li.next2,.pyq-paging ul li.next1{
  display: block;
  line-height: 2.5rem;
  padding: 0 1.5rem;
  margin:0 0.375rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.pyq-paging ul li.next1{
  background-color: #3fa8bd !important;
}
.pyq-paging ul li.next1 a{
  color: #fff !important;
}
.pyq-paging ul{
  display: flex;
  height: 5rem;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.pyq-paging{
  display: block;
  position: relative;
  width: 110%;
  left: -1rem;
  overflow: hidden;
  background-color: #efefef;
}

/* 分页结束 */
/* label */
/* 内容结束 */
/* 文章 */
.pyq-Nav-a2,.tiem a,.pyq-lm-c5,.pyq-rel{
  display: none;
}
.pyq-b-b2{
  display: block !important;
}
.pyq-b-b{

  line-height: 2.5rem;
  background-color: #efefef;
}
.pyq-b-b em{
  padding-left: 1.5rem;
  background: url(../img/icon_za.png) no-repeat center left;
  background-size: 1.25rem 1.25rem;
}
.pyq-b-b em ,.pyq-b-b a,.pyq-b-b i{
  font-size: 0.875rem;
  color: #999;
}
/* 文章内容 */
.pyq-art-a{
  text-align: center;
  overflow: hidden;
  margin-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ebebeb;
}
.tiem i{
  display: block;
  overflow: hidden;
  margin-top: 0.625rem;
  color: #999;
  font-size: 0.75rem;
}
.pyq-art-b {
  margin-top: 0.625rem;
  overflow: hidden;
  position: relative;
}
.pyq-art-b p:nth-child(1){
  display: none;
}
.pyq-art-b p{
  text-indent: 2em;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: justify;
  margin-bottom: 1rem;
}
.pyq-art-c{
  overflow: hidden;
}
.pyq-art-c p{
  line-height: 1.25rem;
  font-size: 0.75rem;
}
.pyq-art-c p a{
  display: block;
  word-break:break-all
}
.pyq-art-c1 span{
  display: block;
  font-size: 0.875rem;
  float: left;
  margin-top: 0.875rem;
}
.pyq-art-c1 span a{
  overflow: hidden;
}
.pyq-js1{
  position: relative;
  left: -1rem;
  width: 110%;
  height: 1rem;
  background-color: #ecebeb;
  margin: 1.25rem 0;
}
.pyq-js2{
  position: relative;
  left: -1rem;
  width: 110%;
  height: 1rem;
  background-color: #ecebeb;
}
.back_btn{
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  background: url(../img/Slice33.png) no-repeat center center;
  background-size: 1.5rem 1.5rem;
}
/* 文章内容结束 */
/* 最新更新 */
.pyq-rel-a{
  overflow: hidden;
  margin-bottom: 0.625rem;
}
.pyq-rel-a h4{
  float: left;
  color: #3497db;
}
.pyq-rel-a a{
  float: right;
  color: #cacaca;
  font-size: 0.875rem;
}
.pyq-rel-b ul li{
  padding: 0.625rem 0;
  border-bottom: #cecece 1px solid;
}
.pyq-rel-b ul li img{
  border-radius: 0.25rem;
  width: 6.25rem;
  height: 4.0625rem;
  float: right;
  margin-left: 0.625rem;
}
.pyq-rel-b ul li span{
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.125rem;
  height: 1.125rem;
  overflow: hidden;
}
.pyq-rel-b ul li em{
  margin-top: 0.625rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  height: 2.5rem;
  overflow: hidden;
}

/* 最新更新结束 */
/* 文章结束 */
/* 地图 */
.pyq-map-a h4{
  padding-left: 1rem;
  line-height: 2rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px #eeeeee solid;
  position: relative;
}
.pyq-map-a h4::before{
  content: '';
  background-color: #3497db;
  width: 0.25rem;
  height: 1rem;
  border-radius: 40rem;
  display: block;
  position: absolute;
  top: 0.525rem;
  left: 0;
}
.pyq-map-b{
  overflow: hidden;
  margin-bottom: 0.625rem;
}
.pyq-map-b1{
  overflow: hidden;
  border-bottom: #cecece 1px solid;
}
.pyq-map-b ul{
  overflow: hidden;

}
.pyq-map-b ul li{
  float: left;
  line-height: 2rem;
  margin: 0.625rem 1rem 0 0;
  border-radius: 0.25rem;
}
.pyq-map-b1 h4{
  margin-top: 0.5rem;
  line-height: 2.5rem;
  font-size: 1.15rem;
  color: #3497db;
}

.pyq-logo2 .main,.pyq-b-b .pyq-la-c1,.pyq-logo1 .main,.pyq-lm{
  margin-top: 0 !important;
}
/* 地图结束 */
.pyq-top_right{
  display: inherit;
}

.pyq-la-c1 {
	display: flex;
	align-items: center;
}
.pyq-la-c1 h1,.pyq-la-c1 h2{
	font-size:0.75rem;
	color:#999;
	font-weight: normal;
	padding: 0;
	margin: 0;
}
.pyq-art-b h2{
  width: auto !important;
  font-size: 1rem;
}
.pyq-art-b{
  font-size: 0.875rem;
}
.pyq-art-b div span{
  line-height: 1.5rem;
}
article.pyq-art-a{
  margin-top: 0 !important;
  padding: 0 0.5rem;
}
article.pyq-art-a b.tiem{
  width: 100%;
  overflow: hidden;
  display: block;
  font-weight: normal;
  padding-bottom: 0.9375rem;
  border-bottom: #f2f2f2 0.0625rem solid;
  margin-bottom: 0.9375rem;
}
article.pyq-art-a h1{
  margin-bottom: 10px;
  margin-top: 20px;
}
article.pyq-art-a p{
  font-size: 1.125rem;
  line-height: 2rem;
  margin:8px 0;
  text-indent: 2em;
  text-align: justify;
}
article.pyq-art-a h2{
  font-size: 1.125rem;
  line-height: 2rem;
  margin:8px 0;
  text-align: left;
  width: auto !important;
}
article.pyq-art-a ul{
  text-align: left;
}
article.pyq-art-a ul li{
  font-family: '宋体';
  font-size: 12px;
}

article.pyq-art-a .pz{
  white-space: nowrap;
  text-indent: 0 !important;
  font-size: 12px;
  text-overflow: ellipsis;
}
article.pyq-art-a ul:nth-last-child(2){
  font-size: 16px;
  height: auto !important;
  
}
article.pyq-art-a ul:nth-last-child(2) a{
  white-space: nowrap;
  color:#004fff !important
}
article.pyq-art-a ul:nth-last-child(3){
  line-height: 1.5rem;
}

article.pyq-art-a p:last-child{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-indent: 0 !important;
  font-size: 12px;
}