.view {
   width: 98.8%;
   height: 200px;
   border: 2px solid #57CA4C;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
}
.view .mask, .view .content {
   width: 100%;
   height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
.view .info {
   display: inline-block;
   padding:0;
   width:20px;
   height:20px;
   opacity: 0;
   color: #57CA4C;
   font-size: 22px;
}


.effect .mask {
   opacity: 0;
   overflow:visible;
   border:100px solid rgba(255,255,255,0.7);
   -moz-box-sizing:border-box;
   -webkit-box-sizing:border-box;
   box-sizing:border-box;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}
.effect .info {
   position:relative;
   top:-10px;
   opacity: 0;
   -webkit-transition: opacity 0.5s 0s ease-in-out;
   -moz-transition: opacity 0.5s 0s ease-in-out;
   -o-transition: opacity 0.5s 0s ease-in-out;
   -ms-transition: opacity 0.5s 0s ease-in-out;
   transition: opacity 0.5s 0s ease-in-out;
}
.effect:hover .mask {
   opacity: 1;
   border:100px solid rgba(255,255,255,0.7);
}
.effect:hover .info {
	opacity:1;
	-moz-transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.effect img {
   opacity:1;
   -moz-transform:scale(1,1);
   -webkit-transform:scale(1,1);
   -o-transform:scale(1,1);
   -ms-transform:scale(1,1);
   transform:scale(1,1);
   -webkit-transition: all 0.2s ease-in;
   -moz-transition: all 0.2s ease-in;
   -o-transition: all 0.2s ease-in;
   -ms-transition: all 0.2s ease-in;
   transition: all 0.2s ease-in;
}

.effect:hover img {
   opacity:0.7;
   -moz-transform:scale(2,2);
   -webkit-transform:scale(2,2);
   -o-transform:scale(2,2);
   -ms-transform:scale(2,2);
   transform:scale(2,2);
}

@media screen and (max-width: 320px) {
.view {
   width: 98.8%;
   height: 195px;
   border: 2px solid #57CA4C;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
   }
.view .mask, .view .content {
   width: 100%;
   height: 195px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   }
}
@media screen and (min-width: 480px) and (max-width: 568px) {
.view {
   width: 98.8%;
   height: 350px;
   border: 2px solid #57CA4C;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
   }
.view .mask, .view .content {
   width: 100%;
   height: 350px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   }
}
@media screen and (min-width: 569px) and (max-width: 767px) {
.view {
   width: 98.8%;
   height: 125px;
   border: 2px solid #57CA4C;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
   }
.view .mask, .view .content {
   width: 100%;
   height: 125px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
.view {
   width: 98.8%;
   height: 145px;
   border: 2px solid #57CA4C;
   overflow: hidden;
   position: relative;
   text-align: center;
   cursor: default;
   }
.view .mask, .view .content {
   width: 100%;
   height: 145px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   }
}