@import "NavigationBar.css";

.下面区域 {
    min-height: calc(100vh - 50px);
    /* background-color: #215877; */

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px 220px;
}

.用户信息展示 {
    width: 220px;
    background-color: rgba(255, 255, 255, .6);
    border-radius: 8px;
    padding: 12px 0;
    box-shadow: 0 0 5px #000;
}

.用户信息展示 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.头像展示区 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.头像展示区 img {
    width: 100px;
}

.用户名称 {
    font-size: 24px;
    font-weight: 700;
}

.git地址 a {
    color: #ea7a7a;
    font-size: 14px;
    font-style: italic;
}

.统计信息 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;    /*间隔*/
}

.文章数量区域,
.分类数量区域 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.博客列表展示 {
    min-height: calc(100vh - 50px - 8px - 8px);
    width: calc(100% - 220px - 8px);
    background-color: rgba(255, 255, 255, .6);
    border-radius: 8px;
    box-shadow: 0 0 5px #000;

    padding: 8px;
}
.博客项{
    width: 100%;
    margin: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
}

.博客标题{
    text-align: center;
    font-size: 24px;
    font-weight: 900;
}

.发表日期{
    text-align: center;
    color: #3ff159;
}

.简介信息{
  text-indent: 2em;
    font-size: 16px;
}

.按钮区域{
    display: flex;
    justify-content: center;
}

.博客项 a{
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: black;
    text-decoration: none;
    border: 2px solid #000;
}