Blame view

src/components/home/m-dropdown/m-dropdown.scss 1.71 KB
simon committed
1
@import '@/styles/_support.scss';
simon committed
2 3

.panel {
simon committed
4
  z-index: 9999;
simon committed
5 6 7 8 9 10
  display: block;
  left: 0;
  top: $navHeight-M;
  position: fixed;
  width: 100%;
  height: 100%;
simon committed
11 12 13 14 15 16 17 18 19 20
  // background-color: rgba($color: #000000, $alpha: 0.3);
  background-color: #ffffff;
  overflow: scroll;
  padding-bottom: 200px;

  // 遮罩
  .mask {
    width: 100%;
    height: 100%;
    position: fixed;
simon committed
21
    z-index: 5000;
simon committed
22 23 24
    left: 0;
    top: 0;
  }
simon committed
25 26

  .list {
simon committed
27
    position: relative;
simon committed
28
    z-index: 5001;
simon committed
29
    padding: 0 20px;
simon committed
30 31 32 33 34 35
    // background-color: #ffffff;
  }

  // 国际化
  .lang {
    position: relative;
simon committed
36
    z-index: 5002;
simon committed
37
    display: flex;
simon committed
38
    background-color: #ffffff;
simon committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    padding: 20px 36px;

    &-item {
      border-right: solid 1px #ebedf0;
      padding: 0 12px;
      @extend .fcc;


      &:first-child {
        padding: 0 10px 0 0;
      }

      &-act {
        color: $cOrange;
      }
    }

simon committed
56 57 58 59
  }

}

simon committed
60 61
.coll-item-act {
  color: $cOrange;
simon committed
62 63 64 65 66 67 68 69 70 71 72
}

.list-item {
  @extend .bb;
  display: flex;
  align-items: center;
  padding: 16px 16px;
  position: relative;
  border-bottom: 1px solid #ebedf0;
  font-size: 14px;
  color: $cFontGray;
simon committed
73 74 75 76 77
  background-color: #fff;

  .txt {
    flex: 1;
  }
simon committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
}

.icon-wrap {
  @extend .fcc;
  height: 100%;
}

.plus-icon {
  width: 21px;
  height: 21px;
  background: url("~@/assets/images/home/icon-head-plus.png") no-repeat center;
  @extend .bis;
  transform: scale(.6);
}

.arrow-icon {
  width: 21px;
  height: 21px;
  background: url("~@/assets/images/home/icon-head-right-arrow.png") no-repeat center;
  @extend .bis;
  transform: scale(.6);
}

.plus-icon-act {
  background: url("~@/assets/images/home/icon-head-plus-act.png") no-repeat center;
}

simon committed
105 106 107


.hide {
simon committed
108 109
  display: none;
}
simon committed
110 111 112 113 114


.panel::-webkit-scrollbar {
  display: none;
}