.layouts{
    position: absolute; 
    top: 100px;
    left: calc(50% - 570px);
}

.write-blog{
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color:rgb(160, 160, 160);
    background-color: rgb(39, 42, 42);
    opacity: 0.9;
    text-align: center;
    line-height: 240%;
}
.write-blog:hover{
    text-decoration: none;
    border: 1px solid white;
    color: white;
    cursor: pointer;
}

.blog-show{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    border-radius: 8px;
    padding: 5px 0;
}
.blog-show .card-div{
    width: 220px;
    height: 100%;
    padding-top: 120px;
    padding-left: 10px;
    position:fixed;
}
.blog-show .card-div #user-card{
    padding: 30px 17px;
    background-color: gray;
    width: 100%;
    border-radius: 20px;
}
.blog-show #user-card img{
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 40px;
}
.blog-show #user-card #name,#gender,#email,#sign{
    display: block;
    margin: 10px;
    text-align: center;
}

.blog-show #user-card .counter{
    display: flex;
    justify-content: space-around;
    padding: 5px;
}
.blog-show #blog-list{
    position: relative;
    left: 18%;
    width: 80%;
}
.blog-show #blog-list #blog-card{
    /* 加小手 */
    cursor: pointer;
    display: block;
    color: black;
    margin-top: 10px;
    padding-bottom: 15px;
    width: 70%;
    border-radius: 10px;
}
.blog-show #blog-list #blog-card h2{
    margin-top: 10px;
    margin-bottom: 0;
}
.blog-show #blog-list #blog-card:hover{
    text-decoration: none;
    background-color: gray;
    outline: 1px solid rgb(87, 225, 240);
    border-radius: 10px;
}
.blog-show #blog-list #blog-card:active{
    background-color: rgb(80, 80, 80);
}
.blog-show #blog-list #blog-card span{
    text-align: center;
    display: block;
    padding: 5px;
}
.blog-show #blog-list #time{
    font-size: 20px;
    color: rgb(5, 60, 11);
}

.footer{
    margin-top: 7px;
}