.input 
{
    font-size: small;
    background-color: #d5f0a6; /* 设置背景颜色 */
    border: 2px solid #1f1d1d; /* 设置边框 */
    padding: 10px; /* 设置内边距 */
    border-radius: 10px; /* 设置圆角 */
    line-height: 1.2;
    margin-bottom: 10px;
    width: 100%; /* 使输入框宽度适应容器 */
    max-width: 100px;
    transition: all 0.15s ease;
}
.input:hover
{
    scale: 1.1;
    background: #c5ee7e;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* 添加阴影效果 */
}