/* 全局样式 */
input[type="text"], input[type="tel"] {
    height: 2.5em; /* 增加高度 */
    padding: 0.75em; /* 增加间距 */
    border-radius: 0.375rem; /* 圆角 */
    border: 1px solid #d1d5db; /* 边框颜色 */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    transition: border-color 0.2s; /* 添加过渡效果 */
}

input[type="text"]:focus, input[type="tel"]:focus {
    border-color: #6366f1; /* 聚焦时的边框颜色 */
    outline: none; /* 移除默认聚焦样式 */
    box-shadow: 0 0 0 1px #6366f1; /* 聚焦时的阴影 */
}
