search_header.scss 1.2 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.search-head {
zhanghaozhe committed
3 4 5
  height: 44px;
  display: flex;
  background-color: #fff;
zhanghaozhe committed
6

zhanghaozhe committed
7 8 9 10 11 12 13 14 15 16 17
  .left {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;

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

zhanghaozhe committed
20 21 22 23
    .iconfont {
      font-size: 20px;
    }
  }
zhanghaozhe committed
24

zhanghaozhe committed
25 26
  .center {
    flex: 1;
zhanghaozhe committed
27

zhanghaozhe committed
28 29
    .am-search {
      background-color: #fff;
zhanghaozhe committed
30

zhanghaozhe committed
31 32 33 34 35 36 37
      .am-search-input {
        background: #fff;
        border: 1px solid rgba(225, 228, 230, 1);
        border-radius: 13px;
        color: #333;
        font-size: 12px;
      }
baiguangyao committed
38
    }
zhanghaozhe committed
39

zhanghaozhe committed
40 41 42 43 44
    .am-search-start {
      .am-search-input {
        background: #fff;
        border-radius: 44px;
      }
baiguangyao committed
45
    }
zhanghaozhe committed
46
  }
zhanghaozhe committed
47

zhanghaozhe committed
48 49 50 51
  .right {
    width: 44px;
    height: 44px;
    line-height: 44px;
zhanghaozhe committed
52

zhanghaozhe committed
53 54
    .am-icon-md {
      padding: 11px;
baiguangyao committed
55
    }
zhanghaozhe committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
  }

  .right-btn {
    width: auto;

    .submit-btn {
      line-height: 30px;
      border: 0;
      height: 30px;
      margin: 7px 0px;
      padding: 0 12px;
      margin-left: 0;
      border-radius: 3px;
      font-size: 14px;
      color: $color_525B65;
    }
    .submit-btn--active {
      color: $active;
    }
  }
baiguangyao committed
76 77
}

zhanghaozhe committed
78
.am-search {
zhanghaozhe committed
79 80 81
  height: 43px;
  padding: 0;
}