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

			#wrap{/* # id选择器*/
				width: 1440px;/*宽度*/
				position:relative;
				margin: 33px auto 100px;/*上下40px 左右自动(居中)*/
			}
			#wrap ul li{
				position:relative;/*相对定位属性:参考物*/
				list-style:none;/*去除前面的小黑圆点*/
				width: 33.33%;
				height:272px;
				/* background: #0a2552; */
				float:left;/*左浮动:与父元素的左端对齐依次往右端显示，显示不下再换行接着往右端依次显示*/
			}
			#wrap ul li div.img{
				width: 96%;
				height:272px;
				overflow:hidden;/*超出隐藏*/
				background: #0a2552;
			}
			#wrap ul li img{
				-webkit-transition:1s linear;/*兼容谷歌内核浏览器*/
				-moz-transition:1s linear;/*兼容火狐内核浏览器*/
				-ms-transition:1s linear;/*兼容IE内核浏览器*/
				-o-transition:1s linear;/*兼容欧朋内核浏览器*/
				transition:1s linear;/*css3动画过渡:1秒钟之内实现过渡  匀速过渡*/
				opacity: 0.45;
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
			#wrap ul li img:hover{/*鼠标移上去实现什么效果*/
				-webkit-transform:scale(1.2);
				-moz-transform:scale(1.2);
				-ms-transform:scale(1.2);
				-o-transform:scale(1.2);
				transform:scale(1.2);/*css3的变换:缩放*/
				opacity: 1;
			}
			
			#wrap ul li span{ display:block; width:99px; height:99px; position:absolute; left:50%; top:50%; margin-left:-50px;
				 background:url(../images/sun.png) center no-repeat; opacity:0; visibility:hidden; margin-top:-50px;
				-webkit-transition: 0.8s; -moz-transition: 0.8s; -ms-transition: 0.8s; -o-transition: 0.8s; transition: 0.8s;}
			#wrap ul li span i{ display:block; width:25px; height:25px; background:url(../images/loa.png) center no-repeat;
				 position:absolute; left:50%; top:50%; margin-left:-12px; margin-top:-12px;}
			#wrap ul li:before{ content:""; width:0; height:3px; background:#e56724; position:absolute; left:50%; bottom:0;
				-webkit-transition: 0.9s; -moz-transition: 0.9s; -ms-transition: 0.9s; -o-transition: 0.9s; transition: 0.9s;}
			#wrap ul li:hover span{ visibility:visible; opacity:1;}
			
			
/*文字弹现*/
.tanxian li{margin-left: 0px;margin-top:20px;}
.hot{
		position:absolute;
		bottom: 0px;
		left: 0px;
		text-align: left;
		width: 96%;
		background: #04040445;
		padding: 1% 4%;
		}
	.hot a:hover{color: #FFEB3B;}		
.hot h1 a{ font-size:26px; color:#fff; text-align:center;}
.hot p a{font-size: 14px;color:#fff;/* text-align:center; */margin-top:5px;display:block;}