search_header.scss 1.51 KB
Newer Older
zhanghaozhe committed
1 2 3
.search-head {
    height: 44px;
    display: flex;
xuzhenghua committed
4
    background-color: #fff;
zhanghaozhe committed
5 6 7 8 9

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

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

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

        .am-search {
xuzhenghua committed
24
            background-color: #fff;
xuzhenghua committed
25

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

                .am-search-value {
                    border:1px solid rgba(225,228,230,1);
                    border-radius:13px;
                    color: #333;
                    font-size: 12px;
                }
zhanghaozhe committed
36 37 38 39 40 41 42 43
            }

        }

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

baiguangyao committed
46
        }
zhanghaozhe committed
47

baiguangyao committed
48
    }
zhanghaozhe committed
49 50 51 52 53 54 55 56

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

        .am-icon-md {
            padding: 11px;
baiguangyao committed
57
        }
xuzhenghua committed
58

baiguangyao committed
59
    }
zhanghaozhe committed
60 61 62 63 64

    .right-btn {
        width: auto;

        .submit-btn {
baiguangyao committed
65
            line-height: 30px;
zhanghaozhe committed
66 67 68
            border: 0;
            height: 30px;
            margin: 7px 0px;
baiguangyao committed
69
            padding: 0 12px;
zhanghaozhe committed
70 71
            margin-left: 0;
            border-radius: 3px;
xuzhenghua committed
72 73
            font-size: 14px;
            color: $color_525B65;
baiguangyao committed
74
        }
FE committed
75 76 77
        .submit-btn--active {
            color: $active;
        }
baiguangyao committed
78 79 80
    }
}

zhanghaozhe committed
81
.am-search {
baiguangyao committed
82 83 84
    height: 43px;
    padding: 0;
}