.taro-input {
    overflow: hidden;
    position: relative;
    display: block;
    height: 14px;
    min-height: 14px;
    white-space: nowrap;
    text-overflow: clip;
    color: #333;

    &_content {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        font-size: inherit;
        text-overflow: inherit;
    }

    &_placeholder {
        position: absolute;
        top: 50%;
        left: 0;
        font-size: inherit;
        color: #ccc;
        transform: translateY(-50%);
    }

    &_main {
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        background: transparent;
        border: none;
        outline: none;
        text-align: inherit;
        text-overflow: inherit;
        font-family: inherit;
        padding: inherit;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        z-index: 1;
    }
}
