<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.view {
   width: 300px;
   height: 200px;
   margin: 10px;   
   border: 10px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   -webkit-box-shadow: 1px 1px 2px #e6e6e6;
   -moz-box-shadow: 1px 1px 2px #e6e6e6;
   box-shadow: 1px 1px 2px #e6e6e6;
   cursor: default;
   /* background: #fff url(../images/bgimg.jpg) no-repeat center center; */
   border-radius: 10px;
   display:block;
   z-index:20000;
   
}
.view .mask,.view .content {
   width: 300px;
   height: 200px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;  
   display:block;
   cursor:pointer;
   background-color:fucsia;
   z-index:20000;
   -webkit-backface-visibility: hidden;
   -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.view img {
   display: block;
   position: relative;   
   left:0px;
   top:0px;
   z-index:20000;
   width:320px;height:240px;
}

.view h2 
{
   text-shadow:none; 
   text-transform: uppercase;
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 18px;
   padding: 5px;
   background: rgba(0, 0, 0, 0.8);
   margin: 5px 0 0 0;
   z-index:20000;
}
.view p {
   font-size: 14px;
   position: relative;
   color: #fff;
   padding: 5px 10px 10px;
   text-align: center;
   z-index:20000;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 5px 10px;
   background: #000;
   color: #fff;
   font-size:14px;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
   z-index:20000;
}
.view a.info:hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
   z-index:20000;
}</pre></body></html>