Blame view

src/pages/custom-service/components/insurance-query.scss 3.29 KB
simon committed
1
@import '@/styles/_support.scss';
simon committed
2

simon committed
3 4 5 6
.container{
  // font-size: 18px;
}

1  
joe committed
7
.cell-group {
simon committed
8
  margin-bottom: 12px;
simon committed
9 10 11 12 13 14 15 16 17 18

  &:last-child {
    margin-bottom: 0;
  }

  div {
    color: #4c4948;
  }

  .w1 {
simon committed
19
    width: 240px;
simon committed
20 21 22 23
    text-align: center;
  }

  .w2 {
simon committed
24
    width: 150px;
simon committed
25 26 27 28
    text-align: center;
  }

  .table-header {
simon committed
29
    height: 39px;
simon committed
30 31
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
simon committed
32 33 34 35 36
    background-color: #f2f2f2;
    display: flex;
    align-items: center;

    .normal-header {
simon committed
37
      @extend .bb;
simon committed
38
      padding: 0 32px;
simon committed
39
      width: 100%;
simon committed
40 41 42 43 44 45 46 47 48 49 50 51 52
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .title {
        font-weight: bold;
        color: #575453;
      }

      .guide {
        transition: all 0.5s;
        cursor: pointer;
simon committed
53
        width: 12px;
simon committed
54
        height: 8px;
simon committed
55 56 57 58 59 60 61 62
        background: url("~@/assets/images/insurance-query/triangle-down.png") no-repeat center center;
        background-size: 100% 100%;
      }

      .rotate180 {
        transform: rotate(180deg);
        transition: all 0.5s;
      }
1  
joe committed
63
    }
simon committed
64 65 66
  }

  .table-content {
simon committed
67

simon committed
68
    height: auto;
simon committed
69
    // display: inline-block;
simon committed
70 71 72 73 74
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: solid 1px #f2f2f2;
    border-right: solid 1px #f2f2f2;
    border-bottom: solid 1px #f2f2f2;
simon committed
75 76
    padding: 0 32px;
    max-height: 500px;
simon committed
77
    transition: max-height ease-out 0.3s !important;
joe committed
78
    overflow: scroll;
simon committed
79 80

    .data-line {
simon committed
81
      height: 50px;
simon committed
82 83 84 85 86
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;

simon committed
87 88 89 90 91 92
      .td {
        display: flex;
        justify-content: center;
        align-items: center;
      }

simon committed
93
      .cell1 {
simon committed
94
        width: 98%;
simon committed
95 96 97
        display: flex;
        justify-content: space-between;
        margin: auto;
joe committed
98 99 100

        div:first-child{
          text-align: left;
simon committed
101
          min-width: 80px !important;
joe committed
102 103 104 105 106
        }
      }

      .cell1:nth-child(1){
        text-align: right !important;
simon committed
107
      }
1  
joe committed
108

simon committed
109
      .separator-v {
simon committed
110
        height: 30px;
simon committed
111
        width: 2px;
simon committed
112
        background-color: #f2f2f2;
simon committed
113
        margin: 0 11px;
simon committed
114
      }
1  
joe committed
115 116
    }

joe committed
117

simon committed
118 119
    .label span {
      color: #f05a23;
simon committed
120
      margin-left: 7px;
simon committed
121 122
      cursor: pointer;
      text-decoration: underline;
1  
joe committed
123 124
    }

simon committed
125
    .separator-h {
simon committed
126 127
      width: 100%;
      height: 1px;
simon committed
128
      background-color: #f2f2f2;
1  
joe committed
129
    }
simon committed
130
  }
1  
joe committed
131

simon committed
132 133
  .orange {
    background-color: #f05a23 !important;
1  
joe committed
134

simon committed
135 136
    div {
      color: #ffffff;
1  
joe committed
137
    }
simon committed
138 139 140 141 142 143
  }

  .hide {
    max-height: 0;
    border-bottom: none;
  }
1  
joe committed
144

simon committed
145
}
simon committed
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162

.cell-between {
  .data-line {
    .td {
      &:first-child {
        justify-content: flex-start;
      }

      &:last-child {
        justify-content: flex-end;
      }
    }
  }

}

.icon-download {
simon committed
163
  margin: 0 12px;
simon committed
164 165 166
}

.icon-check {
simon committed
167 168
  height: 17px;
  margin: 0 12px;
simon committed
169
}
simon committed
170 171 172 173 174

@media (max-width: 1200px) {
  .container {
    width: 1200px;
    display: -webkit-box;
simon committed
175
    overflow-x: auto;
simon committed
176 177 178 179 180
    -webkit-overflow-scrolling: touch;
    width: 92vw;
  }
}

simon committed
181 182 183
// .container::-webkit-scrollbar {
//   display: none;
// }
simon committed
184

simon committed
185 186 187
// .container{
//   -ms-overflow-style: none;
// }
simon committed
188

simon committed
189 190 191
// .list-container::-webkit-scrollbar {
//   display: none;
// }
simon committed
192

simon committed
193 194 195
// .list-container{
//   -ms-overflow-style: none;
// }
simon committed
196

simon committed
197 198 199 200 201 202 203
// .table-content::-webkit-scrollbar {
//   display: none;
// }

// .table-content{
//   -ms-overflow-style: none;
// }
simon committed
204