.menu-wrap {
    height: 46px;
    position: relative;
    margin: 30px 0 0 70px;
}

.menu-wrap:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    line-height: 0;
    font-size: 0;
    background: #F3BF4A;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
}

.menu-list {
    display: inline-block;
    background: #f8f8f8;
    position: relative;
    z-index: 1;
}

.menu-list a {
    display: inline-block;
    height: 46px;
    line-height: 46px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    color: #060879;
    padding: 0 30px;
    border-radius: 96px;
    border: 1px solid #F3BF4A;
    margin-right: 20px;
    background: #fff;
}

.menu-list a:last-child {
    margin-right: 0;
}

.menu-list a.on,
.menu-list a:hover {
    background: #060879;
    color: #fff;
}

.main-search-wrap {
    float: right;
    padding-right: 70px;
    background: #f8f8f8;
    position: relative;
    z-index: 1;
}

.main-search-wrap .ipt-wrap {
    display: inline-block;
    width: 358px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 60px;
    border: 1px solid #F3BF4A;
    position: relative;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.main-search-wrap .ipt-wrap .iconfont {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    text-align: center;
    color: #F3BF4A;
    line-height: 44px;
    font-size: 20px;
}

.main-search-wrap .ipt-wrap .btn-search {
    width: 54px;
    height: 46px;
    background: none;
    border-radius: 6px;
    border: none;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
}

.main-search-wrap .ipt-wrap input[type='text'] {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0 100px 0 50px;
    box-sizing: border-box;
    border-radius: 30px;
}

/*移动端*/
@media screen and (min-width: 320px) and (max-width: 640px) {
    .menu-wrap {
        margin: 100px 3vw 0;
        height: auto;
    }

    .menu-wrap:after {
        display: none;
    }

    .menu-list {
        width: 90%;
        display: block;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: none;
        margin: 0 auto;
    }

    .menu-list a {
        width: 32%;
        margin-right: 0;
        font-size: 3vw;
        height: 30px;
        line-height: 30px;
        padding: 0;
        text-align: center;
    }

    .main-search-wrap {
        float: none;
        width: 90%;
        margin: 30px auto 0;
        padding: 0;
        background: none;
    }

    .main-search-wrap .ipt-wrap {
        width: 100%;
        height: 34px;
    }

    .main-search-wrap .ipt-wrap input[type='text'] {
        padding: 0 50px 0 20px;
        font-size: 12px;
    }

    .main-search-wrap .ipt-wrap .btn-search {
        width: 46px;
        height: 34px;
        line-height: 32px;
        font-size: 14px;
    }

    .main-search-wrap .ipt-wrap .iconfont {
        width: 100%;
        line-height: 32px;
        font-size: 14px;
    }
}