Blame view

src/components/home/footer/footer.scss 2.53 KB
simon committed
1 2 3 4 5 6 7 8 9 10
// @import '@/styles/_support';
@import '@/styles/_utils';

.v-footer {
  font-family: MicrosoftYaHei;
  color: #ffffff;
  background-color: #2e2b2a;

  .footer-containter {
    margin: 0 auto;
simon committed
11
    // max-width: 1200px;
simon committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

    .cont {
      margin-left: 3.166667rem;

      .logo-wrap {
        padding: 1.75rem 0;

        .logo-img {
          cursor: pointer;
        }
      }

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

      // 信息
      .info {
        padding: 1.25rem 0 1.5rem;
        display: flex;

        // 热线
        .hotline {
simon committed
38
          // margin-right: 8rem;
simon committed
39 40
          min-width: 280px;
          // flex: 1;
simon committed
41 42 43 44 45 46 47

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

            .phone {
joe committed
48
              // font-family: Arial;
simon committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
              color: #ea5a26;
              font-size: 1.666667rem;
              font-weight: bold;
            }

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

        }

        // 导航
        .nav {
          flex: 1;
          display: flex;

          .nav-v {
simon committed
67
            // margin: 0 5.2rem;
simon committed
68 69 70 71
          }

          .n-item {
            cursor: pointer;
simon committed
72
            min-width: 14rem;
simon committed
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 111 112 113 114 115 116 117 118 119 120 121 122
          }
        }

        .focus {
          width: 6.25rem;
          text-align: center;
          margin-right: 3rem;

          .qrcode {
            margin-top: .75rem;
          }

        }

        // 公共组件
        .n-item {
          margin-bottom: 1.416667rem;
          color: rgba(179, 177, 168, 0.5);

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

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

      // 版权
      .copyright {
        color: rgba(179, 177, 168, 0.5);
        padding: 1.5rem 0;
        line-height: 1.58;
      }
    }

  }
}

@media (max-width: 950px) {
  .v-footer {
    .footer-containter {
      .cont {
        .info {
          display: block;

          .nav {
            margin-top: 2rem;
simon committed
123 124
            // flex: d;
            display: flex;
simon committed
125 126

            .nav-v {
simon committed
127 128 129 130 131 132
              // margin: 0 1.6rem 0 0;
              width: 100%;
            }

            .n-item{
              min-width: 0;
simon committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
            }
          }

          .focus {
            margin-top: 2rem;
            text-align: left;
          }
        }

        .copyright {
          box-sizing: border-box;
          padding-right: 2rem;
        }

      }
    }
  }

}