.user_detail {
    position: relative;
    display: block;
    width: 220px;
    text-align: center;
    background-color: #222;
    margin: 0 30px 50px 30px;
    padding: 5px 0 10px 0;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
    
.user_picture {
    width: 100px;
    height: 100px;
    text-align: center;
    margin: auto;
}
    
.user_picture img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}
 
.some_info  {
    width: 90%;
    margin: 5px auto 0 auto;
    border-top: 1px solid #CCC;
} 
    
.detail_info {
    color: #FFF;
    text-align: left;
    width: 90%;
    margin: auto;
    font-size: 16px;
    height: 70px;
    line-height: 70px;
}

.detail_info div {
    float: left;
    height: 70px;
    margin: 0 15px 0 15px;
}

.detail_info img {
    width: 30px;
    height: 30px;
    padding-top: 20px;
}
    
.orange_dot, .green_dot, .purple_dot {
    width: 8px;
    height: 8px;
    margin-right: 10px;
    margin-top: 8px;
    border-radius: 50%;
    float: left;
}
    
.orange_dot {
    background-color: #FC0;
}

.green_dot {
    background-color: #5FCC24;
}
    
.purple_dot {
    background-color: #B350F4;
}
    
.user_detail a:link {
    font-size: 21px;
    color: #4197e2;
}

.user_detail a:visited {
    font-size: 21px;
    color: #C363FF;
}
    
.user_detail p {
    color: #FFF;
    font-size: 14px;
    padding: 10px 0 10px 0;
}
    
.user_grid {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.i_follow {
    position: absolute;
    display: block;
    z-index: 50;
    top: -10px;
    right: -5px;
    width: 35px;
    height: 35px;
    background-color: #FFF;
    border-radius: 50%;
    text-align: center;
}

.i_follow img {
    margin-top: 5px;
    width: 25px;
    height: 25px;
}