﻿i.iconfont.am-icon-newspaper-o ,i.iconfont.am-icon-bell-o{
    text-indent: 0;
    color: rgb(41,62,134);
    margin-right: 10px;
}

.li_a_img {
	position: relative;
}

.eye {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	background-position: center center;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.eye:hover {
	background-color: rgba(0, 0, 0, 0.6);
	background-image: url(../img/eye.png);
	background-repeat: no-repeat;
	background-position: center 45%;
}

.grid {
	max-width: 80em;
	list-style: none;
	margin: 30px auto;
	padding-left: 2%;
}

.grid li {
	display: block;
	float: left;
	padding-top: 7px;
	padding-bottom: 0px;
	padding: 0px 0px 1px 0px;
	width: 18%;
	opacity: 0;
	background-color: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
	margin: 0 10px 15px 10px;
}

.grid li:hover {
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.lable {
	width: 100%;
	height: auto;
	background-color: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
	display: table;
	padding-bottom: 1em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.lableTitle {
	color: #000;
	font-size: 0.9em;
	margin-top: 0.8em;
}

.am-icon-bookmark {
	color: #7BD86E;
	margin-left: 0.8em;
	margin-right: 0.5em;
}

.lableMenu {
	margin-top: 0.8em;
	padding-left: 0.6em;
}

.lableMenu_item span {
	display: block;
	float: left;
	border: 1px solid #CDCDCD;
	padding: 0.5em 0.7em 0.5em 0.7em;
	border-radius: 2em;
	margin-top: 0.5em;
	font-size: 0.6em;
	cursor: pointer;
	margin: 3px 5px;
	letter-spacing: 0.1em;
}

.lableMenu_item span:hover {
	background-color: #293E86;
	color: #fff;
}

.li1_kb {
	width: 100%;
	height: 15px;
	background-color: #F2F2F2;
	border-top: 1px solid #f3f3f3;
}

@media only screen and (max-width:640px) {
	.li1_kb {
		display: none;
	}
}


/*.grid li img:hover{
	filter:alpha(opacity=70); 
    -webkit-opacity: 0.7;   
    -moz-opacity: 0.7; 
    -ms-opacity:0.7;   
    -o-opacity: 0.7; 
    opacity: 0.7;
}*/

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
	opacity: 1;
}

.grid li a,
.grid li img {
	outline: none;
	display: block;
	border: none;
	max-width: 100%;
	margin: 0 auto;
}


/* Effect 1: opacity */

.grid.effect-1 li.animate {
	-webkit-animation: fadeIn 0.65s ease forwards;
	animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
	0% {}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {}
	100% {
		opacity: 1;
	}
}


/* Effect 2: Move Up */

.grid.effect-2 li.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
	0% {}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes moveUp {
	0% {}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}


/* Effect 3: Scale up */

.grid.effect-3 li.animate {
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: scaleUp 0.65s ease-in-out forwards;
	animation: scaleUp 0.65s ease-in-out forwards;
}

@-webkit-keyframes scaleUp {
	0% {}
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@keyframes scaleUp {
	0% {}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}


/* Effect 4: fall perspective */

.grid.effect-4 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-4 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	-webkit-animation: fallPerspective .8s ease-in-out forwards;
	animation: fallPerspective .8s ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
	0% {}
	100% {
		-webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg);
		opacity: 1;
	}
}

@keyframes fallPerspective {
	0% {}
	100% {
		-webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg);
		transform: translateZ(0px) translateY(0px) rotateX(0deg);
		opacity: 1;
	}
}


/* Effect 5: fly (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */

.grid.effect-5 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-5 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 50% -300px;
	transform-origin: 50% 50% -300px;
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-animation: fly .8s ease-in-out forwards;
	animation: fly .8s ease-in-out forwards;
}

@-webkit-keyframes fly {
	0% {}
	100% {
		-webkit-transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes fly {
	0% {}
	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		opacity: 1;
	}
}


/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */

.grid.effect-6 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-6 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: rotateX(-80deg);
	transform: rotateX(-80deg);
	-webkit-animation: flip .8s ease-in-out forwards;
	animation: flip .8s ease-in-out forwards;
}

@-webkit-keyframes flip {
	0% {}
	100% {
		-webkit-transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes flip {
	0% {}
	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		opacity: 1;
	}
}

.grid.effect-7 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-7 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-animation: helix .8s ease-in-out forwards;
	animation: helix .8s ease-in-out forwards;
}

@-webkit-keyframes helix {
	0% {}
	100% {
		-webkit-transform: rotateY(0deg);
		opacity: 1;
	}
}

@keyframes helix {
	0% {}
	100% {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
		opacity: 1;
	}
}


/* Effect 8:  */

.grid.effect-8 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-8 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-animation: popUp .8s ease-in forwards;
	animation: popUp .8s ease-in forwards;
}

@-webkit-keyframes popUp {
	0% {}
	70% {
		-webkit-transform: scale(1.1);
		opacity: .8;
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}
}

@keyframes popUp {
	0% {}
	70% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: .8;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

.am-icon-area-chart:hover {
	color: #272822;
}

.am-icon-eye:hover {
	color: #272822;
}

.am-icon-thumbs-o-up:hover {
	color: #272822;
}

@media only screen and (min-width: 1403px) {
	.grid {
		padding-left: 0px;
	}
	.grid li {
		max-width: 230px;
	}
}

@media only screen and (min-width: 1201px) and (max-width: 1256px) {
	.grid li {
		width: 17.5%;
	}
}

@media only screen and (min-width:781px) and (max-width: 1200px) {
	.grid li {
		width: 21.5%;
	}
}

@media screen and (min-width: 641px) and (max-width: 780px) {
	.grid li {
		width: 29.5%;
	}
}

@media screen and (min-width: 469px) and (max-width: 640px) {
	.grid li {
		width: 44.5%;
	}
}

@media screen and (min-width: 357px) and (max-width: 468px) {
	.grid li {
		width: 43%;
	}
}

@media screen and (min-width: 321px) and (max-width: 356px) {
	.grid li {
		width: 42.5%;
	}
}

@media screen and (max-width: 320px) {
	.grid {
		width: 93%;
		margin: 1em auto;
		padding: 0px;
	}
	.grid li {
		width: 100%;
		margin-left: 0px;
		margin: 0.2em auto;
	}
	.grid li a img {
		margin: 0px;
		width: 100%;
	}
}


/*
 * 
 * 
 */

.indexTitle {
	height: 70px;
	line-height: 75px;
	font-size: 1.25em;
	background-color: #FFFFFF;
	text-indent: 1.5em;
	background-image: url;
	color: #333;
	border-bottom: 1px solid #eee;
}
.iconfont.icon-keyan {
	font-size: 1.125em!important;
	margin-right: .25em!important;
	color:  #293e86!important
}

.listNews ul.am-g li {
	padding: 0 0!important;
}

.infoCenter ul li .box h2 {
	display: -webkit-box;
	overflow: hidden;
	white-space: normal!important;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 400;
}
.indexTitle a{
	float: right;
	font-size: .625em!important;
	color: #BBBBBB;
	margin-right: 1.75em;
	margin-top: 3px;
}
.indexTitle a:hover{
	color: #293e86
}
.moreInfo{
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../img/more.png);
    margin-left: 4px;
    margin-bottom: -2px;
}
.dataCard .infoCenter{
	border: 10px solid #f5f5f5;
}
.xyywIndex li {
	height: 46px!important;
}
.xyywIndex .noticeTitleIcon{
	margin-bottom:10px;
}
.xyywIndex li ,.xyywIndex li a{
	height: 44px!important;

}
.xyywIndex li a h2{
	font-size: .875em!important;
	font-weight: 400;
	padding-right: 6em;
	padding-left: 28px;
	color: #555;
	line-height: 50px;
}
.xyywIndex li a span{
	position: absolute;
	right: 0;
	top: 0;
	height: 5px;
	line-height: 36px;
	text-align: left;
	margin-right: 10px;
	font-size: .875em;
}
.xyywIndex li a{
	display: block;
	overflow: hidden;
	color: #BBBBBB!important;
}
.xyywIndex li a:hover,.xyywIndex li a:hover h2{
	color: #293e86!important;	
}
.listNews .am-list{
	background-color: #FFFFFF
}
#grid{
	padding: 0;
}
#grid li {
	background-color: #FFFFFF!important;
	padding-bottom:28.1%;
	margin-bottom: 86px;
	overflow: visible;
}
.pin1,.pin3{
	padding-right: 10px;
}
.pin2,.pin4{
	padding-left: 10px;
}
@media only screen  and (min-width: 641px) and (max-width: 1024px) {
	#grid.am-avg-sm-1 li{
	margin-bottom: 90px;
}
}
@media only screen and (max-width: 640px) {
	#grid.am-avg-sm-1 li{
	padding-bottom:56.2%!important;
	margin-bottom: 80px;
}
}
#grid li a{
	display: block;
	height:0;
	padding-bottom:56.2%;
	width: 100%;
	overflow: hidden;
}
#grid li a img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.picFont{
	position: absolute;
	left: 0;
	bottom: 0;
	height: 70px;
	position: relative;
	color: #BBBBBB;
	font-size: .875em!important;
}
.picFont h4{
	font-size: 1em!important;
	color: #333;
	font-weight: 400;
	line-height: 2.5em;
	text-indent: 10px;
}
.picFont .picInfo1{
	position: absolute;
	bottom: 12px;
	left: 10px;
}
.picFont .picInfo3{
	position: absolute;
	bottom: 12px;
	right: 10px;
}
.infoCenter:hover{
	top: 0;
	
}
.listNews ul li:hover {
		margin-top: 0;
}
.video ul.video-box li{
	box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-o-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-ms-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-webkit-transition: ease-in-out .25s;
	-moz-transition: ease-in-out .25s;
	-ms-transition: ease-in-out .25s;
	-o-transition: ease-in-out .25s;
	transition: ease-in-out .25s;
}
.video ul.video-box li:hover{
	background-color: #f9f9f9;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.video .video-news {
    padding-left: 10px;
    padding-right: 10px;
}


.infoCenter ul li .date{
	border-right-color: transparent!important
}
.infoCenter ul li a{
	position: relative;
}
.infoCenter ul li .box {
	padding-top: 0;
	position: absolute;
	top: 50%;
	right:0 ;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.infoCenter ul li .box h2{
	font-size: .875em;
}
.infoCenter ul li .date h3{
	font-size: 1.625em
}
.infoCenter ul li .date span{
	font-size: .75em
}
.infoCenter ul li{
	height: 96px;
}
.infoCenter ul li .date{
	margin-top: 0;
	position: absolute;
	top: 50%;
	left:0 ;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.infoCenter ul li .date h3{
	margin-top: -8px;
}
.infoCenter.xyywIndex ul{
	padding-bottom: 36px;
}
.infoCenter ul li{
	height: 92px;
}
.video a.vMovies{
	margin: 0;
}


.picFont{
	box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-o-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-ms-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
}
.border1{
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
}
.border2{
	height: 3px;
	margin-right: 6px;
	margin-left: 6px;
}
.picFont,.border1,.border2{
	box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-o-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-ms-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.12);
	-webkit-transition: ease-in-out .25s;
	-moz-transition: ease-in-out .25s;
	-ms-transition: ease-in-out .25s;
	-o-transition: ease-in-out .25s;
	transition: ease-in-out .25s;
}
.pin:hover .border2{
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.pin:hover .eye{
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url(../img/eye.png);
    background-repeat: no-repeat;
    background-position: center 45%;
}
