.main-box {
  display: flex;
  flex-direction: column;
  width: calc(100% - 200px);
  margin-left: 100px;
}
.main-box .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-height: 400px;
}
.main-box .box .title {
  width: 100%;
  /*font-size: 24px;*/
  font-size: 26px;
  margin-top: 40px;
  /*font-weight: bold;*/
  text-align: center;
}
.main-box .box .time {
  color: var(--fontGrap);
  text-align: center;
  margin-top: 10px;
}
.main-box .box .content {
  /*width: 60%;*/
  width: 90%;
  /*margin-left: calc(20% - 20px);*/
  margin-left: calc(5% - 5px);
  /*padding: 20px;*/
}

.main-box .box .content img{
  /*width: 300px ;*/
  /*height: 300px ;*/
  padding: 10px 20px;
   /*object-fit:cover;*/
}
.main-box .box .content p{
margin:0;
}
.main-box .comment-box {
  display: flex;
  width: 100%;
  margin-top: 20px;
  flex-direction: column;
  padding: 10px 0;
  background: #fff;
}
.main-box .comment-box .title {
  font-size: 16px;
  margin-left: 20px;
  font-weight: bold;
}
.main-box .comment-box .comment-info-box {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.main-box .comment-box .comment-info-box .comment {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--lightGray);
}
.main-box .comment-box .comment-info-box .comment .user-box {
  display: flex;
  align-items: center;
}
.main-box .comment-box .comment-info-box .comment .user-box .avatar {
  width: 50px;
  height: 50px;
  border-radius: 40px;
}
.main-box .comment-box .comment-info-box .comment .user-box .username {
  font-weight: bold;
  margin-left: 20px;
}
.main-box .comment-box .comment-info-box .comment .comment-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.main-box .comment-box .comment-info-box .comment .comment-row .comment-content {
  flex: 1;
  margin-right: 100px;
}
.main-box .comment-box .comment-info-box .comment .comment-row .comment-time {
  width: 200px;
}
.main-box .comment-box .user-comment-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 20px;
  padding: 0 20px;
}
.main-box .comment-box .user-comment-box textarea {
  width: calc(100% - 20px);
  border: 1px solid #ccc;
  padding: 10px;
}
.main-box .comment-box .user-comment-box .comment-btn {
  color: #fff;
  width: 140px;
  padding: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  background: var(--mainColor);
}
/*# sourceMappingURL=article_detail.css.map */