/* .content {
            position: relative;
        }
        
        .left {
            background: red;
            position: absolute;
            width: 100px;
        }
        
        .right {
            background: green;
            position: absolute;
            left: 110px;
            right: 0;
        } */


/* .left {
            background: red;
            float: left;
            width: 100px;
            position: relative;
        }
        
        .right {
            background: green;
            float: right;
            width: 100%;
            margin-left: -110px;
        } */

html,
body {
    height: 100%;
    width: 100%;
}

.container {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    max-width:960px;
    margin:0 auto;
}
strong{
    font-weight: 600;
}
.avatar {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 33px;
}

.avatar img {
    border-radius: 50%;
    width: 160px;
    margin: 30px 0;
}

.avatar h1 {
    font-size: 36px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, PingFang SC, Helvetica, Tahoma, Arial, Hiragino Sans GB, Microsoft YaHei, \\5FAE\8F6F\96C5\9ED1, sans-serif;
    margin-bottom: 5px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    width: 66px;
    margin: 0 auto;
}

.left {
    width: 240px;
    background: rgb(216, 216, 216);
}

.right {
    flex: 1
}

/* .action-content{
    text-indent: 25px;
} */