.feed-back{
    width: 100%;
}
.feed-back .type{
    position: -webkit-sticky;
    position: sticky;
    top:0px;
    width: 800px;
    max-width: 100%;
    margin: auto;
    background-color: #f9f9f9;
}
.feed-back .type button{
    background-color: #464c552a;
    border: none;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 20px;
}
.feed-back .type button.active{
    background-color: #ffbc00;
}

.comment{
    width: 800px;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    background-color: white;
}

.comment .avatar{
    height: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.comment .avatar img{
    width: 40px;
    height: 40px;
    margin: 5px 10px;
    -o-object-fit: fill;
       object-fit: fill;
    border-radius: 100px;
}
.comment .username{
    font-weight: bold;
    font-size: 17px;
}
.comment .time,
.comment .tt{
    color: #464c5585;
    font-size: 15px;
}
.comment .text{
    font-size: 14px;
    margin: 5px 0px;
}
.comment .vote{
    float: right;
}
.comment .vote img{
    width: 15px;
}
.comment .tt{
    font-size: 12px;
}
.comment .tt span{
    margin: 5px;
}
.comment .tt img{
    width: 16px;
}



@media screen and (max-width:576px){
    .feed-back .type{
        display: -webkit-box;
        display: flex;
        justify-content: space-around;
    }
    .feed-back .type button{
        font-size: 8px;
    }
}

.wrap-comment-form {
    width: 600px;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    max-width: 100%;
}
.wrap-comment-form .title {
    padding-left: 0;
}
.wrap-comment-form .cancel{
    position: absolute;
    top: 20px;
    right: 20px;
    color: gray;
    background-color: transparent;
    border: none;
}

.wrap-comment-form .form{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap-comment-form .form .container{
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
}
.wrap-comment-form .form .form-group{
    margin: 20px 0px;
}
.wrap-comment-form .form button[type="submit"]{
    background-color: #464c55;
    width: 100%;
    height: 35px;
    border: none;
    border-radius: 3px;
    color: white;
    margin-bottom: 20px;
}
.wrap-comment-form .form button[type="submit"]:hover{
    background-color: #393e46;
}
.wrap-comment-form .form a{
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.wrap-comment-form .form label {
    font-size: 14px;
    margin: 20px 0px;
}

.wrap-comment-form .form label a{
    color: #ffbc00;
}

@media screen and (max-width: 960px) {
    .wrap-comment-form .form{
        width: 100%;
    }
    .wrap-comment-form .form .container{
        width: 100%;
    }
}