.taro-textarea {
    overflow: hidden;
    position: relative;
    display: block;
    height: 1.4em;
    min-height: 1.4em;
    white-space: nowrap;
    text-overflow: clip;
    color: #333;

    &__content {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 20px;
        font-size: inherit;
    }

    &__placeholder {
        position: absolute;
        font-size: inherit;
        color: #ccc;
    }

    &__main {
        position: absolute;
        top: 0;
        left: 0;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        padding: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        background: transparent;
        border: none;
        outline: none;
        text-align: inherit;
        text-overflow: inherit;
        font-family: inherit;
        white-space: normal;
        overflow: hidden;
        resize: none;
        z-index: 1;
    }
}
