Blame view

src/pages/custom-service/custom-service.scss 1.73 KB
1 2
@import '@/styles/_support';

joe committed
3
.content {
simon committed
4
  display: flex;
simon committed
5
  margin: 2.333333rem auto;
6
  position: relative;
simon committed
7

joe committed
8 9 10
}

.left-panel {
simon committed
11
  width: 16rem;
simon committed
12
  margin-right: $marginMedium;
simon committed
13 14 15

  .separator {
    margin: auto;
simon committed
16
    width: 13.25rem;
simon committed
17 18 19 20 21
    height: .083333rem;
    background-color: #dcdddd;
  }

  .menu-item {
22 23
    position: relative;
    @extend .bb;
simon committed
24
    padding: 1.5rem 0;
simon committed
25
    font-weight: bold;
26
    color: $cFontGray;
simon committed
27 28 29 30
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
31 32
    justify-content: flex-start;
    border-bottom: solid 1px #dcdddd;
simon committed
33 34
    width: 13.25rem;
    margin-left: 1.25rem;
simon committed
35

36 37
    .icon-wrap {
      @extend .fcc;
simon committed
38
      width: 4rem;
joe committed
39

40
      .icon {}
joe committed
41
    }
simon committed
42

43 44 45 46 47
    .tit {
      flex: 1;
      @extend .bb;
      padding: 0 .333333rem;
      text-align: left;
simon committed
48 49 50

    }

51 52
    .sel {
      position: absolute;
simon committed
53 54
      width: 8px;
      height: 17px;
55 56
      top: 0;
      bottom: 0;
simon committed
57
      // right: 0;
58 59 60 61
      right: -1.75rem;
      margin: auto 0;
      background: url("~@/assets/images/insurance-query/triangle.png") no-repeat center center;
      @extend .bis;
simon committed
62 63
    }

64 65
    .sel-first {
      margin: 0;
simon committed
66 67
    }

68
    &:first-child {
simon committed
69
      padding: 0 0 1.5rem;
simon committed
70 71
    }

72 73
    &:last-child {
      border-bottom: none;
simon committed
74 75 76
    }

  }
simon committed
77 78 79 80

  .activity {
    color: $cOrange;
  }
simon committed
81 82 83
}

.right-panel {
simon committed
84
  max-width: 975px;
simon committed
85
  width: 975px;
simon committed
86 87 88
  background-color: #ffffff;

  .panel {
simon committed
89
    // display: none;
simon committed
90 91 92 93 94
  }

  .activity {
    display: block !important;
  }
joe committed
95 96 97
}

.empty-line {
simon committed
98
  height: 1.333333rem;
simon committed
99
}
simon committed
100 101 102 103 104 105 106 107 108 109


@media (max-width: 1200px) {
  .content {
    @include content-percent();
  }

  .left-panel {
    display: none;
  }
simon committed
110 111

  .right-panel {
simon committed
112
    margin: 0 auto;
simon committed
113

simon committed
114
  }
simon committed
115 116 117 118 119 120 121 122
}

@media (max-width: 768px) {
  .content {
    @include content-percent();
    margin: 0 auto;
  }
}