html, body{
  background-color: #5c5c5c05;
  min-height: 100vh;
}
.admin {
    display: none!important;
}
*{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  position: relative;
}

h1{
  font-size: 50px;
}

h2{
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 10px;
}
button {
    background-color: white;
}

span {
  font-size: 20px;
}
button {
  cursor: pointer;
}


/*-----这个页面的主要内容-----*/
.main {
    width: 100%;
}
.main_box {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}
.comment_main {
    min-height:70px;
}
.oneBlock {
    box-shadow: 1px 2px 6px 2px #0000000f;
    width: 80%;
    margin: 20px auto 0 auto;
    background-color: white;
    border-radius: 3px;
    padding: 5px;
    white-space: normal;
    word-break: break-all;
}
.textTitle {
    text-align: center;
}
.textData {
    padding: 30px;
    font-size: 15px;
}
.textData > ol,.textData > ul{
    list-style-type: disc!important;
}
.textData:hover {
    color: black;
}
.otherInformation {
    display: flex;
    font-size: 13px;
    color: #00000082;
    justify-content: center;
    
}
.other {
    margin: 0 10px;
}
.textBottom {
    width: 80%;
    margin: 0 auto;
    display: flex;
}
.textClick {
    margin: 0 10px;
}
.comment {
  width: 100%;
  display: flex;
}
.comment_info {
    padding: 0 20px;
}
#comment_list {
    display: flex;
    flex-direction: column-reverse;
}
.comment_user_name {
  color: #FB7299;
}
.comment_user_info {
  display: flex;
  height: 37px;
  width: 80%;
  font-size: 17px;
  align-items: center;
  margin-left: 14px;
}
.user_comment_level {
  padding: 2px;
  background-color: #f83535;
  border-radius: 5px;
  height: 15px;
  font-size: 10px;
  color: white;
}
.background-img {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
}
.background-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.like button,.share button {
    background-color: white;
}
.textarea-wrap {
    border: 0.3px solid rgba(0, 0, 0, 0.423);
    border-radius: 10px;
    padding: 10px;
    background-color: #E3E5E7;
}
.comment_input {
  font-family: PingFang SC, HarmonyOS_Regular, Helvetica Neue, Microsoft YaHei, sans-serif;
  border: none;
  width: 100%;
  height: 33px;
  outline: none;
  resize: block;
  color: black;
  background-color: #E3E5E7;
  
}
.upload_comment_box {
    width: 400px;
}
.upload_comment_button {
    cursor: pointer;
    width: 72px;
    height: 32px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 99;

}
.commentUpload_buttom {
    padding: 5px 13px 5px 13px;
    background-color: #00AEEC;
    display: block;
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-top: 20px;
}
.createComment {
    display: flex;
}
.comment_send_other {
    height: 50px;
}
/*文章方面*/
code div {
    background-color: #454545;
    color: white;
    padding: 0 20px;
    font-size: 17px;
}
code div:first-child {
    padding-top: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
code div:last-child {
    padding-bottom: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
p > img {
    max-width: 100%!important;
}
.notice_ {
  padding: 10px;
  border-radius: 10px;
  background-color: #2f2727;
  font-size: 20px;
  color: white;
  position: fixed;
  z-index: 9999999999999999;
  top: calc(10% - 10px);
  left: calc(50% - 50px);
  text-align: center;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    white-space: normal;
    word-break: break-all!important;
    word-wrap: break-word!important;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}
pre > span {
    font-size: 13px;
    display: block;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}
.comment_main {
    margin-bottom: 50px;
}
.comment > img {
    border-radius: 50%;
}
.author::before {
    content: "";
    height: 100%;
    width: 5px;
    background-color: blue;
}
.author {
    width: calc(100% - 30px);
    height: 100px;
    border-radius: 4px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-color: #fafafa;
}
.author_head {
    width: 60px;
}
.author_head > img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.author_a {
    width: 100px;
    height: 40px;
    border-radius: 5px;
    border: 0.5px solid blue;
    color:black;
    text-decoration: none;
    text-align: center;
    align-content: center;
    margin-left: 100px;
}
@media (max-width: 600px) {
    .author_a {
        margin-left: 50px;
    }
    .background-img {
        display: none;
    }
    .oneBlock {
        width: calc(100% - 10px);
    }
    .textData {
        padding: 5px;
        width: calc(100% - 10px);
    }
    .upload_comment_box {
        width: 200px;
    }
}
@media (max-width: 390px) {
    .author_a {
        margin-left: 1px;
    }
    .author > b {
        font-size: 20px!important;
    }
}