﻿.forwardBox {
        position: relative;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-left: 60px;
        padding-right: 110px;
    }

        .forwardBox .headImgBox {
            position: absolute;
            top: 0;
            left: 0;
            margin-right: 10px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
        }

            .forwardBox .headImgBox > img {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
            }

        .forwardBox .replyButton {
            position: absolute;
            top: 0;
            right: 0;
            box-sizing: border-box;
            width: 100px;
            height: 98px;
            border-radius: 10px;
            background-color: #ff609d;
            line-height: 50px;
            font-size: 20px;
            color: #fff;
            text-align: center;
            text-decoration: none;
        }
        .forwardBox .replyButton.is-disabled{
            color: #fff;
            cursor: not-allowed;
            background-image: none;
            background-color: #aeaeae;
            border-color: #aeaeae;
        }

    .forwardBox .textareatWrap {
        position: relative;
    }

    .forwardBox .textareatBox {
        padding: 8px;
        background-color: #f8f8f8;
        width: 97%;
        height: 82px;
        margin-left: auto;
        margin-right: auto;
        outline: 0;
        border: 0px solid #c0c4cc;
        border-radius: 16px;
        font-size: 16px;
        color: #000;
        word-wrap: break-word;
        overflow-x: hidden;
        white-space: pre-wrap;
        overflow-wrap: break-word;
        -webkit-user-modify: read-write-plaintext-only;
        text-align: left;
    }

    *[contenteditable="true"]:empty:before {
        content: attr(placeholder);
        color: #A9A9A9;
    }

    .forwardBox .textareatBox a {
        margin: 0 5px;
    }

    .forwardBox .textareatCount {
        color: #aeaeae;
        background: #f8f8f8;
        position: absolute;
        font-size: 12px;
        right: 20px;
        bottom: 12px;
    }