.watch-search-widget {
    padding: 10px;
}

.watch-search-widget .search-box {
    display: flex;
    gap: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.watch-search-widget .search-type {
    padding: 8px 12px;
    border: none;
    border-right: 1px solid #ccc;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
}

.watch-search-widget .search-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.watch-search-widget .search-button {
    padding: 8px 20px;
    border: none;
    background: #B08D57;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.watch-search-widget .search-button:hover {
    background: #97774A;
} 

/* 鍾錶搜尋區域樣式 */
.watch-search-area-container {
  background-color: #333;
  /* background-color: #f7f7f7; */
  padding: 15px 0;
  width: 100%;
}

.watch-search-area {
  max-width: 42vw;
  margin: 0 auto;
  padding: 0 20px;
}

.watch-search-area .widget {
  margin-bottom: 0;
}

/* 响应式调整 */
@media only screen and (max-width: 767px) {
  .watch-search-area {
    max-width: 100%;
    padding: 0 10px;
  }
}