.accountWrap {
    width: calc(100% + 48px);
    height: calc(100% + 48px);
    margin: -24px;
    .bodyWrap {
        margin: 20px;
        height: calc(100% - 40px);
        .bind {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 40px;
            background:rgba(246,255,237,1);
            border-radius: 4px;
            border:1px solid rgba(183,235,143,1);
            color: rgba(0, 0, 0, 0.45);
            font-size: 14px;
            font-weight: 400;
            line-height: 40px;
        }
        .unbind {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 40px;
            background: rgba(255,251,230,1);
            border-radius: 4px;
            border: 1px solid rgba(255,229,143,1);
            color: rgba(0, 0, 0, 0.45);
            font-size: 14px;
            font-weight: 400;
            line-height: 40px;
        }
        .contentWrap {
            margin-top: 20px;
            height: 100%;
            padding: 32px;
            position: relative;
            background-color: #fff;
            .header {
                color: #000000;
                font-size: 14px;
                margin: 0;
            }
            .companyName {
                margin-top: 14px;
                margin-bottom: 32px;
            }
            .msgItem {
                margin-top: 12px;
                .editIcon {
                    display: inline-block;
                    vertical-align: middle;
                    width: 16px;
                    height: 16px;
                    cursor: pointer;
                    margin-top: -2px;
                    margin-left: 12px;
                    background: url(../../assets/account/edit.svg) no-repeat;
                    background-size: 100% 100%;
                }
            }
        }
    }
}