search_header.scss 1.33 KB
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10
.search-head {
    height: 44px;
    display: flex;
    background-color: #F7F9FC;
    border-bottom: 1px solid #eee;

    .left {
        width: 44px;
        height: 44px;
        line-height: 44px;
baiguangyao committed
11
        text-align: center;
zhanghaozhe committed
12 13 14 15

        img {
            width: 14px;
            height: 14px;
baiguangyao committed
16
            display: block;
zhanghaozhe committed
17
            padding: 15px;
baiguangyao committed
18 19
        }
    }
zhanghaozhe committed
20 21

    .center {
baiguangyao committed
22
        flex: 1;
zhanghaozhe committed
23 24

        .am-search {
xuzhenghua committed
25 26
            background-color: #F7F9FC;

zhanghaozhe committed
27 28 29 30 31 32 33 34 35 36 37
            .am-search-input {
                background: #F0F2F6;
                border-radius: 44px;
            }

        }

        .am-search-start {
            .am-search-input {
                background: #fff;
                border-radius: 44px;
baiguangyao committed
38
            }
zhanghaozhe committed
39

baiguangyao committed
40
        }
zhanghaozhe committed
41

baiguangyao committed
42
    }
zhanghaozhe committed
43 44 45 46 47 48 49 50

    .right {
        width: 44px;
        height: 44px;
        line-height: 44px;

        .am-icon-md {
            padding: 11px;
baiguangyao committed
51
        }
xuzhenghua committed
52

baiguangyao committed
53
    }
zhanghaozhe committed
54 55 56 57 58

    .right-btn {
        width: auto;

        .submit-btn {
baiguangyao committed
59
            line-height: 30px;
zhanghaozhe committed
60 61 62
            border: 0;
            height: 30px;
            margin: 7px 0px;
baiguangyao committed
63
            padding: 0 12px;
zhanghaozhe committed
64 65
            margin-left: 0;
            border-radius: 3px;
baiguangyao committed
66 67 68
            font-size: $font_14;
            color: $color_333;
        }
FE committed
69 70 71
        .submit-btn--active {
            color: $active;
        }
baiguangyao committed
72 73 74
    }
}

zhanghaozhe committed
75
.am-search {
baiguangyao committed
76 77 78
    height: 43px;
    padding: 0;
}