* {
	margin: 0;
	padding: 0;
	border: 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 5px;
  background-color: #4CAF50; /* 绿色 */
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #3e8e41; /* 深绿色 */
}

.input-box {
  width: 300px; /* 输入框宽度 */
  height: 40px; /* 输入框高度 */
  border: 1px solid #ccc; /* 输入框边框 */
  border-radius: 5px; /* 输入框圆角 */
  padding: 10px; /* 输入框内边距 */
  font-size: 16px; /* 输入框字体大小 */
}

.input-box:focus {
  outline: none; /* 去除聚焦边框 */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* 添加聚焦阴影 */
}