.serach-header{ height: 98px; padding-top: 13px; margin-bottom: 10px;}
.serach-box { background-color: #fff; border: 2px solid #e02e24; width: 600px; height: 36px; margin-top: 15px;border-radius:20px  }
.serach-box .submit { width: 75px; height: 36px; text-align: center; line-height: 36px; background-color: #e02e24; color: #fff; font-size: 16px; font-family: 'Microsoft YaHei'; cursor: pointer;border-top-right-radius: 17px;border-bottom-right-radius: 17px; }
.serach-box .select { width: 96px; height: 36px; margin-right: 10px; border-right: 1px solid #EEECEC; background-color: #F7F7F7; }
.serach-box .txt { padding-top: 10px; line-height: 14px; color: #424242; width: 500px; padding-left: 16px;border: none;outline: none;   border-radius: 0px;font-size: 16px;}
.search p{ margin-top:7px;margin-left: 20px}
.search p a{ margin: 0 4px; }
.search p a:hover{color:#000;}
#serach_select{ height: 36px; line-height: 36px; padding-left: 10px; border: none; }
/* 搜索按钮 hover 效果 */
.serach-box .submit:hover {
    background: #c41e3a;    /* 深一点的品牌色 */
}

.suggest-box{height: 0px; overflow: hidden;}
.logo_img{ padding-top: 6px;}
.logo_r{ margin-top: -4px;}
#suggestBox{position:absolute; background-color:white;z-index:999;top:85px;}
#suggestBox ul{border:solid 1px #ddd;width:482px;}
#suggestBox ul li{ padding: 8px 10px;height:20px;}
#suggestBox ul li.on{background-color:#ccc;}


/* 顶部搜索 */
.search-container {
    max-width: 700px;
    margin: 0 auto;
}
.search-wrapper {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* 搜索类型选择 */
.search-type {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2px;
    flex-shrink: 0;
}
.type-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    margin: 4px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.type-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}
.type-btn.active {
    background: #c41e3a;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}
/* 搜索输入框区域 */
.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.search-input {
    width: 100%;
    padding: 12px 60px 12px 15px;
    border: 2px solid #e23452;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}
.search-input:focus {
    border: 2px solid #e23452;
    background: white;
    box-shadow: 0 0px 5px #c41e3a36;
    
}

.search-input::placeholder {
    color: #999;
}
/* 搜索按钮 */
.search-btn {
    position: absolute;
    right: 6px;
    background: #c41e3a;
    border: none;
    border-radius: 6px;
    padding: 6px 8px 6px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
}
.search-btn:hover {
    background: #e23452;
}
/* 搜索类型切换动画 */
.type-btn {
    position: relative;
    overflow: hidden;
}
.type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}
.type-btn:hover::before {
    left: 100%;
}