.comment-number {
  font-size: 20px;
  padding-left: 20px;
  padding-top: 10px;
}
.mod-comment {
    /* width: 829px;
    height: 150px; */
    box-sizing: border-box;
}
.mod-comment * {
    box-sizing: border-box;
}
.mod-comment .input-wrap {
    border: 1px solid #D8D8D8;
    margin-bottom: 40px;
}
.mod-comment .content {
    /* margin-bottom: 10px; */
}

.mod-comment .comment-login{
    width: 100%;
    text-align: center;
    resize: none;
    border: 1px solid #000;
    height: 60px;
    line-height: 60px;
    color: #666;
    display: inline-block;
}

.mod-comment .comment-input {
    width: 100%;
    padding: .5em;
    resize: none;
    /* border: 1px solid #000; */
    height: 2.5em;
    -webkit-transition: height .3s ease-in;
    transition: height .3s ease-in;
    box-sizing: border-box;
}

.mod-comment .input.active .comment-input {
    height: 80px;
}

.mod-comment .input .comment-btns {
    /* display: none; */
    /* text-align: right; */
    /* margin-top: 10px; */
    width: 100%;
    height: 50px;
    background: rgba(10,127,255,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.mod-comment .input.active .comment-btns {
    /* display: block; */
}

.mod-comment .comment-cancel-btn{
    display: inline-block;
    vertical-align: middle;
    color: #666;
    cursor: pointer;
}
.mod-comment .comment-ok-btn {
    /* background: #00b33b; */
    color: #fff;
    /* border-radius: 5px; */
    margin-left: 10px;
    cursor: pointer;

    width: 100px;
    height: 40px;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

.mod-comment .comment {
    margin-bottom: 40px;
}

.mod-comment .comment-content{
    position: relative;
    display: flex;
    width: 100%;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #ddd; */
    /* border: 1px solid #000; */
}

.mod-comment .comment-content .comment-avatar{
    /* float: left; */
    /* width: 15%;
    text-align: center; */
}

.mod-comment .comment-avatar img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
}

.mod-comment .comment-info {
    /* float: left; */
    width: 85%;
}

.mod-comment .comment-header {
    color: #999;
    margin-top: 16px;
}

.mod-comment .comment-header .iconfont {
    margin-right: 5px;
}
.mod-comment .comment-header .name{
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    line-height: 28px;

    margin-right: 10px;
}

.mod-comment .comment-header .reply-btn {
    cursor: pointer;
    /* margin-right: 10px; */
    position: absolute;
    top: 60px;
    right: 0;
    color: var(--color-primary);
}

.mod-comment .comment-header .reply-btn:hover{
    color: #333;
}

.mod-comment .like-btn {
    cursor: pointer;
    display: none;
}

.mod-comment .content {
    /* margin: 15px 0; */
    margin-top: 16px;
    margin-bottom: 2px;
    white-space: pre-wrap;

    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
}

.mod-comment .updatetime {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    line-height: 22px;
}

.mod-comment .reply-items,
.mod-comment .reply-wrap{
    margin-left: 15%;
    width: 85%;
}

.mod-comment .reply-wrap {
    display: none;
}

.mod-comment .reply-wrap .reply-input {
    resize: none;
    border: 1px solid var(--color-primary);
    text-indent: 0.5em;
    padding: 5px 0;
    height: 32px;
    width: 100%;
}

.mod-comment .reply-btns {
    text-align: right;
}

.mod-comment .reply-cancel-btn{
    display: inline-block;
    vertical-align: middle;
    color: #666;
    cursor: pointer;
}
.mod-comment .reply-ok-btn {
    background: var(--color-primary);
    display: inline-block;
    vertical-align: middle;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

.mod-comment .reply-item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.mod-comment .reply-avatar {
    float: left;
    width: 10%;
}

.mod-comment .reply-avatar img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.mod-comment .reply-info {
    float: left;
    width: 90%;
}

.mod-comment .reply-header .name {
    color: #000;
    margin-right: 10px;
}

.mod-comment .reply-header {
    color: #999;
}

.mod-comment .reply-header > span{
    margin-right: 10px;
}

.mod-comment .reply-header .sub-reply-btn {
    cursor: pointer;
}

.mod-comment .reply-header .sub-reply-btn:hover{
    text-decoration: underline;
}

.mod-comment .reply-header .reply-like-btn {
    cursor: pointer;
}

.mod-comment .reply-info .content {
    margin-bottom: 0;
}