.main-content {
	    background:  url('../../images/common/bg/side_bg2.png') left top no-repeat ,
                 url('../../images/common/album.png') right top no-repeat,
                 url('../../images/common/fff.png');
}
/*------------ album ------------*/

.album-list {
    /*margin: 40px -8px 0;*/
}

.album-list li {
    width: 25%;
    padding: 0 8px 35px;
}

.album-list li:nth-child(4n+1) {
    clear: left;
}

.album-list li .pic {
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    border: 10px solid rgba(62, 96, 59, .95);
    max-width: 220px;
    margin: 0 auto;
    transition: all .2s;
}

.album-list li:hover .pic {
    transition: all .2s;
    border-color: #4caf85;
}

.album-list li .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 85px 85px 0 0;
    border-color: rgba(17, 17, 17, .8) transparent transparent transparent;
}

.album-list li .cover i {
    width: 22px;
    height: 22px;
    border: 1px solid #D8D7DC;
    border-radius: 50%;
    font-size: 12px;
    position: absolute;
    top: -78px;
    left: 8px;
    color: #D8D7DC;
    line-height: 22px;
    transform: rotate(-45deg);
}

.album-list li .cover span {
    position: absolute;
    color: #D8D7DC;
    font-family: 'Expletus Sans', cursive;
    font-size: 12px;
    transform: rotate(-45deg);
    top: -60px;
    left: 10px;
}

.album-list li .text {
    max-width: 220px;
    margin: 0 auto;
}

.album-list li .name {
    display: block;
    font-size: 16px;
    color: #4caf85;
    font-weight: bold;
    margin: 10px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-list a:hover .name {
    color: #335F1D;
    text-decoration: underline;
}

.album-list li .description {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.album-list li .description:hover {
color: #4CAF85;
}
/*------------ rwd ------------*/

@media screen and (max-width:1440px) {
    .album-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .album-list li:nth-child(4n+1) {
        clear: none;
    }
    .album-list li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 1280px) {
	.main-content {
			background:  
					 url('../../images/common/album.png') right top no-repeat,
					 url('../../images/common/fff.png');
	}
}
@media screen and (max-width:1100px) {
    .album-list {
        margin: 0px -8px;
    }
}

@media screen and (max-width: 767px) {
    .album-list li {
        width: 50%;
    }
    .album-list li:nth-child(3n+1) {
        clear: none;
    }
    .album-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width:480px) {
    .album-list li {
        width: 100%;
    }
}
