Blame view

src/pages/custom-service/components/policy-change-guide.scss 2.42 KB
simon committed
1 2 3 4 5 6 7 8 9 10 11 12
@import '@/styles/_support';

.common-form-container {}

.table {
  $girdHei: 4.333333rem;
  text-align: center;

  &-header {
    @include border-top-radius(.666667rem);
    display: flex;
    align-items: center;
simon committed
13
    height: 3.25rem;
simon committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    color: #ffffff;
    font-weight: bold;
    letter-spacing: .1rem;

    &-item {}
  }

  &-content {
    color: $cFontGray;
    text-align: center;
    border: solid 1px #f2f2f2;
    @include border-bottom-radius(.666667rem);
    $gridHei: 4.333333rem;

    &-item {
      position: relative;
      // @extend .fcc;
      display: flex;
      align-items: center;
      width: 100%;
      height: auto;

      .hl {
        position: absolute;
simon committed
38 39
        width: 95%;
        // width: 77rem;
simon committed
40 41 42 43 44 45
        height: 1px;
        background-color: #dcdddd;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
simon committed
46
        z-index: 1;
simon committed
47 48 49 50
      }

      .grid {
        position: relative;
simon committed
51
        padding: 2rem 3rem;
simon committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 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 105 106
        background-color: #ffffff;

        .v-line {
          position: absolute;
          width: 1px;
          height: 2.25rem;
          background-color: #dcdddd;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto 0;
        }

        .icon {
          margin-right: .25rem;
          display: inline-block;
        }
      }

      .ww {
        position: relative;
        line-height: 1.5;

        .h-line {
          position: absolute;
          width: 100%;
          height: 1px;
          background-color: #dcdddd;
          bottom: 0;
          left: 0;
        }


      }

      .w1 {}

      .w5 {
        .material {
          @extend .fcc;
        }

        .h-line {
          width: 9rem;
        }

      }
    }
  }

  .t1 {
    background-color: #f2f2f2;
  }

  .w1 {
simon committed
107
    width: 13.25rem;
simon committed
108 109 110
  }

  .w2 {
simon committed
111
    width: 21.5rem;
simon committed
112 113 114
  }

  .w3 {
simon committed
115
    width: 10.75rem;
simon committed
116 117 118
  }

  .w4 {
simon committed
119
    width: 15.5rem
simon committed
120 121 122
  }

  .w5 {
simon committed
123
    // flex: 1;
simon committed
124 125
    // width: 212px;
    width: 240px;
simon committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
  }

}


.orange {
  background-color: $cOrange;
}


.act {
  color: $cOrange;
  @extend .pointer;
  text-decoration: underline;
}

.notice {
  display: flex;
  align-items: center;

  .icon {
    display: inline-block;
    width: 1rem;
    margin-right: .5rem;
  }

  margin-top: 1.25rem;
}
simon committed
154 155 156 157

@media (max-width: 1200px) {
  .container {
    display: -webkit-box;
simon committed
158
    overflow-x: auto;
simon committed
159 160 161 162 163 164 165 166 167
    -webkit-overflow-scrolling: touch;
    width: 92vw;

  }
}

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