/**
 * 志愿风采(相册)详情页
 * @author 袁俊
 *
 */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
li{
	list-style: none;
}
a {
	text-decoration: none;
	color: black;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
}
.album-wrap{
    padding-bottom: 0.8rem;
}
/*相册头部*/
.albumHeader-wrap{
    height: 3.6rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.albumHeader{
    position: relative;
    z-index: 999;
    font-size: 0.24rem;
}
.album-title{
	font-size: 0.48rem;
    font-weight: 700;
    margin: 0.4rem 0.3rem;
    -webkit-line-clamp: 1;
    text-shadow: 0 1px 5px rgba(0,0,0,.5);	
    	word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
}
.album-text{
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 0.4rem;
    text-align: center;
    color: #f3f3f3;
    -webkit-line-clamp: 3;
}
.album-imgnum{
	margin: 0;
	margin-top: 0.4rem;
}
.album-imgnum:before{
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 1px;
    border-top: 1px solid #fff;
    vertical-align: 3px;
    margin: 0 0.2rem;
}
.album-imgnum:after{
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 1px;
    border-top: 1px solid #fff;
    vertical-align: 3px;
    margin: 0 0.2rem;
}
.albumHeader-bg{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: blur(3px); 
    filter: blur(3px);
    transform: scale(1.1);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%), url("../images/activityPhoto_album/albumHeader_bg.jpg")
}
/*相册图片列表*/
#photo-list{
   position: relative;
}
.photo-item{
    float: left;
    padding: 0.1rem 0.15rem 0;
}
.item-img{
    width: 100%;
    min-height: 1.2rem;
	border-radius: 0.1rem;
    background-color: #f5f5f5;
}
.item-img img{
	border-radius: 6px;
    width: 3.3rem;
    height: auto;
    display: block;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.1);
}
.item-comment{
	margin: 0;
    color: #aba9a9;
    font-size: 0.24rem;
    line-height: 0.56rem;
    display: flex;
    align-items: center;
    
}
.item-comment img{
	width: 0.24rem;
	height: 0.24rem;
}
