@charset "utf-8";

/* 基础工具类 */
.float-left { float: left; }
.float-right { float: right; }
.clear-both { clear: both; font-size: 0; height: 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* 重置默认样式 */
p, form, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 搜索框样式 - 优化版 */
.search-box {
  display: flex;
  align-items: center;
  background: url(../images/sysousuo_03.jpg) no-repeat;
  background-size: cover;
  border-radius: 4px;
  height: 38px;
  padding: 0 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-box .links {
  flex: 1;
  padding: 0 10px;
}

.search-box .links a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s;
}

.search-box .links a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.search-input {
  flex: 1;
  height: 30px;
  border: none;
  background: transparent;
  color: #986633;
  line-height: 30px;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.search-input:focus {
  color: #333;
}

.search-button {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.search-button:hover {
  transform: scale(1.1);
}