@font-face {
  font-family: "iconfont"; /* Project id  */
  src: url('iconfont.ttf?t=1718172726389') format('truetype');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 42px;
	color: #d9d9d9;
	text-align: center;
	line-height: 42px;
	margin-left: 20%;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-jiahaofuhao:before {
  content: "\e63a";
}
.iconfonts{
	font-family: "iconfont" !important;
  font-size: 42px;
	line-height: 50px;
	text-align: center;
	margin-left: 10px;
	color: #56b9bb;
	font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-sousuo:before {
  content: "\e503";
}



		.box{
			font-family: 'Montserrat', sans-serif;
			overflow: hidden;
			position: relative;
		}
		.box:before{
		    content: '';
		    /*background-color: rgba(255,255,255,0.7);*/
			background-color: rgba(255,255,255,0.15);
			border: 3.5px solid #d9d9d9;
		    opacity: 0;
		    position: absolute;
		    left: 0;
		    right: 0;
		    bottom: 0;
		    top: 0;
		    z-index: 1;
		    transition: all 0.3s ease 0.1s;
		}
		.box:hover:before{
		    left: 25%;
		    right: 25%;
		    bottom: 25%;
		    top: 25%;
		    opacity: 1;
		    animation:bounce-left 1s ease-in forwards;
		}
		.box img{
		    width: 100%;
		    height: auto;
		    transition: all 0.3s ease 0s;
		}
		.box:hover img{ transform: scale(1.5); }
		.box .box-content{
		    color: #fff;
		    text-align: center;
		    width: 100%;
		    height: 100%;
		    transform:translateX(-50%) translateY(-50%) scale(1);
		    position: absolute;
		    left: 50%;
		    top: 50%;
		    z-index: 2;
		    transition:all 0.3s ease 0.5s;
		}
		.box .content{
		    opacity: 0;
		    transform:translateX(-50%) translateY(-50%);
		    position: absolute;
		    left:50%;
		    top:50%;
		    z-index: 2;
		    transition:all 0.3s ease 0s;
		}
		.box:hover .content{ opacity: 1; }
		.box .title{
		    color: #d9d9d9;
		    font-size: 20px;
		    font-weight: 600;
		    text-transform: uppercase;
		    transform: translateY(-500px);
		    opacity: 0;
		    transition:all 0.8s ease 0.3s;
		}
		.box .post{
		    color: #000;
		    font-size:15px;
		    font-weight: 500;
		    letter-spacing: 1px;
		    text-transform: capitalize;
		    display: inline-block;
		    margin-bottom: 10px;
		    opacity: 0;
		    transform:translateY(-500px);
		    transition:all 0.8s ease 0.15s;
		}
		.box:hover .title,
		.box:hover .post{
		    opacity: 1;
		    transform:translateY(0);
		}	
		@keyframes bounce-left{
		    25%,50%,75%,100%{ transform:translateX(0); }
		    40%{ transform:translateX(30px); }
		    70%{ transform:translateX(15px); }
		    90%{ transform:translateX(5px); }
		}
		@media only screen and (max-width:990px){
		    .box{ margin-bottom: 30px; }
		}
		@media only screen and (max-width:479px){
		    .box .title{ font-size: 18px; }
		}
