@charset "UTF-8";
/* CSS Document */

.colorbg {
	clear:both;
	background-color: #fff;
}
.colorbg01 {
	clear:both;
	background-color:rgba(180,200,225,.4);
}
.web_none {
	display: none;
}
/*幻灯样式*/
.slider-container {
  position: relative;
  height: 480px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
 overflow:hidden;
}


.slider-control {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  opacity: 1;
  font-family: "FontAwesome";
  z-index:200;
}
.slider-control:before {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	font-size: 5rem;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	filter: alpha(opacity=0);
	-ms-transition: opacity 0.2s ease-out;
}
.slider-control.inactive:hover {
  cursor: auto;
}
.slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}
.slider-control.left {
  left: 0;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
}
.slider-control.left:before{
	left:15%;
	content: "\f104";
}
.slider-control.right {
  right: 0;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
}
.slider-control.right:before{
	left:inherit;
	right:15%;
	content: "\f105";
}
.slider-control:hover.left:before, .slider-control:hover.right:before {
	opacity: 1;
	filter: alpha(opacity=100);
}
.slider-pagi {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0;
  list-style-type: none;
  z-index:200;
}
.slider-pagi__elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .9rem;
  height: .9rem;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.slider {
  z-index: 1;
  position: relative;
  height: 100%;
  z-index:100; 
}
.slider.animating {
  -webkit-transition: -webkit-transform 0.5s;
          transition: transform 0.5s;
  will-change: transform;
}
.slider.animating .slide__bg {
  -webkit-transition: -webkit-transform 0.5s;
          transition: transform 0.5s;
  will-change: transform;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide.active .slide__overlay,
.slide.active .slide__text {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.slide__bg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  will-change: transform;
}
.slide:nth-child(1) {
  left: 0;
}
.slide:nth-child(1) .slide__bg {
  left: 0;
}
.slide:nth-child(2) {
  left: 100%;
}
.slide:nth-child(2) .slide__bg {
  left: -50%;
}
.slide:nth-child(3) {
  left: 200%;
}
.slide:nth-child(3) .slide__bg {
  left: -100%;
}
.slide:nth-child(4) {
  left: 300%;
}
.slide:nth-child(4) .slide__bg {
  left: -150%;
}
.slide:nth-child(5) {
  left: 400%;
}
.slide:nth-child(5) .slide__bg {
  left: -200%;
}
.slide:nth-child(6) {
  left: 500%;
}
.slide:nth-child(6) .slide__bg {
  left: -250%;
}
.slide:nth-child(7) {
  left: 600%;
}
.slide:nth-child(7) .slide__bg {
  left: -300%;
}
.slide:nth-child(8) {
  left: 700%;
}
.slide:nth-child(8) .slide__bg {
  left: -350%;
}
.slide:nth-child(9) {
  left: 800%;
}
.slide:nth-child(9) .slide__bg {
  left: -400%;
}
@media all and (max-width: 1199px) {

.slider-container {
  height: 420px;
}
.slider-pagi{
	bottom:2rem;
}
.slider-control, .slider-control:before{
	opacity:1;
}
.slider-pagi__elem{
	width: 1rem;
    height: 1rem;
    margin: 0 0.2rem;
}
.slider-pagi__elem:before {
  width: .5rem;
  height: .5rem;
}
.slider-control.left, .slider-control.right{
	  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
}
@media screen and (max-width: 1023px){

.slider-container {
  height: 380px;
}
.slider-pagi{
	bottom:1.5rem;
}
.slider-control.left, .slider-control.right{
	  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
}
@media screen and (max-width: 767px) {
.slider-control{
	display:none;
}
.sliderbg{
	height:40px;
}
.slider-container {
  height: 300px;
}
.slider-pagi{
	bottom:1rem;
}

}
/**---end---/
/*滚动*/
.owl-carousel .item{
	width:100%;
		transition: 0.5s all;
		-webkit-transition: 0.5s all;
		-moz-transition: 0.5s all;
		-o-transition: 0.5s all;
		
}
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init*/
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
	clear: both;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
	height:320px;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-buttons {
	display: block;
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	line-height: 10px;
	height: 8px;
}
/* fix*/
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper, .owl-carousel .owl-item img{
	width:100%;
}
.owl-theme .owl-controls {
	margin: -25px 0 0 0;
	text-align: center;
	
}
/* Clickable class fix problem with hover on touch devices*//* Use it for non-touch hover action*/
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}
/* preloading images*/
.owl-item.loading {
	max-height: 150px;
	background: url(../images/AjaxLoader.gif) no-repeat center center
}
.owl-controls .owl-buttons .owl-prev, .owl-controls .owl-buttons .owl-next {
	position: absolute;
	text-indent: -9999px;	
	top:50%;
	margin-top:-25px;
	left: 0;
	width: 25px;
	height: 40px;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;

}
.owl-controls .owl-buttons .owl-next {
	left:auto;
	right: 0;
}
.owl-controls .owl-buttons .owl-prev:hover, .owl-controls .owl-buttons .owl-next:hover {
	background-color:rgba(40,160,230,.8);
}
/* Styling Pagination*/
.owl-controls .owl-pagination {
	display: inline-block;
	position:relative;
}
.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
*display: inline;/*IE7 life-saver*/

}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0px 3px;
	filter: Alpha(Opacity=90);/*IE7 fix*/
	opacity: 0.9;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background: #2298d6;
}
/* If PaginationNumbers is true*/
.owl-theme .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
/*-----end----*/
/*-----搜索-----*/
.sb-search {
	float:right;
	margin-top:38px;
}
.searchMeme-container {
	width: 20%;
}
.searchMeme-container div {
	margin: 0;
	padding: 0;
}
.searchMeme-button-icon {
	width:100%;
	height:100%;
}
.searchMeme-button-icon:after{
	color:#fff;
	width:100%;
	line-height:3rem;
	display:block;
	padding:0;
	font-size:1.2rem;
	text-align:center;
	content:'\f002';
	font-family:FontAwesome;
}

.searchMeme-water-mark {
	filter: alpha(opacity=80); /* Netscape */
	-moz-opacity: 0.8; /* Safari 1.x */
	-khtml-opacity: 0.8; /* Good browsers */
	opacity: 0.8;
}

.green-normal {
	background: #fa4444; 
}
.green-hover {
	background: #d92525; 
}
.searchMeme-input-right input {
	width: 210px;
	background-color: #fff;
	border: none;
	height:3rem;
	line-height:3rem;
	z-index: 1;
	padding: 0 1rem;
	-webkit-border-radius:4px;
	border-radius: 4px;
	margin-top: 0px;
	font-size:1rem;
}
.searchMeme-input-right {
	float: right;
	width: 210px;
	overflow: hidden;
	position:relative;
	right:-10px;
	z-index:10
}
.searchMeme-button-right {
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	float: right;
    position:relative;
	z-index:20;
}
.searchMeme-round-right {
	-webkit-border-radius:4px;
	border-radius: 4px;
}

/*----搜索结束----*/

/*----中间样式----*/
.pagecont{
	background:url(../images/bg.png) top center no-repeat;
	background-size: cover
}
.pagecontsub{
	width:100%;
	height:100%;
	display:table;
	background:url(../images/subbg.png) bottom center no-repeat;
	background-size: cover
}
.newsbox{
	width:100%;
	display:table;
	padding:4rem 0 2rem 0;
}
.newsbox01{
	display:inherit;
}
.newsbox .title{
	clear:both;
	width:100%;
	display:table;
	padding:0 0 2rem 0;
}
.newsbox .title .more{
	float:right;
	font-size:1.2rem;
}
.newsbox .newsleft{
	float:left;
	width:70%;
}
.newsbox .newsleft .infoimg{
	text-align:center;
	font-size:1.1rem;
}
.newsbox .newsleft .infoimg .img{
	height:260px;
	overflow:hidden;
}
.newsbox .newsleft .infoimg .font{
	height:4rem;
	background:#fff;
	line-height:4rem;
	overflow:hidden;
}
.newsbox .newsleft .infoimg .font a, .newsbox .title .more a{
	color:#0062ac;
}
.newsbox .newsleft .c6:first-child{
	padding-left:0;
}
.newsbox .newsleft .c6:last-child{
	padding-right:0;
}
.newsbox .newsright{
	float:right;
	width:30%;
	padding-left:2rem;
}
.newsbox .newsright01{
	float:none;
	width:100%;
	padding-left:0;
}
.newsbox .newsright ul li{	
	clear:both;
	margin-bottom:1.4rem;
	display:table;
	width:100%;
	height:100%;
    position: relative;
}
.newsbox .newsright .time{
	float:left;
	width:4.5rem;
	background:#fff;
	height:4.6rem;
	text-align:center;
}
.newsbox .newsright .time p{
	padding:0;
	line-height:2.3rem;
	margin:0;
	font-size:.875rem;
}
.newsbox .newsright .time p:first-child{
	background:#0062ac;
	color:#fff;
	font-size:1.2rem;
	font-weight:bold;
}
.newsbox .newsright .font{
	margin-left:4.5rem;
	padding-left:1rem;
	font-size:1.1rem;
	line-height:200%;
	display: table-cell;
    vertical-align: middle;
	text-align:left;
}
.newsbox .newsright .font a {
    position: relative;
}
.newsbox .newsright .font01{
	margin-left:4.5rem;
	padding-left:1rem;
	
}
.newsbox .newsright .font01 h6{
	height:1.5rem;
	padding-top:.1rem;
	overflow:hidden;
	font-size:1.1rem;
}
.newsbox .newsright .font01 p{
	font-size:.85rem;
	line-height:160%;
	padding-top:.4rem;
}
.newsbox .sliderother{
	padding-left:2rem;
}
/*----中间结束----*/

/*----底部样式----*/
.footerbox{
	clear:both;
	width:100%;
	height:auto;
	background:#042141;
	z-index:100;
	padding-top:3rem;
	color: rgba(255,255,255,.6);
}

.footerbox .footlogo{
	padding-top:40px;
}
.footerbox .footlogo img{
	width:80%;
	opacity:.6
}
.footerbox .footlink{
	margin:0 auto;
	position:relative;
	border-left:1px solid rgba(255,255,255,.1);
	padding-left:80px;
	padding-top:.5rem
	
}
.footerbox .footlink a{
	margin:0 1rem 0 0;
	color: rgba(255,255,255,.8);
}
.footerbox .fontrelfont{
	padding-top:1rem;
}
.footerbox .fontrelwei{
	width:100px;
	float:right;
	text-align:center;
	padding-bottom:1rem;
}

.footerbox .copyright{
	width:100%;
	display:table;
	clear:both;
	line-height:5rem;
	border-top:1px solid rgba(255,255,255,.1);
}
.footerbox a{
	color: rgba(255,255,255,.6);
	text-decoration:underline
}
/*----底部结束----*/

/*--子页样式--*/
.subsilde{
	width:100%;
	height:340px;
	background:url(../images/banner.jpg) center no-repeat;
	background-size:cover;
	position:relative
}
.subLnav{
	float:left;
	width:22%;
	background:#fff;
	position:relative;
	top:-10rem;
}
.subLnav .title{
	width:100%;
	height:10rem;
	background:#042141;
	color:#FFF;
	padding: 1rem 2rem;
}
.subLnav .title h4{
	color:#fff;
	font-size:2.1rem;
	padding-top:1rem;
}
.subLnav .title h4 i{
	float:right;
	font-size:1.5rem;
	padding-top:.8rem
}
.subLnav .title P{
	line-height:160%;
}

.subLnav ul li{
	width:100%;
	padding:1rem 2rem;
	border-bottom:1px solid #e7e7e7;
	font-size:1.1rem;
	position:relative;
}
.subLnav ul li:last-child{
	border:0;
}
.subLnav ul li a{
	width:100%;
	height:100%;
	display:inline-block
}
.subLnav ul li a:after{
	position:absolute;
	color:#ccc;
	right:2rem;
	top:1.1rem;
	display:block;
	padding:0;
	font-size:1.2rem;
	text-align:center;
	content:'\f105';
	font-family:FontAwesome;
}
.subLnav ul li:hover{
	color: #0062ac;
	background:#edf7ff;
}
.subLnav ul li:hover a{
	color: #0062ac;
}
.subLnav ul li.active{
	background:#2f5782;
}
.subLnav ul li.active a{
	color:#fff;
}
.Rcontbox{
	float:right;
	width:73%;
	padding:2rem 0 3rem 0;
}
.Rcontbox .position{
	float:right;
	padding:.25rem 0;
	font-size:.875rem;
	text-align: right;
}
.Rcontbox .aboutcont{
	padding-top:.5rem;
	font-size:1.1rem;
}
.subnavmob {
    width: 100%;
    height: 3.5rem;
    background: rgba(0,0,0,.8);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
	padding:0 .5rem;
}
.subnavfloat{
	display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-scroll-snap-type: mandatory;
}
.subnavfloat .fontbox{
	display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
	width:auto;
	margin:0 .6rem;
	padding:0 .1rem;
	text-align:left;
	font-size: 1rem;
    color: #fff;
	height:3.5rem;
    
}
.subnavfloat .fontbox a{
	display:inline-block;
	 color: #fff;
	 height:3.4rem;
	 overflow:hidden;
	 line-height: 3.4rem;
}
.subnavfloat .fontbox.active{
	 border-bottom:2px solid #488cc3;
}
.subnavfloat .fontbox.active a{
	color: #7dbaec;
}
.Rcontbox .showcont{
	margin:0 -1rem;
}
.Rcontbox .showcont .showbox{
	float:left;
	width:50%;
	padding:1rem;
}
.Rcontbox .showcont .showbox .img{
	height:260px;
	overflow:hidden;
}
.Rcontbox .showcont .showbox .font{
	background:#fff;
	text-align:center;
	line-height:4rem;
	height:4rem;
	overflow: hidden;
	padding:0 1rem;
	font-size:1.1rem;
}

.map{
	height:450px;
	overflow:hidden;
	background-image:inherit;
}

#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;}


.supportul{	
  clear:both;
}
.supportul li{
	width:100%;
	line-height:300%;
	font-size:1.1rem;
	position:relative;
    padding-left:1rem
}
.subnewsbox .supportul li:before, .relevan ul li:before{
	font-family:'FontAwesome';
	 content: "\f105";
	 padding-right:8px;
	 color:#ccc;
	 padding-left:.2rem;
	 position:absolute;
	 left:0;
	 
}
.subnewsbox .supportul li span{
	float:right;
	color:#aaa;
}
.subnewsbox .supportul li span a{
	color:#0059b2;
}

.Newcontbox{
	padding:1rem 0;
}
.Newcontbox .position{
	padding:.25rem 0;
	font-size:.875rem;
}
.Newcontbox .boxcont {
	padding: 1rem 0;
	font-size:1.2rem;
	line-height:240%;
}
.Newcontbox .boxcont p{
	line-height:240%;
}
.Newcontbox .info_s {
	line-height: 200%;
	text-align: center;
	color: #b4b4b4;
	font-size: .875rem;
	padding-top:1rem
}
.Newcontbox .tag {
	padding: 1rem 0;
	color: #BFBFBF;
	font-size:.875rem;
	line-height:200%;
	text-align: right;
}
.Newcontbox .tag a {
	color: #BFBFBF;
}
.Newcontbox .tag span {
	margin-right: .5rem;
}
.relevan{
	clear:both;
	width:100%;
	display:table;
	padding:2rem 0;
}
.relevan h2{
	margin-bottom:1rem;
}
.relevan ul li{
	float:left;
	width:50%;
	border-bottom:1px dashed #ccc;
	line-height:300%;
	padding:0 1rem;
	font-size:1.1rem
}
.subnewsbox .supportul01{
	padding-top:1rem;
}
.subnewsbox .supportul01 li {
	width: 100%;
	clear:both;
	margin-bottom: 2rem;
}
.subnewsbox .supportul01 li:last-child{
	margin-bottom:0;
}
.subnewsbox .supportul01 .twobox, .subnewsbox .supportul01 .fourbox {
    background: #fff;
    width: 100%;
    height: 11rem;
	position:relative;
}
.subnewsbox .supportul01 .twobox .img {
    float: left;
    width: 18rem;
    height: 100%;
    overflow: hidden;
}
.subnewsbox .supportul01 .twobox .img img{
	width:100%;
}
.subnewsbox .supportul01 .twobox .cont{
    margin-left: 18rem;
	padding:1rem 2.5%;
	position:relative;
	height:100%;
}
.subnewsbox .supportul01 .twobox .cont p, .subnewsbox .supportul01 .fourbox .cont p {
    font-size: .913rem;
    line-height: 200%;
    height:3.5rem;
    overflow: hidden;
}
.subnewsbox .supportul01 .twobox .font, .subnewsbox .supportul01 .fourbox .font {
	width:93%;
	line-height:3rem;
	font-size: .913rem;
	color: #9d9d9d;
	position:absolute;
	bottom:0;
    border-top: 1px solid #dedfe3;
}
.subnewsbox .supportul01 h6{
	font-size:1.3rem;
    padding:.5rem 0;
}
.supportul01 .fourbox{
	padding:1rem 2.5%;
}
.subnewsbox .supportul01 .fourbox .font{
	width:95%;
}