/*!
 * decent-comments-widget.css
 *
 * Copyright (c) 2011 "kento" Karim Rahimpur www.itthinx.com
 *
 * This code is released under the GNU General Public License.
 * See COPYRIGHT.txt and LICENSE.txt.
 *
 * This code is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * This header and all notices must be kept intact.
 *
 * @author Karim Rahimpur
 * @package decent-comments
 * @since decent-comments 1.0.0
 */
.decent-comments .comment {
	
	margin: 15px 0px 20px -30px;
	position: relative; /* 为虚线定位做准备 */
	line-height: 18px;
	font-size: 12px;
	background-color: #f1f3f6; /* 添加底色 */
	border-radius: 6px; /* 圆角 */
	padding: 5px; /* 增加内边距 */
	margin-bottom: 10px; /* 添加底部间距 */
}
.decent-comments .comment-avatar {
    float:left;
    margin-right:0px;
    padding-right: 0px;
    display: flex;
    align-items: center; /* 垂直居中 */
    height: 55px; /* 与评论高度匹配 */
}
.decent-comments img {
    float:left;
    margin-right:8px;
    background:#EFEFEF;
    padding: 2px;
    border: 1px solid #E7E7E7;
    -moz-border-radius:2px;
    -khtml-border-radius:2px;
    -webkit-border-radius:2px;
    border-radius:2px;
    width:40px; 
    height:40px;
}
.decent-comments .comment-author {
}
.decent-comments .comment-link:after {
	content: ".";
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	overflow: auto;
	visibility: hidden;
}
.decent-comments .comment-body,
.decent-comments .comment-excerpt {
    padding-left: 33px;
    padding-top:5px;
	display: block;
	color: #888;

}