html,body{
    margin: 0;
    padding: 0;
    height: 100%;
}
body{
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}
#zone{
    width: 1000px;
    margin: 10px auto;
    min-height: 80%;
    //box-shadow: 1px 1px 8px 4px rgba(0,0,0,0.1);
    border: 0.5px dashed #e9e9e9;
    padding: 10px;

    &>div{
        display: flex;

        &>section{
            margin-left: 40px;
        }
    }

    .zone-display {
        text-align: center;
        margin-bottom: 20px;
    }

    $card-width: 700px;
    .content-card{
        border: 0.5px solid #e9e9e9;
        width: $card-width;
        min-height: 120px;
        box-shadow: 0 0 10px 2px rgba(169, 36, 146, 0.12);
        margin-bottom: 30px;
    }

    aside{
        margin-right: 0;
        padding-right: 0;
        flex-grow: 1;
        flex-basis: 0;
        display: flex;
        justify-content: flex-end;
    }


    #zone-about{
        width: 230px;
        height: 200px;
        background-image: url(//img.t.sinajs.cn/t5/skin/public/covervip/2052_s.jpg?version=a165f6dbc38b42cc);
        background-repeat: no-repeat;
        border: 0.5px solid #e9e9e9;
        position: relative;
        display: flex;
        align-items: flex-end;
        flex-direction: column-reverse;

        &::before{
            content: "";
            width: 85px;
            height: 85px;
            display: block;
            top: 50%;
            left: 50%;
            position: absolute;
            background-image: url("../image/beauty.png");
            background-size: 100% 100%;
            border-radius: 50%;
            transform: translate(-50%,-80%);
        }

        &>div{
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .zone-stats>span{
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.9em;
            width:32%;
            margin: auto;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            color: #818181;
        }
    }

    $padding-gap: 5px;
    
    .content-card{
        display: flex;
        padding: $padding-gap;

        $width: 55px;

        aside {
            width: $width;
            height: 100%;
            flex-grow: 0;
            flex-basis: unset;
            text-align: center;
            display: unset;

            img {
                width: 100%;
                border-radius: 50%;
            }

        }

        section {
            flex-grow: 1;
            flex-basis: 0;
            padding-left: 10px;

            .info{
                height: $width;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .info>div:first-child{
                font-size: 14px;
            }

            .info>div:nth-child(2){
                color: #808080;
                font-size: 12px;
            }
            
            .content{
                font-size: 15px;
                color: #333;
                word-spacing: normal;
                letter-spacing: normal;
                padding: 1px 0 3px;
                overflow: hidden;
                line-height: 23px;
                word-wrap: break-word;
                padding-right: 10px;

                img{
                    max-width: 100%;
                }
            }
        }
    }

}