@charset "utf-8";
ul {
    margin: 0;
    padding: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/* 鼠标箭头 */

.jiantou {
    cursor: default;
}


/* 背景主体颜色 */

body {
    background-color: #fff;
    color: #666;
    font-size: 16px;
}
.bg-huise{
    background-color: #f4f4f4;
}
.bg-baise{
    background-color: #fff;
}
a {
    font-size: 14px;
    color: #666;
}

a:hover {
    color: #0452ae;
}

pre{
	border: none;
	background: none;
	font-family: 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
}
/* 图片对齐 */

img {
    vertical-align: middle;
}

i {
    display: inline-block;
    vertical-align: middle;
}

p {
    font-size: 14px;
    color: #888;
    line-height: 22px;
}


/* h1logo */

h1 {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
}


/* h2轮播图 */

h2 {
    font-size: 16px;
}


/* h3模块分隔 */

h3 {
    font-size: 38px;
    font-weight: 700;
    color: #0452ae;
}


/* h4盒子 */

h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}


/* h5段落*/

h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}


/* h6自定义 */

h6 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}


/* 单一版心媒体查询修改最大最小宽度 */

/* .container {
    
}*/
@media (min-width: 1250px) {
    .container {
        width: 1200px;
        padding: 0;
        margin: auto;
        max-width: 1200px;
    }
}


@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
} 

.shenglue {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.shenglue2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.shenglue3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.shenglue4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.shenglue5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}
.pic {
    position: relative;
    overflow: hidden;
	display: block
}
.pic img {
    object-fit: cover;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.pic:hover img {
    -webkit-transform: scale(1.08, 1.08);
    -ms-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

figure:hover figcaption{
    background-color: #0452ae;
    border-color: #0452ae;
    color: #fff;
}
/* 公共部分样式开始 */

.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.head_t {
    position: relative;
    height: 5px;
    background-color: #1a75d3;
}

.head_tx {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: #e50012;
}

.head_c {
    display: flex;
    padding: 0 55px;
    height: 115px;
    justify-content: space-between;
}

.head_clbox {
    display: flex;
}

.head_clogo {
    display: flex;
    align-items: center;
}

.head_cnav {
    margin-left: 90px;
    display: flex;
}

.head_cnav_item {
    position: relative;
    display: flex;
    align-items: center;
}

.head_cnav_itemxl {
    display: none;
    position: absolute;
    top: 115px;
    left: -20px;
    width: calc(100% + 40px);
    /* height: 300px; */
    background-color: rgba(0, 0, 0, 0.9);
}

.head_cnav_item .head_cnav_itema {
    height: 100%;
    line-height: 115px;
    padding: 0 4px;
    margin: 0 20px;
    font-size: 16px;
    color: #333333;
    position: relative;
}

.head_itemxl_item {
    display: block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.head_itemxl_item:hover {
    color: #fff;
    background-color: #da1515;
}

.head_cnav_itemx {
    position: absolute;
    width: 100%;
    bottom: 36px;
    left: 0;
    height: 2px;
    background-color: #da1515;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
}

.head_cnav_item:hover .head_cnav_itemx {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.head_rlx {
    position: relative;
    display: flex;
    align-items: center;
}


/* 搜索 */

.head_csousuo {
    display: none;
    position: absolute;
	right: 25%;
    bottom: 37%;
}

.head_csousuobox {
    display: flex;
	background: #eee;
    border-radius: 20px;
	overflow: hidden
}

.head_csousuoboxk {
    border: 0;
	background: #eee;
	padding: 0 10px 0 20px;
/*    border-bottom: 1px solid #d4d4d4;*/
}

.head_csousuoboxt {
    width: 60px;
    height: 35px;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    background-color: #0452ae;
    color: #fff;
    font-size: 14px;
}
.head_csousuoboxt:hover{
	background-color: #e50012
}

.head_csousuoboxk::-webkit-input-placeholder {
    color: #888;
    font-size: 14px;
}

.head_csousuoboxk::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #888;
    font-size: 14px;
}

.head_csousuoboxk:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #888;
    font-size: 14px;
}

.head_csousuoboxk:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #888;
    font-size: 14px;
}


.head_rlxsou i,
.head_rlxtel i {
    font-size: 22px;
    color: #999;
    cursor: pointer;
}
.head_rlxsou{
	padding: 20px 20px;
	cursor: pointer;
}
.head_rlxtel {
    padding:20px 10px 20px 10px;
    display: flex;
    align-items: center;
}
.head_rlxtel span{
    font-size: 20px;
    font-weight: 600;
    color: #e50012;
}
.head_rlxtel.hlx i {
    font-size: 26px;
    margin: 0 12px;
}
.head_wechat {
    display: none;
    position: absolute;
    right: 0;
    top: 75%;
}
.head_wechat img{
    max-width: 130px;
}
.head_rlxqy {
    overflow: hidden;
    width: 100px;
    height: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    line-height: 28px;
    text-align: center;
    color: #e50012;
    margin-left: 10px;
    font-weight: 700;
}
.head_rlxqy:hover,
.head_rlxqy.active{
    background-color: #e50012;
    color: #fff;
}

.head_rlxqyi{
    display: none;
}

.hvr-sweep-to-right.head_rlxqy:before {
    background-color: #0452ae;
}

.head_rlxsou i:hover,
.head_rlxtel i:hover {
    color: #0452ae;
}
.head_rlxsou.active i{
	color: #0452ae;
}

.head_zw {
    height: 120px;
}

/* 底部 */

.foot {
    /* margin-top: 20px; */
}

.footls {
    height: 10px;
    background-color: #1f7fdf;
}

.foott {
    padding: 80px 0 95px;
    background-color: #222222;
}

.foott_box {
    display: flex;
}

.foott_box>div {
    width: 50%;
    display: flex;
}

.foott_boxl_item {
    width: 40%;
    margin-right: 10%;
}

.foott_boxl_itemtitle {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.foott_boxl_nav {
    position: relative;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.foott_boxl_navdw {
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 40px;
    background-color: #da1515;
}

.foott_boxl_navbox {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.foott_boxl_navitem {
    margin-top: 12px;
    width: 50%;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.foott_boxl_navitem:hover {
    color: #fff;
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
}

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

.foott_boxrlh {
    font-size: 20px;
    color: #fff;
}

.foott_boxrlp {
    margin-top: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 15px;
}

.foott_boxrlqt i {
    margin-right: 10px;
    font-size: 20px;
    color: #999;
    vertical-align: middle;
}

.foott_boxrlqt b {
    font-size: 14px;
    color: #999;
    vertical-align: middle;
}

.foott_boxrlqt strong {
    display: inline-block;
    font-size: 14px;
    color: #999;
    vertical-align: middle;
    font-weight: 400;
    margin-top: 3px;
    padding-left: 3px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.foott_boxrlqt strong:hover {
    color: #fff;
}

.foott_boxrlqt span {
    font-size: 28px;
    color: #da1515;
    vertical-align: middle;
	margin-left: 5px;
}

.foott_boxrr {
    padding: 10px;
    background-color: #fff;
}
.foott_boxrr img{
	width: 145px;
	height: 145px;
}
.foott_boxrr p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 6px;
}

.footb {
    background-color: #222222;
}

.footb_box {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
}

.footb_boxl {
    display: flex;
}

.footb_boxlbq {
    font-size: 14px;
    color: #555;
}

.footb_boxlba {
    font-size: 14px;
    color: #555;
}

.footb_boxlba a {
    font-size: 14px;
    color: #555;
	margin: 0 5px;
}

.footb_boxlba a:hover {
    color: #fff;
}

.footb_boxlr span {
    font-size: 14px;
    color: #555;
}

.footb_boxlr a {
    font-size: 14px;
    color: #555;
}

.footb_boxlr a:hover {
    color: #fff;
}

.mb_btn {
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mb_btn i {
    font-size: 24px;
    color: #222;
}

.mb_hlogo {
    display: none;
}

.mb_btn {
    display: none;
}

/*内页顶部通栏*/
.mbanner{
	position: relative;
	text-align: center;
	height: 300px;
	display: flex;
	align-items: center;
		
}
.mbanner:after{
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	left: 0;
}
.mbanner .container{
	position: relative;
	z-index: 9
}
.mbanner h2{
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 20px
}
.mbanner p{
	font-size: 14px;
	color: rgba(255,255,255,0.50);
	margin-bottom: 50px
}
.mbanner p:before,
.mbanner p:after{
	content: '';
	width: 100px;
	height: 1px;
	display: inline-block;
	background: rgba(255,255,255,0.50);
	position: relative;
	top: -3px;
	margin: 0 15px
}

.position{
	position: relative;
	top: -60px;
}
.position .posi01{
	height: 60PX;
	line-height: 60px;
	padding:0 30px;
	background: rgba(4,82,174,0.9); 
	border-radius: 5px 5px 0 0;
}
.position .posi01 i{
	color: #FFFFFF;
	font-size: 13px;
	margin-right: 3px;
}
.position .posi01 span i{
	padding: 0 15px 0 20px;
	color: rgba(255,255,255,0.3);
}
.position .posi01 a{
	color: rgba(255,255,255,0.8);
}

.flex{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	-webkit-box-pack: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/*position2*/
.position02{
	background: #0452ae;
	height: 80px;
	line-height: 80px;
}
.position02 h2{
	line-height: unset;
}
.position02 .posi01>i{
	color: rgba(255,255,255,1.00);
	margin-right: 2px;
	font-size: 13px
}
.position02 .container span i{
	font-size: 12px;
	 padding: 0 10px 0 12px;
	 color: rgba(255,255,255,0.30);
}
.position02 .container h2{
	color: rgba(255,255,255,1.00);
	font-size: 22px;
}
.position02 .container a{
	color: rgba(255,255,255,0.80);
}
.position02 .container a:hover{
	color: rgba(255,255,255,1);
}

/*分页*/
.fenye{
	padding-bottom: 50px;
	border-bottom: 1px solid #eee;
	margin-bottom: 50px;
}

.pages{
	clear: both;
	text-align: center
}
.pages:after {
	content: '.';
	clear: both;
	height: 0;
	line-height: 0;
	display: block;
	visibility: hidden;
}
.pages span{
	margin: 0 3px
}
.pages span:first-child i{
	transform:rotateY(180deg);
	-ms-transform:rotateY(180deg); 	/* IE 9 */
	-moz-transform:rotateY(180deg); 	/* Firefox */
	-webkit-transform:rotateY(180deg); /* Safari 和 Chrome */
	-o-transform:rotateY(180deg); 	/* Opera */
}
.pages a{
	border: 1px solid #ddd;
	font-size: 14px;
	padding: 10px 16px;
	color: #666;
	
}
.pages span:first-child a,
.pages span:last-child a{
	padding: 10px 25px;
	margin: 0 10px
}
.pages span i {
	font-size: 30px
}

.pages a.nolink{
	color: #bbb;
	border: 1px solid #eee;
}
.pages .current a{
    background: #e50012;
    border-color: #e50012;
	color: #fff;
}

/* 资讯 */

.zixun {
    padding-bottom: 80px;
}

.zixunbox_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.zixunbox_title_l{
  font-size: 22px;
  font-weight: 600;
  color: #111;  
}
.zixunbox_title_l span {
    
    
}

.zixunbox_title_l em {
    color: #0051a3;
}

.zixunbox_title_l b {
    font-size: 13px;
    color: #999999;
    margin-left: 10px;
}

.zixunbox_title_r a {
    font-size: 14px;
    color: #777;
}

.zixunbox_title_r a:hover {
    color: #0452ae;
}

.zixunbox_xt {
    position: relative;
    margin-top: 12px;
    border-top: 1px solid #e1e1e1;
    background-color: #f4f4f4;
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.baise-bg{
    background-color: #fff;
    border: 1px solid #eee;
    border-top: 1px solid #e1e1e1;
}

.zixunbox_xt .zixunbox_xtdw {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 1px;
    background-color: #0050a2;
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
}

.zixunbox_xt>div {
    width: 50%;
}

.zixunbox_xtl .zixunbox_xtla {
    padding: 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.zixunbox_xtlaimg {
    width: 42%;
    overflow: hidden;
}

.zixunbox_xtlaimg img {
    width: 100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.zixunbox_xtlatxt {
    width: 58%;
    padding-left: 25px;
}

.zixunbox_xtlatxth {
    color: #333;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zixunbox_xtlatxtp {
    margin-top: 15px;
    font-size: 13px;
    line-height: 20px;
    color: #999999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.zixunbox_xtlatxtsj {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.zixunbox_xtlatxtsjs {
    font-size: 13px;
    color: #999;
}

.zixunbox_xtlatxtsjy {
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border: 1px solid #dcdcdc;
}
.zixunbox_xtlatxtsjy:hover{
    background-color: #0452ae;
    border-color: #0452ae;
}
.zixunbox_xtlatxtsjy:hover i{
    color: #fff;
}

.zixunbox_xtla {
    border-right: 1px dashed #c3c3c3;
}

.zixunbox_xtla:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.zixunbox_xtla:hover .zixunbox_xtlatxth {
    color: #0452ae;
}

.zixunbox_xtlatxtsjy:hover {
    color: #0452ae;
}

.zixunbox_xtr {
    width: 50%;
    padding: 0 40px;
}

.zixunbox_xtr .zixunbox_xtr_item {
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.zixunbox_xtr .zixunbox_xtr_item:last-of-type{
    margin-bottom: 0;
}

.zixunbox_xtr .zixunbox_xtr_item:hover span {
    padding-left: 8px;
    color: #0452ae;
}

.zixunbox_xtr_item span {
    width: 80%;
    font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;

}

.zixunbox_xtr_item b {
    text-align: right;
    width: 20%;
    font-size: 13px;
    color: #999;
}

/* 标题 */
.jkdl_t {
    margin: auto;
    margin-top: 50px;
    width: 400px;
    height: 40px;
    position: relative;
    border: 1px solid #cccccc;
}

.jkdl_tt {
    position: absolute;
    left: 50%;
    top: 0;
    padding: 0 10px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: #fff;
    white-space: nowrap;
}

.jkdl_tt span {
    font-size: 38px;
    color: #333333;
    vertical-align: middle;
}

.jkdl_tt b {
    font-weight: 600;
    font-size: 38px;
    color: #0452ae;
    vertical-align: middle;
}

.jkdl_tt s {
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    background-color: #333333;
}
.jkdl_tb {
    position: absolute;
    left: 50%;
    bottom: 0;
    padding: 0 10px;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    background-color: #fff;
    white-space: nowrap;
    font-size: 13px;
    color: #888888;
}
/* 上下页 */

.cpxqct_sy,
.cpxqct_xy {
    margin-top: 23px;
    /* border: 1px solid #eeeeee; */
    background-color: #fff;
    height: 60px;
    line-height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.cpxqct_xy {
    margin-top: 10px;
}

.cpxqct_sy_l,
.cpxqct_xy_l {
    width: 90%;
    padding: 0 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cpxqct_sy_l b,
.cpxqct_xy_l b {
    font-size: 14px;
    color: #999;
}

.cpxqct_sy_l span,
.cpxqct_xy_l span {
    font-size: 14px;
    color: #333333;
}

.cpxqct_sy_l span.nolink{
    color: #777;
}

.cpxqct_sy .cpxqct_sy_r,
.cpxqct_xy .cpxqct_xy_r {
    width: 10%;
    text-align: center;
    /* background-color: #eeeeee; */
    border-left: 1px solid #eee;
}
.cpxqct_sy .cpxqct_sy_r:hover,
.cpxqct_xy .cpxqct_xy_r:hover{
    background-color: #0452ae;
}

.cpxqct_sy_r i,
.cpxqct_xy_r i {
    color: #cfcfcf;
}

.cpxqct_sy_l:hover span,
.cpxqct_xy_l:hover span {
    color:#0452ae;
}

.cpxqct_sy .cpxqct_sy_r:hover i,
.cpxqct_xy .cpxqct_xy_r:hover i {
    color: #fff;
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 2;
    padding: 10px;
    white-space: normal;
    color: #ccc;
    background-color: rgba(4,82,174,.88);
    font-family: sans-serif;
}

button:focus{
    outline: none;
}


.tag{
	padding: 50px 0;
}
.tag .biaoqian{
	padding: 50px;
	background-color: #fff;
}
.headnav li.active{
	background-color: unset
}

.tag .biaoqian a{
	display: inline-block;
	color: #333;
	background: #eee;
	padding: 5px 10px;
	line-height: 1;
	margin: 5px;
	margin-bottom: 10px;
}
.tag .biaoqian a:hover{
	background: #0452ae;
	color: #fff;
}
@media screen and (max-width: 1700px) {
    .head_cnav_item .head_cnav_itema{
        margin:0 16px;
    }
}

@media screen and (max-width: 1200px) {
    .zixunbox_xtl .zixunbox_xtla {
        padding: 0 20px;
    }
    .zixunbox_xtlatxt {
        padding-left: 10px;
    }
    .zixunbox_xtlatxtp {
        margin-top: 6px;
    }
    .zixunbox_xtlatxtsj {
        margin-top: 0;
    }
    .zixunbox_xtr .zixunbox_xtr_item {
        margin-bottom: 6px;
    }
    .head_rlxqyi{
        display: none;
    }
    .head_rlxqyi i{
        font-size: 22px;
    }
    
}

@media screen and (max-width: 992px) {
    /* .head_rlxqyi{
        display: block;
        margin-right: 20px;
        margin-left: 30px;
    } */
    .head_rlxqy{
        /* display: none; */
        margin-right: 20px;
        margin-left: 30px;
    }
    .head_wechat {
        right: auto;
        top: 80%;
    }
    .zixunbox_xt {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .zixunbox_xt>div {
        width: 100%;
    }
    .zixunbox_xt {
        padding: 40px 0;
    }
    .zixunbox_xtr {
        margin-top: 15px;
    }
    .zixunbox_xtlatxtp {
        margin-top: 20px;
    }
    .zixunbox_xtlatxtsj {
        margin-top: 54px;
    }
    .zixunbox_xtla {
        border-right: 0;
        border-bottom: 1px dashed #c3c3c3;
    }
    .zixunbox_xtl .zixunbox_xtla {
        padding: 0 30px 15px;
    }
    .zixunbox_xtr {
        padding: 0 30px;
    }
    .zixunbox_xtr .zixunbox_xtr_item {
        margin-bottom: 10px;
    }
    .zixunbox_title_r a{
        font-size: 13px;
    }
    .jkdl_t {
        margin-top: 70px;
    }
    .jkdl_b {
        margin-top: 40px;
    }

    .tag{
        padding: 30px 15px;
    }
    .tag .biaoqian{
        padding:30px  20px;
    }


}

@media screen and (max-width: 768px) {
    .head_rlxqy{
        /* display: none; */
        margin-right: 20px;
        margin-left: 30px;
        font-size: 12px;
        font-weight: normal;
        width: auto;
        padding: 0 15px;
        height: 26px;
        line-height: 24px;
    }
    .head_wechat {
        right: auto;
        top: 80%;
    }
    .zixunbox_title_l{
        font-size: 18px;
    }
    .zixunbox_title {
        padding: 0 15px;
    }
    .nyxgfa .zixunbox_title {
        padding: 0;
    }
    .zixunbox_xt .zixunbox_xtdw{
        left: 15px;
    }
    .zixunbox_xtl .zixunbox_xtla {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .zixunbox_xtlaimg {
        width: 100%;
    }
    .zixunbox_xtlatxt {
        width: 100%;
    }
    .zixunbox_xtlatxt {
        margin-top: 20px;
    }
    .zixunbox_xtlatxt {
        padding-left: 0;
    }
    .zixunbox_xtlatxtp {
        margin-top: 5px;
    }
    .zixunbox_xtlatxtsj {
        margin-top: 20px;
    }
    .zixunbox_xtl .zixunbox_xtla {
        padding: 0 15px 30px;
    }
    .zixunbox_xtr {
        padding: 0 15px;
    }
    .zixunbox_xtr {
        margin-top: 30px;
    }
    .shiping_list_itemimgdw img{
        max-width: 70%;
        margin: auto;
    }
    .pages a:first-child, .pages a:last-child{
        font-weight: 100;
    }
	.position02 .container h2{
		width: 30%;
    }
    .position02 .container h2{
        font-size: 18px;
    }
    .position02 .container a{
        font-size: 12px;
    }
    .position02 .posi01>i{
        font-size: 12px;
    }
	.position02 .container .posi01{
		width: 65%;
		display: flex;
		flex-direction: row;
		white-space: nowrap;
		flex-wrap: nowrap;
		overflow: scroll;
    }
    .jkdl_t {
        margin-top: 60px;
		height: 35px
    }
    .jkdl_t {
        width: 90%;
    }
    .jkdl_tt span,
    .jkdl_tt b {
        font-size: 26px;
    }
    .jkdl_tb {
        font-size: 12px;
    }
    .jkdl_b {
        margin-top: 35px;
        flex-wrap: wrap;
    }
    .jkdl_b>div {
        width: 100%;
    }
    .zixunbox_xtr_item span{
        width: 70%;
    }
    .zixunbox_xtr_item b{
        width: 28%;
    }
}

@media screen and (max-width: 1600px) {
    .head_c{
        padding: 0 30px;
    }
    .head_cnav {
        margin-left: 50px;
    }
    .head_cnav_item .head_cnav_itema {
        margin: 0 15px;
    }
}
@media screen and (max-width: 1500px) {
    .head_c{
        padding: 0 30px;
    }
    .head_cnav {
        margin-left: 40px;
    }
    .head_cnav_item .head_cnav_itema {
        margin: 0 10px;
    }
    .head_rlxtel span{
        font-size:18px;
    }
}
@media screen and (max-width: 1400px) {
    .head_c {
        padding: 0 10px;
    }
    .head_cnav {
        margin-left: 20px;
    }
    .head_rlxtel i {
        margin: 0 10px;
    }
    .head_cnav_item .head_cnav_itema {
        margin: 0 10px;
    }
    .head_rlxtel span{
        font-size: 18px;
    }
    .pc_hlogo{
        max-width:85%;
    }
    .head_rlxtel {
      display:none;
    }
}
@media screen and (max-width: 1300px) {
    .head_c {
        padding: 0 15px;
    }
    .head_csousuo{
        right: 50%;
    }
    .head_cnav {
        margin-left: 30px;
    }
    .head_rlxtel{
        padding-right: 0;
    }
    .head_rlxtel i {
        margin: 0;
    }
    .head_rlxtel{
        display: none;
    }
    .head_cnav_item .head_cnav_itema {
        margin: 0 10px;
    }
}


@media screen and (max-width: 1200px) {
	.head_clogo{
		max-width: 280px;
	}
	.head_rlxtel {
		padding: 0 0 0 10px;
	}
    .head_cnav {
        margin-left: 30px;
    }
    /* .head_rlxsou {
        display: none;
    } */
    .head_cnav_item .head_cnav_itema {
        margin: 0 8px;
    }
    .head_rlxsou{
        padding: 20px 10px;
    }
    .foott_boxl>div:first-child {
        display: none;
    }
    .foott_box>div:first-child {
        width: 30%;
    }
    .foott_boxl_item {
        width: 100%;
    }
    .foott_box>div:last-child {
        margin-left: 10%;
        width: 60%;
    }
    .foott {
        padding: 60px 0 75px;
    }
}
@media screen and (max-width: 1100px) {
    .head_rlxtel {
		padding: 0 0 0 10px;
	}
    .head_cnav {
        margin-left: 22px;
    }
    /* .head_rlxsou {
        display: none;
    } */
    .head_cnav_item .head_cnav_itema {
        margin: 0 5px;
    }
}
@media screen and (max-width: 992px) {
    .head_rlxsou,
    .head_rlxtel{
        display: none;
    }
    .mb_btn {
        display: flex;
    }
    .head_cnav {
        display: none;
    }
    .head_t {
        display: none;
    }
    .head_c {
        height: 86px;
    }
    .head_zw {
        height: 86px;
    }
    .foott {
        padding: 50px 0 65px;
    }
	.foott_box{
        display: block;
        padding: 15px;
	}
    .foott_boxl_item{
        margin-right: 0;
    }
    .foott_box>div:first-child {
/*        display: none;*/
		width: 100%;
		padding: 20px 0 50px;
    }
    .foott_box>div:last-child {
        width: 100%;
        margin-left: 0;
    }
    .footb_box {
        flex-wrap: wrap;
        padding: 15px 0 70px;
    }
    .footb_box>div {
        width: 100%;
    }
	.footb_boxlr{
		display: none;
	}
	.footb_boxl {
        flex-wrap: wrap;
    }
    .footb_boxl>div {
        width: 100%;
        text-align: center;
    }
	.footb_boxl>div:nth-child(3),
	.footb_boxl>div:nth-child(4){
		display: none;
	}
	
	.fenye {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
	.pages a {
		padding: 6px 12px;
	}
	.pages span{
		margin: 0
	}
	.pages span:first-child a, 
	.pages span:last-child a{
		padding: 6px 15px;
    	margin: 0 5px;
	}
	.pages span i{
		font-size: 20px;
	}

}

@media screen and (max-width: 768px) {
    .head_c {
        height: 72px;
    }
    .head_zw {
        height: 72px;
    }
    .pc_hlogo {
        display: none;
    }
    .mb_hlogo {
        display: block;
    }
	.foot{
		margin-top: 0
	}
    .foott {
        padding: 30px 0 40px;
    }
    .foott_boxrr {
        display: none;
    }
    .foott_boxrl {
        width: 100%;
    }
    .foott_boxrlp {
        margin-top: 0;
        margin-bottom: 10px;
    }
	.mbanner{
		height: 200px
	}
	.mbanner h2{
		font-size: 22px;
		margin-bottom: 10px
	}
	.mbanner p:before,
	.mbanner p:after{
		width: 50px;
	}
	.position .posi01 i,
	.position .posi01 a{
		font-size: 12px;
	}
	.position .posi01 span i{
		padding: 0 5px 0 10px;
	}
	.mbanner p{
		margin-bottom: 40px;
	}
	.position{
		top: -50px;
	}
	.position .posi01{
		height: 50PX;
		line-height: 50px;
		padding:0 20px;
	}
	.zixun{
        margin-bottom: 0;
        padding-bottom: 50px;
	}
}


/* 侧边展开导航 */

.a_txt {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 10000
}

.a_txt .div1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    filter: alpha(opacity=0);
    opacity: 0;
    left: 0px;
    top: 0px;
    z-index: 1
}

.a_txt .div2 {
    position: absolute;
    width: 20%;
    left: 0px;
    top: 5%;
    z-index: 100;
    text-align: center;
    filter: alpha(opacity=0);
    opacity: 0
}

.a_txt .div3 {
    position: absolute;
    width: 80%;
    right: 0px;
    top: 0px;
    background:rgba(0,0,0,0.8);
    height: 100%;
    z-index: 100;
    right: -80%
}

.a_txt .div3 ul {
    padding-left: 5%;
    padding-right: 5%
}

.a_txt .div3 ul li {
    border-bottom: 1px solid #232530;
}

.mblink_item {
    display: flex;
}

.mblink_itema {
    height: 45px;
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 16px;
    color: #fff;
	padding-left: 5%;
}

.mblink_itemi {
    height: 45px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mblink_itemi.on:before{
	content: "\e728";
}

.a_txt2 {
    display: none;
    padding: 3% 8% 5%;
    border-top: 1px solid rgba(255,255,255,.1);
}

.a_txt2 a {
    font-size: 13px;
    display: block;
    height: 35px;
    line-height: 40px;
    color: rgba(255, 255, 255, .5);
}
.a_txt2 a i{
	font-size: 12px;
	margin-right: 5px;
	color: #e50012
}

.a_closed i{
    margin: auto;
	font-size: 30px;
	color: #fff
}
.haed_gq{
    display: flex;
    justify-content: center;
    align-items: center;
}
.haed_gq>a{
    display:block;
    width:40px;
    height:40px;
   text-align:center;
   line-height:40px;
   font-size:14px;
   color:#222;
   border-radius:20px;
   padding:0;
}