
.mobile-top {
    /* 固定在顶部 */
    position: fixed;
    border-bottom: 1px solid #00adb5;
    float: top;
    top: 0;
    z-index: 999;
    /* 宽高颜色等信息 */
    background-color: #FFFFFF;
    width: 100%;
    height: 80px;
    line-height: 80px;
    /* grid 布局 */
    display: grid;
    grid-template-columns: 20% 62% 18%;
    column-gap: 0%;
    row-gap: 0px;
    /* justify-content: center;*/
    /* vertical-align: middle;*/
}

/**
 * logo
 */
.mobile-top div:nth-child(1){
    background: url('/static/assets/img/logo-app.png') no-repeat center;
    background-size: 60px 40px;
}

/* 输入框 */
.mobile-top div:nth-child(2) input {
    /*padding: 0;*/
    width: 99%;
    height: 40px;
    padding-left: 5px;
    color: #4e6e8e;
    border: 1px solid #00adb5;
    border-radius: 3px;
    font-size: 16px;
    line-height: 30px;
}

/**
 * 菜单按钮
 */
.mobile-top div:nth-child(3) {
    background: url('/static/plugins/mobile-top/icon/menu.png') no-repeat center;
    background-size: 40px 40px;
}

