.gallery-title{
    height: 30px;
    line-height: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
}
.gallery-title span{
    font-size: 16px;
    font-weight: bolder;
}
.gallery-title form{
    float: right;
}
.gallery-title form input[type='text']{
    width: 250px;
    height: 28px;
    font-size: 15px;
    line-height: 28px;
    color: #a9a9a9;
    outline: none;
    border: 1px solid #ccc;
    padding-left: 5px;
}
.gallery-title form input[type='text']:focus{
    border: 1px solid #005caa;
}
.gallery-title form input[type='submit']{
    width: 52px;
    height: 30px;
    font-size: 15px;
    color: #FFF;
    background: #005caa;
    border: 0;
    outline: 0;    
    margin-left: -5px;
}
.vote-gallery li{
    float: left;
    width: 250px;
    color: #999;
    font-size: 14px;
    margin-right: 80px;
    margin-bottom: 35px;
}
.vote-gallery li img{
    cursor: pointer;
}
.vote-gallery li img:hover{
    opacity: .7;
}
.vote-gallery li:nth-child(3n){
    margin-right: 0;
}
.vote-gallery li .intro{
    width: 100%;
    font-weight: bolder;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
    cursor: pointer;
}
.vote-gallery li .intro:hover{
    color: #FF9702;
}
.vote-gallery li .garten{
    width: 100%;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 3px;
}
.vote-gallery .clear{
    clear: both;
}
.gallery-model{
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	overflow: auto;
	width: 100%;
	height: 100%;
	background-color: #000;
    background-color: rgba(0,0,0,.9);
	z-index: 1;
}
.gallery-model .close {
    position: absolute;
    top: 60pt;
    right: 165pt;
    color: #FFF;
    font-size: 60px;
    font-weight: bold;
    transition: 0.3s;
    opacity: 1;
}
.gallery-model .close:hover{
    color: #BBB;
    text-decoration: none;
    cursor: pointer;
}
.gallery-model img{
    display: block;
    margin: 105pt auto;
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
 
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}
 
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}