﻿@charset "utf-8";
html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	height: 100%;
	background: #F2F2F2;
}
body {
	line-height: 1.5;
	font-size: 14px;
	position: relative;
	min-height: 100vh;
}
blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ol, ul {
	list-style: none
}
a {
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}
a, a:hover, a:focus, a:active, a:visited {
	text-decoration: none;
}
a:active, a:hover {
	outline: 0
}
a:hover {
	color: #fff;
}
body, button, input, select, textarea {
	font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
	font-smoothing: antialiased
}
b, strong {
	font-weight: 700
}
em, i, cite {
	font-style: normal
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
table td, table th {
	border: 1px solid #ddd;
	padding: 5px
}
table th {
	font-weight: inherit;
	border-bottom-width: 2px;
	border-bottom-color: #ccc
}
img {
	border: 0 none;
	max-width: 100%;
	vertical-align: center;
	height: auto
}
button, input, select, textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	vertical-align: baseline
}
button, html input[type=button], input[type=reset], input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer
}
button[disabled], input[disabled] {
	cursor: default
}
input[type=checkbox], input[type=radio] {
	box-sizing: border-box;
	padding: 0
}
input[type=search] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
input[type=search]::-webkit-search-decoration {
-webkit-appearance: none
}
input:focus {
	outline: 0
}
select[multiple], select[size], select[size][multiple] {
	border: 1px solid #aaa;
	padding: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block
}
audio, canvas, progress, video {
	display: inline-block
}
input::-webkit-input-speech-button {
display: none
}
button, input, textarea {
	-webkit-tap-highlight-color: transparent
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}
.clearfix {
	zoom: 1
}
.fl {
	float: left
}
.fr {
	float: right
}
dd, dl, dt, li, ol, ul {
	list-style: none
}
.typography-ellipsis {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.typography-clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.5;
	max-height: 3em;
	word-wrap: break-word;
	word-break: break-all;
	overflow: hidden;
	-webkit-line-clamp: 2;
}
h1 > .typography-clamp, h2 > .typography-clamp, h3 > .typography-clamp, h4 > .typography-clamp, h5 > .typography-clamp, h6 > .typography-clamp, .h1 > .typography-clamp, .h2 > .typography-clamp, .h3 > .typography-clamp, .h4 > .typography-clamp, .h5 > .typography-clamp, .h6 > .typography-clamp {
	line-height: 1.5;
	max-height: 3em;
}
.layout-flex-container {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.layout-flex-container > .layout-flex-item {
	-webkit-box-flex: initial;
	-moz-box-flex: initial;
	-ms-flex: auto;
	-webkit-flex: auto;
	flex: auto;
}
.layout-flex-container.layout-flex-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}
.layout-flex-container.layout-flex-vertical {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-box-orient: vertical;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.layout-flex-container.layout-flex-vertical > .layout-flex-item {
	-webkit-box-flex: 1;
}
.layout-flex-container.layout-flex-justify-start {
	-webkit-box-pack: start;
	-webkit-justify-content: start;
	-ms-flex-pack: start;
	justify-content: start;
}
.layout-flex-container.layout-flex-justify-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.layout-flex-container.layout-flex-justify-end {
	-webkit-box-pack: end;
	-webkit-justify-content: end;
	-ms-flex-pack: end;
	justify-content: end;
}
.layout-flex-container.layout-flex-justify-space-between {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.layout-flex-container.layout-flex-justify-space-around {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.layout-flex-container.layout-flex-align-start {
	-webkit-box-align: start;
	-webkit-align-items: start;
	-ms-flex-align: start;
	-ms-grid-row-align: start;
	align-items: start;
}
.layout-flex-container.layout-flex-align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}
.layout-flex-container.layout-flex-align-end {
	-webkit-box-align: end;
	-webkit-align-items: end;
	-ms-flex-align: end;
	-ms-grid-row-align: end;
	align-items: end;
}
.typography-ellipsis {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.two-clamp {
	display: -webkit-box;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.three-clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	overflow: hidden;
}
.layout-vertical-center {
	vertical-align: middle;
}
.poiner {
	cursor: pointer;
}
.common-tab {
	padding-bottom: 30px;
}
.common-tab li {
	color: #666666;
	font-size: 18px;
}
.active {
	color: red !important;
}
.common-tab-item {
	display: none;
}
.header-top, .header-bottom, .header-bottom-second, .content-container {
	width: 1200px;
	margin: 0 auto;
}
.content-container {
	padding-bottom: 200px;
}
.header-top {
	display: flex;
}
.header-top-container a {
	color: #FFFFFF;
}
.header-top-container a:hover {
	color: #FFFFFF;
	font-weight: 700;
}
.header-top-container {
	background: red;
}
.header-top > .header-nav {
	background-color: rgba(0, 0, 0, 0) !important;
}
.header-top > .header-nav > li > a {
	background-color: rgba(0, 0, 0, 0) !important;
	font-size: 18px;
}
.header-top > a > .header-logo {
	width: 180px;
	height: 50px;
	margin-top: 10px;
	margin-right: 50px;
}
.active {
	font-weight: 700;
}
.header-bottom .header-nav li:hover::after, .header-bottom .header-nav li.active::after {
content: '';
display: block;
position: absolute;
bottom: -6px;
right: 40%;
margin-right: 6px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 6px solid #1F1F1F;
}
.header-bottom-container {
	background: #ffffff;
}
.header-bottom-container ul li a {
	color: #333333;
}
.header-bottom-container .header-nav {
	background-color: rgba(0, 0, 0, 0);
}
.header-nav {
	position: relative;
	padding: 20px 20px;
	font-size: 14px;
	background-color: #393d49;
	color: #fff;
	border-radius: 2px;
	box-sizing: border-box;
}
.header-nav .header-nav-item {
	position: relative;
	display: inline-block;
}
.header-nav .header-nav-item a {
	display: block;
-webkit-transition: all .3s;
}
.header-nav .header-nav-child a:hover {
	background-color: #f6f6f6;
	color: rgba(0, 0, 0, .8)
}
.header-top-actived {
	font-weight: 700 !important;
}
.header-top-actived::after {
content: '';
display: block;
position: absolute;
bottom: -4px;
right: 30%;
margin-right: -5px;
width: 50%;
border-bottom: 3px solid #fff;
}
.header-nav .header-nav-item a {
	padding: 0 25px;
}
.content-title {
	background-image: url("../images/img_title.png");
	background-repeat: no-repeat;
	min-height: 45px;
	min-width: 162px;
	font-size: 20px;
	color: #FFFFFF;
	padding-left: 10px;
}
.content-title > img {
	width: 26px;
	vertical-align: middle;
}
.content-title > span {
	line-height: 2;
}
.zhibo-date {
	color: red;
	font-size: 16px;
}
.zhibo-date span {
	color: red;
	font-size: 16px;
}
.zhibo-date::before {
content: '';
display: inline-block;
width: 8px;
transform: skewX(-25deg);
height: 16px;
background: red;
margin-right: 10px;
}
.ztqh {
	margin-left: auto;
	margin-top: 20px;
}
.qhzt {
	display: flex;
	border: solid 1px #fff;
	border-radius: 15px;
	width: 60px;
	justify-content: space-between;
}
.qhzt a {
	width: 26px;
	height: 26px;
	display: inline-block;
	text-align: center;
	line-height: 26px;
	font-size: 12px;
	color: #fff;
}
.qhzt a:nth-of-type(1) {
border-radius: 50%;
}
.qhzt a:nth-of-type(2) {
border-radius: 50%;
}
.footer_fixed {
	position: fixed;
	right: 2%;
	bottom: 25%;
	display: block;
	z-index: 49;
}
.footer_fixed > p {
	width: 54px;
	height: 54px;
	background: #FFFFFF;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px 0;
	cursor: pointer;
}
.footer_fixed #fanhui_ding {
	display: none;
}
.footer_fixed p:hover {
	background: red;
}
.footer_fixed p:hover img {
	display: none;
}
.footer_fixed p:hover span {
	display: block;
}
.footer_fixed p span {
	display: none;
	color: #fff;
}
.footer_fixed > .shuaxin {
	background: url(../images/sx.png) no-repeat;
	background-size: 100% 100%;
margin-top: .4rem;
}
.footer_fixed > .fanding {
	background: url(../images/zd.png) no-repeat;
	background-size: 100% 100%;
	display: none;
}
footer {
	background: #333333;
	padding: 15px 0;
	box-sizing: border-box;
	position: absolute;
/*	bottom: 0;*/
	width: 100%;
	height: 150px;
}
footer > p {
	font-size: 12px;
	color: #777777;
	text-align: center;
	line-height: 30px;
}

footer > p  a{
	color: #777777;
}




footer > hr {
	border: 1px solid #4A4949;
	margin: 10px auto;
	width: 1200px;
}
.footer_za {
	display: flex;
	align-items: center;
	margin: 0 auto;
	width: 500px;
	justify-content: center;
}
.footer_za a {
	color: #777777;
}
.footer_za a:hover {
	color: #eeeeee;
}
.gy_position_tit {
	width: 1230px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	line-height: 40px;
	color: #333;
	font-size: 12px;
}
.gy_position_tit > li, .gy_position_tit > li a {
	font-size: 12px;
	color: #999999;
}
.gy_position_tit > li:last-child {
	color: #666666;
}
.ep-pages {
padding: .2rem .2rem;
	clear: both;
	text-align: center;
	vertical-align: top;
	overflow: hidden;
	margin: 20px;
}
.ep-pages a {
	font-size: 14px;
	color: red;
}
.pagination li,.pagination>a {
	display: inline-block;
margin: 0 .03rem;
}
.pagination li,.pagination>a {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	background: #fff;
	border: 1px solid #ededed;
	overflow: hidden;
	vertical-align: top;
	margin: 0 0 0 5px;
	min-width: 15px
}
.pagination li.active,.pagination>b {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	background: red;
	border: 1px solid red;
	color: #fff;
	border-radius: 4px;
}
.pagination li.active a ,.pagination>a.active{
	color: #fff
}
.pagination {
	text-align: center;
	display: inline-block;
}


.fenye ul li,.fenye li>a {
	display: inline-block;
margin: 0 .03rem;
}
.fenye ul li,.fenye ul>a {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	background: #fff;
	border: 1px solid #ededed;
	overflow: hidden;
	vertical-align: top;
	margin: 0 0 0 5px;
	min-width: 15px
}
.fenye ul li.active,.fenye ul>b {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding: 0 10px;
	background: red;
	border: 1px solid red;
	color: #fff;
	border-radius: 4px;
}
.fenye ul li.active a ,.fenye ul>a.active{
	color: #fff
}
.fenye ul {
	text-align: center;
	/*display: inline-block;*/
}

.fenye {
    margin: 15px 0;
}


.gy_big_no {
	width: 272px;
	height: 162px;
	margin: 0 auto;
	background: url(../images/no-content.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	margin-top: 30px;
}
.gy_big_no::after {
content: '暂无相关数据';
position: absolute;
bottom: -40px;
left: 35%;
}
.gy_small_no {
	width: 190px;
	height: 113px;
	margin: 0 auto;
	background: url(../images/no-content.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	margin-top: 30px;
	margin-bottom: 30px;
	display: block;
}
.gy_small_no::after {
content: '暂无相关数据';
position: absolute;
bottom: -20px;
left: 30%;
}
.clock-d {
	animation: clockD 1s infinite !important;
}
@keyframes clockD {
0% {
color: transparent;
}
40% {
color: #ee564f;
}
80% {
color: #ee564f;
}
100% {
color: transparent;
}
}
.bifeng_xq_lan em {
	display: block
}
.bifeng_xq_lan {
	display: none;
	position: absolute;
	z-index: 1000;
	background: #fff;
	width: 345px;
	height: 103px;
	-webkit-box-shadow: 0 0 10px rgba(233, 214, 208, .5);
	-moz-box-shadow: 0 0 10px rgba(233, 214, 208, .5);
	box-shadow: 0 0 10px rgba(233, 214, 208, .5);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-left: -122px;
	top: 50px;
	left: -19px
}
.bifeng_xq_lan li {
	line-height: 20px
}
.bf_bj_jt {
	position: absolute;
	top: -5px;
	left: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: -7px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #adcae8
}
.chang_lan_bt {
	height: 28px;
	line-height: 28px;
	background: #adcae8;
	moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	padding-left: 139px;
	width: 100%;
	box-sizing: border-box
}
.chang_lan_bt {
	height: 28px;
	line-height: 28px;
	background: #adcae8;
	moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	padding-left: 139px
}
.chang_lan_bt tt {
	color: #fff;
	font-size: 14px;
	width: 39px;
	text-align: center;
	float: left
}
.bifen_lan_xs span {
	color: #333;
	font-size: 14px;
	width: 39px;
	text-align: center;
	float: left;
	line-height: 30px;
	font-weight: 500
}
.bifen_lan_xs span.dw_name {
	width: 129px;
	text-align: left;
	padding-left: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.bifen_lan_xs span.dw_name {
	width: 129px;
	text-align: left;
	padding-left: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}
.bs_vs_bifen_new_ack {
	cursor: pointer
}
.bs_vs_bifen_new_ack:hover > .bifeng_xq_lan {
	display: block;
	cursor: pointer
}
.zhibo_list_re {
	border: 1px solid #dfebf9;
	border-left: none;
	border-right: none;
	background: linear-gradient(to right, #f9fbfe, #cde4fb, #f4f9fe) !important;
}
.nodatalb{text-align:center;padding:20px 0 20px}
.nodatalb cite{display:block;text-align:center;color:#333333;padding-top:5px}

.azure-btkj {
    background-image: url(../images/img_title.png);
    background-repeat: no-repeat;
    min-height: 45px;
    min-width: 162px;
    font-size: 20px;
    color: #fff;
    padding-left: 20px;
}.azure-btkj > span {
    line-height: 35px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 115px;
    display: inline-block;
}
.azure-gjc {
	width: 100%;
	background: #fff;
	margin-top: 20px;
	border-radius: 10px;
}
.azure-gjc .azure-gjc-tb {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.azure-gjc .azure-gjc-tb a {
	font-size: 12px;
	color: #666666;
	margin-right: 10px;
}
.azure-gjc ul {
	padding: 10px 10px;
}
.azure-gjc ul li {
	margin-bottom: 25px;
	float: left;
	margin-right: 15px;
}
.azure-gjc ul li a {
	color: #333333;
	padding: 8px 15px;
	border: 1px solid #ffb5b5;
	border-radius: 6px;
	background: #fef3f4;
}

.zq-lx-header2 img{height:25px;}
.content-bottom-right {
	width: 28%;
	background: #FFFFFF !important;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0);
}
.remen-team {
	border-radius: 10px;
	background: #FFFFFF;
	/* margin-top: 20px; */
}
.remen-team-title {
	border-bottom: solid 1px red;
	margin-left: 10px;
}
.remen-team-title div {
	font-size: 18px;
	color: #FFFFFF;
	background: red;
	width: 134px;
	padding: 6px 5px;
}
.remen-team-title img {
	width: 20px;
	height: 18px;
	vertical-align: middle;
}
.remen-team-tab {
	display: flex;
	padding: 10px 20px;
}
.remen-team-tab li {
	cursor: pointer;
}
.remen-team-tab li:nth-child(1) {
margin-right: 30px;
}
.remen-team-tab li span {
	font-size: 14px;
	font-weight: 700;
}
.remen-team-list {
	border-bottom: dashed 1px #EEEEEE;
	padding: 10px 30px 0 15px;
}
.remen-team-list:nth-last-child(1) {
border: none;
}
.remen-team-list .team-fenlei {
	padding: 10px;
	background: #909091;
	border-radius: 5px;
	color: #fff;
	display: inline;
}
.remen-team-list .team-fenlei a {
	color: #fff;
}
.remen-team-list .team-name {
	display: inline;
}
.remen-team-list .team-name a {
	padding: 10px 5px;
	display: inline-block;
	color: red;
	font-weight: 700;
}
.remen-team .remen-team-tab li.active::after {
content: '';
display: block;
position: absolute;
/*bottom: 0;*/
width: 30px;
border-bottom: 3px solid red;
padding-bottom: 5px;
}

.zq-zhibo-list-top{
	margin-bottom: 20px;
}



.zhuanti{
    background-color: #fff;
    margin-top: 55px;
}

.zhuanti ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 0 10px;
}

.zhuanti ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.zhuanti ul li .pic-1 {
    width: 100%;
    /* height: 128px; */
    overflow: hidden;
}
.zhuanti ul li .pic-1 img{
    width: 100%;
    /*height: 128px; */
}

.zhuanti ul li .tit {
    font-size: 18px;
    padding: 5px 0;
    font-weight: 500;
}


.zc_nrong {
    width: 100%;
  padding: 10px;
      box-sizing: border-box;
  /*max-height: auto !important;*/
}

.image-container {
  float: left;
  margin-right: 20px;
}
.image-container img{
  height: 200px;
}

.text-container {
  font-size: 18px;
  line-height: 35px;
  text-align: left;
}

.text {
  text-indent: 2em;
}

.zhankaiall {
  display: none;
}

.jianjie {
  color: red;
}



.zc_nrong ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.zc_nrong ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.zc_nrong ul li .pic-1 {
    width: 100%;
    /* height: 128px; */
    overflow: hidden;
}

.zc_nrong ul li .pic-1 img{
    width: 100%;
    /*height: 128px; */
}


.zc_nrong ul li .tit {
    font-size: 14px;
    padding: 5px 0;
}

/*展开切换回pc*/
.zc_nrong_modified ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.zc_nrong_modified ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.zc_nrong_modified ul li .pic-1 {
    width: 100%;
    /* height: 128px; */
    overflow: hidden;
}

.zc_nrong_modified ul li .pic-1 img{
    width: 100%;
    /*height: 128px; */
}


.zc_nrong_modified ul li .tit {
    font-size: 14px;
    padding: 5px 0;
}



.saishi_item .qiudui {
    padding: 0px;
}

.saishi_item .qiudui .qiudui_item {
    width: 23%;
    margin: 1%;
    display: flex;
    justify-content: space-between;
}

.saishi_item .qiudui .qiudui_item .pic-1 {
    width: 50px;
    height: 50px;
    background: #F5F7F9;
    padding: 7px;
}

.saishi_item .qiudui .qiudui_item .pic-1 img {
    width: 50px;
    height: 50px;
}

.saishi_item .qiudui .qiudui_item .title {
    width: calc(100% - 74px);
    text-align: left;
}



.saishi_item .qiudui .qiudui_item .title p {
    font-weight: 600;
    color: #000;
    /*line-height: 2;*/
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saishi_item .qiudui .qiudui_item .title .t2 {
    font-size: 14px;
    color: #656565;
    font-weight: 400;
    padding-top: 10px;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}


.citiao_list{
    padding: 0 10px;
}

.citiao_list span a {
    font-size: 14px;
    line-height: 27px;
     color: #333;
}

.article_content{
    padding:0 15px;
}

.article_content .article_tit {
    font-size: 22px;
    font-weight: 600;
    line-height: 2;
    color: #333;
}

.article_content .article_info {
    font-size: 14px;
    color: #666;
    padding: 10px 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}


.article_content .article_info a {
    color: #666;
}


.image_box {
    text-align: center;
}

.image_box img {
    max-width: 500px;
}

.nr {
    text-indent: 2em;
    line-height: 30px;
    font-size: 16px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
