/* ------------------------------------
 *
 *         评论列表
 *
 * --------------------------------- */

.comment-list, .comment-children {
    list-style: none;
}
.comment-list {
    padding-left: 10px;
}
.comment-list .comment-children {
    margin-left: 20px;

    box-shadow: -1px 0px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: -1px 0px 0px rgba(0, 0, 0, 0.05);
}
.comment-list .comment-children .comment-list {
    padding-left: 20px;
}

.comment-list .comment-author cite.fn {
    color: #555555;
    font-style: normal;
}
.comment-list .comment-author a {
    color: #009FDA;
}
.comment-list .comment-author a:hover {
    color: #00BAFF;
}
.comment-list .comment-author img.avatar:hover {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}

.comment-list .comment-content {
    color:#555;
    margin-left: 50px;
    font-size: 15px;
}
.comment-list .comment-meta a {
    color: rgba(0, 0, 0, 0.4);
    font-size: 15px;
}

.comment-list .comment-reply {
    opacity: 0;
    font-size: 13px;
    margin-bottom: 10px;
    margin-left: 50px;

    transition: opacity 0.1s ease-out;
    -o-transition: opacity 0.1s ease-out;
    -moz-transition: opacity 0.1s ease-out;
    -webkit-transition: opacity 0.1s ease-out;
}
.comment-list .comment-reply:hover {
    opacity: 1;
}
.comment-list .comment-reply a {
    color: rgba(0, 0, 0, 0.3);
}
.comment-list .comment-reply a:hover {
    color: rgba(0, 0, 0, 0.6);
}

.new-comment.block form button {
    color: #fff;
    font-size: 14px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 5px;
    display: inline-block;
    padding: 6px 12px;
    outline: 0;
}
.new-comment.block form {
    font-size: 14px;
}
.new-comment.block form button:hover, .new-comment.block form button:active {
    cursor: pointer;

    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
}

form .button.red {
    background-color: #D95C5C;
}
form .button.green {
    background-color: #89B84C;
}
form .button.blue {
    background-color: #6ECFF5;
}
form .button.purple {
    background-color: #564F8A;
}
form .button.orange {
    background-color: #F05940;
}
form .button.teal {
    background-color: #00B5AD;
}
form .button.grey {
    color: rgba(0, 0, 0, 0.65);
    background-color: #E8E8E8;
}
