.textInputControl {  
    width: 100%; 
    height: 60px; 
    background-color: rgb(255, 196, 0);
    box-sizing: border-box;
    padding: 0px 20px 0px 15px;
}  

.textInputControl .control {  
    width: 100%; 
    height: 100%; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:left;

    margin-left: 0%;
    cursor: pointer; /* 鼠标悬停时变为手指 */
}  

.textInputControl textarea{
    width: 60%;
    height: 86%;
    resize: none; 
}
