﻿@charset "utf-8";

/*--------------------------------------

  blog.css

---------------------------------------*/
#blog .blog_list {
    width: 100%;
}
#blog .blog_list li {
    position: relative;
    display: block;
    float: left;
    width: 31.33%;
    height: 540px;
    margin: 0 1% 40px 1%;
    padding: 18px;
    border: solid 1px rgba(0, 0, 0, .4);
    color: #444;
    background: #fff;
}
#blog .blog_list li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#blog .blog_list li a.icon {
    display: block;
    width: 50px;
    height: 50px;
    margin-top: -2px;
    float: left;
    overflow: hidden;
    border-radius: 30px;
}
#blog .blog_list li a.icon img {
    width: 50px;
    height: 50px;
    border-radius: 30px;
}
#blog .blog_list li a.icon:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
#blog .blog_list li .title {
    padding: 0 0 0 10px;
    float: left;
    width: 75%;
    max-width: 188px;
}
#blog .blog_list li .title strong {
    display: block;
    line-height: 1.2;
    font-size: 1.8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#blog .blog_list li .title time {
    position: absolute;
    top: 6px;
    right: 10px;
    color: #999;
    font-size: 1.2rem;
}
#blog .blog_list li .text {
    position: relative;
    clear: both;
    height: 410px;
    padding-top: 10px;
    overflow: hidden;
}
#blog .blog_list li .text::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50px;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
}
#blog .blog_list li .text a {
    display: block;
    width: 100%;
    max-height: 200px;
    margin: 0 auto 10px;
    overflow: hidden;
}
#blog .blog_list li .text a img {
    width: 100%;
    max-height: 200px;
}
#blog .blog_list li .text a:hover img  {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

@media screen and (max-width:960px) {
#blog .blog_list {
    margin-bottom: 40px;
}
#blog .blog_list li {
    position: relative;
    display: block;
    float: none;
    width: 98%;
    height: auto;
    margin: 0 auto;
    padding: 18px;
    border: solid 1px rgba(0, 0, 0, .4);
    color: #444;
    background: #fff;
    margin-bottom: 20px;
}
#blog .blog_list li:nth-child(3n-1) {
    margin: 0 auto;
    margin-bottom: 20px;
}
/*#blog .blog_list li .text {
    height: auto;
    min-height: 60px;
    margin-bottom: 40px;
    line-height: 1.2;
    font-size: 1.3rem;
}*/
#blog .blog_list li .text {
    height: auto;
    min-height: 260px;
    margin-bottom: 40px;
}
#blog .blog_list li .text a {
    width: 100%;
    max-height: 260px;
}
#blog .blog_list li .text a img {
    width: 100%;
    max-height: 260px;
}
}