Blame view

src/pages/custom-service/components/policy-change-guide.scss 2.45 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
    color: #ffffff;
    font-weight: bold;

    &-item {}
  }

simon committed
20 21 22 23 24
  &-header:lang(zh) {
    letter-spacing: .1rem;
  }


simon committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
  &-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
42 43
        width: 95%;
        // width: 77rem;
simon committed
44 45 46 47 48 49
        height: 1px;
        background-color: #dcdddd;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
simon committed
50
        z-index: 1;
simon committed
51 52 53 54
      }

      .grid {
        position: relative;
simon committed
55
        padding: 2rem 3rem;
simon committed
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 107 108 109 110
        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
111
    width: 13.25rem;
simon committed
112 113 114
  }

  .w2 {
simon committed
115
    width: 21.5rem;
simon committed
116 117 118
  }

  .w3 {
simon committed
119
    width: 10.75rem;
simon committed
120 121 122
  }

  .w4 {
simon committed
123
    width: 15.5rem
simon committed
124 125 126
  }

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

}


.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
158 159 160 161

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

  }
}

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