.article-list-basic{
    list-style:none;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    padding: 0;
}

.article-list-basic li{
    display: inline-block;
    box-sizing:border-box;
	vertical-align: top;
    background-color: #fff;

    font: normal 13px ;
    text-align: left;

    margin: 20px;
    max-width: 250px;
}

/* Article photo */

.article-list-basic li > a{
    display: block;
    width: 100%;
    height: 155px;
    overflow: hidden;
	border-radius: 2%;
}

.article-list-basic li > a img{
    width: 100%;
	
}

.article-list-basic li div{
    padding: 20px 10px;
	box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
}

.article-list-basic li img{
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;

}

/* Article title */

.article-list-basic li h2{
    font: bold 16px ;
    margin:0;
}

.article-list-basic li h2 a{
	color: #CD1818;
	text-decoration: none;
}

/* Article excerpt */

.article-list-basic li div p{
    line-height: 20px;
    color: #5d5d5d;

    margin: 20px 0;
}

/* Read more */

.article-list-basic li a.read-more{
    background-color: #87bcd7;
    cursor: pointer;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 2px;
    margin: 20px 0;
    font-weight: bold;
}

        #backtop {
	        position: fixed;
            left:auto;right: 20px;top:auto;bottom: 20px;
	        outline: none;
            overflow:hidden;
            color:#fff;
            text-align:center;
            background-color: #62bb8b;
            height:40px;
            width:40px;
            line-height:40px;
            font-size:14px;
            border-radius:2px;
            cursor:pointer;
            transition:all 0.3s linear;
            z-index:999999;

            opacity:1;
            display:none;
        }
        #backtop:hover {
            background-color:#7ccad5;
        }
        #backtop.mcOut {
            opacity:0;
        }
