/* 修改链接的文字颜色和下划线 */
a { 
    color: #337ab7; /* 链接颜色 */
    text-decoration: none; /* 取消下划线 */
}

a:hover { 
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/* 修改输入框样式 */
input[type="text"], input[type="email"], input[type="password"], textarea {
    padding: 6px 10px; /* 输入框内边距 */
    border: 1px solid #ccc; /* 边框样式 */
    border-radius: 4px; /* 边框圆角 */
    box-sizing: border-box; /* 盒模型为边框盒模型 */
}

/* 修改按钮样式 */
input[type="submit"], button {
    padding: 8px 16px; /* 按钮内边距 */
    background-color: #337ab7; /* 按钮背景色 */
    color: #fff; /* 按钮文字颜色 */
    border: none; /* 去除边框 */
    border-radius: 4px; /* 边框圆角 */
    cursor: pointer; /* 鼠标悬停样式为手型 */
}

input[type="submit"]:hover, button:hover {
    background-color: #23527c; /* 鼠标悬停时的按钮背景色 */
}
