﻿/* 搜索框样式 */
.c-search-top1 {
    display: block !important;
    width: 95%;
    margin: auto;
    max-width:768px;
}

.c-search-top-body {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 5px;
    height: 38px;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

    .c-search-top-body:hover {
        border-color: #1890ff;
        box-shadow: 0 3px 12px rgba(24, 144, 255, 0.2);
    }

#selecttype_a {
    display: flex;
    align-items: center;
    padding: 0 10px 0 5px;
    color: #555;
    font-size: 15px;
    border-right: 1px solid #eee;
    height: 100%;
    cursor: pointer;
    white-space: nowrap;
}

    #selecttype_a:hover {
        color: #1890ff;
    }

    #selecttype_a img {
        width: 12px;
        margin-left: 5px;
        transition: transform 0.2s;
    }

.form-type {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 15px;
    height: 100%;
    background: transparent;
    color: #333;
}

    .form-type::placeholder {
        color: #aaa;
    }

.btn-search-block {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.btn-search {
    display: inline-block;
    background: #1890ff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-search:hover {
        background: #40a9ff;
        transform: translateY(-1px);
    }

.select-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 150px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    overflow: hidden;
}

.select-menu-inner {
    padding: 5px 0;
}

    .select-menu-inner a {
        display: block;
        padding: 8px 15px;
        color: #555;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
    }

        .select-menu-inner a:hover {
            background: #f0f7ff;
            color: #1890ff;
        }
