Blame view

src/components/home/footer/footer.scss 3.93 KB
simon committed
1
@import '@/styles/_support';
simon committed
2 3 4 5

.v-footer {
  color: #ffffff;
  background-color: #2e2b2a;
simon committed
6
  font-size: $fontSize;
simon committed
7 8 9

  .footer-containter {
    margin: 0 auto;
simon committed
10
    max-width: 1200px;
simon committed
11 12 13

    .cont {
      .logo-wrap {
simon committed
14
        padding: 2.166667rem 0;
simon committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

        .logo-img {
          cursor: pointer;
        }
      }

      .line {
        width: 100%;
        height: 1px;
        opacity: 0.2;
        background-color: #ffffff;
      }

      // 信息
      .info {
simon committed
30
        padding: 2rem 0 2rem;
simon committed
31 32 33 34
        display: flex;

        // 热线
        .hotline {
simon committed
35
          min-width: 24.5rem;
simon committed
36 37 38 39 40 41 42

          .contact {
            .n-item {
              margin-bottom: 0.6rem;
            }

            .phone {
simon committed
43
              color: $cOrange;
simon committed
44
              font-size: $fontSizeTitle;
simon committed
45 46 47 48 49 50 51 52 53 54 55 56 57
              font-weight: bold;
            }

            &:first-child {
              margin-bottom: 2rem;
            }
          }
        }

        // 导航
        .nav {
          display: flex;

simon committed
58
          .nav-v {}
simon committed
59 60 61

          .n-item {
            cursor: pointer;
simon committed
62
            min-width: 14.75rem;
simon committed
63

simon committed
64 65 66
          }
        }

simon committed
67 68 69 70
        .nav2 {
          display: none;
        }

simon committed
71
        // 公众号
simon committed
72
        .public {
simon committed
73
          position: relative;
simon committed
74 75
          text-align: left;
          margin-left: 5.32rem;
simon committed
76

simon committed
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
          .qrcode-wrap {
            text-align: center;
            // position: absolute;
            // top: 2rem;
            margin-top: 0.3rem;
            width: 8.416667rem;
            height: 8.833333rem;

            .qrcode {}

            .c1 {
              margin-top: 0.3rem;
            }
          }

          .icon {
simon committed
93
            margin-top: .75rem;
simon committed
94 95
            margin-right: 1rem;
            display: inline-block;
simon committed
96 97 98 99 100
          }
        }

        // 公共组件
        .n-item {
simon committed
101 102
          margin-bottom: 2rem;
          color: #dcdddd;
simon committed
103 104

          &:first-child {
simon committed
105
            margin-bottom: 2.666667rem;
simon committed
106 107 108 109 110 111 112 113 114 115 116 117 118
          }

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

      // 版权
      .copyright {
        color: rgba(179, 177, 168, 0.5);
        padding: 1.5rem 0;
        line-height: 1.58;
simon committed
119
        font-size: $fontSizeSmall;
simon committed
120 121 122 123 124 125
      }
    }

  }
}

simon committed
126 127

@media (max-width: 1200px) {
simon committed
128
  .v-footer {
simon committed
129 130
    @include content-percent();

simon committed
131 132 133 134 135
    .footer-containter {
      .cont {
        .info {
          display: block;

simon committed
136 137
          .hotline {}

simon committed
138 139
          .nav {
            margin-top: 2rem;
simon committed
140
            display: flex;
simon committed
141 142

            .nav-v {
simon committed
143 144 145
              width: 100%;
            }

simon committed
146
            .n-item {
simon committed
147
              min-width: 0;
simon committed
148
              margin-right: 0;
simon committed
149 150 151
            }
          }

simon committed
152 153 154 155
          .nav2 {
            display: none;
          }

simon committed
156 157
          .public {
            margin: 0;
simon committed
158
            margin-top: 3rem;
simon committed
159
            text-align: left;
simon committed
160
            min-height: 12rem;
simon committed
161 162 163 164 165 166 167
          }
        }

        .copyright {
          box-sizing: border-box;
          padding-right: 2rem;
        }
simon committed
168 169 170 171 172 173 174 175
      }
    }
  }
}

@media (max-width: 768px) {
  .v-footer {
    font-size: $fontSizeSmall-M;
simon committed
176

simon committed
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
    .footer-containter {
      .cont {
        .info {
          display: flex;
          justify-content: space-between;

          .hotline {
            min-width: 0;

            .phone {
              font-size: $fontSizeSmall-M !important;
              font-weight: bold !important;
            }
          }

          .nav {
            display: none;
            margin-top: 0;

            .nav-v {}

            .n-item {}
          }

          .nav2 {
            display: block;
          }

          .public {
            margin: 0;
simon committed
207 208 209 210 211 212 213 214 215 216 217
            min-width: 9rem;

            .qrcode-wrap {
              img {
                width: 7rem;
              }

              .c1 {
                display: none;
              }
            }
simon committed
218 219 220 221 222 223 224 225 226 227 228
          }

          // 公共组件
          .n-item {
            margin-bottom: 2rem;

            &:first-child {
              margin-bottom: 2rem;
            }
          }
        }
simon committed
229

simon committed
230
        .copyright {}
simon committed
231 232 233 234 235
      }
    }
  }

}