.c-dialog.-talk{
    border-color: #f66221;
}

.comment{
    padding: 20px;
    background: #fffcae;
    border-radius: 20px;
}

.comment__head{
    background: #f66221;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}

.comment__head small{
    display: block;
    font-size: 1.6rem;
    margin-top: 4px;
}

.comment__head small .c-iconLink{
    background-image: url(/assets/images/ic-arrow-white.png) !important;
}
.c-dialog>p{
    font-size: 1.4rem;
    padding-left: 90px;
}
.c-dialog>p:before{
    background-image: url(images/comment.png) !important;
    width: 70px;
    height: 86px;
}
@media (max-width: 768px) {
    .c-dialog>p{
        padding-top: 5%;
        padding-left: 0;
    }
    .c-dialog>p:before{
        position: relative;
        display: block;
        margin: 0 0 5%;
    }
}

.bg-comment{
    background: #fdfdf1;
}
.color-blue{
    color: #29baeb;
}
.color-red{
    color: #e60012;
}

.recommend{
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    display: inline-block;
}

.recommend:before{
    content: "";
    display: block;
    width: 2px;
    height: 50px;
    background: #ddd;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(-20deg);
}
.recommend:after{
    content: "";
    display: block;
    width: 2px;
    height: 50px;
    background: #ddd;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(20deg);
}
.recommend.-blue:before,
.recommend.-blue:after{
    background: #29baeb;
}
.recommend.-red:before,
.recommend.-red:after{
    background: #e60012;
}