body{
    text-align: center;
}
#comment-data{
    margin: 10px auto;
    max-width: 920px;
    width: 80%;
}
section.comment-form,section.comment-list,div.comment-count{
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.1), 0 0 0 0.5px rgba(0, 0, 0, 0.07);
    padding: 4px 10px;
    margin: 0 auto;
    padding-top: 20px;
}

div.comment-count{
    border-width: 0;
    box-shadow: 0 0 0 0 white;
}

.comment-form *{
    font-weight: 400;
    outline: none;
    font-size: 0.99em;
    font-family: "PingFang SC","Microsoft YaHei";
    color: #555;
}
.comment-form>table{
    /*border: 1px solid black;*/
    border-spacing: 0;
    border-radius: 10px;
    text-align: center;
    width: 100%;

}
.comment-form th input{
    width: 100%;
    border-radius: 0;
    border-width: 0 0 0.5px;
    border-bottom: 0.5px dashed #dedede;
    background: none;
    background-size: auto 90%;
    background-repeat: no-repeat;
    padding-left: 28px;
    padding-right: 0;
    box-sizing: border-box;
}

.comment-form input[name='email']{
    background-image: url("../image/qq.png");
}
.comment-form input[name='nickname']{
    background-image: url("../image/contacts_s.png");
}
.comment-form input[name='website']{
    background-image: url("../image/chrome.png");
}

.comment-form th input:hover{
    border-color: #de60c7;
}

.comment-form textarea{
    border-width: 0;
    background: url("../image/love_letter.svg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
}

textarea::-webkit-input-placeholder{
    color: blueviolet;
}

textarea::-moz-placeholder{
    color: blueviolet;
}

td.comment-user-info{
    text-align: left;
}

#comment-user-avatar{
    width: 40px;
    border-radius: 50%;
    margin-left: 2px;
}

.comment-form button[name='comment-submit'],.comment-card-more{
    height: 90%;
    border: 1px solid #e9e9e9;
    margin: auto;
    outline: none;
    transition: background 1s;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    border-radius: 10px;
    background: #ededed;
}
.comment-form button[name='comment-submit']:hover,.comment-card-more:hover{
    cursor: pointer;
    background: white;
    border: .5px dashed blueviolet;
}

.comment-count{
    display: flex;
}

.comment-count .icon{
    font-size: 1.5em;
    font-weight: 200;
    color: #4a438f;
}

.comment-list{
    padding-top: 10px;
}

.comment-card{
    text-align: left;
    display: flex;
    margin-bottom: 40px;
}
.comment-card-avatar{
    width: 40px;
}
.comment-card-avatar>img{
    width: 100%;
    border-radius: 50%;
}
.comment-card-info{
    display: block;
    width: 100%;
    padding: 0 0 10px 15px;
}

.comment-card-nickname{
    margin-bottom: 8px;
    margin-top: 2px;
    color: #27899b;
}

.comment-card-datetime{
    color: #b3b3b3;
    font-weight: 300;
}

.comment-card-content{
    margin-top: 15px;
}

.comment-card-more{
    border: .5px solid #e9e9e9;
    border-radius: 10px;
    padding: 5px 8px;
    margin: 10px auto;
    font-weight: 400;
    font-size: 1em;
    outline: none;
}

.comment-card-more:hover{
    cursor: pointer !important;
}